mysql字符串链接与值设置_MySQL
程序员文章站
2024-04-05 23:46:13
...
bitsCN.com
mysql字符串链接与值设置
update `vip_guest` set invite_name =(
case when invite_name is null then NULL
case when invite_name is not null then CONCAT('0',invite_name)
else ""
)
bitsCN.com