在一个旧项目中,由于没有考虑设计,我有一个实际上应该设置为auto_increment的列,尽管它不能是因为它是字母数字条目,如下所示:
c01
c02
c03
(c99将继续c100以及更多),这封信过去发生了,需要对系统进行大修才能将其取出,因此我宁愿选择这种解决方法。
现在我需要一种方法来自己模仿SQL语句的auto_increment
功能,我自己的尝试已经达到以下目的:
INSERT INTO tags (tag_id, tag_name, tag_description, added_by_user_id, creation_date, last_edited) VALUES (SELECT(MAX(tag_id)+1),
'Love', 'All about love', 7, now(), 0);
这个不能按原样运行,但想法是选择“tag_id”列中的最高条目,然后只需将值增加1。
任何想法如何实现这一目标?
顺便说一句,我也不确定你是否可以通过这种方式增加一个字母数字条目,虽然我知道它可以完成,但我不知道如何。
答案 0 :(得分:3)
如果您想安全地获取格式c##..
的标记ID的最大整数值,可以使用以下表达式:
max( convert( substring(tag_id, 2) , unsigned integer) )
^^^ largest ^^^^^^^^^ after 'c' ^^^^^^^^^^^^^^^^ convert to positive number
然后你的insert语句看起来像这样:
set @newid = convert(
(select
max(convert( (substring(tag_id, 2)) , unsigned integer))+1
from tags), char(10)
);
set @newid = if(length(@newid) = 1, concat('0', @newid), @newid);
set @newid = concat('c', @newid);
INSERT INTO tags (tag_id, tag_name, tag_description, added_by_user_id,
creation_date, last_edited)
VALUES (@newid, 'Love', 'All about love', 7, now(), '2012-04-15');
答案 1 :(得分:1)
这将从c01增加到c02到c03 ...到c99到c100到c101 ...到c999到c1000等。
set @nextID = (SELECT CONCAT(SUBSTRING(`tag_id`, 1, 1), IF(CHAR_LENGTH(CAST(SUBSTRING(`tag_id`, 2)
AS UNSIGNED)) < 2, LPAD(CAST(CAST(SUBSTRING(`tag_id`, 2) AS UNSIGNED) + 1 AS CHAR), 2,
'0'), CAST(CAST(SUBSTRING(`tag_id`, 2) AS UNSIGNED) + 1 AS CHAR))) FROM `tags` ORDER BY
`tag_id` DESC LIMIT 1);
INSERT INTO tags (tag_id, tag_name, tag_description, added_by_user_id,
creation_date, last_edited) VALUES (@nextID, 'Love', 'All about love', 7, NOW(), null);