前端之家收集整理的这篇文章主要介绍了
oracle 获取表的列的注释,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
获取表字段:
select *
from user_tab_columns
where Table_Name='用户表'
order by column_name
获取表注释:
select *
from user_tab_columns
where Table_Name='用户表'
order by column_name
select *
from user_COL_comments
where table_name='用户表'
获取表的列信息
select *
from user_tab_cols
where table_name=upper('用户表')
原文链接:https://www.f2er.com/oracle/206120.html