顯示表結(jié)構(gòu):
復(fù)制代碼 代碼如下:
sqlite> .schema [table]
獲取所有表和視圖:
復(fù)制代碼 代碼如下:
sqlite > .tables
獲取指定表的索引列表:
復(fù)制代碼 代碼如下:
sqlite > .indices [table ]
導(dǎo)出數(shù)據(jù)庫到 SQL 文件:
復(fù)制代碼 代碼如下:
sqlite > .output [filename ]
sqlite > .dump
sqlite > .output stdout
從 SQL 文件導(dǎo)入數(shù)據(jù)庫:
復(fù)制代碼 代碼如下:
sqlite > .read [filename ]
格式化輸出數(shù)據(jù)到 CSV 格式:
復(fù)制代碼 代碼如下:
sqlite >.output [filename.csv ]
sqlite >.separator ,
sqlite > select * from test;
sqlite >.output stdout
從 CSV 文件導(dǎo)入數(shù)據(jù)到表中:
復(fù)制代碼 代碼如下:
sqlite >create table newtable ( id integer primary key, value text );
sqlite >.import [filename.csv ] newtable
備份數(shù)據(jù)庫:
復(fù)制代碼 代碼如下:
/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql
恢復(fù)數(shù)據(jù)庫:
復(fù)制代碼 代碼如下:
/* usage: sqlite3 [database ] [filename ] */
sqlite3 mytable.db backup.sql
您可能感興趣的文章:- SQLite數(shù)據(jù)庫管理相關(guān)命令的使用介紹
- Linux sqlite3 基本命令
- SQLite 入門教程一 基本控制臺(終端)命令
- SQLite3 命令行操作指南
- ubuntu下使用SQLite3的基本命令
- SQLite教程(八):命令行工具介紹