MySQL连贯字符串不能利用加号(+),而利用concat。
比方在aa表的title字段前加字符’x’,利用:
update aa set title=concat(‘x’,title)
update 表明 SET 字段= ‘feifei’ || 字段; (postgreSQL 用 || 来连贯字符串)
要发表评论,您必须先登录。