溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SQL常用語句積累

發(fā)布時間:2020-06-13 11:41:09 來源:網(wǎng)絡(luò) 閱讀:485 作者:馬尾和披肩 欄目:數(shù)據(jù)庫

SQL 常用語句積累:

一、 SQL 基本語句

SQL 分類:

DDL —數(shù)據(jù)定義語言 (Create , Alter , Drop , DECLARE)

DML —數(shù)據(jù)操縱語言 (Select , Delete , Update , Insert)

DCL —數(shù)據(jù)控制語言 (GRANT , REVOKE , COMMIT , ROLLBACK)

 

首先 , 簡要介紹基礎(chǔ)語句:

1 、說明:創(chuàng)建數(shù)據(jù)庫

Create DATABASE database-name

2 、說明:刪除數(shù)據(jù)庫

drop database dbname

3 、說明:備份 sql server

---  創(chuàng)建 備份數(shù)據(jù)的  device

USE master

EXEC sp_addumpdevice 'disk', 'testBack', 'c:\mssql7backup\MyNwind_1.dat'

---  開始 備份

BACKUP DATABASE pubs TO testBack

4 、說明:創(chuàng)建新表

create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)

根據(jù)已有的表創(chuàng)建新表:

A : create table tab_new like tab_old ( 使用舊表創(chuàng)建新表 )

B : create table tab_new as select col1,col2 …  from tab_old definition only

5 、說明:刪除新表 drop table tabname

6 、說明:增加一個列

Alter table tabname add column col type

注:列增加后將不能刪除。 DB2 中列加上后數(shù)據(jù)類型也不能改變,唯一能改變的是增加 varchar 類型的長度。

7 、說明:添加主鍵:  Alter table tabname add primary key(col)

說明:刪除主鍵:  Alter table tabname drop primary key(col)

8 、說明:創(chuàng)建索引: create [unique] index idxname on tabname(col … .)

刪除索引: drop index idxname

注:索引是不可更改的,想更改必須刪除重新建。

9 、說明:創(chuàng)建視圖: create view viewname as select statement

刪除視圖: drop view viewname

10 、說明:幾個簡單的基本的 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% ’  ---like 的語法很精妙,查資料 !

排序: select * from table1 order by field1,field2 [desc]

總數(shù): 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

最?。?nbsp;select min(field1) as minvalue from table1

11 、說明:幾個高級查詢運算詞

A :  UNION  運算符

UNION  運算符通過組合其他兩個結(jié)果表(例如  TABLE1  和  TABLE2 )并消去表中任何重復(fù)行而派生出一個結(jié)果表。當(dāng)  ALL  隨 UNION  一起使用時(即  UNION ALL ),不消除重復(fù)行。兩種情況下,派生表的每一行不是來自  TABLE1  就是來自  TABLE2 。

B :  EXCEPT  運算符

EXCEPT  運算符通過包括所有在  TABLE1  中但不在  TABLE2  中的行并消除所有重復(fù)行而派生出一個結(jié)果表。當(dāng)  ALL  隨  EXCEPT  一起使用時 (EXCEPT ALL) ,不消除重復(fù)行。

C :  INTERSECT  運算符

INTERSECT  運算符通過只包括  TABLE1  和  TABLE2  中都有的行并消除所有重復(fù)行而派生出一個結(jié)果表。當(dāng)  ALL  隨  INTERSECT 一起使用時 (INTERSECT ALL) ,不消除重復(fù)行。

注:使用運算詞的幾個查詢結(jié)果行必須是一致的。

12 、說明:使用外連接

A 、 left outer join :

左外連接(左連接):結(jié)果集幾包括連接表的匹配行,也包括左連接表的所有行。

SQL: select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c

B : right outer join:

右外連接 ( 右連接 ) :結(jié)果集既包括連接表的匹配連接行,也包括右連接表的所有行。

C : full outer join :

全外連接:不僅包括符號連接表的匹配行,還包括兩個連接表中的所有記錄。

二、 SQL 子查詢語句

      1 、單行子查詢

        select ename,deptno,sal

        from emp

        where deptno=(select deptno from dept where loc='NEW YORK') ;

     2 、多行子查詢

        SELECT ename,job,sal

        FROM EMP

        WHERE deptno in ( SELECT deptno FROM dept WHERE dname LIKE 'A%') ;

     3 、多列子查詢

        SELECT deptno,ename,job,sal

        FROM EMP

        WHERE (deptno,sal) IN (SELECT deptno,MAX(sal) FROM EMP GROUP BY deptno) ;

     4 、內(nèi)聯(lián)視圖子查詢

       (1)SELECT ename,job,sal,rownum

          FROM (SELECT ename,job,sal FROM EMP ORDER BY sal) ;

       (2)SELECT ename,job,sal,rownum

          FROM ( SELECT ename,job,sal FROM EMP ORDER BY sal)

          WHERE rownum<=5 ;

 

     5 、在 HAVING 子句中使用子查詢

        SELECT deptno,job,AVG(sal) FROM EMP GROUP BY deptno,job HAVING AVG(sal)>(SELECT sal FROM EMP WHERE ename='MARTIN') ;

     6 、內(nèi)連接   左連接   右連接舉例;

     select sys_user.user_id ,sys_user.user_code  from  sys_user inner join XZFW_BANJIE onsys_user.user_id=XZFW_BANJIE.userid

    小例子:

     select top 10 * from sys_user  where user_code not in (select  user_code  from sys_user where user_code like '%yzj%')

     select top 2 * from (select top 2 *  from td.users order by us_username desc) users order by us_username desc

     7 、刪除約束語句:

     alter   table   dbo.XZFW_SYS_USER   drop   CONSTRAINT  FK1772E1891324F678

      8 、記錄數(shù)查詢

      select count(user_pass) from sys_user

      select count(*) from sys_user where user_code!='admin'

      9 、在范圍之間取值 ( between ... and .. 用法 )

      select sys_user.user_id,sys_user.user_name,xzfw_shoujian.caseid from sys_user inner join xzfw_shoujian on sys_user.user_id=xzfw_shoujian.userid where user_id between 5 and 100

      或 select * from sys_user  where user_id<10 and user_id>1

      10 、 三表查詢實例:(三張表為: USER_DETAILS , Subject , Score )

select USER_DETAILS.USER_NAME,Subject.SubjectName,Score.Score from USER_DETAILS inner join Scoreon USER_DETAILS.USER_ID=Score.USER_ID inner join Subject on Score.SubjectID=Subject.SubjectIDwhere USER_DETAILS.USER_ID=1

  常用查詢舉例:

 

select * from dbo.USER_DETAILS where USER_NAME='Cheers Li' and USER_POSITION='SQE'

select * from dbo.USER_DEPT

select * from dbo.USER_DETAILS

select top 3* from dbo.USER_DETAILS inner join dbo.USER_DEPT onUSER_DETAILS.USER_DEPT_ID=dbo.USER_DEPT.USER_DEPT_ID

insert into dbo.USER_DEPT (USER_DEPT_ID,USER_DEPT_NAME)values('QE_01','Software quality engineer')

update USER_DEPT set USER_DEPT_ID='QE_02' where USER_DEPT_NAME='Quality Control'

delete from dbo.USER_DEPT where USER_DEPT_ID='QE_01'

select dbo.USER_DETAILS.USER_NAME,dbo.USER_DETAILS.USER_AGE,dbo.USER_DEPT.USER_DEPT_NAME,USER_DEPT.USER_DEPT_ID fromdbo.USER_DETAILS right join dbo.USER_DEPT onUSER_DETAILS.USER_DEPT_ID=dbo.USER_DEPT.USER_DEPT_ID

select count(USER_NAME)from dbo.USER_DETAILS where USER_NAME='Cheers Li'

alter table USER_DEPT add Testcolumn char

alter table USER_DEPT drop column Testcolumn

select top 3* from(select top 3* from dbo.USER_DETAILS where USER_DEPT_ID='DEV_01' order byUSER_AGE desc)aa order by USER_ID desc

 

select * from dbo.USER_DETAILS where USER_NAME=(select max(USER_NAME) fromdbo.USER_DETAILS)

三、補(bǔ)充常用語句。

1. select employees.employee_id,employees.first_name,employees.last_name,salary*(1+0.1) new_salary from hr.employees;

2. select employee_id,first_name from hr.employees where first_name like 'B%';

3. select count(*) from hr.employees where first_name like 'B%';

4. select job_id,avg(salary),sum(salary),max(salary),count(*) from hr.employees group by job_id;


 

其次,大家來看一些不錯的 sql 語句

1 、說明:復(fù)制表 ( 只復(fù)制結(jié)構(gòu) , 源表名: a 新表名: b) (Access 可用 )

法一: select * into b from a where 1<>1

法二: select top 0 * into b from a

 

2 、說明:拷貝表 ( 拷貝數(shù)據(jù) , 源表名: a 目標(biāo)表名: b) (Access 可用 )

insert into b(a, b, c) select d,e,f from b;

 

3 、說明:跨數(shù)據(jù)庫之間表的拷貝 ( 具體數(shù)據(jù)使用絕對路徑 ) (Access 可用 )

insert into b(a, b, c) select d,e,f from b in ‘具體數(shù)據(jù)庫’ where 條件

例子: ..from b in '"&Server.MapPath(".")&"\data.mdb" &"' where..

 

4 、說明:子查詢 ( 表名 1 : a 表名 2 : b)

select a,b,c from a where a IN (select d from b ) 或者 : select a,b,c from a where a IN (1,2,3)

 

5 、說明:顯示文章、提交人和最后回復(fù)時間

select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table where table.title=a.title) b

 

6 、說明:外連接查詢 ( 表名 1 : a 表名 2 : b)

select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c

 

7 、說明:在線視圖查詢 ( 表名 1 : a )

select * from (Select a,b,c FROM a) T where t.a > 1;

 

8 、說明: between 的用法 ,between 限制查詢數(shù)據(jù)范圍時包括了邊界值 ,not between 不包括

select * from table1 where time between time1 and time2

select a,b,c, from table1 where a not between 數(shù)值 1 and 數(shù)值 2

 

9 、說明: in 的使用方法

select * from table1 where a [not] in ( ‘值 1 ’ , ’值 2 ’ , ’值 4 ’ , ’值 6 ’ )

 

10 、說明:兩張關(guān)聯(lián)表,刪除主表中已經(jīng)在副表中沒有的信息

delete from table1 where not exists ( select * from table2 where table1.field1=table2.field1 )

 

11 、說明:四表聯(lián)查問題:

select * from a left inner join b on a.a=b.b right inner join c on a.a=c.c inner join d on a.a=d.d where .....

 

12 、說明:日程安排提前五分鐘提醒

SQL: select * from 日程安排 where datediff('minute',f 開始時間 ,getdate())>5

 

13 、說明:一條 sql 語句搞定數(shù)據(jù)庫分頁

select top 10 b.* from (select top 20 主鍵字段 , 排序字段 from 表名 order by 排序字段 desc) a, 表名 b where b. 主鍵字段 = a. 主鍵字段order by a. 排序字段

 

14 、說明:前 10 條記錄

select top 10 * form table1 where 范圍

 

15 、說明:選擇在每一組 b 值相同的數(shù)據(jù)中對應(yīng)的 a 最大的記錄的所有信息 ( 類似這樣的用法可以用于論壇每月排行榜 , 每月熱銷產(chǎn)品分析 , 按科目成績排名 , 等等 .)

select a,b,c from tablename ta where a=(select max(a) from tablename tb where tb.b=ta.b)

 

16 、說明:包括所有在 TableA 中但不在 TableB 和 TableC 中的行并消除所有重復(fù)行而派生出一個結(jié)果表

(select a from tableA ) except (select a from tableB) except (select a from tableC)

 

17 、說明:隨機(jī)取出 10 條數(shù)據(jù)

select top 10 * from tablename order by newid()

 

18 、說明:隨機(jī)選擇記錄

select newid()

 

19 、說明:刪除重復(fù)記錄

Delete from tablename where id not in (select max(id) from tablename group by col1,col2,...)

 

20 、說明:列出數(shù)據(jù)庫里所有的表名

select name from sysobjects where type='U'

 

21 、說明:列出表里的所有的

select name from syscolumns where id=object_id('TableName')

 

22 、說明:列示 type 、 vender 、 pcs 字段,以 type 字段排列, case 可以方便地實現(xiàn)多重選擇,類似 select 中的 case 。

select type,sum(case vender when 'A' then pcs else 0 end),sum(case vender when 'C' then pcs else 0 end),sum(case vender when 'B' then pcs else 0 end) FROM tablename group by type

顯示結(jié)果:

type vender pcs

電腦 A 1

電腦 A 1

光盤 B 2

光盤 A 2

手機(jī) B 3

手機(jī) C 3

 

23 、說明:初始化表 table1

TRUNCATE TABLE table1

 

24 、說明:選擇從 10 到 15 的記錄

select top 5 * from (select top 15 * from table order by id asc) table_ 別名 order by id desc


數(shù)據(jù)庫基本理論整理:

通俗地理解三個范式

通俗地理解三個范式,對于數(shù)據(jù)庫設(shè)計大有好處。在數(shù)據(jù)庫設(shè)計中,為了更好地應(yīng)用三個范式,就必須通俗地理解三個范式 ( 通俗地理解是夠用的理解,并不是最科學(xué)最準(zhǔn)確的理解 ) :

第一范式: 1NF 是對屬性的原子性約束,要求屬性具有原子性,不可再分解;

第二范式: 2NF 是對記錄的惟一性約束,要求記錄有惟一標(biāo)識,即實體的惟一性;

第三范式: 3NF 是對字段冗余性的約束,即任何字段不能由其他字段派生出來,它要求字段沒有冗余。

沒有冗余的數(shù)據(jù)庫設(shè)計可以做到。但是,沒有冗余的數(shù)據(jù)庫未必是最好的數(shù)據(jù)庫,有時為了提高運行效率,就必須降低范式標(biāo)準(zhǔn),適當(dāng)保留冗余數(shù)據(jù)。具體做法是:在概念數(shù)據(jù)模型設(shè)計時遵守第三范式,降低范式標(biāo)準(zhǔn)的工作放到物理數(shù)據(jù)模型設(shè)計時考慮。降低范式就是增加字段,允許冗余。

        基本表及其字段之間的關(guān)系 , 應(yīng)盡量滿足第三范式。但是,滿足第三范式的數(shù)據(jù)庫設(shè)計,往往不是最好的設(shè)計。為了提高數(shù)據(jù)庫的運行效率,常常需要降低范式標(biāo)準(zhǔn):適當(dāng)增加冗余,達(dá)到以空間換時間的目的。

〖例 2 〗:有一張存放商品的基本表,如表 1 所示?!敖痤~”這個字段的存在,表明該表的設(shè)計不滿足第三范式,因為“金額”可以由“單價”乘以“數(shù)量”得到,說明“金額”是冗余字段。但是,增加“金額”這個冗余字段,可以提高查詢統(tǒng)計的速度,這就是以空間換時間的作法。

在 Rose 中,規(guī)定列有兩種類型:數(shù)據(jù)列和計算列?!敖痤~”這樣的列被稱為“計算列”,而“單價”和“數(shù)量”這樣的列被稱為“數(shù)據(jù)列”。

表 1 商品表的表結(jié)構(gòu)

商品名稱 商品型號 單價 數(shù)量 金額

電視機(jī) 29 吋 2500 40 100,000


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI