主頁 > 知識庫 > Linux sqlite3 基本命令

Linux sqlite3 基本命令

熱門標簽:北京智能外呼系統(tǒng)供應(yīng)商家 電話機器人錄音師薪資 孝感銷售電銷機器人廠家 無錫梁溪公司怎樣申請400電話 高德地圖標注電話怎么沒了 奧維地圖標注字體大小修改 中國地圖標注省份用什么符號 智能電銷機器人教育 江西穩(wěn)定外呼系統(tǒng)供應(yīng)商

備注:本文所有操作均在root用戶下進行。

1、安裝sqlite3

ubuntu下安裝sqlite3直接在終端運行命令:
#apt-get install sqlite3
查看版本信息:
#sqlite3 -version

2 、sqlite3常用命令
當前目錄下建立或打開test.db數(shù)據(jù)庫文件,并進入sqlite命令終端,以sqlite>前綴標識:
#sqlite3 test.db

查看數(shù)據(jù)庫文件信息命令(注意命令前帶字符'.'):
sqlite>.database

查看所有表的創(chuàng)建語句:
sqlite>.schema

查看指定表的創(chuàng)建語句:
sqlite>.schema table_name

以sql語句的形式列出表內(nèi)容:
sqlite>.dump table_name

設(shè)置顯示信息的分隔符:
sqlite>.separator symble
Example:設(shè)置顯示信息以‘:'分隔
sqlite>.separator :

設(shè)置顯示模式:
sqlite>.mode mode_name
Example:默認為list,設(shè)置為column,其他模式可通過.help查看mode相關(guān)內(nèi)容
sqlite>.mode column

輸出幫助信息:
sqlite>.help

設(shè)置每一列的顯示寬度:
sqlite>.width width_value
Example:設(shè)置寬度為2
sqlite>.width 2

列出當前顯示格式的配置:
sqlite>.show

退出sqlite終端命令:
sqlite>.quit

sqlite>.exit

3、sqlite3指令
sql的指令格式:所有sql指令都是以分號(;)結(jié)尾,兩個減號(--)則表示注釋。
如:
sqlite>create studen_table(Stu_no interger PRIMARY KEY, Name text NOT NULL, Id interger UNIQUE, Age interger CHECK(Age>6), School text DEFAULT 'xx小學);
該語句創(chuàng)建一個記錄學生信息的數(shù)據(jù)表。

3.1 sqlite3存儲數(shù)據(jù)的類型
NULL:標識一個NULL值
INTERGER:整數(shù)類型
REAL:浮點數(shù)
TEXT:字符串
BLOB:二進制數(shù)

3.2 sqlite3存儲數(shù)據(jù)的約束條件
Sqlite常用約束條件如下:
PRIMARY KEY - 主鍵:
1)主鍵的值必須唯一,用于標識每一條記錄,如學生的學號
2)主鍵同時也是一個索引,通過主鍵查找記錄速度較快
3)主鍵如果是整數(shù)類型,該列的值可以自動增長
NOT NULL - 非空:
約束列記錄不能為空,否則報錯
UNIQUE - 唯一:
除主鍵外,約束其他列的數(shù)據(jù)的值唯一
CHECK - 條件檢查:
約束該列的值必須符合條件才可存入
DEFAULT - 默認值:
列數(shù)據(jù)中的值基本都是一樣的,這樣的字段列可設(shè)為默認值

3.3 sqlite3常用指令

1)建立數(shù)據(jù)表
create table table_name(field1 type1, field2 type1, ...);
table_name是要創(chuàng)建數(shù)據(jù)表名稱,fieldx是數(shù)據(jù)表內(nèi)字段名稱,typex則是字段類型。
例,建立一個簡單的學生信息表,它包含學號與姓名等學生信息:
create table student_info(stu_no interger primary key, name text);

2)添加數(shù)據(jù)記錄
insert into table_name(field1, field2, ...) values(val1, val2, ...);
valx為需要存入字段的值。
例,往學生信息表添加數(shù)據(jù):
Insert into student_info(stu_no, name) values(0001, alex);

3)修改數(shù)據(jù)記錄
update table_name set field1=val1, field2=val2 where expression;
where是sql語句中用于條件判斷的命令,expression為判斷表達式
例,修改學生信息表學號為0001的數(shù)據(jù)記錄:
update student_info set stu_no=0001, name=hence where stu_no=0001;

4)刪除數(shù)據(jù)記錄
delete from table_name [where expression];
不加判斷條件則清空表所有數(shù)據(jù)記錄。
例,刪除學生信息表學號為0001的數(shù)據(jù)記錄:
delete from student_info where stu_no=0001;

5)查詢數(shù)據(jù)記錄
select指令基本格式:
select columns from table_name [where expression];
a查詢輸出所有數(shù)據(jù)記錄
select * from table_name;
b限制輸出數(shù)據(jù)記錄數(shù)量
select * from table_name limit val;
c升序輸出數(shù)據(jù)記錄
select * from table_name order by field asc;
d降序輸出數(shù)據(jù)記錄
select * from table_name order by field desc;
e條件查詢
select * from table_name where expression;
select * from table_name where field in ('val1', 'val2', 'val3');
select * from table_name where field between val1 and val2;
f查詢記錄數(shù)目
select count (*) from table_name;
g區(qū)分列數(shù)據(jù)
select distinct field from table_name;
有一些字段的值可能會重復(fù)出現(xiàn),distinct去掉重復(fù)項,將列中各字段值單個列出。

6)建立索引
當說數(shù)據(jù)表存在大量記錄,索引有助于加快查找數(shù)據(jù)表速度。
create index index_name on table_name(field);
例,針對學生表stu_no字段,建立一個索引:
create index student_index on student_table(stu_no);
建立完成后,sqlite3在對該字段查詢時,會自動使用該索引。

7)刪除數(shù)據(jù)表或索引
drop table table_name;
drop index index_name;

您可能感興趣的文章:
  • android操作SQLite增刪改減實現(xiàn)代碼
  • Android--SQLite(增,刪,改,查)操作實例代碼
  • Android 用SQLite實現(xiàn)事務(wù)的方法
  • Android開發(fā)之SQLite的使用方法
  • Android SQLite數(shù)據(jù)庫增刪改查操作的使用詳解
  • Android SQLite數(shù)據(jù)庫增刪改查操作的案例分析
  • 深入Android SQLite 事務(wù)處理詳解
  • 基于Android SQLite的升級詳解
  • android中sqlite的按條件查找的小例子
  • Android使用SQLite數(shù)據(jù)庫的簡單實例
  • SQLite3 命令行操作指南
  • ubuntu下使用SQLite3的基本命令
  • Android Sqlite命令詳解(基本命令)

標簽:海北 荊州 通化 臨滄 齊齊哈爾 阜陽 那曲 泰州

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Linux sqlite3 基本命令》,本文關(guān)鍵詞  Linux,sqlite3,基本,命令,Linux,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux sqlite3 基本命令》相關(guān)的同類信息!
  • 本頁收集關(guān)于Linux sqlite3 基本命令的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章