Can someone explain whats happening here?
Both are same query, with the only difference of multi-line and single line in SQL Developer.
The query-
SELECT (TO_TIMESTAMP('10/08/2012','DD/MM/YYYY') -NUMTODSINTERVAL(1/(24*25*60*1000),'HOUR')) a FROM dual;
The above works, but the below won't-
SELECT (TO_TIMESTAMP('10/08/2012','DD/MM/YYYY') -
NUMTODSINTERVAL(1/(24*25*60*1000),'HOUR')) a FROM dual;