mysql下sql语句 update 字段=字段+字符串
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql下sql语句 update 字段=字段+字符串相关的知识,希望对你有一定的参考价值。
原文:mysql下sql语句 update 字段=字段+字符串mysql下sql语句令某字段值等于原值加上一个字符串
update 表明 SET 字段= ‘feifei‘ || 字段; (postgreSQL 用 || 来连贯字符串)
MySQL连贯字符串不能利用加号(+),而利用concat。
比方在aa表的name字段前加字符‘x‘,利用:
update aa set name=concat(‘x‘,name)
以上是关于mysql下sql语句 update 字段=字段+字符串的主要内容,如果未能解决你的问题,请参考以下文章