为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。
【DM版本】: DMV8
【操作系统】: Kylin
【CPU】: I7
【问题描述】*:查询某个用户下所有的表,select * from user_tables;这张表没有建表时的时间字段,请问下,还可以通过什么方式查询建表时间呢?例如 mysql:select create_time from information_schema.tables where table_schema = (select database()),create_time 就是建表时间。
SELECT owner, object_name, created
FROM all_objects
WHERE object_type = 'TABLE' AND object_name = 'T1'; 这个视图