InterviewSolution
Saved Bookmarks
| 1. |
How to delete or add columns from an existing SQLite table? |
|
Answer» The USER has first to save the existing data to a TEMPORARY table. Then, then drop the old COLUMN or table, create a new table and COPY the data back that put in the temporary table. The support for the altar table is minimal. |
|