1.创建表
create table if not exists 表名(字段名 字段类型, ... primary key(主键))
2.删除表
drop table if exists 表名
3.插入
insert into 表1(字段1) select 字段1 from 表2
4.更新
update 表1 set 字段2 = (select 字段2 from 表2 where 表1.字段1 = 表2.字段1)
5.修改表名
.alter table 旧表名 rename to 新表名
6.新增一列
alter table 表名 add column 字段名 字段类型
7.根据条件删除某个字段
delete from 表名 where
8.查询某个字段
select 字段 from 表名
9.查询符合条件的某些字段
select * from 表名 where
10.插入
insert into 表名(字段1,字段2,字段3) values('值1','值2','值3')
11.更新
update 表名 set 字段1=字段1值,字段2=字段2的值... where 主键 = '主键值'
12. Sqlite查询前10条数据的方法:
select * from table_name limit 0,10
--通常0是可以省略的,直接写成 limit 10。0代表从第0条记录后面开始,也就是从第一条开始
select * from table_name limit 5,10