oracle查看表结构和注释
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle查看表结构和注释相关的知识,希望对你有一定的参考价值。
查看表结构:
看字段名与数据类型
select * from cols WHERE TABLE_name=upper( ‘table_name ‘)
查看主键:
select * from user_constraints where constraint_type= ‘P ‘
and TABLE_name=upper( ‘table_name ‘)
另外:
在SQLPLUS中,用 desc tablename
在PL/SQL工具中,可以通过视图user_tab_columns 查看
select * from user_tab_columns where table_name = upper(tablename)
查看备注:
--查看表的comment
select * from all_tab_comments where table_name= upper(tablename) ;
--查看列的comment
select * from all_col_comments where table_name=upper(tablename) ;
以上是关于oracle查看表结构和注释的主要内容,如果未能解决你的问题,请参考以下文章