1

我如何在 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

谢谢

4

2 回答 2

1

这可以满足您的需要:

update posts
    set content=CONCAT('here is content ', CAST(id as CHARACTER))

这是SQLFiddle 上的测试链接。

于 2012-04-19T00:52:12.553 回答
0

我猜:

update comment set comment=concat('here is a comment: ', id,' these are other things');
于 2012-04-19T00:51:24.553 回答