当前位置:网站首页>Oracle 字段自增
Oracle 字段自增
2022-08-09 18:45:00 【Please Sit Down】
一、创建表
--创建student表
create table student(
id number not null, --学生id
name varchar2(20) not null --学生姓名
);
二、创建序列
create sequence student_id_seq; --创建序列
三、测试(向表中添加数据)
insert into student values (student_id_seq.nextval,'张三');
insert into student values (student_id_seq.nextval,'李四');
select * from student; --查询表
四、使用触发器创建自增字段
create or replace trigger student_auto_incr
before insert on student --before:执行DML等操作之前触发
for each row --行级触发器
begin
select student_id_seq.nextval into :new.id from dual;
end;
/
触发时机:
before:能够防止某些错误操作发生而便于回滚或实现某些业务规则,适用于实现自增字段;
after:在DML等操作发生之后发生,这种方式便于记录该操作或做某些事后处理信息;
instead of:触发器为替代触发器。
五、测试
insert into student(name) values ('张三');
insert into student (name) values ('李四');
select * from student;
边栏推荐
- 环境:Flink版本:1.15.1jar包:flink-sql-connector-oracle
- Tims中国上市进入倒计时:年亏3.8亿 估值降至14亿美元
- competed中访问ref为undefined
- 放下手机吧:实验表明花20分钟思考和上网冲浪同样快乐
- 奥特曼卡牌隐藏的百亿市场
- 面试官:MySQL 中 update 更新,数据与原数据相同时会执行吗?大部分人答不上来!
- Intensive reading of the paper: VIT - AN IMAGE IS WORTH 16X16 WORDS: TRANSFORMERS FOR IMAGE RECOGNITION AT SCALE
- Swift -- 数组高阶函数
- golang单元测试:testing包的基本使用
- [免费专栏] Android安全之数据存储与数据安全【大集合】
猜你喜欢
看完这波 Android 面试题;助你斩获心中 offer
mysql duplicate data group multiple latest records
mysql 重复数据 分组 多条最新的记录
漏洞复现-redis未授权getshell
What is the Treasure Project (TPC), a dark horse with wings in 2022!
IS31FL3737B 通用12×12 LED驱动器 I2C 42mA 40QFN
基于CC2530 E18-MS1-PCB Zigbee DIY作品(三)
明明加了唯一索引,为什么还是产生重复数据?
[Free Column] Android Fragment Injection for Android Security
[免费专栏] Android安全之和平精英(FZ)APK逆向分析
随机推荐
poj 1182 食物链(带权并查集)
全自动化机器学习建模!效果吊打初级炼丹师!
AttributeError: module ‘click‘ has no attribute ‘get_os_args‘
Intensive reading of the paper: VIT - AN IMAGE IS WORTH 16X16 WORDS: TRANSFORMERS FOR IMAGE RECOGNITION AT SCALE
AWS CodePipeLine deploys ECS across accounts
Environment: Flink version: 1.15.1 jar package: flink-sql-connector-oracle
pat链表专题训练+搜索专题
EsgynDB Troubleshooting - ERROR[2012] Server process tdm_arkesp could not becreated
这年头还不来尝试线稿图视频??
Why is the data of maxcompute garbled when imported into mysql?The table of mysql is the encoding of udf8mb4
How to suppress alarm storms?
C#/VB.NET:从PowerPoint文档中提取文本和图片
Openharmony Lightweight System Experiment--GPIO Lighting
毕昇编译器优化:Lazy Code Motion
渗透测试-对新型内存马webshell的研究
鹅厂机器狗花式穿越10m梅花桩:前空翻、单桩跳、起身作揖...全程不打一个趔趄...
【Unity3D】2D动画
Open Source Summer | List Details Display Based on Ruoyi Architecture
Mysql 表结构变更方案对比及分析
漏洞复现-redis未授权getshell