SQL Basics: Simple HAVING
people table schema
return table schema
Solutions
ποΈ Sql
select age, count(age) as total_people
from people
group by age
having count(age) >= 10;Last updated