0
点赞
收藏
分享

微信扫一扫

oracle查询表最后的操作时间

Mhhao 2022-08-31 阅读 173

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

举报

相关推荐

0 条评论