sqlite3常用命令

2021-07-15 19:40:27 字數 421 閱讀 7870

(加入path環境變數是為了直接在命令列使用sqlite3,不加的話需要詳細的指定sqlite3的路徑,如d:/sqlite/sqlite3)。

sqlite3 不支援儲存過程!

開啟資料庫:

sqlite3 localdata/861365_data/all.db

檢視幫助:

.help

退出:.exit

檢視**:

.table

連庫:attach 'c:\users\huangzhiqiang03\desktop\wl_test\1.ttfa' as 'ttttttffffff'

detach ttttttffffff;

使用attach的表,加上字首就好,比如select * from ttttttffff.tablename

參看:常用語法:

sqlite3常用命令使用

檢視資料庫檔案資訊命令 注意命令前帶字元 sqlite database sql的指令格式 所有sql指令都是以分號 結尾,兩個減號 則表示注釋。如 sqlite create studen table stu no interger primary key,name text not null,i...

android中sqlite3常用命令

1 開啟資料庫 在adb shell模式下執行命令sqlite3 資料庫名稱,例如開啟email中的emailprovider.db資料庫 2 sqlite3特殊命令 大多數候,sqlite3讀入輸入行,並把它們傳遞到sqlite資料庫中去執行。但是如果輸入行以乙個點 開始,那麼這行將被sqlite...

sqlite3 運算元據庫常用命令

sqlite3一款主要用於嵌入式的輕量級資料庫,今天我學習了它的相關知識 1 安裝sqlite3 ubuntu下安裝sqlite3 直接在終端執行命令 apt get install sqlite3 檢視版本資訊 sqlite3 version 2 sqlite3常用命令 當前目錄下建立或開啟tes...