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.
select * from ord_table;
PROJECT NAME
--------- -----
123456789 abc
23456789 def
123450003 ghi
set verify off
accept proj prompt "Enter the first 5 digits of the projects to show: "
select * from ord_table
where ord_table.project like '&proj%'
/
SQL> @sonny
Enter the first 5 digits of the projects to show: 12345
PROJECT NAME
---------- --------------------
123456789 abc
123450003 ghi