我想将文本fred
添加到表products_description中的products_head_keywords_tag字段中,但我不想删除该字段中的其余文本。
以下删除了文本并添加了fred,但我只是想在该字段中已有的其他文本之后添加文本fred。
UPDATE products_description SET products_head_keywords_tag = "fred"
请帮忙。
答案 0 :(得分:1)
这在T-SQL中起到了作用:
update products_description SET products_head_keywords_tag = convert(nvarchar(max),products_head_keywords_tag) + 'fred'
我猜mysql会处理它非常相似。
编辑:在MySQL中,concat()是要走的路:
UPDATE products_description SET products_head_keywords_tag = CONCAT(products_head_keywords_tag, 'fred')