MySQL: Check if a table exists - version 1
select table_name as found from information_schema.tables where table_schema = '__database_name__' and table_name = '__table_name__'