I have the following schema, which I've simplified slightly:
CREATE TABLE [dbo].[Header] (
[HeaderId] [int] IDENTITY(1,1) NOT NULL,
[StaffId] [int] NOT NULL,
[WeekEnding] [smalldatetime] NOT NULL,
...
)
CREATE TABLE [dbo].[Staff] (
[StaffId] [int] NOT NULL,
[FirstWeekEnding] [smalldatetime] NULL,
...
)
StaffId on the Header table is a foreign key.
The Header table tracks data related to staff (in a sub table not shown) and for a given week there will be an entry for the "week end" if data in the sub table exists. In this case the "week end" is always a Sunday. Therefore, sample data could look like this:
HeaderId StaffId WeekEnding
---------------------------------
1 1 13/02/2011
2 1 20/02/2011
etc...
The "FirstWeekEnding" value on the staff table is the first date they started tracking information in the Header table.
My Question
Given the first week ending date of each staff member, how do I construct a query that will give me all the MISSING records from the Header table up to the present date?
For example, given the following data:
StaffId FirstWeekEnding
---------------------------
1 02/01/2011
HeaderId StaffId WeekEnding
---------------------------------
1 1 02/01/2011
2 1 09/01/2011
3 1 16/01/2011
4 1 13/02/2011
5 1 20/02/2011
The result would be:
StaffId WeekEnding
---------------------
1 23/01/2011
1 30/01/2011
1 06/02/2011
Ideally the query should handle multiple staff members, grouped by their StaffId.
Assuming you're using SQL 2005+ you could generate all the weeks for each staff and attempt to join against the Header table in a CTE (something like, but perhaps not exactly this):