• <ul id="mayc0"></ul>
    <ul id="mayc0"><center id="mayc0"></center></ul>
    <strike id="mayc0"><input id="mayc0"></input></strike>
    <ul id="mayc0"></ul>
  • 始創(chuàng)于2000年 股票代碼:831685
    咨詢熱線:0371-60135900 注冊有禮 登錄
    • 掛牌上市企業(yè)
    • 60秒人工響應
    • 99.99%連通率
    • 7*24h人工
    • 故障100倍補償
    全部產(chǎn)品
    您的位置: 網(wǎng)站首頁 > 幫助中心>文章內(nèi)容

    Oracle高級查詢實例,提升效率

    發(fā)布時間:  2012/9/21 16:35:30

    使用Oracle特有的查詢語法, 可以達到事半功倍的效果。

    如下:

    1. 樹查詢

    create table tree (
         id number(10) not null primary key,
         name varchar2(100) not null,-
     

         super number(10) not null                // 0 is root
    );
    -- 從子到父
    select * from tree start with id = ? connect by id = prior super
    -- 從父到子
    select * from tree start with id = ? connect by prior id = suepr
    -- 整棵樹
    select * from tree start with super = 0 connect by prior id = suepr


    2. 分頁查詢

    select * from (
        select my_table.*, rownum   my_rownum from (
            select name, birthday from employee order by birthday
         ) my_table where rownum < 120
    ) where my_rownum >= 100;


    3. 累加查詢, 以scott.emp為例

    select empno, ename, sal, sum(sal) over(order by empno) result from emp;

          EMPNO ENAME              SAL      RESULT
    ---------- ---------- ---------- ----------
          7369 SMITH             800        800
          7499 ALLEN            1600       2400
          7521 WARD             1250       3650
          7566 JONES            2975       6625
          7654 MARTIN           1250       7875
          7698 BLAKE            2850      10725
          7782 CLARK            2450      13175
          7788 SCOTT            3000      16175
          7839 KING             5000      21175
          7844 TURNER           1500      22675
          7876 ADAMS            1100      23775
          7900 JAMES             950      24725
          7902 FORD             3000      27725
          7934 MILLER           1300      29025


    4. 高級group by

    select decode(grouping(deptno),1,'all deptno',deptno) deptno,
            decode(grouping(job),1,'all job',job) job,
           sum(sal) sal
    from emp
    group by ROLLUP(deptno,job);
    DEPTNO                                    JOB               SAL
    ---------------------------------------- --------- ----------
    10                                        CLERK           1300
    10                                        MANAGER         2450
    10                                        PRESIDENT       5000
    10                                       all job         8750
    20                                        CLERK           1900
    20                                        ANALYST         6000
    20                                        MANAGER         2975
    20                                       all job        10875
    30                                        CLERK            950
    30                                        MANAGER         2850
    30                                        SALESMAN        5600
    30                                       all job         9400
    all deptno                               all job        29025


    5. use hint
    當多表連接很慢時,用ORDERED提示試試,也許會快很多

    SELECT /**//*+ ORDERED */*
      FROM a, b, c, d
    WHERE

     


    本文出自:億恩科技【www.vbseamall.com】

    服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

  • 您可能在找
  • 億恩北京公司:
  • 經(jīng)營性ICP/ISP證:京B2-20150015
  • 億恩鄭州公司:
  • 經(jīng)營性ICP/ISP/IDC證:豫B1.B2-20060070
  • 億恩南昌公司:
  • 經(jīng)營性ICP/ISP證:贛B2-20080012
  • 服務器/云主機 24小時售后服務電話:0371-60135900
  • 虛擬主機/智能建站 24小時售后服務電話:0371-60135900
  • 專注服務器托管17年
    掃掃關注-微信公眾號
    0371-60135900
    Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號
      0
     
     
     
     

    0371-60135900
    7*24小時客服服務熱線