显示表结构:
复制代码 代码如下:
sqlite> .schema [table]
获取所有表和视图:
复制代码 代码如下:
sqlite > .tables
获取指定表的索引列表:
复制代码 代码如下:
sqlite > .indices [table ]
导出数据库到 SQL 文件:
复制代码 代码如下:
sqlite > .output [filename ]
sqlite > .dump
sqlite > .output stdout
从 SQL 文件导入数据库:
复制代码 代码如下:
sqlite > .read [filename ]
格式化输出数据到 CSV 格式:
复制代码 代码如下:
sqlite >.output [filename.csv ]
sqlite >.separator ,
sqlite > select * from test;
sqlite >.output stdout
从 CSV 文件导入数据到表中:
复制代码 代码如下:
sqlite >create table newtable ( id integer primary key, value text );
sqlite >.import [filename.csv ] newtable
备份数据库:
复制代码 代码如下:
/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql
恢复数据库:
复制代码 代码如下:
/* usage: sqlite3 [database ] [filename ] */
sqlite3 mytable.db backup.sql
您可能感兴趣的文章:- SQLite数据库管理相关命令的使用介绍
- Linux sqlite3 基本命令
- SQLite 入门教程一 基本控制台(终端)命令
- SQLite3 命令行操作指南
- ubuntu下使用SQLite3的基本命令
- SQLite教程(八):命令行工具介绍