/*28. Write a query in SQL to display the first and last name and date of joining of the employees who is either Sales Representative or Sales Man.*/ SELECT first_name, last_name, hire_date FROM employees WHERE job_id IN ('SA_REP', 'SA_MAN');