使用 SQLite 命令列介面的例子

Navicat

使用 SQLite 命令列介面的例子

基本的 SQLite 查询语句

sqlite> pragma database_list;
+-----+------+----------------------------------+
| seq | name | file                             |
+-----+------+----------------------------------+
| 0   | main | D:\sqlite-3_6_22\sqlite_table.db |
+-----+------+----------------------------------+
1 row in set

sqlite> select 部门编号, 部门名称, 部门位置编号 from 部门 where 部门编号 = 20;
+----------+----------+--------------+
| 部门编号 | 部门名称 | 部门位置编号 |
+----------+----------+--------------+
| 20       | 市场营销 |         1800 |
+----------+----------+--------------+
1 row in set

sqlite>