HAVING clause
- Last Updated: December 12, 2014
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Allows you to set conditions on the groups
returned by the GROUP BY clause. If the HAVING clause
is used without the GROUP BY clause, the implicit group
against which the search condition is evaluated is all the rows
returned by the WHERE clause.
Syntax
|
Notes
A condition
of the HAVING clause can compare one aggregate
function value with another aggregate function value or a constant.
Example
The HAVING clause
in the following example compares the value of an aggregate function
(COUNT
(*)) to a constant (10):
|
The query returns the customer number and number of orders for all customers who had more than 10 orders before March 31.