ORACLE獲取表字段 注釋的方法

2021-07-29 20:52:57 字數 2064 閱讀 2615

獲取表字段:

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,tablespace_name,last_analyzed等

all_tables:

ower,table_name,tablespace_name,last_analyzed等

all_objects:

ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等

*//*  獲取表字段:*/

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:

table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等

all_tab_columns :

ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等

dba_tab_columns:

ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等

*//*  獲取表注釋:*/

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,column_name,comments

相應的還有dba_col_comments,all_col_comments,這兩個比user_col_comments多了ower列。

*/

mysql 獲取表字段及注釋

mysql 檢視表注釋或字段注釋 檢視所有表的注釋 select table name 表名,table comment 表說明 from information schema.tables where table schema 資料庫名 order by table name 查詢所有表及字段的注...

oracle 查詢表字段明細 字段注釋 表注釋

查詢表字段明細 select column name,data type,data length,data precision data scale from all tab columns where table name tablename 字段注釋 select from user col c...

SQL 修改表字段注釋

sqlserver 表注釋if select count from fn listextendedproperty ms description user n dbo table n maa hinmoku n column n fvhinmezai 0 exec sp updateextended...