Anda di halaman 1dari 6

9/3/2018 SQL HAVING Clause

HTML CSS MORE


w3schools.com

SQL HAVING Clause


❮ Previous Next ❯

   

The SQL HAVING Clause


The HAVING clause was added to SQL because the WHERE keyword could not be used
with aggregate functions.

HAVING Syntax

SELECT column_name(s)
FROM table_name
WHERE condition
GROUP BY column_name(s)
HAVING condition
ORDER BY column_name(s);

Demo Database
Below is a selection from the "Customers" table in the Northwind sample database:

CustomerID CustomerName ContactName Address City PostalCod

1 Alfreds Maria Anders Obere Str. 57 Berlin 12209


Futterkiste

2 Ana Trujillo Ana Trujillo Avda. de la México 05021


Emparedados y Constitución D.F.
helados 2222

https://www.w3schools.com/sql/sql_having.asp 1/6
9/3/2018 SQL HAVING Clause

3 Antonio Moreno Antonio Mataderos México 05023


HTML CSS MORE
Taquería Moreno 2312 D.F.

4 Around the Horn Thomas Hardy 120 Hanover London WA1 1DP
Sq.

5 Berglunds Christina Berguvsvägen Luleå S-958 22


snabbköp Berglund 8

SQL HAVING Examples


The following SQL statement lists the number of customers in each country. Only include
countries with more than 5 customers:

Example

SELECT COUNT(CustomerID), Country


FROM Customers
GROUP BY Country
HAVING COUNT(CustomerID) > 5;

Try it Yourself »

The following SQL statement lists the number of customers in each country, sorted high to
low (Only include countries with more than 5 customers):

Example

SELECT COUNT(CustomerID), Country


FROM Customers
GROUP BY Country
HAVING COUNT(CustomerID) > 5
ORDER BY COUNT(CustomerID) DESC;

Try it Yourself »

https://www.w3schools.com/sql/sql_having.asp 2/6
9/3/2018 SQL HAVING Clause

Demo Database
HTML CSS MORE

Below is a selection from the "Orders" table in the Northwind sample database:

OrderID CustomerID EmployeeID OrderDate ShipperID

10248 90 5 1996-07-04 3

10249 81 6 1996-07-05 1

10250 34 4 1996-07-08 2

And a selection from the "Employees" table:

EmployeeID LastName FirstName BirthDate Photo Notes

1 Davolio Nancy 1968-12- EmpID1.pic Education


08 includes a BA....

2 Fuller Andrew 1952-02- EmpID2.pic Andrew received


19 his BTS....

3 Leverling Janet 1963-08- EmpID3.pic Janet has a BS


30 degree....

More HAVING Examples


The following SQL statement lists the employees that have registered more than 10
orders:

Example

SELECT Employees.LastName, COUNT(Orders.OrderID) AS NumberOfOrders


FROM (Orders
INNER JOIN Employees ON Orders.EmployeeID = Employees.EmployeeID)
GROUP BY LastName
HAVING COUNT(Orders.OrderID) > 10;

Try it Yourself »

https://www.w3schools.com/sql/sql_having.asp 3/6
9/3/2018 SQL HAVING Clause

The following SQL statement lists if the employees "Davolio" or "Fuller" have registered
HTML CSS MORE
more than 25 orders:

Example

SELECT Employees.LastName, COUNT(Orders.OrderID) AS NumberOfOrders


FROM Orders
INNER JOIN Employees ON Orders.EmployeeID = Employees.EmployeeID
WHERE LastName = 'Davolio' OR LastName = 'Fuller'
GROUP BY LastName
HAVING COUNT(Orders.OrderID) > 25;

Try it Yourself »

❮ Previous Next ❯

COLOR PICKER

HOW TO
Tabs
Dropdowns
Accordions
Convert Weights
Animated Buttons
Side Navigation
Top Navigation
Modal Boxes
Progress Bars
Parallax
Login Form
HTML Includes
Google Maps
https://www.w3schools.com/sql/sql_having.asp 4/6
9/3/2018 SQL HAVING Clause

Range Sliders
HTML CSS MORE
Tooltips
Slideshow
Filter List
Sort List

SHARE

  

CERTIFICATES
HTML, CSS, JavaScript, PHP, jQuery, Bootstrap and XML.

Read More »

REPORT ERROR
PRINT PAGE
FORUM
ABOUT

Top 10 Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
SQL Tutorial
PHP Tutorial
jQuery Tutorial
Angular Tutorial
How To Tutorial

Top 10 References
HTML Reference
CSS Reference
JavaScript Reference
W3.CSS Reference
Bootstrap Reference
SQL Reference

https://www.w3schools.com/sql/sql_having.asp 5/6
9/3/2018 SQL HAVING Clause

PHP Reference
HTML CSS MORE HTML Colors
jQuery Reference
AngularJS Reference

Top 10 Examples
HTML Examples
CSS Examples
JavaScript Examples
W3.CSS Examples
Bootstrap Examples
HTML DOM Examples
PHP Examples
jQuery Examples
Angular Examples
XML Examples

Web Certificates
HTML Certificate
CSS Certificate
JavaScript Certificate
jQuery Certificate
PHP Certificate
Bootstrap Certificate
XML Certificate

W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and
basic understanding. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot
warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of
use, cookie and privacy policy. Copyright 1999-2018 by Refsnes Data. All Rights Reserved.
Powered by W3.CSS.

https://www.w3schools.com/sql/sql_having.asp 6/6

Anda mungkin juga menyukai