Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi team,
i have a date like below
"2019-10-16 13:18:20.000000"
i need it like "16.10.2019"
i need to this in back end scripting not in front end
Regards,
Sra1.
Hi, try this:
DATE(FLOOR(TIMESTAMP#(timestamp_field,'YYYY-MM-DD hh:mm:ss.ffffff')),'DD.MM.YYYY') AS date_field
@Sra1bandi You can try the below script:
NoConcatenate
Temp:
Load DATE(FLOOR(TIMESTAMP#(Timestamp,'YYYY-MM-DD hh:mm:ss.ffffff')),'DD.MM.YYYY') as Date
inline [
Timestamp
2019-10-16 13:18:20.000000
];
Exit Script;