I have a table with the following structure in SQL Server 2005:
ID Day DayDate TimeEntry TimeOut Rest Monday
1 Monday 17-06-2013 08:00 18:00 14:30 17-06-2013
2 Tuesday 18-06-2013 08:00 18:00 14:30 17-06-2013
So on until week Monday field allows me to group all the days of a given week.
Now I need to gather the data in one record in a view:
Id DayDateMonday TimeEntryMonday TimeOutMonday RestMonday
DayDateTuesday TimeEntryTuesday TimeOutTuesday RestTuesday .... so on.
Any help?