Yes, it is possible to delete multiple rows at once using the DELETE statement by using a more complex WHERE clause. For example, if you want to delete all employees in a specific department, you can use the following SQL statement:
DELETE FROM employees WHERE department = 'Marketing';
This command will delete all rows from the employees table where the department column is equal to 'Marketing'. Just be cautious when using the DELETE statement to ensure you are deleting the intended rows.
