查找MySQL中所有的表(包括各个数据库)):SELECT * FROM information_schema.TABLES t
根据表名查找表: SELECT * FROM information_schema.TABLES t WHERE t.table_name = 'your_table_name';
查找MySQL中所有的表(包括各个数据库)):SELECT * FROM information_schema.TABLES t
根据表名查找表: SELECT * FROM information_schema.TABLES t WHERE t.table_name = 'your_table_name';