너무 궁금해서 아무리 찾아도 저와 비슷한 질문을 한 사람이 없더군요. 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%' 이렇게 해야만 검색
댓글 9개
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
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
게시글 목록
| 번호 | 제목 |
|---|---|
| 19947 |
HTML
DIV의 justify 정렬 문제
7
|
| 10159 |
JavaScript
ie 에서는 되는데 크롬에서는 왜 안될까요?
|
| 10158 | |
| 19944 | |
| 10155 | |
| 10154 |
jQuery
이미지 슬라이드 질문 드립니다.
|
| 10152 |
Mobile
모바일 페이지 확대 축소 도움부탁려요
1
|
| 10151 | |
| 10148 |
JavaScript
HTTP 로그인 인증창에 대해 질문합니다 도와주세요ㅠㅠ
2
|
| 17555 | |
| 10146 | |
| 19939 | |
| 10143 |
JavaScript
자바에서...
2
|
| 10141 | |
| 10135 |
JavaScript
list.skin.php에서 자바스크립트 출력 문제 입니다.
5
|
| 10132 | |
| 10131 |
Mobile
모바일 사이트는 웹표준 코딩 할려면 어떻게 하나요
|
| 10126 |
JavaScript
JScript.Encode 복호화 방법
4
|
| 10122 |
MySQL
db 값이 가끔 안넘어가는경우가.....
3
|
| 10120 | |
| 10113 | |
| 10107 |
jQuery
메인 탭 롤링 배너 입니다.
5
|
| 10104 |
JavaScript
jQuery 쉽게 참고 할만한 사이트 없나요?
2
|
| 10103 |
node.js
NodeJS 추천사이트
|
| 10100 |
JavaScript
팝업창 관련 질문드려요!
2
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기