Lecture4.pdf

GROUP BY / HAVING + Aggregation Operators

Syntax:

SELECT [DISTINCT] select-list
FROM from-list
WHERE qualification
GROUP BY grouping-list
HAVING group-qualification

Examples:

  1. Find the age of the youngest researcher for each impact factor.
SELECT R.ImpactFactor, MIN(R.Age)
FROM Researchers R
GROUP BY R.ImpactFactor
  1. Find the age of the youngest researcher who is at least 18 years old for each impact factor with at least 10 such researchers.
SELECT R.ImpactFactor, MIN(R.Age) AS MinAge
FROM Researchers R
WHERE R.Age >= 18
GROUP BY R.ImpactFactor
HAVING COUNT(*) >= 10
  1. Find the average age of researchers who are at least 18 years old for each impact factor with at least 10 researchers.