oracle中查询表是否存在

 select count(*) from user_tables where table_name='表名' 

或者

select 1 from user_tables where table_name='表名' 

原文地址:https://www.cnblogs.com/lihaishu/p/4353750.html