SQLite DELETE statement

The SQLite DELETE statement removes rows from a table. The syntax is as follows:

DELETE FROM tablename
WHERE condition;

This deletes all rows that satisfy the specified condition.