怎样用Sql语句建立一个带 自动加一的ID字段的Oracle数据库?

时间:2022-03-02 15:09:34
怎样用Sql语句建立一个带 自动加一的ID字段的Oracle数据库?

7 个解决方案

#1


我已经解决了

#2


是不是指的序列啊?

#3


怎么解决的?

#4


建一个触发器怎样

#5


用sequence

#6


能不能说明白一点呀 :) 
我也要解决这个问题呢

#7


create table tablename(
col1 varchar2(n),
col2 number,
id number identity(1,1)
)

#1


我已经解决了

#2


是不是指的序列啊?

#3


怎么解决的?

#4


建一个触发器怎样

#5


用sequence

#6


能不能说明白一点呀 :) 
我也要解决这个问题呢

#7


create table tablename(
col1 varchar2(n),
col2 number,
id number identity(1,1)
)