declare v_cnt Number;
begin
select count(*) into v_cnt from user_tables where table_name = yourtablename;
if v_cnt>0 then
dbms_output.put_line('该表存在!');
else
dbms_output.put_line('该表不存在或当前用户无权访问!');
end If;
End;
begin
select count(*) into v_cnt from user_tables where table_name = yourtablename;
if v_cnt>0 then
dbms_output.put_line('该表存在!');
else
dbms_output.put_line('该表不存在或当前用户无权访问!');
end If;
End;
902

被折叠的 条评论
为什么被折叠?



