In mysql with "latin1_swedish_ci" collation these records:
INSERT INTO test VALUES ('è');
INSERT INTO test VALUES ('e');
are the same... If this varchar colum is a primary index and I try to inser these values I get a duplicate primary key error. Is it possibile to change this behaviour?
thanks