MySQL SUBSTRING() လုပ်ဆောင်ချက်
ဥပမာ
စာကြောင်းတစ်ကြောင်းမှ စာကြောင်းခွဲတစ်ခုကို ထုတ်ယူပါ (ရာထူး 5 တွင် စတင်ပါ၊ စာလုံး 3 လုံးကို ထုတ်ယူပါ)
SELECT SUBSTRING("SQL Tutorial", 5, 3) AS ExtractString;
အဓိပ္ပါယ်နှင့် အသုံးပြုမှု
SUBSTRING() လုပ်ဆောင်ချက်သည် စာကြောင်းခွဲတစ်ခု (မည်သည့်အနေအထားမှ စတင်သည်) မှ ထုတ်ယူသည်။
မှတ်ချက်- SUBSTR () နှင့် MID() လုပ်ဆောင်ချက်များသည် SUBSTRING() လုပ်ဆောင်ချက်နှင့် ညီမျှသည်။
အထားအသို
SUBSTRING(string, start, length)
သို့မဟုတ်-
SUBSTRING(string FROM start FOR length)
ကန့်သတ်တန်ဖိုးများ
Parameter | Description |
---|---|
string | Required. The string to extract from |
start | Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string |
length | Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position) |
နည်းပညာဆိုင်ရာအသေးစိတ်
အလုပ်လုပ်သည်- | MySQL 4.0 မှ |
---|
နောက်ထပ် ဥပမာများ
ဥပမာ
ကော်လံတစ်ခုရှိ စာသားမှ စာတန်းခွဲတစ်ခုကို ထုတ်ယူပါ (ရာထူး 2 တွင် စတင်ပါ၊ စာလုံး 5 လုံးကို ထုတ်ယူပါ)
SELECT SUBSTRING(CustomerName,
2, 5) AS ExtractString
FROM Customers;
ဥပမာ
စာကြောင်းတစ်ကြောင်းမှ စာကြောင်းခွဲတစ်ခုကို ထုတ်ယူပါ (အဆုံးမှ စတင်ပါ၊ အနေအထား -5 တွင်၊ စာလုံး 5 လုံးကို ထုတ်ယူပါ)
SELECT SUBSTRING("SQL Tutorial", -5, 5) AS ExtractString;