创建序列

创建序列

创建sequence
创建表:userList
create table userList(
id number primary key,
username varchar (
20) not null,
userPwd varchar (
30) not null
);

创建序列(sequence):
create sequence My_seq
nocycle
maxvalue 
9999999999
start with 
1;

插入语句:
insert into userList(id,username,userPwd)
values(My_seq.nextval,
'sonic','sonic');

序列的作用是使得索引值自动加一。

你可能感兴趣的:(创建序列)