首页 > 代码库 > oracle查看表结构和注释
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查看表结构和注释
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。