oracle查询表最后的操作时间

select object_name,created "创建时间",last_ddl_time "最后修改时间"
from user_objects where object_name = '你的表名'

或者


select LAST_DDL_TIME from user_objects where object_type='TABLE' and object_name='你的表名'

原文地址:https://www.cnblogs.com/rdchen/p/11395009.html