alter table drop column syntax error using sqlite

北战南征 提交于 2019-12-03 05:21:49

SQLite does not fully support ALTER TABLE statements. You can only rename table, or add columns.

If you want to drop a column, your best option is to create a new table without the column, and to drop the old table in order to rename the new one.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!