Als je gelijk wilt hebben, gebruik dan INFORMATION_SCHEMA .
SELECT *
FROM information_schema.tables
WHERE table_schema = 'yourdb'
AND table_name = 'testtable'
LIMIT 1;
Als alternatief kunt u SHOW TABLES
. gebruiken
SHOW TABLES LIKE 'yourtable';
Als er een rij in de resultatenset staat, bestaat de tabel.