SELECT customerclass, COUNT(customerid) AS NrOfCustomers, ROUND(AVG(customerage),0) AS AvgAge, ROUND(MIN(customerage),0) AS MinAge, ROUND(MAX(customerage),0) AS MaxAge, COUNT(DISTINCT countryresidence) AS UnqNrOfCountries, COUNT(DISTINCT accountmanagerid) AS UnqNrOfManagers FROM Customers GROUP BY customerclass