重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

oracle中怎么判断表是否存在

时间:2020-09-23 14:40:08 作者:重庆seo小潘 来源:
oracle判断表是否存在的方法: 1、打开plsql客户端,登录oracle数据库; 2、创建一个测试表,create table test_exists(id number, value varchar2(20)); 3、编写sql,插入oracle系统视图,查询刚建的表是否存在,select * from user_tables t where table_n

oracle中怎么判断表是否存在

oracle判断表是否存在的方法:

1、打开plsql客户端,登录oracle数据库;

oracle中怎么判断表是否存在

2、创建一个测试表,create table test_exists(id number, value varchar2(20));oracle中怎么判断表是否存在

3、编写sql,插入oracle系统视图,查询刚建的表是否存在,select * from user_tables t where table_name= upper('test_exists');可以看到有查询结果,也就是说存在该表;

oracle中怎么判断表是否存在

4、相反的,编写sql,查询test_exists2表是否存在,因没有返回结果,则说明该表并不存在;select * from user_tables t where table_name= upper('test_exists2');oracle中怎么判断表是否存在

推荐教程: 《Oracle教程》以上就是oracle中怎么判断表是否存在的详细内容,更多请关注小潘博客其它相关文章!