Let's say I have a table like this:
Task Type Variable Hours Duration One A X 10 5 One A Y 40 15 One B X 100 29 Two A X 5 2 Two B X 15 9 Two A Y 60 17 Three A Y 18 5
Where the combination of task-type-variable makes each row unique.
How can I get a pivot table like the following:
X Y One A Hours 10 40 Duration 5 15 One B Hours 100 0 Duration 29 0 Two A Hours 5 60 Duration 2 17 Two B Hours 15 0 Duration 9 0 Three A Hours 0 18 Duration 0 5
Is this even possible in SQL? I know Excel can do this.