Guys is there any other way to determine a table exists other than below
select count(*) from where rownum =1 select 6条回答 粉色の甜心 (楼主) 2020-12-31 06:32 Below query can be triggered to Oracle for checking whether any Table present in DB or not: SELECT count(*) count FROM dba_tables where table_name = 'TABLE_NAME' Above query will return count 1 if table 'TABLE_NAME' is present in Database 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
select 6条回答 粉色の甜心 (楼主) 2020-12-31 06:32 Below query can be triggered to Oracle for checking whether any Table present in DB or not: SELECT count(*) count FROM dba_tables where table_name = 'TABLE_NAME' Above query will return count 1 if table 'TABLE_NAME' is present in Database 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Below query can be triggered to Oracle for checking whether any Table present in DB or not:
SELECT count(*) count FROM dba_tables where table_name = 'TABLE_NAME'
Above query will return count 1 if table 'TABLE_NAME' is present in Database