How do you delete rows from a database table?
use the delete statement.
delete from “table name”
where “column name” = value
returning * (to show the deleted rows, optional)
How do you accidentally delete all rows from a table?
if you didn’t include a where clause.