sqlite 學習筆記(一)

2022-04-30 14:27:14 字數 672 閱讀 1938

所有的例子都是再ubuntu環境下,測試。

1、使用命令 sqlite3  test.db 進入sqlite3 模式。

2、.headers on 查詢時顯示欄位名,經常與 .mode column合用 用於改善顯示格式。

3、create table test (id integer primary key , value text); 建立表 test ,注意凡是 sql語句 需要以『;』結束。

4、.table 命令顯示 當前資料庫中的所有表。

5、.schema [table name] 可以得到 表或檢視的定義(ddl)語句。

6、.indices table_name 顯示乙個表的索引。

7、.dump 匯出資料,如果需要匯出到檔案系統,可以使用 .output [filename.sql  | stdout]指定輸出流,前者輸出到檔案系統,後者輸出到螢幕。預設輸出到螢幕。

8、.show 可以用來檢視當前的狀態(headers ,mode ,output ,separtator etc.)

9、使用 .read 或者 import 可以匯入 file.sql 生成資料庫 ;或者使用 sqlite3 *.db < filename.sql 同樣可以生成 db 檔案(不會進入sqlite模式)。

10、命令.prompt 'sqlite3> ' 可以改變提示符。

SQLite學習筆記(一)

sqlite學習筆記 一 今天學習過程中發現資料庫並沒有想象中那麼容易,於是決定一些筆記來鞏固一下知識 介紹一些簡單sql語句,同時也是最為重要的基礎 sql structured query language 結構化查詢語言 該語言雖不區分大小寫,但是在閱讀方便上操作與變數區分開比較好 我拿乙個名...

SQLite學習筆記之一

2010年sqlite學習筆記之一 官方站點 從 的download頁面獲取 download.html sqlite amalgamation 3 6 22.zip是sqlite的windows下原始碼檔案 sqlite 3 6 22.zip sqlitedll 3 6 22.zip 在sqlit...

SQLite學習筆記

官方站點 從 的download頁面獲取 download.html sqlite amalgamation 3 6 22.zip是sqlite的windows下原始碼檔案 sqlite 3 6 22.zip sqlitedll 3 6 22.zip 在sqlite中,表示式 a between b...