sqlite 經常使用命令

一、從官網下載SQLite(http://www.sqlite.org/download.html)安裝後(Mac自帶SQLite,也可直接運行下面的命令),打開終端更改目錄到sqlite3文件所在的目錄,輸入以下命令即可以建立一個數據庫,若是該數據庫已存在將打開:html

?git

1sql

sqlite3 test.db數據庫

(若是顯示如下信息,則說明SQLite已成功安裝:)

?字體

1 2 3 4 5ui

MacBook-Pro-MD313:SQL mac$ sqlite3 test.db SQLite version 3.7.12 2012-04-03 19:43:07 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite>code

而後建立一個表:

?sqlite

1htm

sqlite> create table mytable(id integer primary key, value text);對象

通常數據採用的固定的靜態數據類型,而SQLite採用的是動態數據類型,會根據存入值自動判斷。SQLite具備如下五種數據類型:

1.NULL:空值。
2.INTEGER:帶符號的整型,具體取決有存入數字的範圍大小。
3.REAL:浮點數字,存儲爲8-byte IEEE浮點數。
4.TEXT:字符串文本。
5.BLOB:二進制對象。


但實際上,sqlite3也接受以下的數據類型:
 smallint 16 位元的整數。
 interger 32 位元的整數。
 decimal(p,s) p 精確值和 s 大小的十進位整數,精確值p是指所有有幾個數(digits)大小值,s是指小數點後有幾位數。  若是沒有特別指定,則系統會設爲 p=5; s=0 。
 float  32位元的實數。
 double  64位元的實數。
 char(n)  n 長度的字串,n不能超過 254。
 varchar(n) 長度不固定且其最大長度爲 n 的字串,n不能超過 4000。
 graphic(n) 和 char(n) 同樣,不過其單位是兩個字元 double-bytes, n不能超過127。這個形態是爲了支援兩個字元長度的字體,例如中文字。
 vargraphic(n) 可變長度且其最大長度爲 n 的雙字元字串,n不能超過 2000
 date  包含了 年份、月份、日期。
 time  包含了 小時、分鐘、秒。
 timestamp 包含了 年、月、日、時、分、秒、千分之一秒。

datetime 包含日期時間格式,必須寫成'2010-08-05'不能寫爲'2010-8-5',不然在讀取時會產生錯誤!



插入數據:

?

1

sqlite> insert into mytable(id, value) values(1, 'Jacedy');

查詢數據:

?

1

sqlite> select * from mytable;

建立視圖:

?

1

sqlite> create view nameview as select * from mytable;

建立索引:

?

1

sqlite> create index testIdx on mytable(value);

二、一些經常使用的SQLite命令

顯示錶結構:

?

1

sqlite> .schema [table]

獲取全部表和視圖:

?

1

sqlite > .tables

獲取指定表的索引列表:

?

1

sqlite > .indices [table ]

導出數據到SQL文件:

?

1 2 3

sqlite > .output [filename ]
sqlite > .dump
sqlite > .output stdout

從SQL文件導入數據庫:

?

1

sqlite > .read [filename ]

格式化輸出數據到CSV格式:

?

1 2 3 4

sqlite >.output [filename.csv ]
sqlite >.separator ,
sqlite > select * from test;
sqlite >.output stdout

從CSV文件導入數據到表中:

?

1 2

sqlite >create table newtable ( id integer primary key, value text );
sqlite >.import [filename.csv ] newtable

備份數據庫:

?

1 2

/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql

恢復數據庫:

?

1 2

/* usage: sqlite3 [database ] < [filename ] */
sqlite3 mytable.db < backup.sql

列出(當前數據庫文件中)附加的全部數據庫的名字和文件 :

?

1

.databases

退出程序:

?

1 2

.quit //.exit

顯示幫助:

?

1

.help

顯示當前的設置:

?

1

.show

列出全部表名:

?

1

.tables

相關文章
相關標籤/搜索