MySQL Update Query

February 21st, 2008 Posted in Programming

Reminder to myself what a MySQL update query looks like.

UPDATE products SET
products_length=0, products_width=0, products_height=0
WHERE products_width=’12′;

Post a Comment