oracle 查看表信息命令

版权声明:欢迎评论、补充;24小时内回复;及时更新;欢迎转载。 https://blog.csdn.net/li905663280/article/details/84726654

表注释和字段注释

--表 注释
 select   *   from   all_tab_comments   where   table_name= upper('table_name') ;

--字段注释
 select   *   from   all_col_comments   where   table_name=upper('table_name') ;

猜你喜欢

转载自blog.csdn.net/li905663280/article/details/84726654