I need to write the following in SQL:
I have a table that has 2 columns that I am interested in (ID, Text field). Each ID could have a few values in the text field.
ID TEXT
1 value1
1 value2
2 value1
2 value2
2 value4
I need to create a report that list the following
ID value1 value2 value3 value4 etc.
1 yes yes
2 yes yes yes
thank you
1 Answer