我如何在 mysql 5.5 中执行此操作?正在考虑 concat 但我认为有一些更简单的东西。
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
谢谢
我如何在 mysql 5.5 中执行此操作?正在考虑 concat 但我认为有一些更简单的东西。
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
谢谢
这可以满足您的需要:
update posts
set content=CONCAT('here is content ', CAST(id as CHARACTER))
这是SQLFiddle 上的测试链接。
我猜:
update comment set comment=concat('here is a comment: ', id,' these are other things');