UltraLite Database User's Guide
Dynamic SQL
Dynamic SQL statements
Use this statement to delete rows from the database.
DELETE
[ FROM ] table-name
[ WHERE search-condition ]
The DELETE statement deletes all the rows that satisfy the search condition from the named table. If no WHERE clause is specified, all rows from the named table are deleted.
None.
Remove employee 105 from the database.
DELETE FROM employee WHERE emp_id = 105
Remove all data prior to 2000 from the fin_data table.
DELETE FROM fin_data WHERE year < 2000