码迷,mamicode.com
首页 > 数据库 > 详细

mysql按顺序生成一个不重复的id

时间:2018-08-11 11:39:01      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:cat   from   pre   substr   The   substring   开头   字母   when   

非字母和非0开头按顺序生成一个不重复的id
select case when max(id) is null then ‘10000001‘ else max(id)+1 end as id from student;

字母开头按顺序生成一个不重复的id

select case when max(id) is null then ‘S10000001‘ else CONCAT(‘S‘,SUBSTRING(max(id),2)+1) end as id from student;

mysql按顺序生成一个不重复的id

标签:cat   from   pre   substr   The   substring   开头   字母   when   

原文地址:http://blog.51cto.com/1197822/2157676

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!