I have a table like this
item value date
-----------------------
a 8.9 20170101
b 10.3 20170114
a 3.4 20170111
c 13.4 20170121
b 8.3 20170111
b 1.0 20170312
I want to run some select to get it to show up like this
20170101 20170111 20170114 20170121 20170312
a 8.9 3.4
b 8.3 10.3 1.0
c 13.4
Is this possible in T-SQL?
Dean-O