I have two tables and I need to combine the rows.
As far I have:
$sql = "SELECT A.AID, A.Street, B.FirstName, B.LastName                                     
        FROM A 
        LEFT JOIN B 
        ON A.AID = B.AID;";
Could you help me please to merge those rows, where several people live in the same street?

 
    