将下表中的yxdm字段里非空的数据前加上90
update tableNameset yxdm = CONCAT('90',yxdm) where yxdm is not null
CONCAT()函数用于将两个字符串拼接起来 参考:https://blog.csdn.net/qq_23126581/article/details/81134491
CONCAT()