如何在 MySQL 中更新具有不同值的多行?
我有一个带有“A”列的表。 有些行的“A”列有 14 位数字,有些行只有 12 位。我需要将所有条目转换为 14 位数字。数据类型是 varchar
我想一次更新所有行(一个查询),在第一个数字之前添加零,因此像 012345678910 这样的条目将变成 00012345678910。
是否可以在一个查询中完成此操作? 谢谢
I have a table with a column 'A'.
Some rows have 14 digits for the column 'A' and some have only 12. I need to transform all the entries to 14 digits. The datatype is varchar
I would like to update all the rows at once (one query), adding zeros before the first digit, so an entry like 012345678910 would become 00012345678910.
Is it possible to do it in one single query?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该做你想要的:
This should do what you want:
只需更新长度为 12 的所有行,并在前面添加“00”
just update all rows which length is 12, and prepend '00'