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='你的表名'

posted @ 2019-08-22 16:15  爱跳舞的程序员  阅读(3743)  评论(0编辑  收藏  举报