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
本文提供了一段SQL脚本,用于查询Oracle数据库中所有表的最后DDL(数据定义语言)操作时间。通过联接USER_ALL_TABLES和USER_OBJECTS视图实现。
开发板推荐:天空星STM32F407VET6开发板
超高性价比 STM32主控 | 超高主频 | 一板兼容百芯 | 比赛神器 | 沉金彩色丝印
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开发板推荐:天空星STM32F407VET6开发板
超高性价比 STM32主控 | 超高主频 | 一板兼容百芯 | 比赛神器 | 沉金彩色丝印
4293
6592

被折叠的 条评论
为什么被折叠?
