I am using SQL.
Here is an example of my table: (There are actually thousands of rows like these, with varying course numbers.)
Course No | Meeting Day | Course Name | Instructor
123 | M | English | Smith
123 | W | English | Smith
123 | F | English | Smith
I need to concatenate these rows into one like:
123 | MWF | English | Smith
Is this possible? :)
TIA.