需求:
将下表中的yxdm字段里非空的数据前加上90
具体sqlserver语句写法
update tableNameset yxdm = CONCAT('90',yxdm) where yxdm is not null
CONCAT()
CONCAT()
函数用于将两个字符串拼接起来
参考:https://blog.csdn.net/qq_23126581/article/details/81134491
2024-03-02 23:16:58
将下表中的yxdm字段里非空的数据前加上90
update tableNameset yxdm = CONCAT('90',yxdm) where yxdm is not null
CONCAT()
函数用于将两个字符串拼接起来
参考:https://blog.csdn.net/qq_23126581/article/details/81134491