sqlite3

Posted 浪味小仙女

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlite3相关的知识,希望对你有一定的参考价值。

 1.终端操作

技术分享

 

创建表

create table if not exists Student (id integer primary key autoincrement,name varchar[20] not null,address varchar[100],image blob);

查看自己的创建语句

技术分享

插入数据

insert into Student(name,address) values("huoran","ruanjianyuan");

查找

技术分享

 

select * from Student where id = 2;

select name from Student where id = 2;

更新

update Student set address = "nanjing" where name = "baoyun";

删除

delete from Student where id = 1;

删除表

drop table Student;

2.代码操作

 

以上是关于sqlite3的主要内容,如果未能解决你的问题,请参考以下文章