oracle 查詢表結構

2021-06-04 23:50:02 字數 583 閱讀 9850

通過資料字典來獲取,

select   table_name,column_name,data_type,data_length   from   user_tab_columns   where       table_name   not   in   (   select   view_name   from   user_views   )   and   table_name= '表名 '   order   by   length(   table_name   )   desc ';

查詢列注釋:

select * from user_col_comments where table_name=upper('表名');
查詢表注釋及列注釋:
select a.table_name,a.comments,b.column_name,b.comments  

from user_tab_comments a,user_col_comments b

where a.table_name=b.table_name and a.table_name='表名'

Oracle表結構查詢

以下是查詢所的查描述相關的sql。獲取字段 select from user tab columns 獲取字段注釋 select from user col comments 查詢表所有字段包括注釋 select b.comments,a.column name,a.data type,a.data...

Oracle查詢樹結構表

11月最後一天,趕緊寫多一篇湊夠四篇 對於樹狀結構的表,即有記錄父節點或子節點的表,如果不知道到底有多少層級,oracle有自帶的函式可以處理查詢 語法select a from b where c d start with id 1 connect by preid prior id prior代...

oracle 常用樹形結構的表查詢

start with.connect by prior 詳解 oracle 中的select 語句可以用 start with.connect by prior 子句實現遞迴查詢,connect by 是結構化查詢中用到的,其基本語法是 select columnname1 columnname2,...