mysql實(shí)現(xiàn)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基礎(chǔ)函數(shù)
DELIMITER $$
CREATE DEFINER=`root`@`%` FUNCTION `_nextval`(name varchar(50)) RETURNS int(11)
begin
declare _cur int;
declare _maxvalue int; -- 接收最大值
declare _increment int; -- 接收增長步數(shù)
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 -- 更新當(dāng)前值
set current_value = _cur + increment_value
where seq_name = name ;
if(_cur + _increment >= _maxvalue) then -- 判斷是都達(dá)到最大值
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');
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
您可能感興趣的文章:- MySQL關(guān)于sql_mode解析與設(shè)置講解
- MySQL組合索引與最左匹配原則詳解
- MySQL中可為空的字段設(shè)置為NULL還是NOT NULL
- MySQL中字段類型char、varchar和text的區(qū)別
- MySQL數(shù)據(jù)庫遷移快速導(dǎo)出導(dǎo)入大量數(shù)據(jù)
- shell腳本操作mysql數(shù)據(jù)庫刪除重復(fù)的數(shù)據(jù)
- MySQL數(shù)據(jù)庫列的增刪改實(shí)現(xiàn)方法
- MySQL實(shí)現(xiàn)類似Oracle序列的方案
- Can''t connect to local MySQL through socket ''/tmp/mysql.sock''解決方法
- mysql事務(wù)select for update及數(shù)據(jù)的一致性處理講解