I have forgotten the GROUP BY statement, but it has be done on the ID as the COUNT object, that is the orders table.
SELECT employees.E_surname
, employees.E_name
, COUNT(orders.ID) AS HowManyOrders
FROM employees
LEFT OUTER JOIN orders ON
orders.ID =...