Aggiungendo al codice da bfavaretto, se hai information_schema.tables, prova qualcosa del genere:
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff