Hi i am using SQL Server 2000.
Hi i have what must be an easy date time question however i cant work out why this will not function. I Wish to check if a current date is valid. ie. greater than OfferStartDate and less than OfferFinishDate. However the query bellow returns no records. Any ideas why?
The db data
thanks
--gus
Hi i have what must be an easy date time question however i cant work out why this will not function. I Wish to check if a current date is valid. ie. greater than OfferStartDate and less than OfferFinishDate. However the query bellow returns no records. Any ideas why?
The db data
Code:
OfferID OfferCode OfferStartDate OfferFinishDate
------- ------------ ------------------------- --------------------------
10 tester 2005-09-13 10:30:19.873 2005-10-04 00:00:00.000
Code:
DECLARE @CurrentDate datetime
SELECT @CurrentDate = GetDate()
PRINT @CurrentDate
SELECT
[O].OfferID,
[O].OfferCode,
[O].OfferStartDate,
[O].OfferFinishDate
FROM
Offer AS [O]
JOIN
OfferSubCategory AS [OS]
ON
[O].[OfferID] = [OS].[OfferID]
WHERE
[O].OfferCode = 'tester'
AND
[O].OfferStartDate > @Currentdate
AND
[O].OfferFinishDate < @CurrentDate
thanks
--gus