mysql show all tables with column name code example
Example 1: mysql show all tables
show tables;
Example 2: find a column in all tables mysql
SELECT DISTINCT TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME IN ('columnA','ColumnB')
AND TABLE_SCHEMA='YourDatabase';