Mysql5

Mysql - 找出特定表存在的數據庫

  • August 23, 2012

我如何找出 MySql 中存在特定表的數據庫?

Mysql version is 
+----------------------+
| version()            |
+----------------------+
| 5.1.35-community-log | 
+----------------------+

由於我在一個實例上有大約 25 個數據庫,我只想找到一個特定表存在哪個數據庫?

mysql> select * from information_schema.tables where table_name='foo'\G

以下查詢將提供數據庫名稱。

select TABLE_SCHEMA from TABLES WHERE  TABLE_NAME like '%yourtablename%'\G;

引用自:https://serverfault.com/questions/420304