Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
accept my_where prompt "Enter a WHERE clause for this query (or [Enter] for none): "
select * from s_dept &my_where
/
SQL> @tt_509
Enter a WHERE clause for this query (or [Enter] for none):
ID NAME REGION_ID
---------- ------------------------- ----------
10 Whatever New Finance 1
31 Sales 1
32 Sales 2
33 Sales 3
34 Sales 4
35 Sales 5
41 Operations 1
42 Operations 2
43 Operations 3
44 Operations 4
45 Operations 5
50 Administration 1
SQL> @tt_509
Enter a WHERE clause for this query (or [Enter] for none): where rownum <= 5
ID NAME REGION_ID
---------- ------------------------- ----------
10 Whatever New Finance 1
31 Sales 1
32 Sales 2
33 Sales 3
34 Sales 4
SQL>