This command deletes one or more records from a SQLite database.
(n) is the database number, (table$) is the name of the table and (where$) is the SQLite where clause which selects the records to be deleted.
SqlDelete 1, "People", "FirstName='Zachary' AND LastName = 'Smith'"