Database/MySQL

    [MySQL] Charset, Collation 확인하기

    가끔 conf 파일의 설정 미비 혹은 database 생성 구문에서 빠뜨려서 charset, collation이 의도하지 않은 것을 사용하는 경우가 있다 1. Charset, Collation 확인하기 # database 생성 구문 확인 show create database ; # database charset, collation 확인 SELECT default_character_set_name, DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA WHERE schema_name = ; # table 컬럼별 charset, collation 확인 SHOW FULL COLUMNS FROM .; # table 생성 구문 확인 show create table ...