1. sqlite3 db.sqlite3 進入名為db.sqlite3的資料庫
2. sqlite> .tables 檢視所有表
3 sqlite> .schema 表名 檢視表結構
4 sqlite> .database 檢視目前掛載的資料庫
5 sqlite> .quit 退出資料庫
6 [root@wzz ~]# sqlite3 test.db 即建立名為test.db的資料庫
7 將查詢結果匯出到文字
sqlite> .output out.txt
sqlite> select * from rango_category
;查詢結果就輸出到了out.txt檔案
sql語句要有;號
sqlite3基本操作
sqlite3對很多通過的sql語句都支援,像select,update,insert,delete等等都支援地很好,只要懂sql語句就可以用sqlite3。1,下面是幾個比較重要的api函式 開啟資料庫,如果不存在則建立乙個 int sqlite3 open const char sqlite3 ...
sqlite3 基本操作
安裝sqlite3 sudo dnf install sqlite3 fedora sudo apt get install sqlite3 ubuntu 1 開啟資料庫,如果沒有則建立 sqlite3 test.db 2 建立 格式,student 中 有 integer型的 id 作為主鍵,不能...
sqlite3基本操作
一 終端操作 1.先進入專案的目錄裡 找到documents路徑 nslog nshomedirectory 終端 cd documents 2.建立資料庫 sqlite3 資料庫名稱 字尾可以隨便加 sqlite3 db student.sql 4.建立表 sql語句 create table i...