MySQL 找出使用了某列名的所有表

SELECT table_name,column_name FROM information_schema.columns
WHERE column_name LIKE '% tax %'

编程技巧