I have a problem related to MySQL. I have a table, let's called it "students" with 3 columns: id, name, and age. I have an index name Index_2 - kind UNIGUE on columns name and age.
CREATE TABLE
bedrock.students(
idINTEGER UNSIGNED NOT NULL AUTO_INCREMENT,nameVARCHAR(45) NOT NULL,ageINTEGER UNSIGNED NOT NULL, PRIMARY KEY (id), UNIQUE INDEXIndex_2USING BTREE(name,age) ) ENGINE = InnoDB;
I tried this insert option:
insert into students (id, name, age) values (1, 'Ane', 23);
which works ok. Than I've tried this one (see Ané - e acute):
insert into students (id, name, age) values (2, 'Ané', 23);
and I receive this error message:
"Duplicate entry 'Ané-23' for key 'Index_2'"
MySQL somehow do not make any distinction between "Ane" and "Ané". How I can resolve this and why this is happening ?
Charset for table students is "utf8" and collation is "utf8_general_ci".
ALTER TABLE
studentsCHARACTER SET utf8 COLLATE utf8_general_ci;
Thanks you.
Later edit1: @Crozin:
I've changed to use collation utf8_bin:
ALTER TABLE
studentsCHARACTER SET utf8 COLLATE utf8_bin;
but I receive the same error...
But If I create the table from start with charset utf8 and collation utf8_bin, like this:
CREATE TABLE
students2(idINTEGER UNSIGNED AUTO_INCREMENT,nameVARCHAR(45),ageVARCHAR(45), PRIMARY KEY (id),
UNIQUE INDEXIndex_2USING BTREE(name,age) ) ENGINE = InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
both below insert commands works ok:
insert into students2 (id, name, age) values (1, 'Ane', 23); // works ok
insert into students2 (id, name, age) values (2, 'Ané', 23); // works ok
This seems to be very weird....
Later edit 2:
I saw another answer here ... I'm not sure if the user deleted or it get lost ... :| I was just testing it:
The user wrote that first he created 3 tables with 3 different charsets:
CREATE TABLE
utf8_bin(idint(10) unsigned NOT NULL AUTO_INCREMENT,namevarchar(45) COLLATE utf8_bin NOT NULL,ageint(10) unsigned NOT NULL, PRIMARY KEY (id), UNIQUE KEYIndex_2(name,age) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;CREATE TABLE
utf8_unicode_ci(
idint(10) unsigned NOT NULL AUTO_INCREMENT,namevarchar(45) COLLATE utf8_unicode_ci NOT NULL,
ageint(10) unsigned NOT NULL,
PRIMARY KEY (id), UNIQUE KEYIndex_2(name,age) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;CREATE TABLE
utf8_general_ci(
idint(10) unsigned NOT NULL AUTO_INCREMENT,namevarchar(45) COLLATE utf8_general_ci NOT NULL,
ageint(10) unsigned NOT NULL,
PRIMARY KEY (id), UNIQUE KEYIndex_2(name,age) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
The results of the user are:
Insert commands: INSERT INTO utf8_bin VALUES (1, 'Ane', 23), (2, 'Ané', 23); Query OK, 2 rows affected (0.02 sec) Records: 2 Duplicates: 0 Warnings: 0
INSERT INTO utf8_unicode_ci VALUES (1, 'Ane', 23), (2, 'Ané', 23); Query OK, 2 rows affected (0.01 sec) Records: 2 Duplicates: 0 Warnings: 0
INSERT INTO utf8_general_ci VALUES (1, 'Ane', 23), (2, 'Ané', 23); Query OK, 2 rows affected (0.01 sec) Records: 2 Duplicates: 0 Warnings: 0
Here are my results:
INSERT INTO utf8_bin VALUES (1, 'Ane', 23), (2, 'Ané', 23); //works ok INSERT INTO utf8_unicode_ci VALUES (1, 'Ane', 23), (2, 'Ané', 23); // Duplicate entry 'Ané-23' for key 'Index_2'
INSERT INTO utf8_general_ci VALUES (1, 'Ane', 23), (2, 'Ané', 23); //Duplicate entry 'Ané-23' for key 'Index_2'
I'm not sure why in his part this INSERT commands worked and for me doesn't worked ... He also wrote that he tested this on Mysql on Linux - has to do something with this ?! ... even I do not think so..