读书人

mysql里怎么查询含特定表的数据库

发布时间: 2012-09-08 10:48:07 作者: rapoo

mysql里如何查询含特定表的数据库
例如在mysql中共有10个数据库,其中2个数据库含有表“wp_config”, 怎么通过sql查询到含有表“wp_config”的数据库?

select table_schema from information_schema.tables where table_name = 'wp_config';

读书人网 >其他数据库

热点推荐