/*1.创建表*/
create table users(
id number(12) not null primary key, /*设为主键*/
username varchar(30) not null,
password varchar(50) not null
)
/*2.创建序列*/
create sequence seq_users
start with 1 /*从1开始增加*/
minvalue 1 /*最小值为1*/
nomaxvalue /*无最大值*/
cache 10 /*缓存10个id*/
increment by 1 /*每次增加1*/
/*3.创建触发器*/
create trigger tri_users before
insert on users for each row when (new.id is null) /*当查到id为null的时常,触发插入*/
begin
select seq_users.nextval into :new.id from dual ; /*从虚拟表中查到下一个未被使用的新的id,使用过弃用,接着往下*/
end;
/*4.单挑执行插入*/
insert into users(username,password) values('test1','1')
insert into users(username,password) values('test2','2')
insert into users(username,password) values('test3','3')
/*5.查询结果*/
select a.*,a.rowid from users a
Oracle使用工具PL/SQL Developer创建id自增表步骤
最新推荐文章于 2024-09-13 17:04:58 发布