sqlite 使用经验

1.不支持drop column
需要先复制表,然后删除原表,修改表名

create table temp as select C1,C2 from AlarmDataTable where 1=1
drop table AlarmDataTable 
alter table temp rename to AlarmDataTable

你可能感兴趣的:(sqlite 使用经验)