创建表:
creat table <table_name>(field type,field type..);
销毁表:
drop <table_name>;
修改表结构:
alter table <table_name> add column <field>;
-------------------------------------------------------------
注意:(来自网络)
alter table tablename rename column oldColumnName to newColumnName;
始终不成功,后面查阅相关信息:
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.
sqlite支持一个更改表内容的有限子集,就是说在sqlite更改表的命令中,只允许用户重命名表名或者增加多一个列到一个的表中。而重命名一个字段名和删除一个字段、或者增加和删除系统规定的参数这些操作是不可能的。
解决办法:
我们可以这样干:
A.将people表重命名为temp;
B.重新创建people表;
C.将temp表中的相应字段内容复制到people表中。
D.删除temp表
操作如下:
A.alter table people rename to temp;
B.create table people(id,name,age);
C.insert into people select id,age from temp;