gpt4 book ai didi

mysql - 产品价格提高10%

转载 作者:行者123 更新时间:2023-11-29 07:50:55 24 4
gpt4 key购买 nike

我在将 HP 产品的价格提高 10% 时遇到问题。

这是我尝试过的 -->>

UPDATE products SET price = price*1.1;
from products
where prod_name like 'HP%'

这是产品表的图片:

enter image description here

最佳答案

这是您的查询:

UPDATE products SET price = price*1.1;
from products
where prod_name like 'HP%'

第二行的分号有一个问题。而且,它不是标准 SQL(尽管这在某些数据库中可以工作)。表达这一点的标准方式是:

update products
set price = price * 1.1
where prod_name like 'HP%';

在这种情况下,from 子句不是必需的。

关于mysql - 产品价格提高10%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26445012/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com