SQLite指令

一、创建数据库

方式一:

1. sqlite3 进入数据库
2. .open test.db
3. .quit
数据库退出后在命令当前路径创建数据库 test.db

方式二:

sqlite3 test.db          // 在命令运行当前窗口创建数据库 test.db
在数据库命令下
.databases     // 列出当前打开的数据库
.quit 退出

二、基本操作

1、创建一张表   

create table stu(id Integer,name char,score Integer);
//创建一张名为学生的表,属性有id,name,score

2、插入一条记录

insert into stu values(1,'wang',99);//单引号
insert into stu values(2,"li",100); //双引号
insert into stu(name,score) values("du",98); // 插入部分字段内容

3、查看数据库的记录

select * from stu; // 查询所有字段的结果
select name,score from stu; // 查询数据库中部分字段的内容

4、删除一条记录

delete from stu where id = 2;  //将id为2的这条记录删除

5、更改一条记录

update stu set name = 'zhang' where id = 1; //将id为1的姓名更改为“zhang”

6、删除一张表

drop table stu; //删除stu这张表

7、增加一列

alter table stu add column sex char;  //在stu这张表中增加名为sex的一列

8、查询当前数据库有多少张表

.tables

 

你可能感兴趣的:(SQLite,sqlite,数据库)