Instruction
Right! You can also modify values for multiple columns in one go.
When you want to modify the name and age of the user with ID 1, use the command:
UPDATE user SET name = 'Elizabeth', age = 17 WHERE id = 1;
This command sets the name to Elizabeth and the age to 17 for the user with ID 1.
Exercise
Spring Rolls now sell like crazy, and nobody's interested in Prawn Salad (ID 1) anymore. We need to change its name to something more exotic—let's try Green Sea Dragon.
Apart from that, set the price at 10 to encourage customers to try the dish.
Stuck? Here's a hint!
Update both name and price.



