Is there a easy way to query a table for its constraints(foreignkeys specificaly) like show create table, but for the constraints only?
thanks,
pvgoddijn
|
Is there a easy way to query a table for its constraints(foreignkeys specificaly) like show create table, but for the constraints only? thanks, pvgoddijn |
||||
|
|
|
To show only the foreign key constraints you can check the constraint_type in information_schema.table_constraints and get the affected columns in information_schema.key_column_usage via a join
|
||||
|
|||
|
|
The foreign key constraints are listed in the Comment column of the output. |
|||
|
|
|
|||
|
|