日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

iOS數(shù)據(jù)持久化—數(shù)據(jù)庫(kù)SQL語(yǔ)句

系統(tǒng) 2533 0

iOS開發(fā)數(shù)據(jù)庫(kù)篇—SQL

一、SQL語(yǔ)句

如果要在程序運(yùn)行過程中操作數(shù)據(jù)庫(kù)中的數(shù)據(jù),那得先學(xué)會(huì)使用SQL語(yǔ)句

1.什么是SQL

SQL(structured query language):結(jié)構(gòu)化查詢語(yǔ)言

SQL是一種對(duì)關(guān)系型數(shù)據(jù)庫(kù)中的數(shù)據(jù)進(jìn)行定義和操作的語(yǔ)言

SQL語(yǔ)言簡(jiǎn)潔,語(yǔ)法簡(jiǎn)單,好學(xué)好用

?

2.什么是SQL語(yǔ)句

使用SQL語(yǔ)言編寫出來的句子\代碼,就是SQL語(yǔ)句

在程序運(yùn)行過程中,要想操作(增刪改查,CRUD)數(shù)據(jù)庫(kù)中的數(shù)據(jù),必須使用SQL語(yǔ)句

?

3.SQL語(yǔ)句的特點(diǎn)

不區(qū)分大小寫(比如數(shù)據(jù)庫(kù)認(rèn)為user和UsEr是一樣的)

每條語(yǔ)句都必須以分號(hào) ; 結(jié)尾

?

4.SQL中的常用關(guān)鍵字有

select、insert、update、delete、from、create、where、desc、order、by、group、table、alter、view、index等等

數(shù)據(jù)庫(kù)中不可以使用關(guān)鍵字來命名表、字段

?

二、SQL語(yǔ)句的種類

1.數(shù)據(jù)定義語(yǔ)句(DDL:Data Definition Language)

包括create和drop等操作

在數(shù)據(jù)庫(kù)中創(chuàng)建新表或刪除表(create table或 drop table)

?

2.數(shù)據(jù)操作語(yǔ)句(DML:Data Manipulation Language)

包括insert、update、delete等操作

上面的3種操作分別用于添加、修改、刪除表中的數(shù)據(jù)

?

3.數(shù)據(jù)查詢語(yǔ)句(DQL:Data Query Language)

可以用于查詢獲得表中的數(shù)據(jù)

關(guān)鍵字select是DQL(也是所有SQL)用得最多的操作

其他DQL常用的關(guān)鍵字有where,order by,group by和having

?

三、基本操作

1.創(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 integer, score real) ;

2.字段類型

SQLite將數(shù)據(jù)劃分為以下幾種存儲(chǔ)類型:

integer : 整型值

real : 浮點(diǎn)值

text : 文本字符串

blob : 二進(jìn)制數(shù)據(jù)(比如文件)

?

注意:實(shí)際上SQLite是無類型的,就算聲明為integer類型,還是能存儲(chǔ)字符串文本(主鍵除外)

建表時(shí)聲明啥類型或者不聲明類型都可以,也就意味著創(chuàng)表語(yǔ)句可以這么寫:

create table t_student(name, age);

?

提示:為了保持良好的編程規(guī)范、方便程序員之間的交流,編寫建表語(yǔ)句的時(shí)候最好加上每個(gè)字段的具體類型

?

3.刪表

格式

drop table 表名 ;

drop table if exists 表名 ;

?

示例

drop table t_student ;

?

4.插入數(shù)據(jù)(insert)

格式

insert into 表名 (字段1, 字段2, …) values (字段1的值, 字段2的值, …) ;?

示例

insert into t_student (name, age) values (‘mj’, 10) ;?

注意

數(shù)據(jù)庫(kù)中的字符串內(nèi)容應(yīng)該用單引號(hào) ’ 括住

?

5.更新數(shù)據(jù)(update)

格式

update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, … ;?

示例

update t_student set name = ‘jack’, age = 20 ;?

注意

上面的示例會(huì)將t_student表中所有記錄的name都改為jack,age都改為20

6.刪除數(shù)據(jù)(delete)

格式

delete from 表名 ;

示例

delete from t_student ;

注意

上面的示例會(huì)將t_student表中所有記錄都刪掉

7.條件語(yǔ)句

如果只想更新或者刪除某些固定的記錄,那就必須在DML語(yǔ)句后加上一些條件

條件語(yǔ)句的常見格式

where 字段 = 某個(gè)值 ; ? // 不能用兩個(gè) =

where 字段 is 某個(gè)值 ; ? // is 相當(dāng)于 =?

where 字段 != 某個(gè)值 ;?

where 字段 is not 某個(gè)值 ; ? // is not 相當(dāng)于 !=?

where 字段 > 某個(gè)值 ;?

where 字段1 = 某個(gè)值 and 字段2 > 某個(gè)值 ;? // and相當(dāng)于C語(yǔ)言中的 &&

where 字段1 = 某個(gè)值 or 字段2 = 某個(gè)值 ;? //? or 相當(dāng)于C語(yǔ)言中的 ||

示例

將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 ;

?

猜猜下面語(yǔ)句的作用

update t_student set score = age where name = ‘jack’ ;

將t_student表中名字等于jack的記錄,score字段的值 都改為 age字段的值

8.DQL語(yǔ)句

格式

select 字段1, 字段2, … from 表名 ;

select * from 表名; ? //? 查詢所有的字段

?

示例

select name, age from t_student ;

select * from t_student ;

select * from t_student where age > 10 ;? //? 條件查詢

?

9.起別名

格式(字段和表都可以起別名)

select 字段1 別名 , 字段2 別名 , … from 表名 別名 ;?

select 字段1 別名, 字段2 as 別名, … from 表名 as 別名 ;

select 別名.字段1, 別名.字段2, … from 表名 別名 ;

示例

select name myname, age myage from t_student ;

給name起個(gè)叫做myname的別名,給age起個(gè)叫做myage的別名

select s.name, s.age from t_student s ;

給t_student表起個(gè)別名叫做s,利用s來引用表中的字段

?

10.計(jì)算記錄的數(shù)量

格式

select count (字段) from 表名 ;

select count ( * ) from 表名 ;

示例

select count (age) from t_student ;

select count ( * ) from t_student where score >= 60;

11.排序

查詢出來的結(jié)果可以用order by進(jìn)行排序

select * from t_student order by 字段 ;

select * from t_student order by age ;

默認(rèn)是按照升序排序(由小到大),也可以變?yōu)榻敌颍ㄓ纱蟮叫。?

select * from t_student order by age desc ;? //降序

select * from t_student order by age asc ; ? // 升序(默認(rèn))

也可以用多個(gè)字段進(jìn)行排序

select * from t_student order by age asc, height desc ;

先按照年齡排序(升序),年齡相等就按照身高排序(降序)

?

12.limit

使用limit可以精確地控制查詢結(jié)果的數(shù)量,比如每次只查詢10條數(shù)據(jù)

格式

select * from 表名 limit 數(shù)值1, 數(shù)值2 ;

示例

select * from t_student limit 4, 8 ;

可以理解為:跳過最前面4條語(yǔ)句,然后取8條記錄

limit常用來做分頁(yè)查詢,比如每頁(yè)固定顯示5條數(shù)據(jù),那么應(yīng)該這樣取數(shù)據(jù)

第1頁(yè):limit 0, 5

第2頁(yè):limit 5, 5

第3頁(yè):limit 10, 5

第n頁(yè):limit 5*(n-1), 5

?

select * from t_student limit 7 ;這條語(yǔ)句的作用相當(dāng)于select * from t_student limit 0, 7 ;表示取最前面的7條記錄

?

四、約束

1.簡(jiǎn)單約束

建表時(shí)可以給特定的字段設(shè)置一些約束條件,常見的約束有

not null :規(guī)定字段的值不能為null

unique :規(guī)定字段的值必須唯一

default :指定字段的默認(rèn)值

(建議:盡量給字段設(shè)定嚴(yán)格的約束,以保證數(shù)據(jù)的規(guī)范性)

?

示例

create table t_student (id integer, name text not null unique, age integer not null default 1) ;

name字段不能為null,并且唯一

age字段不能為null,并且默認(rèn)為1

?

2.主鍵約束

(1)簡(jiǎn)單說明

如果t_student表中就name和age兩個(gè)字段,而且有些記錄的name和age字段的值都一樣時(shí),那么就沒法區(qū)分這些數(shù)據(jù),造成數(shù)據(jù)庫(kù)的記錄不唯一,這樣就不方便管理數(shù)據(jù)

良好的數(shù)據(jù)庫(kù)編程規(guī)范應(yīng)該要保證每條記錄的唯一性,為此,增加了主鍵約束

也就是說,每張表都必須有一個(gè)主鍵,用來標(biāo)識(shí)記錄的唯一性

(2)什么是主鍵?

主鍵(Primary Key,簡(jiǎn)稱PK)用來唯一地標(biāo)識(shí)某一條記錄

例如t_student可以增加一個(gè)id字段作為主鍵,相當(dāng)于人的身份證

主鍵可以是一個(gè)字段或多個(gè)字段

(3)主鍵的設(shè)計(jì)原則

主鍵應(yīng)當(dāng)是對(duì)用戶沒有意義的?

永遠(yuǎn)也不要更新主鍵

主鍵不應(yīng)包含動(dòng)態(tài)變化的數(shù)據(jù)

主鍵應(yīng)當(dāng)由計(jì)算機(jī)自動(dòng)生成

(4)主鍵的聲明

在創(chuàng)表的時(shí)候用primary key聲明一個(gè)主鍵

create table t_student (id integer primary key, name text, age integer) ;

integer類型的id作為t_student表的主鍵

?

主鍵字段

只要聲明為primary key,就說明是一個(gè)主鍵字段

主鍵字段默認(rèn)就包含了not null 和 unique 兩個(gè)約束

?

說明:如果想要讓主鍵自動(dòng)增長(zhǎng)(必須是integer類型),應(yīng)該增加autoincrement

create table t_student (id integer primary key autoincrement, name text, age integer) ;

?

3.外鍵約束

利用外鍵約束可以用來建立表與表之間的聯(lián)系

外鍵的一般情況是:一張表的某個(gè)字段,引用著另一張表的主鍵字段

新建一個(gè)外鍵

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表中有一個(gè)叫做fk_t_student_class_id_t_class_id的外鍵

這個(gè)外鍵的作用是用t_student表中的class_id字段引用t_class表的id字段

?

4.表連接查詢

表連接查詢:需要聯(lián)合多張表才能查到想要的數(shù)據(jù)

表連接的類型

內(nèi)連接:inner join 或者 join? (顯示的是左右表都有完整字段值的記錄)

左外連接:left outer join (保證左表數(shù)據(jù)的完整性)?

示例

查詢11軟件工程班的所有學(xué)生

select s.name,s.age from t_student s, t_class c where s.class_id = c.id and c.name = ‘11軟件工程班’;

?

iOS數(shù)據(jù)持久化—數(shù)據(jù)庫(kù)SQL語(yǔ)句


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 罗田县| 晋州市| 张家界市| 浦江县| 阆中市| 邯郸市| 渝中区| 莱州市| 石泉县| 河南省| 江门市| 济宁市| 澄城县| 无棣县| 嘉兴市| 遵义县| 灵川县| 叶城县| 瑞安市| 治多县| 西昌市| 彰化市| 肥城市| 浦城县| 轮台县| 舟曲县| 响水县| 海南省| 巩留县| 盱眙县| 洪洞县| 白河县| 梓潼县| 应城市| 屯昌县| 陈巴尔虎旗| 永平县| 泾阳县| 汉川市| 佛教| 波密县|