有途網(wǎng)

sql語句增刪改查如何寫

徐克達(dá)2022-02-10 15:17:07

SQL是一種特殊目的的編程語言,是一種數(shù)據(jù)庫(kù)查詢和程序設(shè)計(jì)語言,用于存取數(shù)據(jù)以及查詢、更新和管理關(guān)系數(shù)據(jù)庫(kù)系統(tǒng)。閑話少敘,下面是小編整理的純干貨,一起來看看吧!

sql語句增刪改查如何寫

sql語句增刪改查怎么寫

1、增

1.1【插入單行】

insert [into] <表名> (列名) values (列值)

例:insert into Strdents (姓名,性別,出生日期) values ('開心朋朋','男','1980/6/15')

1.2【將現(xiàn)有表數(shù)據(jù)添加到一個(gè)已有表】

insert into <已有的新表> (列名) select <原表列名> from <原表名>

例:insert into tongxunlu ('姓名','地址','電子郵件')

select name,address,email

from Strdents

1.3【直接拿現(xiàn)有表數(shù)據(jù)創(chuàng)建一個(gè)新表并填充】

select <新建表列名> into <新建表名> from <源表名>

例:select name,address,email into tongxunlu from strdents

1.4【使用union關(guān)鍵字合并數(shù)據(jù)進(jìn)行插入多行】

insert <表名> <列名> select <列值> tnion select <列值>

例:insert Students (姓名,性別,出生日期)

select '開心朋朋','男','1980/6/15' union(union表示下一行)

select '藍(lán)色小明','男','19**/**/**'

2、刪

2.1【刪除<滿足條件的>行】

delete from <表名> [where <刪除條件>]

例:delete from a where name='開心朋朋'(刪除表a中列值為開心朋朋的行)

2.2【刪除整個(gè)表】

truncate table <表名>

truncate table tongxunlu

注意:刪除表的所有行,但表的結(jié)構(gòu)、列、約束、索引等不會(huì)被刪除;不能用語有外建約束引用的表

3、改

update <表名> set <列名=更新值> [where <更新條件>]

例:update tongxunlu set 年齡=18 where 姓名='藍(lán)色小名'

4、查

4.1``精確(條件)查詢

select <列名> from <表名> [where <查詢條件表達(dá)試>] [order by <排序的列名>[asc或desc]]

4.1.1【查詢所有數(shù)據(jù)行和列】

例:select * from a

說明:查詢a表中所有行和列

4.1.2【查詢部分行列--條件查詢】

例:select i,j,k from a where f=5

說明:查詢表a中f=5的所有行,并顯示i,j,k3列

4.1.3【在查詢中使用AS更改列名】

例:select name as 姓名 from a where xingbie='男'

說明:查詢a表中性別為男的所有行,顯示name列,并將name列改名為(姓名)顯示

4.1.4【查詢空行】

例:select name from a where email is null

說明:查詢表a中email為空的所有行,并顯示name列;SQL語句中用is null或者is not null來判斷是否為空行

4.1.5【在查詢中使用常量】

例:select name, '唐山' as 地址 from Student

說明:查詢表a,顯示name列,并添加地址列,其列值都為'唐山'

4.1.6【查詢返回限制行數(shù)(關(guān)鍵字:top percent)】

例1:select top 6 name from a

說明:查詢表a,顯示列name的前6行,top為關(guān)鍵字

例2:select top 60 percent name from a

說明:查詢表a,顯示列name的60%,percent為關(guān)鍵字

4.1.7【查詢排序(關(guān)鍵字:order by , asc , desc)】

例:select name

from a

where chengji>=60

order by desc

說明:查詢a表中chengji大于等于60的所有行,并按降序顯示name列;默認(rèn)為ASC升序

4.2``模糊查詢

4.2.1【使用like進(jìn)行模糊查詢】

注意:like運(yùn)算副只用于字符串,所以僅與char和varchar數(shù)據(jù)類型聯(lián)合使用

例:select * from a where name like '趙%'

說明:查詢顯示表a中,name字段第一個(gè)字為趙的記錄

4.2.2【使用between在某個(gè)范圍內(nèi)進(jìn)行查詢】

例:select * from a where nianling between 18 and 20

說明:查詢顯示表a中nianling在18到20之間的記錄

4.2.3【使用in在列舉值內(nèi)進(jìn)行查詢】

例:select name from a where address in ('北京','上海','唐山')

說明:查詢表a中address值為北京或者上?;蛘咛粕降挠涗?,顯示name字段

SQL能做什么

SQL 面向數(shù)據(jù)庫(kù)執(zhí)行查詢

SQL 可從數(shù)據(jù)庫(kù)取回?cái)?shù)據(jù)

SQL 可在數(shù)據(jù)庫(kù)中插入新的記錄

SQL 可更新數(shù)據(jù)庫(kù)中的數(shù)據(jù)

SQL 可從數(shù)據(jù)庫(kù)刪除記錄

SQL 可創(chuàng)建新數(shù)據(jù)庫(kù)

SQL 可在數(shù)據(jù)庫(kù)中創(chuàng)建新表

SQL 可在數(shù)據(jù)庫(kù)中創(chuàng)建存儲(chǔ)過程

SQL 可在數(shù)據(jù)庫(kù)中創(chuàng)建視圖

SQL 可以設(shè)置表、存儲(chǔ)過程和視圖的權(quán)限

熱門推薦

最新文章