Yes, the DELETE statement can remove all rows from a table if you omit the WHERE clause. For example:
DELETE FROM employees;
This command will delete every row in the employees table, effectively emptying it. However, be very careful when executing such a statement, as it will permanently remove all data from the table.
