Find all tables in MySQL database containing specific column names
Copy this code and paste it in your HTML
WHERE COLUMN_NAME
IN ('columnA','ColumnB') AND TABLE_SCHEMA
='YourDatabase';
URL: http://stackoverflow.com/questions/193780/how-to-find-all-the-tables-in-mysql-with-specific-column-names-in-them
Report this snippet
Comments
Subscribe to comments