 |
|
 |
Oracle Database Scripts
Convert Unix timestamp format to Oracle Date: The Script: -- The unix timestamp in this example is a string -- that contains the value "1154682061"
select TO_DATE('1970-01-01', 'YYYY-MM-DD') + numtodsinterval(1154682061, 'SECOND') from dual / Donate 5$If you found this information useful, don't be cheap, donate 5 dollars (with PayPal):
|
|
 |