sqlite基本使用语句

前端之家收集整理的这篇文章主要介绍了sqlite基本使用语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用的是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 退出指令

.database 显示当前打开的数据库文件

.tables 显示数据库中所有的表名

.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

猜你在找的Sqlite相关文章