Group Specific set of data by Day
- by Jacques444
Need to get a certian subgroup of data per day (Seperated by weekday)
For example
Select weekday,bla,blabla,blablabla from dbo.blabla
where bla = @StartDate
and bla <=@endDate
I need the output to be:
Monday bla blabla blablabla
Tuesday bla blabla blablabla
If someone could help me that would be awesome.
Thanks & Regards
Jacques