我使用的是sqlite3,所以就拿sqlite3为例,语法基本上都差不多。
在linux的打开方式:sqlite3 xxx.db
在界面中会显示:
sqlite version 3.8.4.32014-04-03 16:53:12
Enter ".help" for usage hints.
sqlite>
sqlITE常用的指令:
.help 显示所有命令
.quit 退出指令
.schema 查看表的结构
sqlITE常用的指令介绍(注意的是在每条指令结束以分号结尾):
创建一个新表
create table table_name( 数据名 数据类型,数据名 数据类型,…);
删除表
drop table table_name;
查询表中所有记录
select * from table_name;
按指定条件查询表中的记录
select * from table_name where(选择的条件);
向表中添加新记录
insert into table_name values(values1,values2,…);
按指定条件删除表中的记录
delete from table_name where(选择的条件);
原文链接:https://www.f2er.com/sqlite/199825.html