Oracle自增主键
2021/7/14 19:04:54
本文主要是介绍Oracle自增主键,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
mysql中自增主键:create table test(id primary key AUTO_INCREMENT) AUTO_INCREMENT=值;
Oracle中没有这种写法,Oracle中自增主键,需要靠序列和触发器实现
例:
drop table account_la; create table account_la( customer_id integer,--主键 customer_name varchar2(20) not null, --客户名 customer_id_card varchar2(20) not null, --客户身份证号 customer_sex char(4) default'男' not null,--客户性别 customer_phone number(11) not null,--客户手机号 customer_password varchar2(128) not null,--密码 create_time timestamp default sysdate not null,--注册时间,默认为系统当前时间 bank_id integer not null,--银行号 customer_address varchar2(256) not null,--客户地址 customer_status integer default 1 not null,--客户账户状态,0:不可用,1:可用 account_balance varchar2(64) not null,--账户余额 constraint account_pk primary key(customer_id), constraint check_sex check(customer_sex in ('男','女')), constraint check_status check(customer_status in(0,1)), constraint unique_id_card unique(customer_id_card), constraint unique_phone unique(customer_phone) ); drop sequence SEQ_account_autoid -- 创建account_la的序列,自增初始值为1,最大值为999999999999,每次加1 create sequence SEQ_account_autoid minvalue 1 maxvalue 999999999999 start with 1 increment by 1 nocache; drop trigger TRG_account_autoid; -- 创建account_la的触发器,每次插入值时查询序列的nextVal(下一个序列值) create trigger TRG_account_autoid before insert on account_la for each row when(new.customer_id is null) begin select SEQ_account_autoid.nextval into:new.customer_id from dual; end;
这篇关于Oracle自增主键的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用