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!

minus a date

Status
Not open for further replies.

Shin25

Technical User
Jun 14, 2007
102
US
Hi All

can anyone tell me how in ms sql 2005 do I put a where clause in which only returns records which <= current date ?

Many Thanks
 
Where DateColumn <= GetDate()

-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Hi thanks for the above but I dont understand the getdate, I keep getting error
'The getdate function requires 0 arguments.'
 
That is because you put something between the parenthesis.



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Many thanks for that, what if I wanted to define a date e.g.
2004,01,01 ....how would I construct that query...

I really appreciate your help....
 
[tt][blue]Where DateColumn < '20040101'[/blue][/tt]

The part between the single-quotes should be formatted as yyyymmdd. This is considered the ISO-Unseparated data format. For example, today, March 12, 2008 would be '20080312'.





-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
once again thanks...lastly how do I construct a query which looks at a date field and minus 14 days for e.g. in a where clause

datecolumn < = (datecolumn - 14days)

Many Thanks
 
Where DateColumn <= SomeDate - 14

You can simply subtract from a date value if you want to subtract days. If you want to subtract some other units (Ex: Months) then you would use DateAdd.

Ex:

Where DateColumn <= DateAdd(Month, -1, SomeDateValue)

Make sense?

-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
would that be the same if I wanted to subtract from the date field and have a new field showing this for example

where datecolumn - 14 days ....show as field new_date

thanks
 
If I understand correctly, you would want to put that in the SELECT clause.

[tt][blue]
Select DateColumn-14 As New_Date
From TableName
Where Whatever....
[/blue][/tt]

-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
this is what I have done

select *
from dbo.sales
--order by ord_date desc

Where ord_date <= 1995-02-01 - 14

froms the pubs db in sql.... this should bring back all 21 records as all ord_date in the table <= to the date 1995-02-01





 
sorry did not add, with the query above I am getting no records back.......abit confused...

cheers
 
erm, you can't combine a date varchar with the subtract and without delimiters...

you should be doing:

...
where ord_date <= dateadd(d, -14, '1995-02-01')

--------------------
Procrastinate Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top