Is it possible to have a column with such timestamp?
I don't see anything like that:
Hi @Stefano_Mazzocca,
Thanks for the details.
As per the screenshot the column is only storing the date part and time part you are getting it's a default value like 00:00:00.
If you are looking for Current Timestamp then you can use CURRENT_TIMESTAMP similar like CURRENT_DATE.
Cheers,
Is your source column having Timestamp?
You can CAST a date column to Timestamp in the following way.
CAST("COL NAME" AS TIMESTAMP)
Hope this help.
Hi @Bhaskar Konar, I don't have a specific column, I need the current timestamp as column.
My list is this one:
So if I do CAST(DATE AS TIMESTAMP) I have the wrong time:
Hi @Bhaskar Konar really close!
I now just need to remove the am/pm format (24 hours format) . Is it possible?
Found it!
Thank you
Glad to hear that.
Thank you very much @Stefano_Mazzocca!