Brug den MySQL-specifikke :
SHOW TABLES
...eller brug ANSI-standarden, INFORMATION_SCHEMA.TABLES :
SELECT table_name,
table_schema AS dbname
FROM INFORMATION_SCHEMA.TABLES
WHERE table_name='searched table name'
Brug den MySQL-specifikke :
SHOW TABLES
...eller brug ANSI-standarden, INFORMATION_SCHEMA.TABLES :
SELECT table_name,
table_schema AS dbname
FROM INFORMATION_SCHEMA.TABLES
WHERE table_name='searched table name'