/*32. Write a query in SQL to display the employee ID and the date on which he ended his previous job.*/ SELECT employee_id, MAX(end_date) FROM job_history GROUP BY employee_id;