What happens if you run DELETE FROM employees without a WHERE clause?

SQL Fundamentals Easy

SQL Fundamentals — Easy

What happens if you run DELETE FROM employees without a WHERE clause?

Key points

  • The lack of a WHERE clause deletes all rows in the table.
  • This action is irreversible and will delete all data.
  • Always be cautious when using the DELETE command without a WHERE clause.

Ready to go further?

Related questions