我想要更改我的所有产品,在页面标题的末尾加上“store.commoto.com”。我怎么能这样做MySQL?我会用什么语法来做这个?
我试过这个并没有用:
UPDATE product_table WHERE page_title = "" SET page_title = "store.commoto"
答案 0 :(得分:1)
使用字符串连接函数(http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_concat)
update product set page_title = concat(pageTitle, 'store.commoto.com');
答案 1 :(得分:0)
我认为:
Update ProductsTableNameHere SET Title = concat(Title, ' store.commoto.com')
答案 2 :(得分:0)
使用
update tablename set title = concat(title,"your text");