J'essaie de trouver si ma base de données a une colonne nommée sort_method
. J'ai jeté un œil aux forums mais ne semble pas pouvoir trouver la bonne réponse. Ma base de données contient plus de 300 tables, la recherche manuelle n'est donc pas une option.
J'utilise phpMyAdmin - requête SQL
SELECT table_name,table_schema
FROM INFORMATION_SCHEMA.COLUMNS
WHERE column_name='sort_method'
Vous pouvez interroger le INFORMATION_SCHEMA.COLUMNS
table système:
SELECT COLUMN_NAME, TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = 'sort_method'
Plus d'informations sur: http://dev.mysql.com/doc/refman/5.0/en/columns-table.html
Essayer
SELECT DISTINCT TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = 'columnName'
AND TABLE_SCHEMA='YourDatabase';