SQLite3命令操作大全

2022-01-23 04:18:18 字數 2572 閱讀 8811

1. 資料庫、表的建立,記錄的新增、查詢、修改和刪除

f:\>sqlite3 database.db

sqlite> create table admin(username text,age integer);

sqlite> insert into admin values('kuang',25);

sqlite> select * from admin;

sqlite> update admin set username='kk',age=24 where username='kuang' and age=25;

sqlite> delete from admin where username='kk';

注:每條sql語句後必須以";"號結尾!

2.sqlite系統命令

.bail on|off           stop after hitting an error.  default off

.databases             list names and files of attached databases(檢視目前掛的資料庫)

.dump ?table? ...      dump the database in an sql text format(以sql格式輸出表結構)

.echo on|off           turn command echo on or off

.exit                  exit this program(退出程式)

.explain on|off        turn output mode suitable for explain on or off.

.header(s) on|off      turn display of headers on or off

.help                  show this message(顯示幫助資訊)

.import file table     import data from file into table(把檔案中的資料匯入到表中,各字段用separator的值為分隔符)

.indices table         show names of all indices on table

.load file ?entry?     load an extension library

.mode mode ?table?     set output mode where mode is one of:(輸出格式)

csv      comma-separated values(各字段以逗號為分隔符輸出)

column   left-aligned columns.  (see .width)(以.width設定的寬度顯示各欄位)

html     html code(html**格式輸出)

insert   sql insert statements for table(以insert sql語句形式輸出)

line     one value per line(field = value的形式逐行輸出)

list     values delimited by .separator string(各字段以separator的值為分隔符輸出)

tabs     tab-separated values

tcl      tcl list elements

.nullvalue string      print string in place of null values

.output filename       send output to filename(設定把查詢輸出到檔案,後面的輸出結果都儲存到檔案中)

.output stdout         send output to the screen(設定把查詢結果輸出到螢幕,預設)

.prompt main continue  replace the standard prompts(修改提示符)

.quit                  exit this program(退出)

.read filename         execute sql in filename(執行檔案中的sql語句)

.schema ?table?        show the create statements(以sql格式輸出表結構)

.separator string      change separator used by output mode and .import(修改分隔符)

.show                  show the current values for various settings(顯示配置資訊)

.tables ?pattern?      list names of tables matching a like pattern(看看有建立了多少表)

.timeout ms            try opening locked tables for ms milliseconds(超時時間,單位:毫秒)

.width num num ...     set column widths for "column" mode(設定列寬)

SQLite3的操作命令

1 開啟命令操作面板 電腦 開始 執行 輸入 cmd 輸入 cd 進入c盤 2 建立資料庫檔案 c sqlite3 mydb.db 如果系統提示沒找到這個命令,說明沒有加入環境變數,此時應設定它的環境變數 如果目錄下沒有mydb.db,sqlite3就會建立這個資料庫。當出現 sqlite vers...

sqlite3簡單命令操作

sqlite3簡單命令操作 sqlite3命令 在控制台中輸入sqlite3 幫助命令 help 退出命令 quit exit 建立乙個新的資料庫 sqlite3 檔案名字 在db目錄中新建乙個test.db資料庫檔案 mkdir db cd db sqlite3 test.db sqlite3 已...

使用sqlite3 模組操作sqlite3資料庫

python內建了sqlite3模組,可以操作流行的嵌入式資料庫sqlite3。如果看了我前面的使用 pymysql 操作mysql資料庫這篇文章就更簡單了。因為它們都遵循pep 249,所以操作方法幾乎相同。廢話就不多說了,直接看 吧。都差不多,首先匯入模組,然後建立連線,然後獲取游標物件,之後利...