程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Sqlite數據庫 >> 關於Sqlite >> 一些很有用的SQLite命令總結

一些很有用的SQLite命令總結

編輯:關於Sqlite

顯示表結構:
復制代碼 代碼如下:
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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved