我想在phpmyadmin的单元格末尾添加文本,它只是将文本添加到该单元格中的任何内容,并保留原样。
我尝试了这个但不起作用:
update items set description = contact(description, " - text to add") where parent_id ='2907'
所以单元格应该代替
something here
是:
something here - text to add
答案 0 :(得分:3)
您的SQL语句中存在拼写错误。该函数称为CONCAT
,而不是 contact 。
试试这句话。如果它不起作用,请在您的问题中添加错误消息。
update items
set description = concat(description, " - text to add")
where parent_id ='2907'