本文介紹了一組行的AUTO_INCREMENT列?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我正在嘗試如何制作一個有3列的表:
unique_id, type, version
其中UNIQUE_ID是每條記錄的AUTO_INCREMENT,版本是每種類型的AUTO_INCREMENT。
目的是,當(dāng)我插入時,我只需指定‘type’,系統(tǒng)會自動生成唯一標識和版本標識。例如:
insert type 'a', then values are: 1 , a , 1
insert type 'a', then values are: 2 , a , 2
insert type 'a', then values are: 3 , a , 3
insert type 'b', then values are: 4 , b , 1
insert type 'b', then values are: 5 , b , 2
insert type 'a', then values are: 6 , a , 4
還可以說這樣的設(shè)置沒有真正正常化嗎?而應(yīng)該是兩張表?
推薦答案
不能為每種類型自動生成序列,但可以生成您自己的序列。
insert into the_table (type, version)
select 'a', 1 + IFNULL(max(version), 0)
from the_table
where type = 'a';
這篇關(guān)于一組行的AUTO_INCREMENT列?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,