Hello,
I am trying to add seconds to timestamp but it keep dropping the time component...
SELECT mytime + (duration / 86400) start_time
FROM mytable
The result is something like 01-JUN-15. I need time component.
mytime is timestamp(6) and duration is a number.
Thanks