MySQL LPAD() လုပ်ဆောင်ချက်
ဥပမာ
စုစုပေါင်းအရှည် 20 အထိ "ABC" ပါသော စာကြောင်းဘယ်ဘက်တွင်
SELECT LPAD("SQL Tutorial",
20, "ABC");
အဓိပ္ပါယ်နှင့် အသုံးပြုမှု
LPAD() လုပ်ဆောင်ချက်သည် ကြိုးတစ်ချောင်းကို အခြားစာကြောင်းတစ်ခုနှင့် ဘယ်ဘက်တွင် သတ်သတ်မှတ်မှတ် အရှည်တစ်ခုအထိ ပေးသည်။
မှတ်ချက်- RPAD() လုပ်ဆောင်ချက် ကိုလည်း ကြည့်ရှု ပါ။
အထားအသို
LPAD(string,
length, lpad_string)
ကန့်သတ်တန်ဖိုးများ
Parameter | Description |
---|---|
string | Required. The original string. If the length of the original string is larger than the length parameter, this function removes the overfloating characters from string |
length | Required. The length of the string after it has been left-padded |
lpad_string | Required. The string to left-pad to string |
နည်းပညာဆိုင်ရာအသေးစိတ်
အလုပ်လုပ်သည်- | MySQL 4.0 မှ |
---|
နောက်ထပ် ဥပမာများ
ဥပမာ
"ABC" ဖြင့် "CustomerName" ရှိ စာသားကို ဘယ်ဘက်တွင် စုစုပေါင်း အရှည် 30 အထိ နှိပ်ပါ။
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;