0

MySQL 5.1.63-cll 版本使用phpmyadmin 编辑

所以我有这张表 ps_layered_price_index 我想编辑/更新列:-

price_min AND
price_max 
(updating the current value+10)

where column(id_product) = ALL
4

1 回答 1

1

如果你想更新你的表的每一行,那么你可以尝试这样的事情:

UPDATE 
 ps_layered_price_index
SET 
 price_min = price_min + 10,
 price_max = price_max + 10

对于单行:

UPDATE 
 ps_layered_price_index
SET 
 price_min = price_min + 10,
 price_max = price_max + 10
WHERE 
 id_product = 87
于 2012-07-10T15:57:29.350 回答