sql-update-Q&A Flashcards
1
Q
How do you update rows in a database table?
A
update “table”
set “column” = number
where “row” = number;
2
Q
Why is it important to include a where clause in your update statements?
A
It changes the entire column you selected if not specified