InterviewSolution
Saved Bookmarks
| 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. ExampleDELETE FROM table_name |
|