I have this timestamp value: 1568387621 I need to convert it to date.
I tried something like:
SELECT TO_TIMESTAMP('19700101','yyyymmdd') + ((1568387621/1000)/24/60/60)
FROM dual;
But it doesn't work.
My timezione is Europe/Rome.
Some conversion websites tell me the value converted is: 2019-09-13 17:13:41 Instead, in the best case on db I obtain: 2019-09-13 15:13:41
Which hour is correct (15 or 17). How can I convert it correctly?