1.建表
create table overseas_users(
overseas_id varchar2(10) not null primary key, --主键
name varchar2(50), -- 名字
);
2.创建自增序列
create sequence seq_overseas_id
minvalue 1 --最小值
maxvalue 9999999999 --最大值
start with 1 --起始值
increment by 1 --增长基数
nocycle --不循环
nocache ; -- 不使用缓存
3.调用
insert into overseas_users(overseas_id,name) values(seq_overseas_id.nextval,'xxx');