INSTR(str,substr)
函數用於傳回子字串substr 在字串str 中第一次出現的索引位置,沒有找到子字串時傳回0。例如:
select INSTR('MySQL字符串函数', '字符串') AS index1, INSTR('MySQL字符串函数', '日期') AS index2, INSTR('MySQL字符串函数', '') AS index3, INSTR('MySQL字符串函数', null) AS index4; index1|index2|index3|index4| ------+------+------+------+ 6| 0| 1| |
另外,LOCATE(substr,str)
函數也可以用來傳回子字串substr 在字串str 中第一次出現的索引位置,和INSTR(str, substr) 函數唯一的差異就是參數的順序相反。
LOCATE(substr,str,pos)
函數傳回子字串substr 在字串str 中從位置pos 開始第一次出現的索引位置,例如:
SELECT LOCATE('S','MySQL Server', 5) AS ind; ind| ---+ 7|
FIELD(str,str1,str2,str3,…) 函數傳回字串str 在後續字串清單中出現的位置,沒有找到時傳回0。例如:
SELECT FIELD('李四', '张三', '李四', '王五') AS ind; ind| ---+ 2|
FIND_IN_SET(str,strlist) 函數傳回字串 str 在清單字串 strlist 中出現的位置,strlist 由 N 個子字串使用逗號分隔組成。例如:
SELECT FIND_IN_SET('李四', '张三,李四,王五') AS ind; ind| ---+ 2|
以上是MySQL中如何使用INSTR()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!