/*22. Write a query in SQL to display the ID for those employees who did two or more jobs in the past.*/ SELECT employee_id FROM job_history GROUP BY employee_id HAVING COUNT(*) >=2;