Will this SQL code work if I change the 1.35 to 0.95 to decrease price by 5%?
UPDATE products SET products_price = products_price * 1.35;
Will this SQL code work if I change the 1.35 to 0.95 to decrease price by 5%?
UPDATE products SET products_price = products_price * 1.35;