vote up 0 vote down star

(Oracle) I have to return all records from last 12 months. How to do that in PL/SQL?

EDIT: Sorry, I forgot to explain, I do have a column of DATA type

flag

17% accept rate

4 Answers

vote up 3 vote down

Doing this in PL/SQL is pretty much synonymous with doing it in SQL.

SELECT *
FROM   table
WHERE  date_column >= ADD_MONTHS(TRUNC(SYSDATE),-12)

You might like to fiddle around with the TRUNC statement to get exactly the range you want -- I used TRUNC(SYSDATE) which is the same as TRUNC(SYSDATE,'D') -- ie. remove the time portion of the sysdate. For example, if it is currently Aug 12 but you want values from Feb 01 instead of Feb 12 then use:

SELECT *
FROM   table
WHERE  date_column >= ADD_MONTHS(TRUNC(SYSDATE,'MM'),-12)

Also, see the docs for treatment of months having different numbers of days: http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions004.htm#SQLRF00603

link|flag
vote up 0 vote down
SELECT *
FROM   table
WHERE  date_column > ADD_MONTHS(SYSDATE, -12)

Not sure I deserved down-modding for the earlier posts... was only trying to help.

link|flag
There's no such function as ROLL_MONTHS in Oracle – David Aldridge Sep 24 '08 at 12:14
Bugger... I meant ADD_MONTHS – cagcowboy Sep 24 '08 at 12:22
Just because you were trying to help doesn't mean the answer was right. I'm sure most people here are only trying to help. Don't be offended by mod downs, learn from them. – Matthew Watson Sep 25 '08 at 0:05
Matthew... I was objecting to the fact that he'd neglected to mention that he had a DATE column (see the later edit above)... I had asked if he did have a DATE column (post now deleted) and got down-modded for it. I felt that was harsh. :-) – cagcowboy Sep 26 '08 at 8:07
vote up -1 vote down
SELECT *
FROM   table
WHERE  date_column > SYSDATE - 365
link|flag
not leap year compatible – David Aldridge Sep 24 '08 at 13:47
vote up -1 vote down

I allready did that, but I don“t want last 365 days, I want last 12 months, there is a huge difference here.

link|flag
You should have added this as a comment on the answer. – David Aldridge Sep 24 '08 at 12:15

Your Answer

Get an OpenID
or

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