Hi,
Is there a way to add a certain amount of time to a date, something similar to this:
add_time(date_col, '23:59:59')
Just add a number. Each day is 1, so to add an hour:
SELECT sysdate+1/24 FROM dual;
or a minute:
SELECT sysdate+1/1440 FROM dual;
No one has followed this question yet.