Oracle查询所有用户表的最后修改时间

前端之家收集整理的这篇文章主要介绍了Oracle查询所有用户表的最后修改时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


select uat.table_name,(select last_ddl_time
          from user_objects
         where object_name = uat.table_name) as lastddltime
  from user_all_tables uat
 order by lastddltime
原文链接:https://www.f2er.com/oracle/213322.html

猜你在找的Oracle相关文章