|execute|create table tn(n number, name varchar2(100))|

|insert|tn|
|n|name|
|5|T1|
|10|T2|
|15|T3|
|20|T4|
|25|T5|

|Store query|!-SELECT ROWNUM*5 n, 'T'||rownum name FROM ( SELECT 1 FROM dual CONNECT BY LEVEL <= 5 )-!|fromdual|

|store query|select * from tn|fromtable|

|compare stored queries|fromtable|fromdual|
|n?|name|

|execute|drop table tn|
