Link to home
Start Free TrialLog in
Avatar of JDCam
JDCam

asked on

Oracle 9i - Select date with alpha month

Experts
I need to select a date stored in Oracle, but change the month output to 3 alpha.
Please help me do this

Here is is a current select where I return the value in YYYMMDD

SELECT
To_CHAR(TO_DATE(RCPT_EXPY_DATE),'YYYYMMDD') ORDDATE
FROM....

Open in new window


how can I get the date of 20140122  to return as JAN2214 ?
ASKER CERTIFIED SOLUTION
Avatar of Steve Wales
Steve Wales
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The function in my reply should be to_date, of course, not to_to_date :)
Avatar of JDCam
JDCam

ASKER

your kidding.... that simple?
I has waaaaay of tryring to use DECODE

Working great... Thanks