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

· 10년 전 · 2908
  •            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.

 

 

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

 

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

 

 

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
PHP 10년 전 조회 2,436
PHP 10년 전 조회 2,880
JavaScript 10년 전 조회 5,027
PHP 10년 전 조회 3,784
PHP 10년 전 조회 2,916
PHP 10년 전 조회 3,128
MySQL 10년 전 조회 4,333
MySQL 10년 전 조회 2,200
PHP 10년 전 조회 2,647
PHP 10년 전 조회 2,460
PHP 10년 전 조회 2,676
PHP 10년 전 조회 2,562
MySQL 10년 전 조회 3,939
MySQL 10년 전 조회 2,698
MySQL 10년 전 조회 2,909
PHP 10년 전 조회 2,367
PHP 10년 전 조회 2,775
PHP 10년 전 조회 3,759
웹서버 10년 전 조회 2,843
PHP 10년 전 조회 7,173
OS 10년 전 조회 3,823
OS 10년 전 조회 2,974
웹서버 10년 전 조회 3,951
PHP 10년 전 조회 7,415
jQuery 10년 전 조회 4,118
기타 10년 전 조회 2,620
기타 10년 전 조회 2,874
기타 10년 전 조회 2,710
기타 10년 전 조회 2,898
기타 10년 전 조회 3,181