I want to take values from 1 column, and turn them into headers for another. Its easier to show you:
Initial Table:
Name | Label | Value
Tom Jones | January | 42
Rick James| March | 83
Ending Table:
Name | January | March
Tom Jones | 42 | NULL
Rick James| NULL | 83
The format is needed like this because of the type of sorting and ordering that I am doing on the Label.
UPDATE: When I mention multiple columns for value I mean something like:
Name | Label_1 | ValueA_1 | ValueB_1 | Label_2 | ValueA_2 | ValueB_2
Tom Jones | January | 42 | 77 | March | 99 | 22
Rick James| March | 83 | 17 | May | NULL | 112