delete

SQL DELETE Statement

SQL DELETE Statement

The DELETE statement is used to remove rows from a table.

Basic DELETE Query

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.