/ Published in: SQL
A few examples of the TO_DSINTERVAL function.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--TO_DSINTERVAL --Example 1 SELECT TO_DSINTERVAL('120 6:31:14') AS output FROM dual; --Example 2 SELECT TO_DSINTERVAL('3 14:09:32') AS output FROM dual; --Example 3 SELECT TO_DSINTERVAL('0 2:06:00') AS output FROM dual;
URL: http://www.databasestar.com/oracle-to_dsinterval/