mysql like 검색방법

· 2012-12-02 (일) 12:52:59 · 7093 · 9
너무 궁금해서 아무리 찾아도 저와 비슷한 질문을 한 사람이 없더군요. like 검색시에 대소문자를 구분해서 검색하는 방법이 뭐가 있을까 생각하다가... 예를들어, name 컬럼에 abc 라는 값이 들어있고, select * from table where name like '%Bc%' 이렇게 해도 검색이 되더라 이겁니다. 물론 필드형을 바꾸어 주거나 하는 방법이 있지만.... select * from table where binary(name) like '%Bc%' 이렇게 하면 대소문자를 구분하여 검색이 안되고, select * from table where binary(name) like '%bc%' 이렇게 해야만 검색

첨부파일

mysql_like_검색.txt (50 bytes) 54회 2012-12-02 13:10
|

댓글 9개

2012-12-02 (일) 13:00:46
감사요
ㅎ 그렇군요..
2012-12-08 (토) 19:36:19
http://dev.mysql.com/doc/refman/5.5/en/case-sensitivity.html

To make this search case sensitive, make sure that one of the operands has a case sensitive or binary collation. For example, if you are comparing a column and a string that both have the latin1 character set, you can use the COLLATE operator to cause either operand to have the latin1_general_cs or latin1_bin collation:

col_name COLLATE latin1_general_cs LIKE 'a%'
col_name LIKE 'a%' COLLATE latin1_general_cs
col_name COLLATE latin1_bin LIKE 'a%'
col_name LIKE 'a%' COLLATE latin1_bin
감사합니다
2012-12-14 (금) 00:53:42
감사합니다
감사합니다
감사합니다
감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
OS 12-12-10 조회 4,030
JavaScript 12-12-06 조회 3,075
jQuery 12-12-05 조회 5,957
OS 12-12-03 조회 3,634
OS 12-12-02 조회 3,172
MySQL 12-12-02 조회 7,094
JavaScript 12-12-01 조회 3,144
jQuery 12-12-01 조회 6,474
PHP 12-12-01 조회 2,628
MySQL 12-11-29 조회 2,579
Mobile 12-11-29 조회 2만
JavaScript 12-11-28 조회 5,634
MySQL 12-11-27 조회 4,370
기타 12-11-26 조회 3,871
OS 12-11-26 조회 3,290
OS 12-11-26 조회 3,906
JavaScript 12-11-25 조회 5,018
PHP 12-11-25 조회 1.3만
jQuery 12-11-22 조회 3,918
PHP 12-11-22 조회 8,663
기타 12-11-21 조회 9,503
기타 12-11-20 조회 3,530
PHP 12-11-20 조회 5만
PHP 12-11-19 조회 3,515
Mobile 12-11-16 조회 7,990
웹서버 12-11-15 조회 2,423
PHP 12-11-13 조회 3,267
PHP 12-11-12 조회 2,797
jQuery 12-11-09 조회 6,653
jQuery 12-11-09 조회 7,477