我們可以使用FIELD()函數從字串清單中找到特定字串的索引位置。
FIELD(str search,String1, String2,…StringN)
在這裡,str search是我們想要搜尋的字串的索引號,而String1,String …StringN是搜尋將發生的字串清單。
mysql> Select FIELD('good', 'Ram', 'is', 'a', 'good', 'boy')AS 'Index Number of good'; +----------------------+ | Index Number of good | +----------------------+ | 4 | +----------------------+ 1 row in set (0.00 sec)
以上是在MySQL中,我們可以使用哪個函數來從字串清單中找到特定字串的索引位置?的詳細內容。更多資訊請關注PHP中文網其他相關文章!