Oracle 11g: The difference between WHERE and HAVING

來源:互聯網
上載者:User
SQL> select * from sys.SHIP_CABINS ;SHIP_CABIN_ID    SHIP_ID ROOM_ ROOM_STYLE ROOM_TYPE            WINDOW         GUESTS      SQ_FT BALCONY_SQ_FT------------- ---------- ----- ---------- -------------------- ---------- ---------- ---------- -------------            1            102   Suite      Standard             Ocean               4        533            2            103   Stateroom  Standard             Ocean               2        160            3            104   Suite      Standard             None                4        533            4            105   Stateroom  Standard             Ocean               3        205            5            106   Suite      Standard             None                6        586            6            107   Suite      Royal                Ocean               5       1524            7            108   Stateroom  Large                None                2        211            8            109   Stateroom  Standard             None                2        180            9            110   Stateroom  Large                None                2        225           10            702   Suite      Presidential         None                5       1142           11            703   Suite      Royal                Ocean               5       1745           12            704   Suite      Skyloft              Ocean               8        722

 Group by without WHERE and HAVING

SQL> select room_style, room_type, sum(GUESTS) "GUEST SUM" from sys.ship_cabins group by room_style, room_type ;ROOM_STYLE ROOM_TYPE             GUEST SUM---------- -------------------- ----------Stateroom  Standard                      7Suite      Standard                     14Stateroom  Large                         4Suite      Skyloft                       8Suite      Royal                        10Suite      Presidential                  5

HAVING

SQL> select room_style, room_type, sum(GUESTS) "GUEST SUM" from sys.ship_cabins group by room_style, room_type having room_type<>'Royal' ;ROOM_STYLE ROOM_TYPE             GUEST SUM---------- -------------------- ----------Stateroom  Standard                      7Suite      Standard                     14Stateroom  Large                         4Suite      Skyloft                       8Suite      Presidential                  5

WHERE

SQL> select room_style, room_type, sum(GUESTS) "GUEST SUM" from sys.ship_cabins where room_type<>'Royal' group by room_style, room_type ;ROOM_STYLE ROOM_TYPE             GUEST SUM---------- -------------------- ----------Stateroom  Standard                      7Suite      Standard                     14Stateroom  Large                         4Suite      Skyloft                       8Suite      Presidential                  5

Summary:

There is no difference between them when there is no aggregate function in HAVING clause.

However, we do this in HAVING.

SQL> select room_style, room_type, sum(GUESTS) "GUEST SUM" from sys.ship_cabins group by room_style, room_type having sum(GUESTS)>8 ;ROOM_STYLE ROOM_TYPE             GUEST SUM---------- -------------------- ----------Suite      Standard                     14Suite      Royal                        10

 

 There is no way to filter out sum(GUESTS)>8 entries using WHERE, because it doesn't allow to use Aggregate function in WHERE clause.

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.