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.
[b]declare[/b]
[green][i]variable[/i][/green] [b]number[/b];
[b]begin[/b]
[b]select[/b] count(*) [b]into[/b] [green][i]variable[/i][/green] [b]from[/b] [green][i]table[/i][/green];
[b]end[/b];
declare
v_count number;
begin
SELECT count(*)
INTO v_count
FROM dual;
dbms_output.put_line('Count='||v_count);
end;
/
Count=1