LFZ Web Dev 08/22 Senior Side > sql-delete > Flashcards
How do you delete rows from a database table?
DELETE FROM “tableName”WHERE “thisColumn” = ‘hasThisValue’RETURNING *;
How do you accidentally delete all rows from a table?
by not using the WHERE clause