Hi All,

So im assuming

UPDATE `zen_products` SET `products_price`=`products_price`+7.50 adds £/$7.50 to all my product range and

UPDATE products SET products_price = products_price * 1.25;

does 25% accross the range

so heres the question, can i do a global decrease as in

UPDATE products SET products_price = products_price -* 1.25;

and

UPDATE `zen_products` SET `products_price`=`products_price`-7.50