Hi, I would like to do a SELECT of SQL server but only select me the last days from Monday to Sunday. NOT the last 7 days would be something like this:
select GETDATE() - 7
but in that only I get the last 7 days but I want to start from Monday and end the days Sunday
How do I make that select to show me, if I'm on Tuesday, only SUNDAY and MONDAY without counting on Tuesday until it's over?