sqlite3使用

sqlite3使用

sqlite能夠在https://www.sqlite.org/網站上下載。支持Linux, MacOS, Windows等各類操做系統。下載後不須要安裝,解壓後就能夠使用,追加路徑到path中,讓其能夠在任何目錄下均可以使用。sql

進入命令行交互環境

若是已經有了數據庫,則在cmd中命令爲:數據庫

sqlite3 dbfile

沒有的話就直接輸入sqlite3回車。網站

查看幫助

sqlite全部的命令前面都帶有一個點,例如查看幫助信息的命令爲:操作系統

sqlite> .help

查看當前數據庫

sqlite> .database

注意不用輸入分號結束命令行

查看全部表

sqlite> .tables

查看某個表的結構

sqlite> .schema tablename

導出數據庫

在交互式命令行下爲:code

sqlite> .output backup.sql
sqlite> .dump

退出交互式命令行後,能夠使用以下命令sqlite

sqlite3 dbfile .dump > db_backup.sql

導入數據庫

sqlite> .separator ","
sqlite> .import datafile tablename

datafile中第一行爲列名,剩下行爲數據,而tablename不用存在,而是在導入過程當中建立。get

經過全是sql語句的文件進行導入的命令爲:cmd

sqlite> .read backup_file.sql
相關文章
相關標籤/搜索