Hi there, the employees ist just a integer (number) displaying the total number of employees per startup.
This Query is using the AVG employee Integer from Startups Table and displays all Locations with more than 500 Employees.
SELECT location, AVG(employees)
FROM startups
GROUP BY location
HAVING AVG(employees) > 500;