OneCompiler

week8(10)

1622

declare
i number;
begin
i:=&i;
if(i>=0)then
goto here;
else
dbms_output.put_line('negative is ='|| i);
end if;
goto abc;
<<here>>
dbms_output.put_line('positive is =' ||i);
<<abc>>
dbms_output.put_line('');
end;