How to convert a UNIX timestamp to a date in Oracle
Might come handy - How to convert a UNIX timestamp to a date in Oracle:
TO_DATE('19700101000000','YYYYMMDDHH24MISS')
+ NUMTODSINTERVAL(unix_epoch, 'SECOND')
Coolness.
« MySQL and UTF8 support | Main | Feeelancer »
Might come handy - How to convert a UNIX timestamp to a date in Oracle:
TO_DATE('19700101000000','YYYYMMDDHH24MISS')
+ NUMTODSINTERVAL(unix_epoch, 'SECOND')
Coolness.