2

我想在 phpmyadmin 中的单元格末尾添加文本,它只是将文本添加到该单元格中的末尾,并保持原样。

我试过这个但不起作用:

update items set description = contact(description, " - text to add") where parent_id ='2907'

所以单元格应该是

something here

成为:

something here - text to add
4

1 回答 1

3

您的 SQL 语句中有错字。该函数被调用CONCAT,而不是联系

试试这个说法。如果它不起作用,请将错误消息添加到您的问题中。

update items
  set description = concat(description, " - text to add")
  where parent_id ='2907'
于 2012-11-02T11:11:08.120 回答