1. 程式人生 > >SQL常用增刪改查語句

SQL常用增刪改查語句

滿足 between 結構 模糊 運算 源表 刪除表 sel 模糊查詢

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 <表名> 刪除條件整個表

2.2【刪除整個表的值】
truncate table <表名>
註意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表

3改

update <表名> set <字段名=值> [where <更新條件>]
例:update tongxunlu set 年齡=18 where 姓名=‘藍色小名‘

4查

select <列名> from <表名> [where <查詢條件表達試>] [order by <排序的字段名>[asc或desc]] #默認為asc升序

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.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.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.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相同

SQL常用增刪改查語句