查询你想要的表名:
select  table_name,tablespace_name,status,temporary from user_tables where table_name like '%tab_name%';
tab_name 为要查表名的其中一部分。
如:你要查表名中有order的表名
select table_name,tablespace_name  from user_tables where table_name like '%order%';

 


原文链接:https://blog.csdn.net/qq_41797451/article/details/84301760

相关文章:

  • 2021-12-05
  • 2021-11-07
  • 2022-12-23
  • 2021-06-09
  • 2021-11-17
  • 2021-11-17
猜你喜欢
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
相关资源
相似解决方案