MySQL 에서 문자를 검색할 때 대소문자를 구분해야할 때가 있다. 그럴때 다음과 같이 하면 된다.

SELECT your_field FROM your_table_name WHERE BINARY(your_field) LIKE "%your search word%"

+ Recent posts