The DELETE statement is used to remove rows from a table.
DELETE
DELETE FROM Users WHERE first_name = 'John' AND last_name = 'Doe';
This query deletes the user with the first name "John" and last name "Doe" from the "Users" table.