在更新语句中将sql插入行的id到一个字符串
我如何在mysql 5.5中执行此操作?想着concat,但我觉得有一些更简单。在更新语句中将sql插入行的id到一个字符串
id content 1
2
update posts set content='here is content ' + this.id
使:
id content 1 here is content 1
2 here is content 2
THX
回答:
这确实你需要:
update posts set content=CONCAT('here is content ', CAST(id as CHARACTER))
这是一个link来测试SQLFiddle。
回答:
我想:
update comment set comment=concat('here is a comment: ', id,' these are other things');
以上是 在更新语句中将sql插入行的id到一个字符串 的全部内容, 来源链接: utcz.com/qa/263446.html