1.

How can we delete the existing records for an SQLite table?

Answer»

The DELETE can be USED in SQLITE to delete the existing RECORDS from a table. We should use the WHERE clause to modify a SPECIFIC row OTHERWISE all rows will be removed.

Example

DELETE FROM table_name



Discussion

No Comment Found