Oracle 如何查看建表时间

SELECT t.CREATED
FROM user_objects t
where
t.OBJECT_NAME='表名 '
and t.OBJECT_TYPE='TABLE'
原文地址:https://www.cnblogs.com/liupeipei/p/7910062.html