ALTER TABLE的SQLite SQLite支持ALTER TABLE的一个有限子集。
在ALTER SQLite中允许一个表或一个新列添加到现有表。删除列,或者添加或从表中删除约束。
sqlite中是不支持删除有值的列 *** 作的,所以alter table table_name drop column col_name这个语句在sqlite中是无效的,而替代的方法可以如下:
1根据原表创建一张新表
2删除原表
3将新表重名为旧表的名称
示例例子如下
1创建一张旧表Student,包含id(主码),name, tel
create table student (
id integer primary key,
name text,
tel text
)
2给旧表插入两个值
insert into student(id,name,tel) values(101,"Jack","110")
insert into student(id,name,tel) values(102,"Rose","119")
3接下来我们删除电话这个列,首先根据student表创建一张新表teacher
create table teacher as select id,name from student
4然后我们删除student这个表
drop table if exists student
5将teacher这个表重命名为student
alter table teacher rename to student
结果演示:
select from student order by name desc(desc降序, asc升序)
以上就是关于android数据库怎么删除列全部的内容,包括:android数据库怎么删除列、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)