数据库通用自增长列

泄露秘密 提交于 2019-11-26 21:49:23
select case a 
       when 0 then 1
       else (select max(uuid) from t_user)+1 end as b from (select count(uuid) as a from t_user)

 

转载于:https://www.cnblogs.com/BrightMoon/p/3581010.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!