# mysql 查找某个表在哪个库
SELECT table_schema FROM information_schema.TABLES WHERE table_name = '表名'
例如:SELECT table_schema FROM information_schema.TABLES WHERE table_name = 'organization_info';
因为这两个库都有这个表,因此查出了两个库名