如何使用字母和数字自动增加 ID 号

2022-01-05 00:00:00 sql mysql phpmyadmin

如何使用字母和数字自动增加 ID 号码,例如KP-0001"它将增加到KP-0002"

How to Auto Increment ID Numbers with Letters and Numbers, example "KP-0001" it will increment to "KP-0002"

谢谢!

推荐答案

这里有一篇有用的文章

  • 用一串数字和字母自动递增

但基本上,我鼓励您为此创建自己的算法.您可以在 BEFORE INSERT 触发器中添加该算法.或者您可以在前端执行此操作.

But basically I encourage you to create your own algorithm on this. You can add that algorithm in BEFORE INSERT trigger. Or you can do that on the front-end.

算法的伪代码示例

  • 获取最后一个ID [KP-0001]
  • 删除一些字符并将其放入变量[KP-]
  • 把剩下的转换成数字,因为它是一个字符串 [0001]
  • 增加 1 [1 + 1 = 2]
  • 将其转换回字符串并在右侧填充零 [0002]
  • 连接变量和新增加的数字 [KP-0002]
  • 保存.

相关文章