I have to do a report (SSRS) and I need to obtain dates contained in a range that don't appear in the table (Historical)
For example:
Params:
BeginingDate: 2016-10-10
EndDate: 2016-10-15
Table Historical:
DateTime - Name
2016-10-11 Yas
2016-10-13 Jesbel
I need a query to return:
Date
2016-10-10
2016-10-12
2016-10-14
2016-10-15
All this query is for a report so I can't use external codes.
Thanks.