RxLogix Corporation Interview Question

Write a SQL statement where we can get the Manager name and the employees reporting to him as comma separated

Interview Answer

Anonymous

Feb 23, 2019

select manager_name,emp_id from manager,employee group by manager_name,emp_id

15