MySQL adding leading numbers to existing IDs in a column(MySQL将前导数字添加到列中的现有ID)
问题描述
我有一个名为 country_id 的 mysql 数据库列,例如:
I got a mysql database column named country_id, like:
我现在要完成的是为每个 ID 添加前导零,因此结果将是:
What I'm trying to accomplish now is to add leading zero's to each ID, so the result would be:
每个 ID 最多应包含 4 位数字.就是这样.
Each ID should have max 4 digits. That's it.
我可以在 PHPmyAdmin 中使用任何 SQL 语句以上述方式更新这个 country_id 列吗?
Is there any SQL statement I could use in PHPmyAdmin to update this country_id column in the way described above?
最好的问候!
推荐答案
在列上声明ZEROFILL
:
这篇关于MySQL将前导数字添加到列中的现有ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!