加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

获取oracle表中所有需要的信息(字段、注释、类型等等)

发布时间:2020-12-12 15:55:30 所属栏目:百科 来源:网络整理
导读:有兴趣的朋友可以尝试一下~ 获取表字段: select * from user_tab_columns where Table_Name='用户表' order by column_name 获取表注释: select * from user_tab_comments where Table_Name='用户表' order by Table_Name 获取字段注释: select * from us

有兴趣的朋友可以尝试一下~

获取表字段:

select *
from user_tab_columns
where Table_Name='用户表'
order by column_name

获取表注释:

select *
from user_tab_comments
where Table_Name='用户表'

order by Table_Name

获取字段注释:

select *
from user_col_comments
where Table_Name='用户表'

order by column_name

/* 获取表:*/

select table_name from user_tables; //当前用户的表

select table_name from all_tables; //所有用户的表

select table_name from dba_tables; //包括系统表

select table_name from dba_tables where owner='zfxfzb'

/*
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 * fromall_col_comments

/*

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读