MySQL实现类似Oracle序列的方案
程序员文章站
2022-11-12 08:51:19
mysql实现类似oracle的序列
oracle一般使用序列(sequence)来处理主键字段,而mysql则提供了自增长(increment)来实现类似的目的;...
mysql实现类似oracle的序列
oracle一般使用序列(sequence)来处理主键字段,而mysql则提供了自增长(increment)来实现类似的目的;
但在实际使用过程中发现,mysql的自增长有诸多的弊端:不能控制步长、开始索引、是否循环等;若需要迁移数据库,则对于主键这块,也是个头大的问题。
本文记录了一个模拟oracle序列的方案,重点是想法,代码其次。
oracle序列的使用,无非是使用.nextval和.currval伪列,基本想法是:
1、mysql中新建表,用于存储序列名称和值;
2、创建函数,用于获取序列表中的值;
具体如下:
表结构为:
drop table if exists sequence; create table sequence ( seq_name varchar(50) not null, -- 序列名称 current_val int not null, --当前值 increment_val int not null default 1, --步长(跨度) primary key (seq_name) );
实现currval的模拟方案
create function currval(v_seq_name varchar(50)) returns integer begin declare value integer; set value = 0; select current_value into value from sequence where seq_name = v_seq_name; return value; end;
函数使用为:select currval('movieseq');
实现nextval的模拟方案
create function nextval (v_seq_name varchar(50)) return integer begin update sequence set current_val = current_val + increment_val where seq_name = v_seq_name; return currval(v_seq_name); end;
函数使用为:select nextval('movieseq');
增加设置值的函数
create function setval(v_seq_name varchar(50), v_new_val integer) returns integer begin update sequence set current_val = v_new_val where seq_name = v_seq_name; return currval(seq_name);
同理,可以增加对步长操作的函数,在此不再叙述。
注意语法,数据库字段要对应上
use bvboms; delimiter $$ create function setval(v_seq_name varchar(50), v_new_val integer) returns integer begin update sequence set current_val = v_new_val where seq_name = v_seq_name; return currval(seq_name); end $$ delimiter $$
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: Linux中Fedora 17中文字体显示点阵状的解决方法
下一篇: *医药挺神奇
推荐阅读
-
浅谈mysql可有类似oracle的nvl的函数
-
在MySQL中创建实现自增的序列(Sequence)的方法教程
-
通过创建SQLServer 2005到 Oracle10g 的链接服务器实现异构数据库数据转换方案
-
一次性获取多个oracle序列的值,实现关联表多数据的批量insert
-
ORACLE实现自定义序列号生成的方法
-
MySQL实现类似Oracle序列的方案
-
mysql实现自增序列的示例代码
-
Oracle给用户授权truncatetable的实现方案
-
系统从MySQL迁移至ORACLE实现方案
-
mybatis针对oracle和mysql高效率批量插入的解决方案 - mybatis经典案例(无敌篇)