Als «mysql-error-1050» getaggte Fragen

25
MySQL 1050 Fehler "Tabelle existiert bereits", obwohl dies nicht der Fall ist
Ich füge diese Tabelle hinzu: CREATE TABLE contenttype ( contenttypeid INT UNSIGNED NOT NULL AUTO_INCREMENT, class VARBINARY(50) NOT NULL, packageid INT UNSIGNED NOT NULL, canplace ENUM('0','1') NOT NULL DEFAULT '0', cansearch ENUM('0','1') NOT NULL DEFAULT '0', cantag ENUM('0','1') DEFAULT '0', canattach ENUM('0','1') DEFAULT '0', isaggregator ENUM('0', '1') NOT NULL DEFAULT …

9
MySQL "TABELLE ERSTELLEN, WENN NICHT EXISTIERT" -> Fehler 1050
Verwenden des Befehls: CREATE TABLE IF NOT EXISTS `test`.`t1` ( `col` VARCHAR(16) NOT NULL ) ENGINE=MEMORY; Wenn Sie dies zweimal im MySQL Query Browser ausführen, erhalten Sie Folgendes: Tabelle 't1' existiert bereits Fehler 1050 Ich hätte gedacht, dass das Erstellen der Tabelle "IF NOT EXISTS" keine Fehler auslösen würde. Vermisse …
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.