--oracle查看该用户的所有表名字、表注释、字段名、字段注释、是否为空、字段类型
select distinct TABLE_COLUMN.*,
TABLE_NALLABLE.DATA_TYPE,
TABLE_NALLABLE.NULLABLE
from (select distinct utc.table_name table_name,
utc.comments table_comments,
ucc.column_name column_name,
ucc.comments column_comments
from user_tab_comments utc, user_col_comments ucc
where utc.table_name = ucc.table_name
and utc.table_name not like '%_B'
and utc.table_name not like '%_Z'
and utc.table_name not like '%1%') TABLE_COLUMN,
(select distinct table_name, column_name, nullable, DATA_TYPE
from user_tab_cols
where table_name not like '%_B'
and table_name not like '%_Z'
and table_name not like '%1%') TABLE_NALLABLE
where TABLE_COLUMN.column_name = TABLE_NALLABLE.column_name
and TABLE_COLUMN.TABLE_NAME = TABLE_NALLABLE.table_name
--and TABLE_COLUMN.column_comments like '%分类名称%'
and TABLE_COLUMN.table_comments like '%字典%';
--多次去掉笛卡尔oracle查看该用户的所有表名字、表注释、字段名、字段注释、是否为空、字段类型
最新推荐文章于 2024-03-13 11:06:57 发布
本文提供了一个Oracle SQL查询脚本,用于获取指定用户的表结构详细信息,包括表名、表注释、字段名、字段注释、字段是否允许为空及字段的数据类型等。此脚本通过联接多个元数据视图来实现,适用于需要详细了解Oracle数据库表结构的场景。
196

被折叠的 条评论
为什么被折叠?



