日期:2014-05-16 浏览次数:20440 次
1、mysql向表中某字段后追加一段字符串:
?? ??update table_name set field=CONCAT(field,'',str)
2、mysql 向表中某字段前加字符串
?? ??update table_name set field=CONCAT('str',field)
?
?
?
在使用时,对于使用CONCAT方式,如果原字段field为null,那么无效,如mysql帮助文档所说
?
为了能够通用,最后改为
?
1、mysql向表中某字段后追加一段字符串:
?? ??update table_name set field=CONCAT_WS('', field,str)
?
??
?
?