What will be returned when the following SQL query is executed?
SELECT driver_no, COUNT(*) as num_deliveries
FROM deliveries
GROUP BY driver_no
HAVING COUNT(*) > 2;
◦ A listing of all drivers who made more than 2 deliveries as well as a count of the number of deliveries
◦ A listing of all drivers who made more than 2 deliveries
◦ A listing of the number of deliveries greater than 2
◦ A listing of all drivers