jo: Tabelle kopieren

Hallo,

Ich benutzt PhpMyAdmin um meine MySQL Datenbank zu verwalten.

Ich habe probleme eine Tabelle zu kopieren.

Ich wähle einfach die Table aus, klicke auf operationen, und dann Kopiere Tabelle nach (Datenbank.Tabellenname): +  Struktur und Daten

Wo liegt das Problem ?

  
Fehler  
  
SQL-Befehl: Bearbeiten  
  
CREATE TABLE `eu508729`.`anbak` (  
`id` int( 19 ) NOT NULL AUTO_INCREMENT ,  
`parent_id` int( 19 ) NOT NULL default '0',  
`user_id` int( 6 ) NOT NULL default '0',  
`dealer_id` int( 9 ) NOT NULL default '0',  
`model_id` int( 6 ) NOT NULL default '0',  
`insertTime` varchar( 15 ) NOT NULL default '',  
`editTime` varchar( 15 ) NOT NULL default '',  
`an` int( 1 ) NOT NULL default '0',  
`wip` int( 1 ) NOT NULL default '0',  
`status` int( 1 ) NOT NULL default '0',  
`number` varchar( 9 ) NOT NULL default '0',  
`color` varchar( 30 ) NOT NULL default '',  
`p_price` decimal( 10, 2 ) NOT NULL default '0.00',  
`s_price` decimal( 10, 2 ) NOT NULL default '0.00',  
`s_price2` decimal( 10, 2 ) NOT NULL default '0.00',  
`lang_software` varchar( 255 ) NOT NULL default '',  
`lang_manual` varchar( 255 ) NOT NULL default '',  
`delivery_time` varchar( 15 ) NOT NULL default '',  
`delivery_conditions` int( 6 ) NOT NULL default '0',  
`terms_of_payment` longtext NOT NULL ,  
`spezifications` longtext NOT NULL ,  
`comment` longtext NOT NULL ,  
PRIMARY KEY ( `id` )  
) ENGINE = MYISAM AUTO_INCREMENT = 92DEFAULT CHARSET = latin1  
  
MySQL meldet:  
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '92DEFAULT CHARSET  = latin1' at line 23  

  1. Hello,

    ) ENGINE = MYISAM AUTO_INCREMENT = 92DEFAULT CHARSET = latin1
    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '92DEFAULT CHARSET  = latin1' at line 23

    das steht da doch...
    lies den Befehl und schau nach Auffällitkeiten - ein fehlendes Leerzeichen zwischen 92 und DEFAULT CHARSET wäre beispielsweise eine. Wenn PHPMyAdmin dafür verantwortlich ist, könnte das ein Bug sein.

    MfG
    Rouven

    --
    -------------------
    Computer programming is tremendous fun. Like music, it is a skill that derives from an unknown blend of innate talent and constant practice. Like drawing, it can be shaped to a variety of ends: commercial, artistic, and pure entertainment. Programmers have a well-deserved reputation for working long hours but are rarely credited with being driven by creative fevers. Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination, but because their imagination reveals worlds that others cannot see. -- Larry OBrien and Bruce Eckel in Thinking in C#