Back to Developer Roadmap

HAVING

src/data/roadmaps/sql/content/having@HhICJpCK5__b-itUoEBES.md

4.0527 B
Original Source

HAVING

The HAVING clause in SQL is used to filter the results of aggregate functions. It's similar to the WHERE clause, but operates on grouped rows produced by the GROUP BY clause. Essentially, HAVING allows you to specify conditions that groups must meet to be included in the final result set after aggregation has taken place.

Visit the following resources to learn more: