Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Looking for help to change the following in the load script:
New_Date
1894-05-14 00:00:00.000000
to show as:
New_Date
14-05-1894
Thank you
Hello,
Try this.
Date(Timestamp#('1894-05-14 00:00:00.000000','YYYY-MM-DD hh:mm:ss.ffffff'),'DD-MM-YYYY')
Hope this helps.
Thanks,
Ashutosh
LOAD *,date(Floor(dt),'DD-MM-YYYY');
LOAD * Inline [
dt
1894-05-14 00:00:00.000000
];