I'm trying to turn the following ResultSet
Meetings Covers Date TypeName
1 3 2010-10-14 Breakfast
1 1 2010-10-14 LunchCooked
2 4 2010-10-15 Breakfast
1 3 2010-10-18 Breakfast
1 3 2010-10-19 Breakfast
1 1 2010-10-19 LunchSandwich
1 3 2010-10-20 Breakfast
1 3 2010-10-21 Breakfast
1 3 2010-10-22 Breakfast
Into a format with the following fields
Date
BreakfastMeetings
BreakfastCovers
LunchSandwichMeetings
LunchSandwichCovers
LunchCookedMeetings
LunchCookedCovers
Am I right in thinking this can be done with pivot tables? Any pointers would be great otherwise I'm going to end up taking some sort of hacky temp table route to get the data into this format.
Thanks