oracle怎么判断表是否存在
oracle中可用“select count(*) from all_tables where owner=upper('用户名') and table_name=upper('表名')”语句来判断指定表是否存在,若返回“0”则该表不存在。
oracle 数据库判断某表是否存在
select count(*) from user_tables where table_name =upper('表名')
这个是查询当前登录用户中的所有表中是否存在该表。注意表名区分大小写,如果参数不限制,那这里就必须要加上 upper 函数 。