mysql實現sequence功能
1.建立sequence記錄表
CREATE TABLE `sys_sequence` (
`seq_name` varchar(50) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL,
`min_value` int(11) NOT NULL,
`max_value` int(11) NOT NULL,
`current_value` int(11) NOT NULL,
`increment_value` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`seq_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2.建立sequence基礎函數
DELIMITER $$
CREATE DEFINER=`root`@`%` FUNCTION `_nextval`(name varchar(50)) RETURNS int(11)
begin
declare _cur int;
declare _maxvalue int; -- 接收最大值
declare _increment int; -- 接收增長步數
set _increment = (select increment_value from sys_sequence where seq_name = name);
set _maxvalue = (select max_value from sys_sequence where seq_name = name);
set _cur = (select current_value from sys_sequence where seq_name = name);
update sys_sequence -- 更新當前值
set current_value = _cur + increment_value
where seq_name = name ;
if(_cur + _increment >= _maxvalue) then -- 判斷是都達到最大值
update sys_sequence
set current_value = min_value
where seq_name = name ;
end if;
return _cur;
end$$
DELIMITER ;
3.插入想要建立的sequence
INSERT INTO `mydb`.`sys_sequence`
(`seq_name`,
`min_value`,
`max_value`,
`current_value`,
`increment_value`)
VALUES
('seq_name1', 1, 99999999, 1, 1);
4.使用sequence
select _nextval('seq_name1');
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內容請查看下面相關鏈接
您可能感興趣的文章:- MySQL關于sql_mode解析與設置講解
- MySQL組合索引與最左匹配原則詳解
- MySQL中可為空的字段設置為NULL還是NOT NULL
- MySQL中字段類型char、varchar和text的區別
- MySQL數據庫遷移快速導出導入大量數據
- shell腳本操作mysql數據庫刪除重復的數據
- MySQL數據庫列的增刪改實現方法
- MySQL實現類似Oracle序列的方案
- Can''t connect to local MySQL through socket ''/tmp/mysql.sock''解決方法
- mysql事務select for update及數據的一致性處理講解