db_table_exists($table)
Check if a table exists.
includes/database.mysql.inc, line 422
<?php function db_table_exists($table) { return db_num_rows(db_query("SHOW TABLES LIKE '{" . db_escape_table($table) . "}'")); } ?>