SQL 更新 - 将字符串添加到一个属性
我的mysql表是: 产品(名称,价格,metaDescription)
我想编写一个SQL UPDATE来设置我的metaDescription名称+'仅适用于'+metaDescription
我尝试了这个,但它不起作用
UPDATE
product
SET
metaDescription=name+' is just for'+price;
My mysql table is : Product (name,price,metaDescription)
I want to write an SQL UPDATE to Set my metaDescription name+' is only just for'+metaDescription
I tried this but it didn't work
UPDATE
product
SET
metaDescription=name+' is just for'+price;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
concat
函数:MySQL 应该自动为您将
price
转换为字符串类型。当您使用
+
时,MySQL 会尝试将您的字符串转换为数字(并且默默地失败):You should use the
concat
function:MySQL should automatically convert
price
to a string type for you.MySQL is trying to convert your strings to numbers (and silently failing) when you use
+
: