hi,
i just saw the thread {thread:id=2541136}
SELECT SUBSTR ('INDIA', LEVEL, 1) AS letter
FROM dual
CONNECT BY LEVEL <= LENGTH ('INDIA');
and
SELECT SUBSTR ('INDIA', ROWNUM, 1) AS letter
FROM dual
CONNECT BY ROWNUM <= LENGTH ('INDIA');
are giving same result. so what is the difference?
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod