Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Date Time Range Question 1

Status
Not open for further replies.

AGus01

Technical User
Sep 6, 2005
54
GB
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
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
 
I think you have your less than and greater thans backwards.

Code:
    [O].OfferStartDate [red]<[/red] @Currentdate
AND
    [O].OfferFinishDate [red]>[/red] @CurrentDate

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
A word of caution here. When doing date range searches on fields that have a time component, you need to be very careful.

For example, if your OfferFinishDate is today, and the time component is '00:00:00.000', then this record will not appear because GetDate() also returns the time and Today @ 00:00:00.000 is less than GetDate().

If this is what you want, then fine. This is just of word of caution intended to get you to think about your query a little more. Feel free to ignore this.

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top