Přidání kódu z bfavaretto, pokud máte information_schema.tables, zkuste něco takového:
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff
Přidání kódu z bfavaretto, pokud máte information_schema.tables, zkuste něco takového:
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff