3476 Views
HAVING is very resemble WHERE. The only dissimilarity is that WHERE filters rows and HAVING filters groups. Increase in SQL HAVING clause because the WHERE keyword can not be used with the combination of functions.
Syntax
SELECT column_name
FROM table_name
WHERE condition
GROUP BY column_name
HAVING ...
Anamika Gupta
May 17, 2022