테스트 서버 하나에 한글입력이 안되는 현상이 발견.
확인해보니 처음 만든 사람이 latin1_swedish?로 만들었다.
현재 사용중인 상용 정보는 utf8 이모지라서 동일하게 변경해줌.
SELECT default_character_set_name, DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA
WHERE schema_name = "schema명";
#alter schema schema명 collate utf8mb4_unicode_ci;
#alter table table명 convert to character set utf8mb4 collate utf8mb4_unicode_ci;
'Mysql' 카테고리의 다른 글
아마존 RDS -> 로컬 DB 변경 (DataGrip) (0) | 2024.02.23 |
---|---|
커버드 쿼리 튜닝 (0) | 2022.12.01 |
Mysql groupby 최신데이터 1row 값 (0) | 2022.09.01 |
Mariadb 비밀번호 초기화(centOS7, Mariadb10.6.5) (0) | 2022.01.26 |
Mariadb 비밀번호 초기화(centOS7, Mariadb10.6.5) (0) | 2022.01.26 |