Lägg till kod från bfavaretto, om du har information_schema.tables, prova något sånt här:
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff
Lägg till kod från bfavaretto, om du har information_schema.tables, prova något sånt här:
IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff