Learning Fuze - rc0821 > sql-update > Flashcards
How do you update rows in a database-table?
update “products”set “price” = 100where “productId” = 24;
Why is it so important to include a where clause in your update statements?
So that it only targets specific rows