使用特定于MySQL的:
SHOW TABLES
…或使用ANSI标准INFORMATION_SCHEMA.TABLES:
SELECt table_name, table_schema AS dbname FROM INFORMATION_SCHEMA.TABLES WHERe table_name='searched table name'

使用特定于MySQL的:
SHOW TABLES
…或使用ANSI标准INFORMATION_SCHEMA.TABLES:
SELECt table_name, table_schema AS dbname FROM INFORMATION_SCHEMA.TABLES WHERe table_name='searched table name'