bfavarettoのコードに追加して、information_schema.tablesがある場合は、次のようにしてみてください。
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff
bfavarettoのコードに追加して、information_schema.tablesがある場合は、次のようにしてみてください。
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff