mysql穿件序列的方式

Posted 12man

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql穿件序列的方式相关的知识,希望对你有一定的参考价值。

  –创建自增表

  CREATE TABLE biz_tb_sequence ( NAME VARCHAR ( 50 ) NOT NULL, current_value INT NOT NULL, _increment INT NOT NULL DEFAULT 1, PRIMARY KEY ( NAME ) );

  –向mysql导入函数的时候,报错执行下方sql

  set global log_bin_trust_function_creators=TRUE;

  –创建函数

  create function _nextval(n varchar(50)) returns integer

  begin

  declare _cur int;

  set _cur=(select current_value from biz_tb_sequence where name= n);

  update biz_tb_sequence

  set current_value = _cur + _increment

  where name=n ;  郑州看胎记哪个医院好 http://m.zykdbh.com/

  return _cur;

  end;

  123456789

  –测试

  select _nextval(‘user_id‘);

  参考:

  https://blog.csdn.net/zhezhebie/article/details/81453394

  https://www.cnblogs.com/husam/p/5333568.html

以上是关于mysql穿件序列的方式的主要内容,如果未能解决你的问题,请参考以下文章

SQL 使用序列

mysql数据库查询序列

Oracle实现自增方式:序列+触发器

TF2 Keras (1): 用序列(Sequence )创建模型

MySQL实现类似Oracle序列的方案

开心档之MySQL 序列使用