Learningfuze Bootcamp > sql-delete > Flashcards
How do you delete rows from a database table?
delete statement with a where clausedelete from “products” where “category” = ‘cleaning’ and “price” < 20
How do you accidentally delete all rows from a table?
By omitting the where clause