sqlite中的增删改查

sql语句关键字不区分大小写,数据中字符串需要用""或''括起来。

* 创建数据表,create table 表名 (列名 列数据类型,...)

create TABLE info (id integer primary key autoincrement, name varchar(20), pwd varchar(20))

* 增 insert into 表名 (要插入的列名,...) values (相应列的值,...)

insert into info (name,pwd) values ("lisi",'1234')

* 改 update 表名 set 要修改列=要修改的值,... where 修改的条件

update info set name='zhangfei', pwd="12344321" where id=1

* 删 delete from 表名 where 删除条件

delete from info where id=1 or pwd='1234'

delete from info

* 查 select 要查出列名,... from 表名 where 查询条件

--select * from info

--select name from info

select pwd,name from info where id=1

你可能感兴趣的:(sqlite中的增删改查)