If I select from a table group by the month, day, year, it only returns rows with records and leaves out combinations without any records, making it appear at a glance that every day or month has activity, you have to look at the date column actively for gaps. How can I get a row for every day/month/year, even when no data is present, in T-SQL?
|
feedback
|
|
Look into using a numbers table. While it can be hackish, it's the best method I've come by to quickly query missing data, or show all dates, or anything where you want to examine values within a range, regardless of whether all values in that range are used. | |||
|
feedback
|
|
Building on what SQLMenace said, you can use a CROSS JOIN to quickly populate the table or efficiently create it in memory. | |||
|
feedback
|
|
The task calls for a complete set of dates to be left-joined onto your data, such as
where the table-valued function tvfUtilGenerateIntegerList is defined as
| |||
|
feedback
|
|
My developer got back to me with this code, underscores converted to dashes because StackOverflow was mangling underscores -- no numbers table required. Our example is complicated a bit by a join to another table, but maybe the code example will help someone someday.
| ||||
|
feedback
|