OneCompiler

week 9 (1)

1650

declare
a number;
b number;
c number;
begin
a:=&a;
b:=&b;
c:=a/b;
dbms_output.put_line('division is || c');
Exception
when Zero_Divide then
dbms_output.put_line('b could not be zero');
end;
/