Gebruik de MySQL-specifiek :
SHOW TABLES
...of gebruik de ANSI-standaard, INFORMATION_SCHEMA.TABLES :
SELECT table_name,
table_schema AS dbname
FROM INFORMATION_SCHEMA.TABLES
WHERE table_name='searched table name'
Gebruik de MySQL-specifiek :
SHOW TABLES
...of gebruik de ANSI-standaard, INFORMATION_SCHEMA.TABLES :
SELECT table_name,
table_schema AS dbname
FROM INFORMATION_SCHEMA.TABLES
WHERE table_name='searched table name'