englund Posted January 26, 2010 Share Posted January 26, 2010 Server version: 5.0.87-community I have two tables A: ID, FirstName, LastName 1, Frank, Smith 2, Bob, Jones B: GuestID, ID, GuestFirstName, GuestLastName 1, 1, Mary, Smith 2, 1, Ted, Smith 3, 1, Miss, Smith If I use a simple JOIN SELECT * FROM A LEFT JOIN B USING (RegID) I get what you'd expect 1. 1, Frank, Smith, 1, Mary, Smith 2. 1, Frank, Smith, 2, Ted, Smith 3. 1, Frank, Smith, 3, Miss, Smith 4. 2, Bob, Jones But I need my data is the following format 1. 1, Frank, Smith, Mary, Smith, Ted, Smith, Miss, Smith 2. 2, Bob, Jones I tried a GROUP_CONCAT but I have very little experience with SQL and don't have a good grasp on how it works SELECT *, GROUP_CONCAT(B.GuestFirstName,' ', B.GuestLastName SEPARATOR '- ') FROM A LEFT JOIN B ON A.RegID = B.RegID Which gave me 1. 1, Frank, Smith, 1, 1, Mary, Smith, Mary Smith - Ted Smith - Miss Smith (ignore the separator as I just used the "-" so it would be easier to see write my output here one the forum.) So it's *kind* of doing what i want but I lost the 2. 2, Bob, Jones data. Good chance I'm just barking up the wrong tree. Any help would be appreciated. Link to comment https://forums.phpfreaks.com/topic/189906-join-command/ Share on other sites More sharing options...
englund Posted January 27, 2010 Author Share Posted January 27, 2010 SELECT *, GROUP_CONCAT(B.GuestFirstName,' ', B.GuestLastName SEPARATOR ', ') AS guestnames FROM (A LEFT JOIN B USING (RegID)) GROUP BY A.RegID This appears to work and gives me 1. 1, Frank, Smith, Mary Smith, Ted Smith, Miss Smith 2. 2, Bob, Jones "guestnames" makes a new column named guestnames with the concatenated values Mary Smith, Ted Smith, Miss Smith. Link to comment https://forums.phpfreaks.com/topic/189906-join-command/#findComment-1002245 Share on other sites More sharing options...
fenway Posted January 28, 2010 Share Posted January 28, 2010 Sorry, what are you trying to achieve? Link to comment https://forums.phpfreaks.com/topic/189906-join-command/#findComment-1002793 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.