mysql
-
create table with COLLATEmysql 2023. 5. 4. 16:08
문제 테이블 생성시 query column 을 만들고, query column 으로 unique index 를 생성했다. 그런데 query 에 courreges, courrèges 를 입력시, 아래와 같이 에러가 발생했다. rpc error: code = AlreadyExists desc = Duplicate entry '24-courrèges' for key ... 원인 https://stackoverflow.com/questions/6466901/mysql-distinction-between-e-and-%c3%a9-e-acute-unique-index 에 나온 것 처럼 e와 è가 mysql 에서 동일한 문자로 취급되었기 때문이다. 해결 기존 데이터의 COLLATE 변경 ALTER TABLE my_ta..