[sql] PostgreSQL, checking date relative to "today"

Was wondering if someone could assist with some Postgres. I have a table which has a column called mydate which is a postgres date type. I want to do something like:

SELECT * FROM MyTable WHERE mydate > [Today-1year]

I've never used Postgres before and I'm sure I just need to know the name of some functions- I'll gladly look up the reference myself. Can anyone point me in the right direction?

Thanks!

This question is related to sql postgresql

The answer is


I think this will do it:

SELECT * FROM MyTable WHERE mydate > now()::date - 365;

This should give you the current date minus 1 year:

select now() - interval '1 year';

You could also check using the age() function

select * from mytable where age( mydate, now() ) > '1 year';

age() wil return an interval.

For example age( '2015-09-22', now() ) will return -1 years -7 days -10:56:18.274131

See postgresql documentation