我有一张table Products
使用此内容:
| Product title | price | price_sales | new_price |
1 | Product A | 100 | 80 | ??? |
2 | Product B | 100 | 0 | ??? |
3 | Product C | 400 | 200 | ??? |
我必须对所有产品进行更新查询:列 new_price
必须是当前价格10%折扣的栏目。如果没有price\u sales(price\u sales=0),则列 price
是实际价格。
结果必须是:
| Product title | price | price_sales | new_price |
1 | Product A | 100 | 80 | 76 |
2 | Product B | 100 | 0 | 90 |
3 | Product C | 400 | 200 | 180 |
3条答案
按热度按时间2sbarzqh1#
试试这个。
sgtfey8w2#
干得好:
oknwwptz3#
您可以尝试以下操作: