Hello,
I need to create a query that searches the contract start dates, contract finish dates and returns the contract numbers of any contracts that INCLUDE the months 11 (November) and 12 (December).
This is what I have done so far:
SELECT ContractNumber
FROM tblContract
WHERE ContractStartDate = '##/11/####'
AND ContractEndDate = '##/12/####';
It doesn't seem to be working... any suggestions people?
Thanks
Ashkan
I need to create a query that searches the contract start dates, contract finish dates and returns the contract numbers of any contracts that INCLUDE the months 11 (November) and 12 (December).
This is what I have done so far:
SELECT ContractNumber
FROM tblContract
WHERE ContractStartDate = '##/11/####'
AND ContractEndDate = '##/12/####';
It doesn't seem to be working... any suggestions people?
Thanks
Ashkan