> 数据库 > MySQL >

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

SELECT table_name,column_name FROM information_schema.columns
WHERE column_name LIKE '% tax %'
 
(责任编辑:IT)