Hi have a table that has Owner ID which is a array of users. Below is my tables.
Task table
ID Task_Name Task_Owner
1 Create 1,3,4
2 Edit 2,1,3
3 Delete 2,1,4
Owner table:
ID Owner_Name
1 Mike
2 Ken
3 Lim
4 Nick
And I need an output that fetch all names
Output:
ID Task Name Owners
1 Create Mike,Lim, Nick
2 Edit Ken, Mike, Lim
3 Delete Ken, Mike, Nick