InterviewSolution
| 1. |
Explain How Can You Delete Or Add Columns From An Existing Table In Sqlite? |
|
Answer» There is a very limited support for alter ( add or delete ) table. In case if you WANT to delete or add columns from an EXISTING table in SQLite you have to first SAVE the existing data to a temporary table, drop the old table or COLUMN, create the NEW table and then copy the data back in from the temporary table. There is a very limited support for alter ( add or delete ) table. In case if you want to delete or add columns from an existing table in SQLite you have to first save the existing data to a temporary table, drop the old table or column, create the new table and then copy the data back in from the temporary table. |
|