查看备注:

--查看表的comment
select * from all\_tab\_comments where table\_name= upper(tablename) ;

--查看列的comment
select * from all\_col\_comments where table\_name=upper(tablename) ;

下面为您介绍的语句用于实现oracle查询用户所有表,如果您对oracle查询方面感兴趣的话,不妨一看。


select * from all\_tab\_comments
-- 查询所有用户的表,视图等

select * from user\_tab\_comments
-- 查询本用户的表,视图等

select * from all\_col\_comments
--查询所有用户的表的列名和注释.

select * from user\_col\_comments
-- 查询本用户的表的列名和注释

select * from all\_tab\_columns
--查询所有用户的表的列名等信息(详细但是没有备注).

select * from user\_tab\_columns
--查询本用户的表的列名等信息(详细但是没有备注).

--一般使用1:
select t.table\_name,t.comments from user\_tab\_comments t

--一般使用2:
select r1, r2, r3, r5
from (select a.table\_name r1, a.column\_name r2, a.comments r3
from user\_col\_comments a),
(select t.table\_name r4, t.comments r5 from user\_tab\_comments t)
where r4 = r1

以上就是oracle查询用户所有表的语句介绍。

标签: user, oracle, 查询, select, comments, name, 查看, tab, 表和列

相关文章推荐

添加新评论,含*的栏目为必填