谁知道Oracle里主健怎么设置自动增加吗?
谁知道Oracle里主健怎么设置自动增加吗?
2006-04-04 17:00
2006-04-06 20:47
2006-04-09 22:49
2006-04-13 09:01
首先用
create sequence seq_1
start with 1
increament 1;
可以采用insert into tablename values(seq_1.nextval,..)等形式插入,非常方便
2006-04-15 00:34
2006-05-05 18:26
2006-05-13 10:38
最好是在后面再加上
nocache
nocycle
2006-05-14 11:07
2006-05-23 16:37

2006-06-12 22:29