nescafeboy1 发表于 2018-9-11 11:56:42

oracle 查看表的信息


[*]  查看表的创建时间等基本信息
  select * from user_objects o
  where o.object_type='TABLE'
  AND o.object_name LIKE '用户名%'
  ORDER BY o.created DESC ;

页: [1]
查看完整版本: oracle 查看表的信息