Das MySQL-Referenzhandbuch enthält kein eindeutiges Beispiel dafür.
Ich habe eine ENUM-Spalte mit Ländernamen, zu denen ich weitere Länder hinzufügen muss. Was ist die richtige MySQL-Syntax, um dies zu erreichen?
Hier ist mein Versuch:
ALTER TABLE carmake CHANGE country country ENUM('Sweden','Malaysia');
Der Fehler, den ich bekomme, ist: ERROR 1265 (01000): Data truncated for column 'country' at row 1.
Die country
Spalte ist die Spalte vom Typ ENUM in der obigen Anweisung.
SHOW CREATE TABLE OUTPUT:
mysql> SHOW CREATE TABLE carmake;
+---------+---------------------------------------------------------------------+
| Table | Create Table
+---------+---------------------------------------------------------------------+
| carmake | CREATE TABLE `carmake` (
`carmake_id` tinyint(4) NOT NULL AUTO_INCREMENT,
`name` tinytext,
`country` enum('Japan','USA','England','Australia','Germany','France','Italy','Spain','Czech Republic','China','South Korea','India') DEFAULT NULL,
PRIMARY KEY (`carmake_id`),
KEY `name` (`name`(3))
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=latin1 |
+---------+---------------------------------------------------------------------+
1 row in set (0.00 sec)
WÄHLEN SIE EIN UNTERSCHIEDLICHES LAND AUS DER Carmake-AUSGABE:
+----------------+
| country |
+----------------+
| Italy |
| Germany |
| England |
| USA |
| France |
| South Korea |
| NULL |
| Australia |
| Spain |
| Czech Republic |
+----------------+