赞
踩
1、下载数据库
sudo apt install sqlite3 sqlite3-doc
2、通过数据库管理工具使用数据库
1.工具操作
进入工具:在命令行输入:
sqlite3
退出工具使用:
.quit
查看帮助:
.help
打开数据库:
.open
查看当前操作的数据库文件:
.database
查看当前数据库文件中的表
.table
.schema
2.操作数据库中的数据
1.创建表
create table user1(id int not null primary key , username text not null,passwd text);
2.往表中添加数据
两种插入方式:
insert into user1 values(1,"张三",'123456');
insert into user1(id,username) values(5,"李白");
3.查询匹配数据
select * from user1;
4.修改表中数据
update user1 set username="李四",passwd='123123' where id=2;
5.删除数据
delete from user1 where id=3;
6.删除表
drop table user1;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。