查詢oracle表的資訊(表,欄位,約束,索引)
查詢oracle表的資訊(表,欄位,約束,索引)
1、查詢出所有的使用者表
select * from user_tables 可以查詢出所有的使用者表
2、查詢出使用者所有表的索引
select * from user_indexes
3、查詢使用者表的索引(非聚集索引):
select * from user_indexes where uniqueness='NONUNIQUE'
4、查詢使用者表的主鍵(聚集索引):
select * from user_indexes where uniqueness='UNIQUE'
5、查詢表的索引
select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and
t.table_name='NODE'
6、查詢表的主鍵
select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and
au.constraint_type = 'P' AND cu.table_name = 'NODE'
7、查詢表的唯一性約束(包括名稱,構成列):
select column_name from user_cons_columns cu, user_constraints au where cu.constraint_name=au.constraint_name and
cu.table_name='NODE'
8、查詢表的外來鍵
select * from user_constraints c where c.constraint_type = 'R' and c.table_name='STAFFPOSITION'
查詢外來鍵約束的列名:
select * from user_cons_columns cl where cl.constraint_name = 外來鍵名稱
查詢引用表的鍵的列名:
select * from user_cons_columns cl where cl.constraint_name = 外來鍵引用表的鍵名
9、查詢表的所有列及其屬性
select t.*,c.COMMENTS from user_tab_columns t,user_col_comments c where t.table_name='NODE'
1、查詢出所有的使用者表
select * from user_tables 可以查詢出所有的使用者表
2、查詢出使用者所有表的索引
select * from user_indexes
3、查詢使用者表的索引(非聚集索引):
select * from user_indexes where uniqueness='NONUNIQUE'
4、查詢使用者表的主鍵(聚集索引):
select * from user_indexes where uniqueness='UNIQUE'
5、查詢表的索引
select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and
t.table_name='NODE'
6、查詢表的主鍵
select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and
au.constraint_type = 'P' AND cu.table_name = 'NODE'
7、查詢表的唯一性約束(包括名稱,構成列):
select column_name from user_cons_columns cu, user_constraints au where cu.constraint_name=au.constraint_name and
cu.table_name='NODE'
8、查詢表的外來鍵
select * from user_constraints c where c.constraint_type = 'R' and c.table_name='STAFFPOSITION'
查詢外來鍵約束的列名:
select * from user_cons_columns cl where cl.constraint_name = 外來鍵名稱
查詢引用表的鍵的列名:
select * from user_cons_columns cl where cl.constraint_name = 外來鍵引用表的鍵名
9、查詢表的所有列及其屬性
select t.*,c.COMMENTS from user_tab_columns t,user_col_comments c where t.table_name='NODE'
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12478376/viewspace-1086836/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 5_MySQL 表的欄位約束MySql
- 查詢外來鍵約束、子表欄位等資訊的SQLSQL
- 查詢表上的索引及對應的欄位索引
- 查詢emp表上的所有約束的詳細資訊
- 修改oracle的約束欄位Oracle
- 查詢某個表的索引資訊索引
- 根據表查詢索引資訊索引
- ORACLE: 查詢(看)表的主鍵、外來鍵、唯一性約束和索引Oracle索引
- Oracle 查詢欄位詳細資訊Oracle
- oracle查詢表資訊(索引,外來鍵,列等)Oracle索引
- 根據欄位名查詢所有表
- 查詢(看)表的主鍵、外來鍵、唯一性約束和索引索引
- SQL SERVER 資料庫查詢表和欄位資訊語句SQLServer資料庫
- oracle刪除表欄位和oracle表增加欄位Oracle
- Oracle OCP(22):查詢表資訊Oracle
- MySQL 欄位約束MySql
- 查詢表或索引增長的歷史資訊索引
- SQL Server 查詢表註釋和欄位SQLServer
- 揭秘PostgreSQL:如何查詢表欄位名稱SQL
- 查詢表資訊
- 如何查詢某個資料表中除某個欄位的所有資訊???
- MySQL查詢索引的選擇性、索引欄位、註釋等基本資訊的SQLMySql索引
- MySQL 查詢索引的選擇性、索引欄位、註釋等基本資訊的SQLMySql索引
- sqlserver查詢一個庫所有表的欄位名及欄位型別SQLServer型別
- Oracle獲取所有表名資訊和獲取指定表名欄位資訊Oracle
- Oracle查詢資料表結構(欄位,型別,大小,備註)Oracle型別
- 如何在Oracle資料庫中查詢表和欄位說明Oracle資料庫
- sqlserver新增查詢 表、欄位註釋,組合查詢所有的使用者、表名、表註釋SQLServer
- PostgreSQL10.0preview功能增強-兩段式索引(約束欄位+附加欄位)SQLView索引
- 同一張表的兩個欄位比較查詢
- SQL2005查詢表中欄位的描述SQL
- Mysql表關聯欄位未建索引導致查詢慢,優化後查詢效率顯著提升MySql索引優化
- sql: 查詢約束SQL
- oracle 查詢所有表的表名Oracle
- 在Oracle 中查詢某個欄位存在於哪幾個表 (轉)Oracle
- sql查詢當前使用者所有表、欄位及相關注釋資訊SQL
- 表和索引並行查詢索引並行
- 表空間查詢資訊