Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wenn die Tabelle nicht existiert, führen Sie eine lange Abfrage aus

Fügen Sie Code von bfavaretto hinzu, wenn Sie information_schema.tables haben, versuchen Sie so etwas:

IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff