国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

一些很有用的SQLite命令總結(jié)

瀏覽:241日期:2023-04-05 14:55:57

顯示表結(jié)構(gòu):
復(fù)制代碼 代碼如下:
sqlite> .schema [table]

獲取所有表和視圖:
復(fù)制代碼 代碼如下:
sqlite > .tables

獲取指定表的索引列表:
復(fù)制代碼 代碼如下:
sqlite > .indices [table ]

導(dǎo)出數(shù)據(jù)庫到 SQL 文件:
復(fù)制代碼 代碼如下:
sqlite > .output [filename ]
sqlite > .dump
sqlite > .output stdout

從 SQL 文件導(dǎo)入數(shù)據(jù)庫:
復(fù)制代碼 代碼如下:
sqlite > .read [filename ]

格式化輸出數(shù)據(jù)到 CSV 格式:
復(fù)制代碼 代碼如下:
sqlite >.output [filename.csv ]
sqlite >.separator ,
sqlite > select * from test;
sqlite >.output stdout

從 CSV 文件導(dǎo)入數(shù)據(jù)到表中:
復(fù)制代碼 代碼如下:
sqlite >create table newtable ( id integer primary key, value text );
sqlite >.import [filename.csv ] newtable

備份數(shù)據(jù)庫:
復(fù)制代碼 代碼如下:
/* usage: sqlite3 [database] .dump > [filename] */
sqlite3 mytable.db .dump > backup.sql

恢復(fù)數(shù)據(jù)庫:
復(fù)制代碼 代碼如下:
/* usage: sqlite3 [database ] < [filename ] */
sqlite3 mytable.db < backup.sql

標(biāo)簽: SQLite
相關(guān)文章:
主站蜘蛛池模板: 湟源县| 化德县| 伊宁县| 翁牛特旗| 常宁市| 原平市| 永登县| 定南县| 郴州市| 海原县| 慈利县| 永丰县| 顺昌县| 北宁市| 新沂市| 明水县| 且末县| 玉林市| 南宫市| 罗源县| 旅游| 尚义县| 临夏县| 普兰县| 石林| 沙田区| 临潭县| 西畴县| 剑河县| 资溪县| 平遥县| 崇左市| 易门县| 萨嘎县| 浠水县| 宣城市| 宁德市| 定边县| 二连浩特市| 奉化市| 武威市|