查询某天之前对当前用户的数据库表的修改时间
select ? * from user_objects t ?where t.OBJECT_TYPE = 'TABLE' and t.LAST_DDL_TIME > to_date('2012-12-25','yyyy-mm-dd')
order by t.LAST_DDL_TIME desc
发布时间: 2013-01-28 11:49:56 作者: rapoo
查询某天之前对当前用户的数据库表的修改时间
select ? * from user_objects t ?where t.OBJECT_TYPE = 'TABLE' and t.LAST_DDL_TIME > to_date('2012-12-25','yyyy-mm-dd')
order by t.LAST_DDL_TIME desc