DELETE FROM

Remove rows from a table

Mutation

SQL

DELETE FROM users WHERE id = 1;

What each clause does

DELETE FROM removes rows from the table. WHERE specifies which rows to delete—without it, all rows would be removed.

Related tools

Other SQL examples