Pokud chcete mít pravdu, použijte INFORMATION_SCHEMA .
SELECT *
FROM information_schema.tables
WHERE table_schema = 'yourdb'
AND table_name = 'testtable'
LIMIT 1;
Případně můžete použít SHOW TABLES
SHOW TABLES LIKE 'yourtable';
Pokud je v sadě výsledků řádek, tabulka existuje.