In MySQL, how do I get a list of all foreign key constraints pointing to a particular table? a particular column? This is the same thing as this Oracle question, but for MySQL.
|
1
|
|
|
|
|
|
For a table
for a column, the same but add an and for the REFERENCED_COLUMN_NAME. |
||
|
|
|
|
The solution I came up with is fragile; it relies on django's naming convention for foreign keys.
Then, in the shell,
|
||
|
|
|
|
Take a look at INFORMATION_SCHEMA.TABLE_CONSTRAINTS, as described here. |
||
|
|
|
|
If you use InnoDB and defined FK's you could query the information_schema database e.g.:
|
||
