程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oracle抓取表結構的語句,oracle抓取語句

Oracle抓取表結構的語句,oracle抓取語句

編輯:Oracle教程

Oracle抓取表結構的語句,oracle抓取語句


oracle ---------------------------------------   SELECT case when t.COLUMN_ID=1 then t.table_name end table_name,        case when t.COLUMN_ID=1 then t2.comments end table_comments,        t.COLUMN_ID,t.colUMN_NAME,t1.comments,case when t3.COLUMN_NAME is not null then 'Y' else NULL end primary_key        ,t.DATA_TYPE,t.DATA_LENGTH,t.DATA_PRECISION,t.data_scale,t.nullable   FROM User_Tab_Cols t, User_Col_Comments t1, User_Tab_Comments t2,user_cons_columns t3 WHERE t.table_name = t1.table_name     AND t.column_name = t1.column_name     and t.table_name=t2.table_name     and t.table_name=t3.table_name(+) and t.COLUMN_NAME=t3.COLUMN_NAME(+) and t3.position(+)>0     and t.TABLE_NAME='S_SALARY'     order by t.COLUMN_ID

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved