Hi,
Background: I have a payroll system where leave is paid only if it falls in range of the invoice being paid. So if the invoice covers the last 2 weeks then only leave in the last 2 weeks is to paid.
I want to write a sql query to select the leave.
Assume a table called DailyLeaveLedger
which has among others a LeaveDate
and Paid
flag.
Assume a table called Invoice
that was a WeekEnding
field and a NumberWeeksCovered
field.
Now assume week ending date 15/05/09 and NumberWeeksCovered
= 2 and a LeaveDate
of 11/05/09.
This is an example of how I want it written. The actual query is quite complex but I want the LeaveDate
check to be a In subquery.
SELECT *
FROM DailyLeaveLedger
WHERE Paid = 0 AND
LeaveDate IN (SELECT etc...What should this be to do this)
Not sure if its possible the way I mention?
Malcolm