Groups the tuples based on the values of the attributes specified
Ex) for each employee title, return the number of employees with that title and the minimum, maximum and average salary
SELECT title, COUNT(eno) AS numEmp,
MIN(salary) as MinSal
MAX(salary) as MaxSal
AVG(salary) as AvgSal
FROM EMP
GROUP BY Title