vote up 0 vote down star

If I have a function in PL/pgSQL that takes in a timestamp, what is the best way to identify whether that date is less than 12 months in the past?

e.g.

CREATE FUNCTION do_something(foo timestamp) ....
    -- IF foo is less than 12 months in the past THEN
    --    do something
    -- END IF;
END;
flag

2 Answers

vote up 3 vote down check

Read about intervals on PostgreSQL doc: Date Types. Use something like:

where foo < CURRENT_TIMESTAMP - interval '12 months'
link|flag
vote up 1 vote down

Or, equivalently: age(foo) < interval '12 months'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.