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....................];  

Related questions

+1 vote
asked Nov 12, 2021 in SQLite by Robin
+1 vote
asked Sep 27, 2022 in Salesforce by SakshiSharma
...