Thread
:
How to retrieve records which the date column should be 36 months older than the current date?
View Single Post
#
2
(
permalink
)
08-21-2006, 02:39 AM
Dimitar
Posts: n/a
SQL 92
answer.
Re: How to retrieve records which the date column should be 36 months older than the current date?
[sql]
select * from dates_table where date_column < (current_date - interval 3 year)
[/sql]
Dimitar