获取oracle数据库的表名、字段名等系统信息

前端之家收集整理的这篇文章主要介绍了获取oracle数据库的表名、字段名等系统信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

获取oracle表和数据库字段时,需要用到的表


/* 获取表:*/

select table_name from user_tables; //当前用户名下的表的信息

select table_name from all_tables; //当前用户有权限的表的信息

(只要对某个表有任何权限,即可在此视图中看到表的相关信息)

select table_name from dba_tables; //系统里所有的表的信息,需要DBA权限才能查询

注意:表名和用户名,必须大写

例如: select owner,table_name from all_tables
where table_name = 'STUDENTS';

/*
user_tables:

table_name,tablespace_name,last_analyzed等

dba_tables:

ower,table_name,sans-serif; line-height:24px"> all_tables:

all_objects:

*/

/* 获取表字段:*/

select * from user_tab_columns where Table_Name='用户表';

select * from all_tab_columns where Table_Name='用户表';

select * from dba_tab_columns where Table_Name='用户表';

/* user_tab_columns:

all_tab_columns :

dba_tab_columns:

*/

/* 获取表注释:*/

select * from user_tab_comments

/*
user_tab_comments:table_name,table_type,comments

相应的还有dba_tab_comments,all_tab_comments,这两个比user_tab_comments多了ower列。
*/

/* 获取字段注释:*/

select * from user_col_comments

/*

user_col_comments:table_name,sans-serif; line-height:24px"> 相应的还有dba_col_comments,all_col_comments,这两个比user_col_comments多了ower列。 */

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

猜你在找的Oracle相关文章