MySQL INSTR() လုပ်ဆောင်ချက်
ဥပမာ
"W3Schools.com" စာကြောင်းတွင် "3" ကိုရှာပြီး အနေအထားပြန်သွားပါ-
SELECT INSTR("W3Schools.com", "3") AS MatchPosition;
အဓိပ္ပါယ်နှင့် အသုံးပြုမှု
INSTR() လုပ်ဆောင်ချက်သည် အခြား string တစ်ခုရှိ string တစ်ခု၏ ပထမဆုံး ဖြစ်ပေါ်မှု အနေအထားကို ပြန်ပေးသည်။
ဤလုပ်ဆောင်ချက်သည် အသေးစိပ်မပါသော ရှာဖွေမှုကို လုပ်ဆောင်သည်။
အထားအသို
INSTR(string1, string2)
ကန့်သတ်တန်ဖိုးများ
Parameter | Description |
---|---|
string1 | Required. The string that will be searched |
string2 | Required. The string to search for in string1. If string2 is not found, this function returns 0 |
နည်းပညာဆိုင်ရာအသေးစိတ်
အလုပ်လုပ်သည်- | MySQL 4.0 မှ |
---|
နောက်ထပ် ဥပမာများ
ဥပမာ
"W3Schools.com" စာကြောင်းတွင် "COM" ကိုရှာပြီး အနေအထားပြန်သွားပါ-
SELECT INSTR("W3Schools.com", "COM") AS MatchPosition;
ဥပမာ
CustomerName ကော်လံတွင် "a" ကိုရှာပါ၊ နှင့် ပြန်ရမည့်အနေအထား-
SELECT INSTR(CustomerName, "a")
FROM Customers;