如何在SQLITE中删除或添加列?

前端之家收集整理的这篇文章主要介绍了如何在SQLITE中删除或添加列?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在sqlite数据库删除添加

我使用以下查询删除列。

ALTER TABLE TABLENAME DROP COLUMN DIST_TYPE

但它给出错误

System.Data.sqlite.sqliteException: sqlite error
near "DROP": Syntax error
ALTER TABLE SQLite

sqlite supports a limited subset of ALTER TABLE. The ALTER TABLE command in sqlite allows the user to rename a table or to add a new column to an existing table. It is not possible to rename a column,remove a column,or add or remove constraints from a table.

您可以:

>创建新表作为您尝试更改的表,>复制所有数据,> drop旧表,>重命名新的。

原文链接:https://www.f2er.com/sqlite/198441.html

猜你在找的Sqlite相关文章