Oralce查詢所有關聯某字段為外來鍵的表

2021-09-06 23:17:05 字數 385 閱讀 3210

在程式或者手動執行刪除表資料時,經常遇到關聯外來鍵無法刪除而報錯的情況。若是自己建的表還好,最慘的就是接手別人的專案維護,這時想要快速定位以某個字段作為外來鍵的所有表,可以利用以下語句查詢:

select a.table_name, a.column_name from user_cons_columns a, user_constraints b

where a.constraint_name = b.constraint_name

and b.constraint_type =

'r'and a.column_name =

'task_uuid'

;

其中把task_uuid換成需要查詢的字段

mysql 查詢某欄位最小的記錄

根據我所遇到的應用情況,總結了以下3中簡單的語句 1.select select field from table t2 order by field s from table t1 2.select t1.from table t1 where t1.field select min t2.fie...

Sql查詢按某字段值排序

1.sql查詢資料 select from emapiauthorizeinfo order bycase when d76c63ec d885 40b4 ad58 e950ebba74bf then 1when be1581ea d3d1 4342 a427 2027faee26db then 2...

查詢某錶的所有與之關聯的表以及關聯字段

select b.table name 主鍵表名,b.column name 主鍵列名,a.table name 外來鍵表名,a.column name 外來鍵列名 from select a.constraint name,b.table name,b.column name,a.r constr...