Search notes:
ORA-00975: date + date not allowed
Statements such as the following where two
dates are added throw
ORA-00975: date + date not allowed select
sysdate + sysdate
from
dual;
In contrast, it's possible to add a number to a date (so-called date arithmetic):
select
sysdate + 1.5 dt
from
dual;