Hvis du vil være korrekt, skal du bruge INFORMATION_SCHEMA .
SELECT *
FROM information_schema.tables
WHERE table_schema = 'yourdb'
AND table_name = 'testtable'
LIMIT 1;
Alternativt kan du bruge SHOW TABLES
SHOW TABLES LIKE 'yourtable';
Hvis der er en række i resultatsættet, eksisterer der en tabel.