sql-delete Flashcards
1
Q
How do you delete rows from a database table?
A
Keyword delete from
and table name and followed a where
clause!!!! If not, the entire table will be deleted
2
Q
How do you accidentally delete all rows from a table?
A
if you don’t put a where after delete from “table_name”