當前位置:首頁 » 編程語言 » sql增刪改查公式
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

sql增刪改查公式

發布時間: 2023-06-10 05:40:14

『壹』 sql的增刪改查

選擇:select * from table1 where 范圍
插入:insert into table1(field1,field2) values(value1,value2)
刪除:delete from table1 where 范圍
更新:update table1 set field1=value1 where 范圍
查找:select * from table1 where field1 like 』%value1%』 (所有包含『value1』這個模式的字元串)---like的語法很精妙,查資料!
排序:select * from table1 order by field1,field2 [desc]
總數:select count as totalcount from table1
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1[separator]

『貳』 SQl常用增刪改查

SQl常用增刪改查模板

篇一:SQl常用增刪改查

SQL常用增刪改查語句

增加

現在有一張表,表(Test)裡面有三個欄位,分別為sno,sname,age。舉例用一條增加SQL語句,插入一條數據進庫。

語句:

Insert into 表名 value(『數據1』,』數據2』,』數據3』)

具體操作: Insert into testvalues('test','test','1')

通過上面這條語句,Test表裡面就多了一條數據。如下圖所示:

上面這個例子,是在每條欄位都需要插入的時候為了方便而直接在 into 後面跟表名。但是也會遇到一些特殊的情況,比如一張表,因為有主外鍵約束(我這里只有一張表),而我只想插入被約束的欄位sno(主鍵)加上age這個欄位,在 into的時候就需要指明需要插入的欄位,下面舉例說明:

語句:

Insert into 表名(『欄位名1』,』欄位名2』) values(『數據1』,』數據2』)

具體操作:

into test(sno,age)values('彭宇','21')

這樣資料庫裡面,又多了一條數據,而沒有插入任何數據那個欄位默認為NULL。如下圖所示:

刪除

在我們增加數據入庫的時候,難免會出現數據錄入錯誤,或者信息過期後不再需要的數據,所以我們要利用刪除語句將表裡面不需要的數據刪除掉。下面舉例說明。

語句:

Delete from 表名 where 欄位名='需要刪除的數據'

具體操作:

from test where sno='test'

通過這條SQL語句,Test表主鍵sno欄位裡面數據為test的該條數據就已經被刪除了。

Ps:一般來說都以主鍵為條件進行刪除,因為主鍵是不可重復的,我們可以設想一下,如果沒使用主鍵為刪除條件,假設一個公司有兩個叫彭宇的人。我使用sname=』彭宇』作為刪除條件的話,那麼這兩個同名同姓人的資料都會被刪除掉,所以這是不可取的。

批量刪除

當有多條數據需要刪除的時候,我們可以使用批量刪除語句來實現一次刪除多條數據。

語句:

from表名where欄位名in('該欄位裡面的數據1','該欄位裡面的數據2',……)

具體操作:

首先,看一下Test表裡面有多少條數據,如下圖:

現在我想利用一條SQL語句,將前三條數據刪除掉。

from test where sno in('test','test2','test3')

通過執行這條SQL語句後,前三條數據已經被我批量刪除了。

修改

一條已經錄入資料庫裡面的數據如果需要更新、修正,我們就需要用到SQL修改語句。

語句:

Update 表名set欄位='修改後的數據' where 欄位='修改條件'

具體操作:

Update test set sno='SQL修改語句' where sno='test'

修改前後比較,下圖所示: (

修改前

)(修改後)

查詢

上面進行了增加,修改操作後,資料庫裡面已經存在有數據了,最後我們要利用SQL查詢語句將它們查詢並顯示出來。

全部查詢

語句:

Select * from 表名

具體操作:

Select * from test

執行了上面這句話,那麼test表裡面存在的數據都會被查詢出來,如果我想要單獨查詢出某個人的數據怎麼辦?很簡單,只需要加上一個關鍵詞where就能夠實現了。

單條件查詢

語句:

Select * from 表名 where 欄位=』需要查詢的數據』

具體操作:

Select * from test where sno=』彭宇』

這樣我就查詢出資料庫裡面sno欄位為彭宇的數據了。

多條件查詢

多條件查詢就是比起單條件查詢多了一個and關鍵詞,使用多條件查詢,查出來的結構能夠更加的精確。

語句:

Select * from 表名 where 欄位=』需要查詢的數據』 and 欄位=』需要查詢的數據』

具體操作:

Select * from test where sno=』彭宇』』21』 and age=

篇二:SQL語句增刪改查

一、刪:有2中方法

1.使用刪除數據某些數據

語法: from <表名> [where <刪除條件>]

例: from a where name='開心朋朋'(刪除表a中列值為開心朋朋的行) 注意:刪除整行不是刪除單個欄位,所以在後面不能出現欄位名

2.使用truncate table 刪除整個表的數據

語法:truncate table <表名>

例:truncate table tongxunlu

注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表

二、改

使用update更新修改數據

語法:<表名> set <列名=更新值> [where <更新條件>]例:tongxunlu set 年齡=18 where 姓名='藍色小名'

注意:set後面可以緊隨多個數據列的更新值;where子句是可選的,用來限制條件,如果不選則整個表的所有行都被更新

四、查

1.普通查詢

語法:select <列名> from <表名> [where <查詢條件表達試>] [order by <排序的列名>[asc或desc]]

1).查詢所有數據行和列

例:select * from a

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

2).查詢部分行列--條件查詢

例:select i,j,k from a where f=5 說明:查詢表a中f=5的所有行,並顯示i,j,k3列

3).在查詢中使用AS更改列名

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

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

4).查詢空行

例:select name from a where email is null

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

5).在查詢中使用常量

例:select name '唐山' as 地址 from a

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

6).查詢返回限制行數(關鍵字:top percent)

例1:select top 6 name from a

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

例2:select top 60 percent name from a

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

7).查詢排序(關鍵字:order by , asc , desc)

例:select name

from a

where chengji>=60

order by desc

說明:查詢表中chengji大於等於60的所有行,並按降序顯示name列;默認為ASC升序

2.模糊查詢

1).使用like進行模糊查詢

注意:like運算副只用語字元串,所以僅與char和varchar數據類型聯合使用 例:select * from a where name like '趙%'

說明:查詢顯示表a中,name欄位第一個字為趙的記錄

2).使用between在某個范圍內進行查詢

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

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

3).使用in在列舉值內進行查詢

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

說明:查詢表a中address值為北京或者上海或者唐山的記錄,顯示name欄位3.分組查詢

1).使用group by進行分組查詢

例:select studentID as 學員編號,AVG(score) as 平均成績 (注釋:這里的score是列名)

from score (注釋:這里的score是表名)

group by studentID

說明:在表score中查詢,按strdentID欄位分組,顯示strdentID欄位和score欄位的平均值;select語句中只允許被分組的列和為每個分組返回的一個值的表達試,例如用一個列名作為參數的聚合函數

2).使用having子句進行分組篩選

例:select studentID as 學員編號,AVG(score) as 平均成績 (注釋:這里的score是列名)

from score (注釋:這里的score是表名)

group by studentID

having count(score)>1

說明:接上面例子,顯示分組後count(score)>1的行,由於where只能在沒有分組時使用,分組後只能使用having來限制條件,

4.多表聯接查詢

1).內聯接

①在where子句中指定聯接條件

例:select a.name,b.chengji

from a,b

where a.name=b.name

說明:查詢表a和表b中name欄位相等的記錄,並顯示表a中的name欄位和表b中的chengji欄位

②在from子句中使用join…on

例:select a.name,b.chengji

from a inner join b

on (a.name=b.name)

說明:同上

2).外聯接

①左外聯接查詢

例:select s.name,c.courseID,c.score

from strdents as s

left outer join score as c

on s.scode=c.strdentID

說明:在strdents表和score表中查詢滿足on條件的行,條件為score表的.strdentID與strdents表中的sconde相同

②右外聯接查詢

例:select s.name,c.courseID,c.score

from strdents as s

right outer join score as c

on s.scode=c.strdentID

說明:在strdents表和score表中查詢滿足on條件的行,條件為strdents表中的sconde與score表的strdentID相同

三、增:有4種方法

1.使用插入單行數據:

語法: [into] <表名> [列名] values <列值>

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

注意:into可以省略;列名列值用逗號分開;列值用單引號因上;如果省略表名,將依次插入所有列

2.使用 select語句將現有表中的數據添加到已有的新表中

語法: into <已有的新表> <列名>

select <原表列名> from <原表名>

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

select name,address,email

from Strdents

注意:into不可省略;查詢得到的數據個數、順序、數據類型等,必須與插入的項保持一致

3.使用select into語句將現有表中的數據添加到新建表中

語法:select <新建表列名> into <新建表名> from <源表名>例:select name,address,email into tongxunlu from strdents

注意:新表是在執行查詢語句的時候創建的,不能夠預先存在

在新表中插入標識列(關鍵字『identity』):

語法:select identity (數據類型,標識種子,標識增長量) AS 列名

into 新表 from 原表名

例:select identity(int,1,1) as 標識列,dengluid,password into tongxunlu from Struents

注意:關鍵字『identity』

4.使用union關鍵字合並數據進行插入多行

語法: <表名> <列名> select <列值> tnion select <列值>

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

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

select '藍色小明','男','19**/**/**'

注意:插入的列值必須和插入的列名個數、順序、數據類型一致

篇三:SQL常用增刪改查語句

SQLSQL常用增刪改查語句

作者:hiker

一. Insert 插入語句

1. Insert into 表名(列名) values (對應列名值)//插入一行.

2. Insert into 新表名(列名)

Select (列名) 舊表名

3. Select 舊表名.欄位…

Into 新表名 from 舊表名

4. Select identity ( 數據類型,標識種子,標識增長量) as 列名

Into新表名

From 舊表名

5. Insert 表名(列名)

Select (對應列名值) union

Select (對應列名值) union

Select (對應列名值)

二. Update 更新語句

1. Update 表名 set 列名=』更新值』 where 更新條件

三. 刪除語句

1. from 表名 where 刪除條件

2. truncate table 表名 //刪除表中所有行

四. select 基本查詢語句

1. select 列名 from 表名 where 查詢條件

order by 排序的列名asc或desc升/降

2. select 列名 as 別名 from 表名 where 查詢條件

3. select 列名 from 表名 where 列名 is null //查詢空值

4. select 列名 , 『常量值』 as 別名 from 表名//查詢時定義輸出一列常量值

5. select top 5 列名 from 表名 //查詢前5行

6. select top 5 percent 列名 from 表名 //查詢前百分之5的數據行

五.

1.

2.

3.

4. select 函數查詢語句 selectLEN(Class_Name)fromClass //查詢class_Name字元串長度 selectupper(Class_Name)fromClass //查詢class_Name並轉換為大寫 ltrim和rtrim //清除字元串左右空格 selectREPLACE(card_No,'0','9')fromCardRecord//修改列中字元串中的字元 列名字元串中0修改為9

5. selectSTUFF(Card_No,2,3,'8888')fromCardRecord

列名字元串中第2個開始刪除3個字元,再從第二個開始插入8888字元串

6. selectGETDATE()//顯示系統日期

六.

1.

2.

3.

4.

5. select 高級查詢語句 select * from 表名 where列名 like 『 %s%』 //模糊查詢 select * from 表名 where 列名 between 60 and 80 //范圍查詢 select * from 表名 where 列名 in (『列舉』,』』,』』) //在列舉范圍內查詢 selectSUM(Score_Num)fromscores //查詢分數總和 avg max min count //查詢平均分/最大數/最小數/行數

selectcourse_Id,SUM(Score_Num)fromscores

groupbyCourse_Id//分組查詢

havingCourse_Id='jsj001'//分組子句篩選

七. Select 多表連接查詢語句

1.selects.stu_Nameas'姓名',c.Course_nameas'科目',sc.Score_Num

fromStudentsass

innerjoinScoresasscon(sc.Stu_Id=s.Stu_ID)

innerjoinCoursesascon(sc.Course_Id=c.Course_Id)

orderbys.Stu_Namedesc //三表內聯查詢

2.selects.stu_Nameas'姓名',c.Course_nameas'科目',sc.Score_Num

fromStudentsass

leftouterjoinScoresasscon(sc.Stu_Id=s.Stu_ID)

leftouterjoinCoursesascon(sc.Course_Id=c.Course_Id)

//三表左外聯查詢,以stu表為主,其它表為從。

3.selects.stu_Nameas'姓名',c.Course_nameas'科目',sc.Score_Num

fromCoursesasc

rightouterjoinScoresasscon(sc.Course_Id=c.Course_Id)

rightouterjoinStudentsasson(sc.Stu_Id=s.Stu_ID)

//三表右外聯查詢,以stu右表為主,其它表為從。

八. Create 創建資料庫語句

1. create database 資料庫名

on[primary]

(

<數據文件參數>[,…n] [<文件參數>]

)

[log on]

(

{<日誌文件參數> […n]}

)

文件參數:

Name=邏輯文件名,filename=物理文件名,size=大小,maxsize=最大容量,

Filegrowth=增長

文件組參數:

Filegroup 文件組名<文件參數>

例:

usemaster

go

ifexists(select*fromsysdatabaseswherename='abc')

dropdatabaseabc

createdatabaseabc

onprimary

(

name='abc',

filename='d:abc.mdf',

size=5,

maxsize=50,

filegrowth=10%

)

logon

(

name='abc_log',

filename='d:abc_log.ldf',

size=2,

maxsize=20,

filegrowth=1

)

2. use 資料庫名

go

create table 表名

(

欄位數據類型列的特徵

)

Go

例:

usedb_myschool

go

ifexists(select*fromsysobjectswherename='test1')

droptabletest1

createtabletest1

(

Idintnotnull,

SNamenvar50)notnull,

Telintnotnull

)

go

3.使用SQL語句創建和刪除約束

alter table表名

Add constraint 約束名約束類型描述說明

altertabledbo.testaddconstraintPK_IDprimarykey (ID)

主鍵:primary keyPK_ 唯一:uniqueUQ_ 檢查:check CK_ 默認:defaultDF_外鍵:foreign keyFK_

1.execsp_addlogin'abc','abc'//添加SQL用戶名

usedb_myqq

go

execsp_grantdbaccess'abc'//添加用戶名到資料庫中

3. 授權語句

Grant 許可權 on 表名 to 資料庫用戶名 九. 登錄驗證語句

十. SQL編程語句

局部變數/全局變數

1.以@標記符作前綴

Declare @name var8)//聲明

Set @name = value

Select @name=value//賦值

2.以@@標記符作前綴

@@error //最後一個T-SQL錯誤的錯誤號

@@identity //最後一次插入的標識值

@@language//當前使用的語言的名稱

@@max_connections //可以創建的同時連接的最大數目

@@rowcount //受上一個SQL語句影響的行數

@@servername//本地伺服器的名稱

@@servicename //該計算機上的SQL服務的名稱

@@timeticks //當前計算機上每刻度的微秒數

@@transcount //當前連接打開的事務數

@@version //SQL Server的版本信息

4. 輸出

print'SQL服務名:'+@@servicename

select@@SERVICENAMEas'SQL服務名'

5. 邏輯控制項語句

declare@avgfloat

select@avg=avg(Score_Num)fromScoreswhereStu_Id='sc0002'

print'平均分為'+convert(var8),@avg)+'分'

if(@avg>90)

begin

print'最高分'

selectMAX(Score_Num)fromScores

end

else

begin

print'最低分'

selectMIN(Score_Num)fromScores

6. while 循環語句

declare@nint

while(1=1)

begin

select@n=COUNT(*)fromScoreswhereScore_Num<60

if(@n>0)

updateScoressetScore_Num+=2 whereScore_Num<60

else

break

end

print'加分後的成績'

select*fromScores

7. Case多分支語句

selectStu_id,score=case

whenScore_Num>90 then'A'

whenScore_Numbetween 80 and 89 then'B'

whenScore_Numbetween 60 and 79 then'C'

else'D'

end

fromScores

十一.高級查詢

1. where子查詢

2. in 和 not in 子查詢

3. if exists (子查詢)

;

『叄』 SQL Server2000 增刪改查語句

增加記錄:insert into 表名(列1,列2,列3) values(值1,值2,值3);
刪除表裡所有內容:delete from 表名
根據ID值刪除記錄:delete from 表名 where ID=值
修改記錄:update 表名 set 列1=值1,列2=值2,列3=值3 where ID=值
查詢記錄:select * from 表名
根據ID值查詢內容:select * from 表名 where ID=值

『肆』 sql server 怎麼增刪改查

第一種法方:
select 列名 from table(資料庫表名) where(條件)
第二種法方:
select *(表示所有的列) from table(資料庫表名) where(條件)
注意:列名與列名之間用逗號分開。
eg:
1.select ProctID,ProctName,Price
from Proct
where Price>5.0
2.select * from Proct where Price>5.0
3.如何給列加漢子名稱:
格式:「『列標題』=列名」 或 「'列名'AS 列標題」
eg:
select ProctID=『產品編號』,ProctName,Price
from Proct
where Price>5.0
select '產品編號'as ProctID,ProctName,Price
from Proct
where Price>5.0
where 語句中可以使用邏輯運算符
AND OR NOT
eg:
select ProctID,ProctName,Price
from Proct
where Price>=5.0 And Price<=10.0
2.使用字元串模糊匹配
格式:
expression[not] like 'string'(escape"換碼字元")
3.使用查詢列表
如果列的取值范圍不是一個連續的區間,而是一些離散的值,此時就應使用 SQLServer 提供的另一個關鍵字 IN 。
語法格式:column_name [not] IN (value1,value2....)
eg:
select SaleID,SaleName,Sex,Birthday,HireDate,Address
form Seller
where SaleID IN('S01','S02',S07)
4.空值的判定
在SQL Server中,通過null。
5.top 和 distinct
語法:select top integer || top interger percent columnName
from tableName
eg:
分別從Customer表中檢索出前5個及表中前20%的顧客信息。
select top 5 *
from Customer
select top 20 percent *
from Customer
查詢Proct 表中價格最高的6種商品。
eg:
select top 6 *
from Proct
order by price desc
asc(低—>高) desc(高->低)
2.向表中插入數據
語法:insert into tableName(columnName...(要插入的數據的列名)) values(expression(與columnName相對應的值))
注意:再插入數據時,對於允許為空的列可以使用NUll插入空值;對於具有默認值的列,可使用Defaulf插入默認值。
eg:
向Seller 表中插入一行數據,其中Sex欄位使用默認值為『男』,HireDate等欄位均去空值。
insert into seller(saleid,saleName,sex,birthday,hireDate,address,telephone,telephone,notes)
values('s11','趙宇飛',default,'1974-07-25',null,null,null,null)
or
insert into seller(saleid,saleName,brithday)
values('s11','趙宇飛','1974-07-25')
3.修改表中的數據
語法:update tableName
set columnName=expression(...)
where search_conditions
eg:
1.將Proct表中"啤酒"的價格改為4元
update proct
set price=4
where proctName='啤酒'(注意:一定要加條件 +「where」)
4.刪除數據
語法:delete [from] tableName
where search_conditions
eg:
delete from Seller
where SaleID='s11'(注意:一定要加條件 +「where」,不然就把該表中所有的數據刪除了)

『伍』 增刪改查sql語句

sql語句最基本就是增刪改查。

軟體:sqlserver2005

電腦:WIN10

系統:ISO

1、點擊management studio,連接到你的資料庫。

『陸』 sql語句的增刪改查

下面教大家sql增刪改查語句怎麼寫,操作方法如下。

1、首先在電腦中打開navicat,點擊新建查詢。

『柒』 哥,sql的增刪改查

一、增:有2種方法


1.使用insert插入單行數據:


語法:insert[into]<表名>[列名]values<列值>


例:insertintoStrdents(姓名,性別,出生日期)values('王偉華','男','1983/6/15')


注意:如果省略表名,將依次插入所有列


2.使用insert,select語句將現有表中的數據添加到已有的新表中


語法:insertinto<已有的新表><列名>select<原表列名>from<原表名>


例:insertintoaddressList('姓名','地址','電子郵件')selectname,address,email


fromStrdents


注意:查詢得到的數據個數、順序、數據類型等,必須與插入的項保持一致


二、刪:有2中方法


1.使用delete刪除數據某些數據


語法:deletefrom<表名>[where<刪除條件>]


例:deletefromawherename='王偉華'(刪除表a中列值為王偉華的行)


注意:刪除整行不是刪除單個欄位,所以在delete後面不能出現欄位名


2.使用truncatetable刪除整個表的數據


語法:truncatetable<表名>


例:truncatetableaddressList


注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能


用於有外建約束引用的表


三、改使用update更新修改數據


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


例:updateaddressListset年齡=18where姓名='王偉華'


注意:set後面可以緊隨多個數據列的更新值(非數字要引號);where子句是可選的(非數字要引號),用來限制條件,如果不選則整個表的所有行都被更新


四、查


1.普通查詢


語法:select<列名>from<表名>[where<查詢條件表達試>][orderby<排序的列


名>[asc或desc]]


1).查詢所有數據行和列


例:select*froma


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


2).查詢部分行列--條件查詢


例:selecti,j,kfromawheref=5


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


3).在查詢中使用AS更改列名


例:selectnameas姓名fromawheregender='男'


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


4).查詢空行


例:


說明:查詢表a中email為空的所有行,並顯示name列;SQL語句中用isnull或者isnotnull


來判斷是否為空行


5).在查詢中使用常量


例:selectname'北京'as地址froma


說明:查詢表a,顯示name列,並添加地址列,其列值都為'北京'


6).查詢返回限制行數(關鍵字:top)


例1:selecttop6namefroma


說明:查詢表a,顯示列name的前6行,top為關鍵字(oracle中沒有top關鍵字


用rownum替代)


select*fromawhererownum<6


7).查詢排序(關鍵字:orderby,asc,desc)


例:selectname


froma


wheregrade>=60


orderbydesc


說明:查詢表中成績大於等於60的所有行,並按降序顯示name列;默認為ASC升序


2.模糊查詢


1).使用like進行模糊查詢


注意:like運算副只用語字元串,


例:select*fromawherenamelike'趙%'


說明:查詢顯示表a中,name欄位第一個字為趙的記錄


2).使用between在某個范圍內進行查詢


例:select*fromawhereagebetween18and20


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


3).使用in在列舉值內進行查詢(in後是多個的數據)


例:selectnamefromawhereaddressin('北京','上海','唐山')


說明:查詢表a中address值為北京或者上海或者唐山的記錄,顯示name欄位


3.分組查詢


1).使用groupby進行分組查詢


例:selectstudentIDas學員編號,AVG(score)as平均成績(注釋:這里的score是列名)


fromscore(注釋:這里的score是表名)


groupbystudentID


2).使用having子句進行分組篩選


例:selectstudentIDas學員編號,AVG


fromscore


groupbystudentID


havingcount(score)>1


說明:接上面例子,顯示分組後count(score)>1的行,由於where只能在沒有分組


時使用,分組後只能使用having來限制條件,


4.多表聯接查詢


1).內聯接


①在where子句中指定聯接條件


例:selecta.name,b.mark


froma,b


wherea.name=b.name


說明:查詢表a和表b中name欄位相等的記錄

『捌』 SQL常用增刪改查語句

SQL常用增刪改查語句大全

SQL常用的增刪改查語句有哪些?為方便同學們復習SQL語句,我為大家分享SQL增刪改查語句如下:

1增

1.1【插入單行】

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

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

1.2【將現有表數據添加到一個已有表】

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

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

select name,address,email

from Strdents

1.3【直接拿現有表數據創建一個新表並填充】

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

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

1.4【使用union關鍵字合並數據進行插入多行】

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

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

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

select '藍色小明','男','19**/**/**'

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2刪

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

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

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

2.2【刪除整個表】

truncate table <表名>

truncate table tongxunlu

注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

3改

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

例:update tongxunlu set 年齡=18 where 姓名='藍色小名'

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

4查

4.1``精確(條件)查詢

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

4.1.1【查詢所有數據行和列】

例: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【查詢返回限制行數(關鍵字:top percent)】

例1:select top 6 name from a

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

例2:select top 60 percent name from a

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

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

例:select name

from a

where chengji>=60

order by desc

說明:查詢a表中chengji大於等於60的所有行,並按降序顯示name列;默認為ASC升序

4.2``模糊查詢

4.2.1【使用like進行模糊查詢】

注意:like運算副只用於字元串,所以僅與char和varchar數據類型聯合使用

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

說明:查詢顯示表a中,name欄位第一個字為趙的記錄

4.2.2【使用between在某個范圍內進行查詢】

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

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

4.2.3【使用in在列舉值內進行查詢】

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

說明:查詢表a中address值為北京或者上海或者唐山的記錄,顯示name欄位

4.3``.分組查詢

4.3.1【使用group by進行分組查詢】

例:select studentID as 學員編號,AVG(score) as 平均成績 (注釋:這里的score是列名)

from score (注釋:這里的score是表名)

group by studentID

說明:在表score中查詢,按strdentID欄位分組,顯示strdentID欄位和score欄位的平均值;select語句中只允許被分組的'列和為每個分組返回的一個值的表達式,例如用一個列名作為參數的聚合函數

4.3.2【使用having子句進行分組篩選】

例:select studentID as 學員編號,AVG(score) as 平均成績 (注釋:這里的score是列名)

from score (注釋:這里的score是表名)

group by studentID

having count(score)>1

說明:接上面例子,顯示分組後count(score)>1的行,由於where只能在沒有分組時使用,分組後只能使用having來限制條件。

4.4``.多表聯接查詢

4.4.1內聯接

4.4.1.1【在where子句中指定聯接條件】

例:select a.name,b.chengji

from a,b

where a.name=b.name

說明:查詢表a和表b中name欄位相等的記錄,並顯示表a中的name欄位和表b中的chengji欄位

4.4.1.2【在from子句中使用join…on】

例:select a.name,b.chengji

from a inner join b

on (a.name=b.name)

說明:同上

4.4.2外聯接

4.4.2.1【左外聯接查詢】

例:select s.name,c.courseID,c.score

from strdents as s

left outer join score as c

on s.scode=c.strdentID

說明:在strdents表和score表中查詢滿足on條件的行,條件為score表的strdentID與strdents表中的sconde相同

4.4.2.2【右外聯接查詢】

例:select s.name,c.courseID,c.score

from strdents as s

right outer join score as c

on s.scode=c.strdentID

說明:在strdents表和score表中查詢滿足on條件的行,條件為strdents表中的sconde與score表的strdentID相同

;

『玖』 sql增刪改查的操作

insert into table_name(column1,column2) values(value1,value2)

delete from table_name where columnN = conditionN

update table_name set column1 = values where columnN = conditionN

select column1,column2 from table_name where columnN = conditionN