在虚拟机上安装sqlite3:
#apt-get install sqlite3
在命令行下使用数据库
1.创建数据库
#sqlite3 student.db
2.建立表
>create table stu( id varchar(8),name varchar(20),ageinteger );
Ps:在此为student.db数据库创建了表stu,该表有三个字段 id name age。Varchar 字段数据类型. 每一条sqlite语句要以 “;” 结尾
Ps:查看该数据库下有哪些表 >.table
3.向表插入数据
>insert intostu values( ‘1101’,‘test’,25);
4.取出表里的所有记录
>select *from stu;
5.删除表里的某条记录
>delete fromstu where id=1101;
6.退出
>.quit;
Ps:任何一条sql的返回语句分为两种情况,一种是返回表的,一种是不返回表的。
原文链接:https://www.f2er.com/sqlite/201728.html