Here's my query
select * 
from Owner_TABLE
Results:
RollNumber         People_ID   Owner
-------------------------------------------
444201000100100      12        Jame Bond
444201000100100      14        Sam Doris
444201000100200      16        Jane Doe
444201000100200      17        John Morris
444201000100300      18        Mandy Noor
My objective here is to work out how I can combine the Owner into one row with the same RollNumber?
Like =>
RollNumber         Owner
----------------------------------------
444201000100100    James Bond, Sam Doris
Is this possible?
 
     
    