Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Subtract Day from Date Oracle sql

891512Dec 5 2014 — edited Dec 5 2014

I am trying to subtract a Day from a date.

In the line below I am added a month to the current data in column Transaction_Date, then I want to subtract a Day from column Transaction_Date. Then subtract the two Dates.

ADD_MONTHS(INV.MTL_MATERIAL_TRANSACTIONS.TRANSACTION_DATE, 1)-(INV.MTL_MATERIAL_TRANSACTIONS.TRANSACTION_DATE -1)-1 AS TRANSACTION_DATE

When I try INV.MTL_MATERIAL_TRANSACTIONS.TRANSACTION_DATE -1 it returns a number (the Day) not a Date. I have tried using To_DATE and TO_CHAR, same result. Column Transaction_Date has a datatype of DATE.

How do I make INV.MTL_MATERIAL_TRANSACTIONS.TRANSACTION_DATE -1 return a Date?

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 2 2015
Added on Dec 5 2014
16 comments
34,044 views