Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I have a table in which date is in the format YYYYMMDD.
How can I change it to the form DD/MM/YYYY
Warehouse_Order:
CREATED_DATE | as | Created_Date | , |
resident (some table which gets data from an extractor from SAP)
Please help.
Arjun Jain
And if that doesn't produce the results you want, try
:
date(date#(CREATED_DATE, 'YYYYMMDD'),'DD/MM/YYYY') as Created_Date
Try with
Load
...
date(myDate, 'DD/MM/YYYY') as newDate
....
let me know
date(date#(Created_Date,'YYYYMMDD'),'DD/MM/YYYY') as Created_Date
And if that doesn't produce the results you want, try
:
date(date#(CREATED_DATE, 'YYYYMMDD'),'DD/MM/YYYY') as Created_Date