In my main table, I have a date, an article and a category column. Rows are only added when a category changes. I am looking to build a query that shows the date range in-between the category changes. I have a separate table that contains the full date range.
So the query should copy in the missing dates between when the article was first and then next added to the table. Then copy down the article and it's category until the next addition.
Before:
Date Article Category
20190101 1234 A
20190105 1234 C
After:
Date Article Category
20190101 1234 A
20190102 1234 A
20190103 1234 A
20190104 1234 A
20190105 1234 C