0 votes
in SQLite by
How can you delete the existing records from a table in SQLite?

1 Answer

0 votes
by

In SQLite, DELETE command is used to delete the existing records from a table. You should use the WHERE clause to choose the specific row otherwise all rows will be deleted.

Syntax:

DELETE FROM table_name    

WHERE [conditions....................];  

...