oracle中有一个表的id是number型自增的 insert时如何不用插入id 只插入其他字段就实现数据的插入

比如有一个表test两个字段id和name其中id是number型自增的使用插入语句insertintotestvalues(1,‘sss’);自然可以实现插入但是我想v... 比如有一个表 test 两个字段 id和name 其中id是number型自增的 使用插入语句insert into test values(1,‘sss’);自然可以实现插入 但是我想values中不用写id字段 直接写name字段 比如values(‘ssss’) 就向test表中插入了数据 sql语句该怎么写呢? 展开
 我来答
百度网友07553bf0
推荐于2017-11-26 · TA获得超过1986个赞
知道大有可为答主
回答量:2464
采纳率:75%
帮助的人:1842万
展开全部
oracle 12c之前必须用sequence :

create table test_tab
(
id number primary key
);

create sequence test_seq start with 1 increment by 1 nocycle;

create or replace trigger test_trg
before insert on test_tab
for each row
begin
select test_seq.nextval into :new.id
from dual;
end;
/

12c之后可以直接定义 字段的默认值为一个自增序列

create sequence test_seq start with 1 increment by 1 nocycle;

create table test_tab
(
id number default test_seq.nextval primary key
);
ccjk311
2013-09-04
知道答主
回答量:17
采纳率:0%
帮助的人:10万
展开全部
使用触发器
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
382580322
2013-09-03 · TA获得超过757个赞
知道小有建树答主
回答量:639
采纳率:0%
帮助的人:331万
展开全部
insert into test(name) values(‘sss’)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式