sql-update Flashcards
1
Q
How do you update rows in a database table?
A
“UPDATE” statement:
UPDATE table_name
SET column1 = value1, column2 = value2, …
WHERE some_column = some_value;
2
Q
Why is it important to include a where clause in your update statements?
A
It is important to include a “WHERE” clause in your update statements because without it, the update statement will modify all rows in the table, which could result in unintended data changes or loss.