1. 程式人生 > >mysql擷取字串substring_index(str,delim,count)

mysql擷取字串substring_index(str,delim,count)

      str:要處理的字串

      delim:分隔符

      count:個數

      eg:

           SELECT
              SUBSTRING_INDEX(
                 SUBSTRING_INDEX(
                       '30,30,30,123,40,31,31,32,32,32,32,32,31,31,31,31,32',
                     ',',
                   4
        ),
        ',' ,-1
    )

返回123