一组行的AUTO_INCREMENT列?

2022-08-23 00:00:00 mysql auto-increment

我正在尝试如何制作一个有3列的表:

unique_id, type, version

其中UNIQUE_ID是每条记录的AUTO_INCREMENT,版本是每种类型的AUTO_INCREMENT。

目的是,当我插入时,我只需指定‘type’,系统会自动生成唯一标识和版本标识。例如:

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

还可以说这样的设置没有真正正常化吗?而应该是两张表?


解决方案

不能为每种类型自动生成序列,但可以生成您自己的序列。

insert into the_table (type, version)
select 'a', 1 + IFNULL(max(version), 0)
  from the_table
  where type = 'a';

相关文章