1. 程式人生 > >學習筆記6.11

學習筆記6.11

select vend_name,upper(vend_name) as vend_name_upcase--變成大寫
from Vendors
order by vend_name; 

select vend_name,lower(vend_name) as vend_name_left
from Vendors
order by vend_name;

select vend_name,length(vend_name) as vend_name_left
from Vendors
order by vend_name;

select vend_name,ltrim(vend_name) as vend_name_left--除去左邊的空格
from Vendors
order by vend_name;

select vend_name,soundex(vend_name) as vend_name_left--返回字串sounedx值
from Vendors
order by vend_name;


select cust_name,cust_contact
from customers
where cust_contact='Michael Green';

select cust_name,cust_contact--找音似,這個叼
from customers
where soundex(cust_contact)=soundex('Michael Green');


/*--ORACLE日期時間函式大全

 --  TO_DATE格式(以時間:2007-11-02   13:45:25為例)
   
        Year:      
        yy two digits 兩位年                顯示值:07
        yyy three digits 三位年                顯示值:007
        yyyy four digits 四位年                顯示值:2007
            
        Month:      
        mm    number     兩位月              顯示值:11
        mon    abbreviated 字符集表示          顯示值:11月,若是英文版,顯示nov     
        month spelled out 字符集表示          顯示值:11月,若是英文版,顯示november 
          
        Day:      
        dd    number         當月第幾天        顯示值:02
        ddd    number         當年第幾天        顯示值:02
        dy    abbreviated 當週第幾天簡寫    顯示值:星期五,若是英文版,顯示fri
        day    spelled out   當週第幾天全寫    顯示值:星期五,若是英文版,顯示friday        
        ddspth spelled out, ordinal twelfth 
             
              Hour:
              hh    two digits 12小時進位制            顯示值:01
              hh24 two digits 24小時進位制            顯示值:13
              
              Minute:
              mi    two digits 60進位制                顯示值:45
              
              Second:
              ss    two digits 60進位制                顯示值:25
              
              其它
              Q     digit         季度                  顯示值:4
              WW    digit         當年第幾周            顯示值:44
              W    digit          當月第幾周            顯示值:1
              
        24小時格式下時間範圍為: 0:00:00 - 23:59:59....      
        12小時格式下時間範圍為: 1:00:00 - 12:59:59 .... 
            
1. 日期和字元轉換函式用法(to_date,to_char)
         
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as nowTime from dual;   //日期轉化為字串   
select to_char(sysdate,'yyyy') as nowYear   from dual;   //獲取時間的年   
select to_char(sysdate,'mm')    as nowMonth from dual;   //獲取時間的月   
select to_char(sysdate,'dd')    as nowDay    from dual;   //獲取時間的日   
select to_char(sysdate,'hh24') as nowHour   from dual;   //獲取時間的時   
select to_char(sysdate,'mi')    as nowMinute from dual;   //獲取時間的分   
select to_char(sysdate,'ss')    as nowSecond from dual;   //獲取時間的秒

    
select to_date('2004-05-07 13:23:44','yyyy-mm-dd hh24:mi:ss')    from dual//

2.      
    select to_char( to_date(222,'J'),'Jsp') from dual      
    
    顯示Two Hundred Twenty-Two    

3.求某天是星期幾      
   select to_char(to_date('2002-08-26','yyyy-mm-dd'),'day') from dual;      
   星期一      
   select to_char(to_date('2002-08-26','yyyy-mm-dd'),'day','NLS_DATE_LANGUAGE = American') from dual;      
   monday      
   設定日期語言      
   ALTER SESSION SET NLS_DATE_LANGUAGE='AMERICAN';      
   也可以這樣      
   TO_DATE ('2002-08-26', 'YYYY-mm-dd', 'NLS_DATE_LANGUAGE = American')    

4. 兩個日期間的天數      
    select floor(sysdate - to_date('20020405','yyyymmdd')) from dual;    

5. 時間為null的用法      
   select id, active_date from table1      
   UNION      
   select 1, TO_DATE(null) from dual;      
   
   注意要用TO_DATE(null)    

6.月份差   
   a_date between to_date('20011201','yyyymmdd') and to_date('20011231','yyyymmdd')      
   那麼12月31號中午12點之後和12月1號的12點之前是不包含在這個範圍之內的。      
   所以,當時間需要精確的時候,覺得to_char還是必要的 
      
7. 日期格式衝突問題      
    輸入的格式要看你安裝的ORACLE字符集的型別, 比如: US7ASCII, date格式的型別就是: '01-Jan-01'      
    alter system set NLS_DATE_LANGUAGE = American      
    alter session set NLS_DATE_LANGUAGE = American      
    或者在to_date中寫      
    select to_char(to_date('2002-08-26','yyyy-mm-dd'),'day','NLS_DATE_LANGUAGE = American') from dual;      
    注意我這只是舉了NLS_DATE_LANGUAGE,當然還有很多,      
    可檢視      
    select * from nls_session_parameters      
    select * from V$NLS_PARAMETERS    

8.      
   select count(*)      
   from ( select rownum-1 rnum      
       from all_objects      
       where rownum <= to_date('2002-02-28','yyyy-mm-dd') - to_date('2002-      
       02-01','yyyy-mm-dd')+1      
      )      
   where to_char( to_date('2002-02-01','yyyy-mm-dd')+rnum-1, 'D' )      
        not in ( '1', '7' )      
   
   查詢2002-02-28至2002-02-01間除星期一和七的天數      
   在前後分別呼叫DBMS_UTILITY.GET_TIME, 讓後將結果相減(得到的是1/100秒, 而不是毫秒).    

9. 查詢月份     
    select months_between(to_date('01-31-1999','MM-DD-YYYY'),to_date('12-31-1998','MM-DD-YYYY')) "MONTHS" FROM DUAL;      
    1      
   select months_between(to_date('02-01-1999','MM-DD-YYYY'),to_date('12-31-1998','MM-DD-YYYY')) "MONTHS" FROM DUAL;      
    1.03225806451613 
       
10. Next_day的用法      
    Next_day(date, day)      
    
    Monday-Sunday, for format code DAY      
    Mon-Sun, for format code DY      
    1-7, for format code D    

11      
   select to_char(sysdate,'hh:mi:ss') TIME from all_objects      
   注意:第一條記錄的TIME 與最後一行是一樣的      
   可以建立一個函式來處理這個問題      
   create or replace function sys_date return date is      
   begin      
   return sysdate;      
   end;      
   
   select to_char(sys_date,'hh:mi:ss') from all_objects;   
     
12.獲得小時數      
     extract()找出日期或間隔值的欄位值
    SELECT EXTRACT(HOUR FROM TIMESTAMP '2001-02-16 2:38:40') from offer      
    SQL> select sysdate ,to_char(sysdate,'hh') from dual;      
    
    SYSDATE TO_CHAR(SYSDATE,'HH')      
    -------------------- ---------------------      
    2003-10-13 19:35:21 07      
    
    SQL> select sysdate ,to_char(sysdate,'hh24') from dual;      
    
    SYSDATE TO_CHAR(SYSDATE,'HH24')      
    -------------------- -----------------------      
    2003-10-13 19:35:21 19    

       
13.年月日的處理      
   select older_date,      
       newer_date,      
       years,      
       months,      
       abs(      
        trunc(      
         newer_date-      
         add_months( older_date,years*12+months )      
        )      
       ) days 
       
   from ( select      
        trunc(months_between( newer_date, older_date )/12) YEARS,      
        mod(trunc(months_between( newer_date, older_date )),12 ) MONTHS,      
        newer_date,      
        older_date      
        from ( 
              select hiredate older_date, add_months(hiredate,rownum)+rownum newer_date      
              from emp 
             )      
      )    

14.處理月份天數不定的辦法      
   select to_char(add_months(last_day(sysdate) +1, -2), 'yyyymmdd'),last_day(sysdate) from dual    

16.找出今年的天數      
   select add_months(trunc(sysdate,'year'), 12) - trunc(sysdate,'year') from dual    

   閏年的處理方法      
   to_char( last_day( to_date('02'    | | :year,'mmyyyy') ), 'dd' )      
   如果是28就不是閏年    

17.yyyy與rrrr的區別      
   'YYYY99 TO_C      
   ------- ----      
   yyyy 99 0099      
   rrrr 99 1999      
   yyyy 01 0001      
   rrrr 01 2001    

18.不同時區的處理      
   select to_char( NEW_TIME( sysdate, 'GMT','EST'), 'dd/mm/yyyy hh:mi:ss') ,sysdate      
   from dual;    

19.5秒鐘一個間隔      
   Select TO_DATE(FLOOR(TO_CHAR(sysdate,'SSSSS')/300) * 300,'SSSSS') ,TO_CHAR(sysdate,'SSSSS')      
   from dual    

   2002-11-1 9:55:00 35786      
   SSSSS表示5位秒數    

20.一年的第幾天      
   select TO_CHAR(SYSDATE,'DDD'),sysdate from dual
        
   310 2002-11-6 10:03:51    

21.計算小時,分,秒,毫秒      
    select      
     Days,      
     A,      
     TRUNC(A*24) Hours,      
     TRUNC(A*24*60 - 60*TRUNC(A*24)) Minutes,      
     TRUNC(A*24*60*60 - 60*TRUNC(A*24*60)) Seconds,      
     TRUNC(A*24*60*60*100 - 100*TRUNC(A*24*60*60)) mSeconds      
    from      
    (      
     select      
     trunc(sysdate) Days,      
     sysdate - trunc(sysdate) A      
     from dual      
   )    


   select * from tabname      
   order by decode(mode,'FIFO',1,-1)*to_char(rq,'yyyymmddhh24miss');      
   
   //      
   floor((date2-date1) /365) 作為年      
   floor((date2-date1, 365) /30) 作為月      
   d(mod(date2-date1, 365), 30)作為日.

23.next_day函式      返回下個星期的日期,day為1-7或星期日-星期六,1表示星期日
   next_day(sysdate,6)是從當前開始下一個星期五。後面的數字是從星期日開始算起。      
   1 2 3 4 5 6 7      
   日 一 二 三 四 五 六    
   
   --------------------------------------------------------------- 
   
   select    (sysdate-to_date('2003-12-03 12:55:45','yyyy-mm-dd hh24:mi:ss'))*24*60*60 from ddual
   日期 返回的是天 然後 轉換為ss
     
24,round[舍入到最接近的日期](day:舍入到最接近的星期日)
   select sysdate S1,
   round(sysdate) S2 ,
   round(sysdate,'year') YEAR,
   round(sysdate,'month') MONTH ,
   round(sysdate,'day') DAY from dual

25,trunc[截斷到最接近的日期,單位為天] ,返回的是日期型別
   select sysdate S1,                     
     trunc(sysdate) S2,                 //返回當前日期,無時分秒
     trunc(sysdate,'year') YEAR,        //返回當前年的1月1日,無時分秒
     trunc(sysdate,'month') MONTH ,     //返回當前月的1日,無時分秒
     trunc(sysdate,'day') DAY           //返回當前星期的星期天,無時分秒
   from dual

26,返回日期列表中最晚日期
   select greatest('01-1月-04','04-1月-04','10-2月-04') from dual

27.計算時間差
     注:oracle時間差是以天數為單位,所以換算成年月,日
     
      select floor(to_number(sysdate-to_date('2007-11-02 15:55:03','yyyy-mm-dd hh24:mi:ss'))/365) as spanYears from dual        //時間差-年
      select ceil(moths_between(sysdate-to_date('2007-11-02 15:55:03','yyyy-mm-dd hh24:mi:ss'))) as spanMonths from dual        //時間差-月
      select floor(to_number(sysdate-to_date('2007-11-02 15:55:03','yyyy-mm-dd hh24:mi:ss'))) as spanDays from dual             //時間差-天
      select floor(to_number(sysdate-to_date('2007-11-02 15:55:03','yyyy-mm-dd hh24:mi:ss'))*24) as spanHours from dual         //時間差-時
      select floor(to_number(sysdate-to_date('2007-11-02 15:55:03','yyyy-mm-dd hh24:mi:ss'))*24*60) as spanMinutes from dual    //時間差-分
      select floor(to_number(sysdate-to_date('2007-11-02 15:55:03','yyyy-mm-dd hh24:mi:ss'))*24*60*60) as spanSeconds from dual //時間差-秒

28.更新時間
     注:oracle時間加減是以天數為單位,設改變數為n,所以換算成年月,日
     select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),to_char(sysdate+n*365,'yyyy-mm-dd hh24:mi:ss') as newTime from dual        //改變時間-年
     select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),add_months(sysdate,n) as newTime from dual                                 //改變時間-月
     select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),to_char(sysdate+n,'yyyy-mm-dd hh24:mi:ss') as newTime from dual            //改變時間-日
     select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),to_char(sysdate+n/24,'yyyy-mm-dd hh24:mi:ss') as newTime from dual         //改變時間-時
     select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),to_char(sysdate+n/24/60,'yyyy-mm-dd hh24:mi:ss') as newTime from dual      //改變時間-分
     select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),to_char(sysdate+n/24/60/60,'yyyy-mm-dd hh24:mi:ss') as newTime from dual   //改變時間-秒

29.查詢月的第一天,最後一天
     SELECT Trunc(Trunc(SYSDATE, 'MONTH') - 1, 'MONTH') First_Day_Last_Month,
       Trunc(SYSDATE, 'MONTH') - 1 / 86400 Last_Day_Last_Month,
       Trunc(SYSDATE, 'MONTH') First_Day_Cur_Month,
       LAST_DAY(Trunc(SYSDATE, 'MONTH')) + 1 - 1 / 86400 Last_Day_Cur_Month
   FROM dual;


三. 字元函式(可用於字面字元或資料庫列)

1,字串擷取
   select substr('abcdef',1,3) from dual

2,查詢子串位置
   select instr('abcfdgfdhd','fd') from dual

3,字串連線
   select 'HELLO'||'hello world' from dual;

4, 1)去掉字串中的空格
    select ltrim(' abc') s1,
    rtrim('zhang ') s2,
    trim(' zhang ') s3 from dual
   2)去掉前導和字尾
    select trim(leading 9 from 9998767999) s1,
    trim(trailing 9 from 9998767999) s2,
    trim(9 from 9998767999) s3 from dual;
   
5,返回字串首字母的Ascii值
   select ascii('a') from dual

6,返回ascii值對應的字母
   select chr(97) from dual

7,計算字串長度 
   select length('abcdef') from dual

8,initcap(首字母變大寫) ,lower(變小寫),upper(變大寫)
   select lower('ABC') s1, 
       upper('def') s2, 
       initcap('efg') s3
   from dual;

9,Replace
   select replace('abc','b','xy') from dual;

10,translate
   select translate('abc','b','xx') from dual; -- x是1位

11,lpad [左添充] rpad [右填充](用於控制輸出格式)
   select lpad('func',15,'=') s1, rpad('func',15,'-') s2 from dual;
   select lpad(dname,14,'=') from dept;

12, decode[實現if ..then 邏輯]   注:第一個是表示式,最後一個是不滿足任何一個條件的值
   select deptno,decode(deptno,10,'1',20,'2',30,'3','其他') from dept;
   例:
   select seed,account_name,decode(seed,111,1000,200,2000,0) from t_userInfo//如果seed為111,則取1000;為200,取2000;其它取0
   select seed,account_name,decode(sign(seed-111),1,'big seed',-1,'little seed','equal seed') from t_userInfo//如果seed>111,則顯示大;為200,則顯示小;其它則顯

示相等

13 case[實現switch ..case 邏輯]
    SELECT CASE X-FIELD 
         WHEN X-FIELD < 40 THEN 'X-FIELD 小於 40'
         WHEN X-FIELD < 50 THEN 'X-FIELD 小於 50'
         WHEN X-FIELD < 60 THEN 'X-FIELD 小於 60'
         ELSE 'UNBEKNOWN'
        END
   FROM DUAL 
   
   注:CASE語句在處理類似問題就顯得非常靈活。當只是需要匹配少量數值時,用Decode更為簡潔。

四.數字函式
1,取整函式(ceil 向上取整,floor 向下取整)
   select ceil(66.6) N1,floor(66.6) N2 from dual;

2, 取冪(power) 和 求平方根(sqrt)
   select power(3,2) N1,sqrt(9) N2 from dual;

3,求餘
   select mod(9,5) from dual;

4,返回固定小數位數 (round:四捨五入,trunc:直接截斷)
   select round(66.667,2) N1,trunc(66.667,2) N2 from dual;

5,返回值的符號(正數返回為1,負數為-1)
   select sign(-32),sign(293) from dual;

五.轉換函式
1,to_char()[將日期和數字型別轉換成字元型別]
   1) select to_char(sysdate) s1,
        to_char(sysdate,'yyyy-mm-dd') s2,
        to_char(sysdate,'yyyy') s3,
        to_char(sysdate,'yyyy-mm-dd hh12:mi:ss') s4,
        to_char(sysdate, 'hh24:mi:ss') s5,
        to_char(sysdate,'DAY') s6 
    from dual;
   2) select sal,to_char(sal,'$99999') n1,to_char(sal,'$99,999') n2 from emp

2, to_date()[將字元型別轉換為日期型別] 
    insert into emp(empno,hiredate) values(8000,to_date('2004-10-10','yyyy-mm-dd'));
   
3, to_number() 轉換為數字型別 
    select to_number(to_char(sysdate,'hh12')) from dual; //以數字顯示的小時數
   
六.其他函式
   1.user: 
    返回登入的使用者名稱稱 
    select user from dual;
    
   2.vsize: 
    返回表示式所需的位元組數
    select vsize('HELLO') from dual;
   
   3.nvl(ex1,ex2):  
    ex1值為空則返回ex2,否則返回該值本身ex1(常用) 
    例:如果僱員沒有佣金,將顯示0,否則顯示佣金 
    select comm,nvl(comm,0) from emp;
   
   4.nullif(ex1,ex2): 
    值相等返空,否則返回第一個值
    例:如果工資和佣金相等,則顯示空,否則顯示工資
    select nullif(sal,comm),sal,comm from emp;
   
   5.coalesce:  
    返回列表中第一個非空表示式
    select comm,sal,coalesce(comm,sal,sal*10) from emp;
   
   6.nvl2(ex1,ex2,ex3) :
    如果ex1不為空,顯示ex2,否則顯示ex3
    如:檢視有佣金的僱員姓名以及他們的佣金 
      select nvl2(comm,ename,') as HaveCommName,comm from emp;
   
   
七.分組函式
max min avg count sum
1,整個結果集是一個組
   1) 求部門30 的最高工資,最低工資,平均工資,總人數,有工作的人數,工種數量及工資總和
     select max(ename),max(sal), 
     min(ename),min(sal),
     avg(sal),
     count(*) ,count(job),count(distinct(job)) ,
     sum(sal) from emp where deptno=30;
2, 帶group by 和 having 的分組
   1)按部門分組求最高工資,最低工資,總人數,有工作的人數,工種數量及工資總和
    select deptno, max(ename),max(sal),
    min(ename),min(sal),
    avg(sal),
    count(*) ,count(job),count(distinct(job)) ,
    sum(sal) from emp group by deptno;
   
   2)部門30的最高工資,最低工資,總人數,有工作的人數,工種數量及工資總和 
    select deptno, max(ename),max(sal),
    min(ename),min(sal),
    avg(sal),
    count(*) ,count(job),count(distinct(job)) ,
    sum(sal) from emp group by deptno having deptno=30;
   
3, stddev 返回一組值的標準偏差
    select deptno,stddev(sal) from emp group by deptno;
    variance 返回一組值的方差差
    select deptno,variance(sal) from emp group by deptno;

4, 帶有rollup和cube操作符的Group By
    rollup 按分組的第一個列進行統計和最後的小計
    cube 按分組的所有列的進行統計和最後的小計
    select deptno,job ,sum(sal) from emp group by deptno,job;
    select deptno,job ,sum(sal) from emp group by rollup(deptno,job); 
    cube 產生組內所有列的統計和最後的小計
    select deptno,job ,sum(sal) from emp group by cube(deptno,job);

八、臨時表
   只在會話期間或在事務處理期間存在的表.
   臨時表在插入資料時,動態分配空間 
   create global temporary table temp_dept
   (dno number,
   dname varchar2(10))
   on commit delete rows;
   insert into temp_dept values(10,'ABC');
   commit;
   select * from temp_dept; --無資料顯示,資料自動清除
   on commit preserve rows:在會話期間表一直可以存在(保留資料)
 */ -- on commit delete rows:事務結束清除資料(在事務結束時自動刪除表的資料)
 
 select order_num,order_date
 from orders
 where to_number(to_char(order_date,'YYYY'))=2012;
 
 select order_num--兩個日期之間的2012 01 01 -2012 12 31
 from orders
 where order_date between to_date('20120101','yyyymmdd')
 and to_date('20121231','yyyymmdd');

--所謂數值處理函式--------------------------------
/*主要分為三塊介紹(單值函式、聚合函式、列表函式)

一、單值函式(比較簡單,看一遍基本也就理解記住了)

1、基本加減乘車沒有什麼可說的,只需要注意一點,任何值與null一起運算 ,結果都為null,因為null代表著未知值,與null進行加減乘除運算得到的還是未知值,返回的結果還是null。
select 3+null ,3-null,3*null,3/null from dual --執行結果都是null

2、nvl和nvl2 空值置換函式

以前單獨寫過 ,這裡不說了

3、abs 絕對值函式

select abs(2.1),,abs(-2.1) from dual--執行結果都是2.1

4、ceil 、 floor 這兩個也比較簡單啦
ceil 只入不捨函式
floor 只舍不入函式
select ceil(-2.6),ceil(2.6), floor(-2.6),floor(2.6) from dual
執行結果依次為 -2 3 -3 2
5、round 和 trunc 又是一對有關係的函式
round 按照給定精度進行舍入 兩個引數,第一個代表要處理的數值,第二個代表精度,第二個引數可以省略,省略的時候預設值為0
trunc 按照給定精度擷取數字 兩個引數,第一個代表要處理的數值,第二個代表精度,第二個引數可以省略,省略的時候預設值為0
select round(2.615),round(-2.615),round(2.615,0),round(-2.615,0) ,round(2.615 ,1),round(-2.615,1),round(2.615 ,2),round(-2.615,2) from dual
執行結果依次為 3 -3 3 -32.6-2.62.62-2.62
select trunc(2.615),trunc(-2.615),trunc(2.615,0),trunc(-2.615,0) ,trunc(2.615 ,1),trunc(-2.615,1),trunc(2.615 ,2),trunc(-2.615,2) from dual
執行結果依次為1 2 -2 2 -22.6-2.62.61-2.61
注意 : round 和 trunc 這兩個函式的第二個引數可以為負值,就是從小數點開始往左數
select round(248.1,-1),round(-248.1,-1),round(248.1,-2),round(-248.1,-2) from dual
執行結果依次為 250 -250 200 -200
select trunc(248.1,-1),trunc(-248.1,-1),trunc(248.1,-2),trunc(-248.1,-2) from dual
執行結果依次為 240 -240 200 -200
6、mod 取餘函式
select mod(100,5),mod(22,23),mod(10,4),mod(-10,4),mod(-21.12,7),mod(100,0),mod(100,-21),mod(0,2) from dual

執行結果依次為 0 22 2 -2 -0.12 10016 0
需要注意的是數值為負值和0的情況
根據 mod(value,1) 是否等於0可以判斷value值是否為整數。
7、power 和 sqrt 分別是求平方和求平方根的意思
select power(3,2),power(2,-2),SQRT(9),sqrt(0) from dual
執行結果依次為 9 0.25 3 0
需要注意的地方:
sqrt是求平方根的,它就一個引數,而且必須是非負數。
oracle中 0.5可以省略成.5 今天看到.5這個字樣的時候著實糾結了一會
8、sign 判斷一個數值是正數 還是負數 還是0 正數返回1負數返回-1 0返回0 這個還是比較常用的
select sign(2.1),sign(0),sign(-2.1) from dual
執行結果依次為 1 0 -1
9、其餘的一些冪運算 、 三角函式運算的函式就不介紹了,平時的商業開發很少用到,科技工作中會比較常用吧。
二、聚集函式

我們需要一個表來演示相關的例子了,建一個表table_a(代表不同城市早、中、晚的氣溫資料,資料的合理性就先不要管了)

name	time	num_morning	num_nooning	num_night
哈爾濱	2013-12-14	21.0	 	11.0
哈爾濱	2013-12-15	22.0	28.0	35.0
哈爾濱	2013-12-16	 	 	 
哈爾濱	2013-12-17	 	36.0	22.0
哈爾濱	2013-12-18	23.0	71.0	11.0
北 京	2013-12-14	33.0	33.0	30.0
北 京	2013-12-15	25.0	27.0	 
北 京	2013-12-16	31.0	31.0	12.0
北 京	2013-12-17	44.0	25.0	31.0
北 京	2013-12-18	24.0	25.0	23.0
綏 化	2013-12-14	19.0	18.0	21.0
綏 化	2013-12-15	24.0	24.0	21.0
綏 化	2013-12-16	25.0	25.0	24.0
綏 化	2013-12-17	24.0	24.0	31.0
綏 化	2013-12-18	21.0	19.0	12.0 1、聚集函式中對於null的態度是 忽略
舉個例子看看: 我們查詢一下各個城市最近5天每天早上的平均氣溫

select name ,avg(num_morning) from table_a group by name 執行的結果是22 說明它忽略了兩天為空的記錄,根據三天計算的平均值

執行結果:

name	avg(num_morning)
綏 化	22.6
哈爾濱	22
北 京	31.4
再舉個例子:表中有幾條哈爾濱早上的氣溫紀錄

select count(num_morning) from table_a where name ='哈爾濱'; 執行結果是3

注意:count(num_morning)可以忽略num_morning為null的資料使用count(*)就不能忽略null了 即時所有欄位都為null,count(*)也不會忽略這行(起碼還有rowid)

2、常用的聚合函式 max min sum avg count 平時很常用了 舉個例子不多說了。

(1)、查詢各個城市白天的最高氣溫、最低氣溫、總和 、統計天數、平均氣溫

select name, max(num_morning) 最高氣溫,min(num_morning) 最低氣溫,sum(num_morning) 總和,count(num_morning) 統計天數,avg(num_morning) 平均氣溫 from table_a group by name

執行結果:

name	最高氣溫	最低氣溫	總和	統計天數	平均氣溫
綏 化	25	19	113	5	22.6
哈爾濱	23	21	66	3	22
北 京	44	24	157	5	31.4
3、stddev(標準差函式) variance(標準方差函式) 兩者格式與上面的max sum等一致。

4、聚合函式中的 distinct

所有的聚合函式都有一個distinct與all選項。

distinct 表示該列有相同的值的時候只取一列。舉個例子說明下:

select count(distinct name),count(name),count(*),count(all name ) from table_a

執行結果: 3 15 15 15

三、列表函式

聚合函式與列表函式的區別:聚合函式是作用在多行的同一列上,組合函式是作用在一行的多個列上,很明顯了吧!不明顯的話下面有對應的例子,看完保證明顯。

1、greatest(取多個數值的最大值) least(取多個數值的最小值)

例子: 取出 1 ,3,2,1,5,4 幾個數中的最大值和最小值

select greatest(1,3,2,1,5,4),least(1,3,2,1,5,4) from dual 返回值 5 1

可以對數值進行比較,對字串進行比較

看完上面的例子再讓我們求各個城市每天的最高氣溫 、最低氣溫是多少就很簡單了,不寫了

注意:這兩個函式對null的態度跟單值函式一樣,當成未知,結果都會返回null

2、coalesce 引數是一串值,返回是第一個出現的不為空的值,如果全都為空 那麼返回null

select coalesce(null,'','',null,'1',null) from dual 返回 1

注意:各個引數的型別必須一致。

四、運算優先順序

1、符號優先順序:圓括號優先順序最高、其次是乘除法、再其次是加減法、當優先順序相同的時候是從左向右執行。

2、and 和 or的優先順序比較: and 優先順序 高於 or

舉個例子:查詢早上氣溫大於中午並且早上氣溫大於晚上 或者 中午氣溫大於晚上的資料

我有兩種寫法:

select * from table_a where num_morning>num_nooning and num_morning>num_night or num_nooning>num_night;

select * from table_a where num_nooning>num_night or num_morning>num_nooning and num_morning>num_night

經測試兩個sql返回結果都一樣:

1 哈爾濱 2013-12-17 36.022.0
2 哈爾濱 2013-12-18 23.071.011.0
3 北 京 2013-12-14 33.033.030.0
4 北 京 2013-12-16 31.031.012.0
5 北 京 2013-12-17 44.025.031.0
6 北 京 2013-12-18 24.025.023.0
7 綏 化 2013-12-15 24.024.021.0
8 綏 化 2013-12-16 25.025.024.0
9 綏 化 2013-12-18 21.019.012.0

例子結果充分說明了and的優先順序要大於or 優先順序要是怕弄錯的話就加括號強制先後執行就不怕了。*/

select avg(prod_price) as avg_price--平均值
from products;
select count(prod_price) as price--行數
from products;
select max(prod_price) as price--max  min  sum函式
from products;

select sum(item_price*quantity) as total
from orderitems where order_num=20005;

--去除相同的
select avg(distinct prod_price) as nya
from products
where vend_id='DLL01';

--distinct必須用列名,不能用於計算或表示式 all,取全部的。

--組合
select count(*) as num_items,
min(prod_price) as price_min,
max(prod_price) as pricc_max,
VARIANCE(prod_price) as price_var,--方差
avg(prod_price) as price_avg--不加 ,
from products;

select count(*) as num
from products
where vend_id='DLL01';

--分組
select vend_id ,count(*) as num
from products
group by vend_id;
--按vend_id排序並分組
--group_by可以巢狀,但子句不能是聚集函式,並且必須在where之後

--過濾掉<2的
select cust_id,count(*) as orders
from orders
group by cust_id
having count(*) >=2;

select vend_id,count(*) as num_prods
from products
where prod_price>=4
group by vend_id
having count(*)>=2;
--where 過濾行,having過濾分組。

select order_num,count(*) as items
from orderitems
group by order_num
having count(*) >= 3
order by items,order_num;

--select ,from ,where,group by,having,order by按順序

select order_num
from orderitems
where prod_id='RGAN01';

select cust_id 
from orders 
where order_num in(select order_num from orderitems where prod_id='RGAN01');

select cust_name,cust_contact
from customers
where cust_id in('1000000004','1000000005');---作為子查詢的只能查詢單個列。

select cust_name,cust_state,(select count(*) from orders where orders.cust_id=customers.cust_id) as orders
from customers
order by cust_name;

--天知道什麼是聯結
--建立聯結
select vend_name,prod_name,prod_price
from vendors,products
where vendors.vend_id=products.vend_id;

select vend_name,prod_name,prod_price
from products,vendors;

--並不懂內聯聯結
select vend_name,prod_name,prod_price
from vendors inner join products
on vendors.vend_id=products.vend_id;


--http://www.blogjava.net/hello-syun/archive/2011/04/08/347890.html
--about oracle 聯結

select prod_name,vend_name,prod_price,quantity
from orderitems,products,vendors
where products.vend_id=vendors.vend_id
and orderitems.prod_id=products.prod_id
and order_num=20007;