Android-sqlite-SQL语句大全
Posted 原创Android 努力学习 专一安卓 持之以恒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android-sqlite-SQL语句大全相关的知识,希望对你有一定的参考价值。
创表语句:
create table student_table(_id integer primary key autoincrement, name text, age integer);
在升级过程中,添加表字段:注意升级过程中新增到表子段要允许为null
alter table student_table add age integer null
增删改查系列之查询:
select _id,name,age from student_table;
select * from student_table;
select * from student_table where _id = 1;
增删改查系列之新增:
insert into student_table(name,age) values(‘刘德利‘,19);
增删改查系列之更新:
update student_table set name=‘德利‘ where _id = 1;
增删改查系列之删除:
delete from student_table where _id = 1;
其他语句:
// 判断不存在才执行
IF NOT EXISTS if not exists
以上是关于Android-sqlite-SQL语句大全的主要内容,如果未能解决你的问题,请参考以下文章