필드 내용에서 특정문자열을 기준으로 문자열 자르기

· 2015-10-29 (목) 17:27:38 · 3156
  •            SUBSTRING_INDEX(str,delim,count)

    Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned. SUBSTRING_INDEX() performs a case-sensitive match when searching for delim.

    Press CTRL+C to copy
    mysql> SELECT SUBSTRING_INDEX('www.mysql.com', '.', 2); -> 'www.mysql' mysql> SELECT SUBSTRING_INDEX('www.mysql.com', '.', -2); -> 'mysql.com'

    This function is multibyte safe.

 

 

이렇게 좋은 기능이 있는지 처음 알았네요.

 

특정 필드를 전체 업데이트 하거나 할때 매우 유용하겠어요.

 

 

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
PHP 15-11-05 조회 4,104
PHP 15-11-05 조회 3,007
PHP 15-11-04 조회 2,523
PHP 15-11-04 조회 2,687
PHP 15-11-04 조회 3,096
JavaScript 15-11-04 조회 5,298
PHP 15-11-04 조회 4,053
PHP 15-11-04 조회 3,171
PHP 15-11-03 조회 3,401
MySQL 15-11-03 조회 4,605
MySQL 15-11-02 조회 2,450
PHP 15-11-02 조회 2,904
PHP 15-11-02 조회 2,730
PHP 15-11-02 조회 2,912
PHP 15-10-31 조회 2,799
MySQL 15-10-30 조회 4,199
MySQL 15-10-30 조회 2,922
MySQL 15-10-29 조회 3,157
PHP 15-10-27 조회 2,584
PHP 15-10-23 조회 3,017
PHP 15-10-23 조회 4,013
웹서버 15-10-21 조회 3,087
PHP 15-10-19 조회 7,403
OS 15-10-17 조회 4,054
OS 15-10-17 조회 3,215
웹서버 15-10-17 조회 4,209
PHP 15-10-15 조회 7,658
jQuery 15-10-06 조회 4,375
기타 15-10-05 조회 2,869
기타 15-10-05 조회 3,138