Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment trouver toutes les relations entre toutes les tables mysql ?

La meilleure façon, d'un point de vue programmatique, consiste à collecter des données à partir de INFORMATION_SCHEMA.KEY_COLUMN_USAGE tableau comme suit :

SELECT 
  `TABLE_SCHEMA`,                          -- Foreign key schema
  `TABLE_NAME`,                            -- Foreign key table
  `COLUMN_NAME`,                           -- Foreign key column
  `REFERENCED_TABLE_SCHEMA`,               -- Origin key schema
  `REFERENCED_TABLE_NAME`,                 -- Origin key table
  `REFERENCED_COLUMN_NAME`                 -- Origin key column
FROM
  `INFORMATION_SCHEMA`.`KEY_COLUMN_USAGE`  -- Will fail if user don't have privilege
WHERE
  `TABLE_SCHEMA` = SCHEMA()                -- Detect current schema in USE 
  AND `REFERENCED_TABLE_NAME` IS NOT NULL; -- Only tables with foreign keys

Il y a plus d'informations sur les colonnes comme ORDINAL_POSITION cela pourrait être utile selon votre objectif.

Plus d'informations : http://dev.mysql.com /doc/refman/5.1/en/key-column-usage-table.html