oracle:查询数据表是否存在

select count(*) as NUM from all_tables where table_name = '{$table}'

  

或者:

select count(*) as NUM from all_tables where owner = '{$user}' and table_name = '{$table}'
某个用户是否拥有这张表

  

相关文章:

  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-07
  • 2022-02-23
相关资源
相似解决方案