Last index of a given substring in MySQL

前端 未结 6 664
余生分开走
余生分开走 2020-12-02 16:27

We can find the index of the first occurrence of a given substring in MySQL using the INSTR() function as follows.

SELECT instr(\'Have_a_good_da         


        
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-02 17:06

    @Marc B was close. In MySQL, following statement returns 12:

    SELECT CHAR_LENGTH("Have_a_good_day") - LOCATE('_', REVERSE("Have_a_good_day"))+1;
    

    Anticipating a possible use of the value, the following statement extracts the left part of the string before the last underscore(i.e., _):

    SELECT LEFT("first_middle_last", CHAR_LENGTH("first_middle_last") - LOCATE('_', REVERSE("first_middle_last")));
    

    The result is "first_middle". If you want to include the delimiter, use:

    SELECT LEFT("first_middle_last", CHAR_LENGTH("first_middle_last") - LOCATE('_', REVERSE("first_middle_last"))+1);
    

    It would be nice if they enhanced LOCATE to have an option to start the search from the right.

    If you want the right part of the string after the last space a better solution is:

    SELECT SUBSTRING_INDEX("first_middle_last", '_', -1);
    

    This returns "last".

提交回复
热议问题