找到表所在的数据库

时间:2011-05-16 09:41:56

标签: mysql

我在mysql工作。我需要找到特定表所在的数据库。这可能在mysql中吗?

2 个答案:

答案 0 :(得分:3)

select table_name,table_schema
from information_schema.tables
where table_name = 'your_table'

答案 1 :(得分:0)

如果你知道你拥有的数据库 How to check if mysql database exists

或者你只想搜索本地的devleopement?

使用heidisql或mysql workbench?