千家信息网

oracle 查看表的信息

发表于:2024-11-23 作者:千家信息网编辑
千家信息网最后更新 2024年11月23日,查看表的创建时间等基本信息select * from user_objects owhere o.object_type='TABLE' AND o.object_name LIKE '用户名%' O
千家信息网最后更新 2024年11月23日oracle 查看表的信息
  1. 查看表的创建时间等基本信息

    select * from user_objects o

where o.object_type='TABLE'
AND o.object_name LIKE '用户名%'
ORDER BY o.created DESC ;

0