SQL-查看某天新建的表的名称和建表时间
程序员文章站
2022-03-23 21:34:01
SQL-查看某天新建的表的名称和建表时间
select object_name ,to_char(created,'yyyy-mm-dd hh24:mm:ss'...
SQL-查看某天新建的表的名称和建表时间
select object_name ,to_char(created,'yyyy-mm-dd hh24:mm:ss') from user_objects where object_type='TABLE' and to_char(created,'yyyy-mm-dd')='2016-08-02';