For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Can someone point me to the PL/SQL documentation explaining why this is gets the above error:
DECLARE
X NUMBER := 10;
BEGIN
SELECT TO_CHAR(SYSDATE + X / (24*60*60),'HH:MI:SS') NOW_PLUS_10 FROM DUAL;
END;
/
TIA!