MySQL 쿼리에 한글이 포함됐을 때 이런 오류가 나는 경우가 있다.
# 오류 내용
mysql> ERROR 1366 (HY000): Incorrect string value: '\xEB\xB2\x88 \xED\x94...' for column 'memo' at row 1
# 해결 방법
1. /etc/my.cnf 파일을 수정 (다음 내용을 추가)
[mysqld]
. . .
default-character-set=utf8
default-collation=utf8_general_ci
. . .
2. database, table character set 수정
mysql> ALTER TABLE table_name convert to charset utf8;