You have already seen how to restrict rows in a result set using the WHERE clause. You restrict the rows in groups using the HAVING clause.
In Interactive SQL, execute the following query:
SELECT SalesRepresentative, COUNT( * ) AS orders FROM SalesOrders KEY JOIN Employees GROUP BY SalesRepresentative HAVING count( * ) > 55 ORDER BY orders DESC; |
| SalesRepresentative | orders |
|---|---|
| 299 | 114 |
| 129 | 57 |
| 1142 | 57 |
| 467 | 56 |
| Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |