Použijte specifické pro MySQL :
SHOW TABLES
...nebo použijte standard ANSI, INFORMATION_SCHEMA.TABLES :
SELECT table_name,
table_schema AS dbname
FROM INFORMATION_SCHEMA.TABLES
WHERE table_name='searched table name'
Použijte specifické pro MySQL :
SHOW TABLES
...nebo použijte standard ANSI, INFORMATION_SCHEMA.TABLES :
SELECT table_name,
table_schema AS dbname
FROM INFORMATION_SCHEMA.TABLES
WHERE table_name='searched table name'