I am running a query to get production of group of team per day.
Here is my sample table:
Name Date Production
1 6/2/2014 5
2 6/2/2014 2
3 6/2/2014 3
4 6/2/2014 4
2 6/1/2014 5
4 6/1/2014 1
3 6/1/2014 5
1 6/1/2014 8
This is the results I want to run
Name 6/1/2014 6/2/2014
1 8 5
2 5 2
3 5 3
4 1 4
Could you help provide me a query?.