I am running a query on an oracle db and am trying to get the start time for this particular event. The date is just stored as a number in the table and the only way I have been able to retrieve it is with TO_CHAR(TIMEFRAME_START)
. This gives me an output of 1574402400
.
I know that this should correspond to 11/21/2019 11:00:00 PM MST
based on a different app that pulls the same information but I have no idea how it does this conversion. I need to retrieve additional rows and need to be able to convert that output to a standard date format.
Does anyone have any ideas on how I can accurately format the original output?