I have a query like
select e.emp_name,t.tl_name from employee_details e left join tl_details t on e.emp_id=t.emp_id
A employee may have two Team leaders or may not have team leader.
Report should dispaly employee name & their tl_names.
Form the query i am getting the data like
Emp1 TL1
Emp1 TL2
Emp2 TL1
Emp3
But i want to display,
Emp1 TL1,TL2
EMp2 TL1
Emp3
Can anyone please help me out?
Thank you
select e.emp_name,t.tl_name from employee_details e left join tl_details t on e.emp_id=t.emp_id
A employee may have two Team leaders or may not have team leader.
Report should dispaly employee name & their tl_names.
Form the query i am getting the data like
Emp1 TL1
Emp1 TL2
Emp2 TL1
Emp3
But i want to display,
Emp1 TL1,TL2
EMp2 TL1
Emp3
Can anyone please help me out?
Thank you