I am using PL/SQL, and I have a very simple query:
select
t.dispatch_date,
t.route,
t.employee_name
from
dispatch t
where
t.dispatch_date=trunc(sysdate)
However, the result will give me some data like below, because there can be multiple people are assigned in same route: (But I want to combine the name together with ||)
Is there any function I can use to achieve my goal?
Thanks