Hi All, I have a MS SQL query that joins multiple tables and an example of the results are:
EmailAddress Column2
--------------------- ----------------
[email protected] Value1
[email protected] Value2
[email protected] Value5
What I really want to achieve are the following results:
EmailAddress Column2
--------------------- ------------------
[email protected] Value1, Value2
[email protected] Value5
There are other columns that are identical for each row with the same email address. Can anyone help me with the SQL to return distinct email addresses and concatenate the column2 information?
Thanks for any feedback.