mysql 里沒有這個東西!
我們提供的服務(wù)有:成都網(wǎng)站制作、成都做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、灌云ssl等。為成百上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的灌云網(wǎng)站制作公司
好像你在建表的時候可以這么寫!
create table test(id int not null primary key auto_increment);
主要是auto_increment
MySQL實(shí)現(xiàn)類似Oracle的序列
Oracle一般使用序列(Sequence)來處理主鍵字段,而MySQL則提供了自增長(increment)來實(shí)現(xiàn)類似的目的;
但在實(shí)際使用過程中發(fā)現(xiàn),MySQL的自增長有諸多的弊端:不能控制步長、開始索引、是否循環(huán)等;若需要遷移數(shù)據(jù)庫,則對于主鍵這塊,也是個頭大的問題。
本文記錄了一個模擬Oracle序列的方案,重點(diǎn)是想法,代碼其次。
Oracle序列的使用,無非是使用.nextval和.currval偽列,基本想法是:
1、MySQL中新建表,用于存儲序列名稱和值;
2、創(chuàng)建函數(shù),用于獲取序列表中的值;
具體如下:
表結(jié)構(gòu)為:
drop
table
if
exists
sequence;
create
table
sequence
(
seq_name
VARCHAR(50)
NOT
NULL,
--
序列名稱
current_val
INT
NOT
NULL,
--當(dāng)前值
increment_val
INT
NOT
NULL
DEFAULT
1,
--步長(跨度)
PRIMARY
KEY
(seq_name)
);
實(shí)現(xiàn)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;
函數(shù)使用為:select
currval('MovieSeq');
實(shí)現(xiàn)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;
函數(shù)使用為:select
nextval('MovieSeq');
增加設(shè)置值的函數(shù)
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);
同理,可以增加對步長操作的函數(shù),在此不再敘述。
注意語法,數(shù)據(jù)庫字段要對應(yīng)上
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
$$
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
您可能感興趣的文章:mysql實(shí)現(xiàn)sequence功能的代碼Can''t
connect
to
local
MySQL
through
socket
''/tmp/mysql.sock''解決方法Mysql常用函數(shù)大全(分類匯總講解)利用MySQL主從配置實(shí)現(xiàn)讀寫分離減輕數(shù)據(jù)庫壓力mysql+spring+mybatis實(shí)現(xiàn)數(shù)據(jù)庫讀寫分離的代碼配置Golang中如何對MySQL進(jìn)行操作詳解將圖片儲存在MySQL數(shù)據(jù)庫中的幾種方法MySQL存儲文本和圖片的方法Ubuntu上mysql的安裝及使用(通用版)nodejs同步調(diào)用獲取mysql數(shù)據(jù)時遇到的大坑
不清楚你問的是什么。
唯一可以用主鍵 PRIMARY KEY ,
主鍵如何設(shè)置加上 Primary key或者結(jié)束定義的地方加上 Create Table tablename(................,Primary key(columnname))
或者用唯一約束unique關(guān)鍵字
序列可以用自增字段Auto_Increment
只能再查詢自增ID即可
具體操作:MYSQL獲取自增ID的四種方法
select max(id) from tablename
SELECT LAST_INSERT_ID() 函數(shù)
LAST_INSERT_ID 是與table無關(guān)的,如果向表a插入數(shù)據(jù)后,再向表b插入數(shù)據(jù),LAST_INSERT_ID會改變。
mysql下序列是用關(guān)鍵字auto_crement,起始值及步長增長值由系統(tǒng)以下參數(shù)確定:
mysql show variables like '%auto_increment%';
+--------------------------+-------+
| Variable_name | Value |
+--------------------------+-------+
| auto_increment_increment | 1 |
| auto_increment_offset | 1 |
+--------------------------+-------+
2 rows in set (0.00 sec)
mysql
其中auto_increment_offset表示起始值(且必須由1開始),參數(shù)表示auto_increment_increment表示步長增長值(只能是正整數(shù))。
建表示例:
create table t111
(id int auto_increment primary key,
remark varchar(50)
);
由上面所說可知,你的需求在mysql下單用auto_crement是實(shí)現(xiàn)不了的。建議你考慮別的辦法吧,或由一些變通的方式實(shí)現(xiàn)。
使用函數(shù)創(chuàng)建自增序列管理表(批量使用自增表,設(shè)置初始值,自增幅度)