declare
vnum NUMBER;
begin
if (vnum IS NULL) then
dbms_output.put_line(‘NUMBER 変数は 初期化されていません’);
end if;
end;
/