oracle库如何查找表名、字段名?

前端之家收集整理的这篇文章主要介绍了oracle库如何查找表名、字段名?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1)查询所有表名:
select t.table_name from user_tables t;--表名、表空间、行数

select * fromall_tables; //所有用户的表

select * fromdba_tables; //包括系统表

2)查询所有字段名:

select * from user_tab_columns;//用户字段
select * from all_tab_columns;//所有用户字段
select * from dba_tab_columns;//所有用户表,含系统

3)查询指定表的所字段名,字段说明

select t.column_name,t.column_name fromuser_tab_comments

select t.column_name from user_col_comments t where t.table_name = 'BIZ_DICT_XB';


4)

原文链接:https://www.f2er.com/oracle/206574.html

猜你在找的Oracle相关文章