DELETE FROM
Remove rows from a table
MutationSQL
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.
Remove rows from a table
MutationDELETE FROM users WHERE id = 1;
DELETE FROM removes rows from the table. WHERE specifies which rows to delete—without it, all rows would be removed.