给oracle写自增序列
2023-05-05 10:13:38 阅读次数:103
oracle
1.新建表结构
<span >create table tb_user (
userId INTEGER not null,
userName CHAR(20),
constraint PK_TB_USER primary key (userId)
)</span>
2.新建自增序列
<span >create sequence tb_user_id
increment by 1
start with 0
maxvalue 10000
minvalue 0
nocycle
cache 20
order;</span>
3.插入数据
<span >insert into tb_user(userId,userName) values(tb_user_id.nextval,'刘云生')</span>
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/liuyunshengsir/5998217,作者:liuyunshengsir,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:prometheus监控postgres
下一篇:linux如何开启oracle自动备份的脚本