问题 更新时间2023/10/31 9:42:00 参照教材中PL/SQL代码编写程序,检测视图clu$是否存在,并给出提示信息。 答案 登录 注册 declare retstrvarchar2(50); begin dbms_output.put_line('thisisatest.'); selecttable_name intoretstr fromuser_tables wheretable_name='clu$'; dbms_output.put_line(retstr); exception whenno_data_foundthen dbms_output.put_line('notfound!'); end; 出自:国家开放大学 >> 国家开放大学Oracle数据库编程