需求:
将下表中的yxdm字段里非空的数据前加上90


具体sqlserver语句写法
update tableNameset set yxdm = CONCAT('90',yxdm) where yxdm is not null
CONCAT()
CONCAT()函数用于将两个字符串拼接起来
参考:https://blog.youkuaiyun.com/qq_23126581/article/details/81134491
本文介绍如何使用SQL Server语句将tableNames表中yxdm字段的非空值前缀为90,通过CONCAT函数实现数据操作。
将下表中的yxdm字段里非空的数据前加上90


update tableNameset set yxdm = CONCAT('90',yxdm) where yxdm is not null
CONCAT()函数用于将两个字符串拼接起来
参考:https://blog.youkuaiyun.com/qq_23126581/article/details/81134491
1525
874

被折叠的 条评论
为什么被折叠?