SQLite基礎
1.簡介
-
iOS數(shù)據(jù)數(shù)據(jù)存儲的方式
-
Plist
(NSArray\NSDictionary
) -
Preference
(偏好設置\NSUserDefaults
) -
NSCoding
(NSKeyedArchiver\NSkeyedUnarchiver
) SQLite3
Core Data
-
-
什么是SQLite
-
SQLite
是一款輕型的嵌入式數(shù)據(jù)庫 - 它占用資源非常的低,在嵌入式設備中,可能只需要幾百K的內存就夠了
- 它的處理速度比
Mysql宙址、PostgreSQL
這兩款著名的數(shù)據(jù)庫都還快
-
-
什么是數(shù)據(jù)庫
- 數(shù)據(jù)庫(Database)是按照數(shù)據(jù)結構來組織奖年、存儲和管理數(shù)據(jù)的倉庫
- 數(shù)據(jù)庫可以分為2大種類
- 關系型數(shù)據(jù)庫(主流)
- 對象型數(shù)據(jù)庫
-
常用關系型數(shù)據(jù)庫
- PC端:
Oracle功蜓、MySQL烙荷、SQL Server系谐、Access产舞、DB2魂奥、Sybase
- 嵌入式\移動客戶端:
SQLite
- PC端:
-
如何數(shù)據(jù)存儲
- 數(shù)據(jù)庫是如何存儲數(shù)據(jù)的
數(shù)據(jù)庫的存儲結構和excel
很像,以表(table
)為單位 - 數(shù)據(jù)庫存儲數(shù)據(jù)的步驟
- 新建一張表(
table
) - 添加多個字段(
column
易猫,列耻煤,屬性) - 添加多行記錄(
row,record
,每行存放多個字段對應的值)
- 新建一張表(
- 數(shù)據(jù)庫是如何存儲數(shù)據(jù)的
2.SQL 語句
-
如何在程序運行過程中操作數(shù)據(jù)庫中的數(shù)據(jù)
- 那得先學會使用SQL語句
-
什么是SQL
-
SQL(structured query language)
:結構化查詢語言 -
SQL
是一種對關系型數(shù)據(jù)庫中的數(shù)據(jù)進行定義和操作的語言 - SQL語言簡潔哈蝇,語法簡單棺妓,好學好用
-
-
什么是SQL語句
- 使用
SQL
語言編寫出來的句子\代碼,就是SQL
語句 - 在程序運行過程中炮赦,要想操作(增刪改查怜跑,
CRUD
)數(shù)據(jù)庫中的數(shù)據(jù),必須使用SQL
語句
- 使用
-
SQL語句的特點
- 不區(qū)分大小寫(比如數(shù)據(jù)庫認為user和UsEr是一樣的)
- 每條語句都必須以分號 ; 結尾
-
SQL中的常用關鍵字有
select吠勘、insert性芬、update、delete剧防、from植锉、create、where峭拘、desc俊庇、order、by鸡挠、group暇赤、table、alter宵凌、view鞋囊、index等
- 數(shù)據(jù)庫中不可以使用關鍵字來命名表、字段
-
SQL語句的種類
- 數(shù)據(jù)定義語句(
DDL:Data Definition Language
)- 包括
create
和drop
等操作 - 在數(shù)據(jù)庫中創(chuàng)建新表或刪除表(
create table
或drop table
)
- 包括
- 數(shù)據(jù)操作語句(
DML:Data Manipulation Language
) - 包括
insert瞎惫、update溜腐、delete
等操作 - 上面的3種操作分別用于添加、修改瓜喇、刪除表中的數(shù)據(jù)
- 數(shù)據(jù)查詢語句(
DQL:Data Query Language
) - 可以用于查詢獲得表中的數(shù)據(jù)
- 關鍵字
select
是DQL(也是所有SQL)用得最多的操作 - 其他DQL常用的關鍵字有
where挺益,order by,group by和having
- 數(shù)據(jù)定義語句(
3.DDL
- 創(chuàng)表
- 格式
-
create table
表名 (字段名1 字段類型1, 字段名2 字段類型2, …) ; -
create table if not exists
表名 (字段名1 字段類型1, 字段名2 字段類型2, …) ;
-
- 格式
示例
create table t_student (id integer, name text, age inetger, score real) ;
- 字段類型
- SQLite將數(shù)據(jù)劃分為以下幾種存儲類型:
integer : 整型值
real : 浮點值
text : 文本字符串
blob : 二進制數(shù)據(jù)(比如文件)
- 實際上SQLite是無類型的
- 就算聲明為integer類型乘寒,還是能存儲字符串文本
(主鍵除外)
- 建表時聲明啥類型或者不聲明類型都可以望众,也就意味著創(chuàng)表語句可以這么寫:
- 就算聲明為integer類型乘寒,還是能存儲字符串文本
create table t_student(name, age);
- 為了保持良好的編程規(guī)范、方便程序員之間的交流伞辛,編寫建表語句的時候最好加上每個字段的具體類型
- 刪表
- 格式
drop table 表名 ; drop table if exists 表名 ; 示例 drop table t_student ;
4.DML
-
插入數(shù)據(jù)(
insert
)格式 insert into 表名 (字段1, 字段2, …) values (字段1的值, 字段2的值, …) ; 示例 insert into t_student (name, age) values (‘mj’, 10) ; 注意 數(shù)據(jù)庫中的字符串內容應該用單引號 ’ 括住
-
更新數(shù)據(jù)庫(
update
)格式 update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, … ; 示例 update t_student set name = ‘jack’, age = 20 ; 注意 上面的示例會將t_student表中所有記錄的name都改為jack烂翰,age都改為20
-
刪除數(shù)據(jù)(
delete
)格式 delete from 表名 ; 示例 delete from t_student ; 注意 上面的示例會將t_student表中所有記錄都刪掉
5.條件語句
如果只想更新或者刪除某些固定的記錄,那就必須在DML語句后加上一些條件
-
條件語句的常見格式
where 字段 = 某個值 ; // 不能用兩個 = where 字段 is 某個值 ; // is 相當于 = where 字段 != 某個值 ; where 字段 is not 某個值 ; // is not 相當于 != where 字段 > 某個值 ; where 字段1 = 某個值 and 字段2 > 某個值 ; // and相當于C語言中的 && where 字段1 = 某個值 or 字段2 = 某個值 ; // or 相當于C語言中的 ||
-
eg:
將t_student表中年齡大于10 并且 姓名不等于jack的記錄蚤氏,年齡都改為 5 update t_student set age = 5 where age > 10 and name != ‘jack’ ; 刪除t_student表中年齡小于等于10 或者 年齡大于30的記錄 delete from t_student where age <= 10 or age > 30 ; 猜猜下面語句的作用 update t_student set score = age where name = ‘jack’ ; 將t_student表中名字等于jack的記錄甘耿,score字段的值 都改為 age字段的值
6.DQL
- 格式
select 字段1, 字段2, … from 表名 ;
select * from 表名; // 查詢所有的字段
- 示例
select name, age from t_student ;
select * from t_student ;
select * from t_student where age > 10 ; // 條件查詢
- 其別名
格式(字段和表都可以起別名)
select 字段1 別名 , 字段2 別名 , … from 表名 別名 ;
select 字段1 別名, 字段2 as 別名, … from 表名 as 別名 ;
select 別名.字段1, 別名.字段2, … from 表名 別名 ;
示例
select name myname, age myage from t_student ;
給name起個叫做myname的別名,給age起個叫做myage的別名
select s.name, s.age from t_student s ;
給t_student表起個別名叫做s竿滨,利用s來引用表中的字
- 計算數(shù)量
格式
select count (字段) from 表名 ;
select count ( * ) from 表名 ;
示例
select count (age) from t_student ;
select count ( * ) from t_student where score >= 60;
7.排序
- 排序
查詢出來的結果可以用order by進行排序
select * from t_student order by 字段 ;
select * from t_student order by age ;
默認是按照升序排序(由小到大)佳恬,也可以變?yōu)榻敌颍ㄓ纱蟮叫捏境。? select * from t_student order by age desc ; //降序
select * from t_student order by age asc ; // 升序(默認)
也可以用多個字段進行排序
select * from t_student order by age asc, height desc ;
先按照年齡排序(升序),年齡相等就按照身高排序(降序)
- limit
使用limit可以精確地控制查詢結果的數(shù)量毁葱,比如每次只查詢10條數(shù)據(jù)
格式
select * from 表名 limit 數(shù)值1, 數(shù)值2 ;
示例
select * from t_student limit 4, 8 ;
可以理解為:跳過最前面4條語句垫言,然后取8條記錄
- 分頁查詢
limit常用來做分頁查詢,比如每頁固定顯示5條數(shù)據(jù)倾剿, 那么應該這樣取數(shù)據(jù)
第1頁:limit 0, 5
第2頁:limit 5, 5
第3頁:limit 10, 5
…
第n頁:limit 5*(n-1), 5
猜猜下面語句的作用
select * from t_student limit 7 ;
相當于select * from t_student limit 0, 7 ;
表示取最前面的7條記錄
8.約束
- 簡單約束
建表時可以給特定的字段設置一些約束條件骏掀,常見的約束
not null :規(guī)定字段的值不能為null
unique :規(guī)定字段的值必須唯一
default :指定字段的默認值
check;檢查約束
(建議:盡量給字段設定嚴格的約束柱告,以保證數(shù)據(jù)的規(guī)范性
示例
create table t_student (id integer, name text not null unique, age integer not null default 1) ;
name字段不能為null,并且唯一
age字段不能為null笑陈,并且默認為1
-
主鍵約束
- 如果
t_student
表中就name
和age
兩個字段际度,而且有些記錄的name
和age
字段的值都一樣時,那么就沒法區(qū)分這些數(shù)據(jù)涵妥,造成數(shù)據(jù)庫的記錄不唯一乖菱,這樣就不方便管理數(shù)據(jù) - 良好的數(shù)據(jù)庫編程規(guī)范應該要保證每條記錄的唯一性,為此蓬网,增加了
主鍵約束
- 也就是說窒所,每張表都必須有一個主鍵,用來標識記錄的唯一
- 什么是
主鍵
-
主鍵(Primary Key帆锋,簡稱PK)
用來唯一地標識某一條記錄
- 例如
t_student
可以增加一個id字段作為主鍵吵取,相當于人的身份證 -
主鍵
可以是一個字段或多個字段
-
- 如果
-
主鍵的設計原則
- 主鍵應當是對用戶沒有意義的
- 永遠也不要更新主鍵
- 主鍵不應包含動態(tài)變化的數(shù)據(jù)
- 主鍵應當由計算機自動生成
-
主鍵的聲明
- 在創(chuàng)表的時候用
primary key
聲明一個主鍵
create table t_student (id integer primary key, name text, age integer) ; integer類型的id作為t_student表的主鍵
- 在創(chuàng)表的時候用
主鍵字段
只要聲明為
primary key
,就說明是一個主鍵字段主鍵字段默認就包含了
not null
和unique
兩個約束如果想要讓主鍵自動增長(必須是integer類型)锯厢,應該增加
autoincrement
create table t_student (id integer primary key autoincrement, name text, age integer) ;
- 外鍵約束
- 利用外鍵約束可以用來建立表與表之間的聯(lián)系
- 外鍵的一般情況是:一張表的某個字段皮官,引用著另一張表的主鍵字段
新建一個外鍵 create table t_student (id integer primary key autoincrement, name text, age integer, class_id integer, constraint fk_student_class foreign key (class_id) references t_class (id));
- t_student表中有一個叫做fk_t_student_class_id_t_class_id的外鍵
- 這個外鍵的作用是用t_student表中的class_id字段引用t_class表的id字段
- 利用外鍵約束可以用來建立表與表之間的聯(lián)系
表連接查詢
- 什么是表連接查詢:需要聯(lián)合多張表才能查到想要的數(shù)據(jù)
- 表連接的類型
- 內連接:inner join 或者 join (顯示的是左右表都有完整字段值的記錄)
- 左外連接:left outer join (保證左表數(shù)據(jù)的完整性)
示例 查詢0316iOS班的所有學生 select s.name,s.age from t_student s, t_class c where s.class_id = c.id and c.name = ‘0316iOS’;