Updating multiple values in MySQL
You need to put a comma between the two different values, for example:
UPDATE orders
SET listPrice = 0,
bloggerPrice = 0.00,
customerPrice = 0.00
WHERE orders.id =245745
Try:
UPDATE orders
SET listprice=0, bloggerPrice=0.00, customerPrice=0.00
WHERE id=245745
You're missing a comma:
UPDATE orders SET
listPrice = 0,
bloggerPrice = 0.00,
customerPrice = 0.00
WHERE
orders.id = 245745