本文介绍了如何在mysql中使用字母自动增量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法用mysql中的字母进行自动增量
例如:
如果我的自动ID从00001开始盯着
让我们说:
Is there any way to do Auto increment with letters in mysql
for eg:
If my auto id is staring from 00001
let say:
autoid=0001
if(autoid=9999)
autoid=A0001
聪明的
like wise
if(autoid=A9999)
then
autoid=B0001
等......
有没有简单的方法可以做到这一点?
and so on....
is there any simple way to do this??
推荐答案
这篇关于如何在mysql中使用字母自动增量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!