Oracle 查詢欄位詳細資訊

passion_of_data發表於2011-06-20
Oracle 中查詢欄位詳細資訊的sql 語句,包含了表名,欄位名,型別,長度,是否為空,列序號和欄位的備註資訊。
 SELECT USER_TAB_COLS.TABLE_NAME as 表名,
    USER_TAB_COLS.COLUMN_NAME as 列名 ,
USER_TAB_COLS.DATA_TYPE as 資料型別,
    USER_TAB_COLS.DATA_LENGTH as 長度,
    USER_TAB_COLS.NULLABLE as 是否為空,
USER_TAB_COLS.COLUMN_ID as 列序號,
    user_col_comments.comments as 備註
FROM USER_TAB_COLS
inner join user_col_comments on
 user_col_comments.TABLE_NAME=USER_TAB_COLS.TABLE_NAME
and user_col_comments.COLUMN_NAME=USER_TAB_COLS.COLUMN_NAME
where  USER_TAB_COLS.Table_Name='表名'

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25964700/viewspace-700304/,如需轉載,請註明出處,否則將追究法律責任。

相關文章