oracle中怎样将字段建成象SQL2000中的ID自动+1的字段

两种方法
方法一:
  用触发器

建一个序列
create sequence a_seq increment by 1 start with 100;
建一个触发器, 自动+1
create or replace trigger your_seq_tri
before insert on your_table1 for each row
declare
next_id number;
begin
select your_seq.nextval into next_id from dual;
:new.id := next_id;
end;


方法二:
  建一个序列
create sequence a_seq increment by 1 start with 100;
在语句中+1
  insert into tbl(id,....)
values (a_seq.nextval,....)[@more@]
请使用浏览器的分享功能分享到微信等