I have a product table. If i want to increase the prices of the items by say $10. what's the syntax for that? How do I get the current value of the field in the current row.
Better explained:
UPDATE table SET price = price + 10?
Thanks,
Dan
Better explained:
UPDATE table SET price = price + 10?
Thanks,
Dan
Comment