MySQL RPAD() လုပ်ဆောင်ချက်
ဥပမာ
စုစုပေါင်းအရှည် 20 အထိ "ABC" ဖြင့် ညာဘက်တွင် ကွက်လိုက်ပါ။
SELECT RPAD("SQL Tutorial",
20, "ABC");
အဓိပ္ပါယ်နှင့် အသုံးပြုမှု
RPAD() လုပ်ဆောင်ချက်သည် ညာဘက်ရှိ စာကြောင်းတစ်ကြောင်းကို အခြားစာကြောင်းတစ်ခုနှင့် အတိုင်းအတာတစ်ခုအထိ သတ်မှတ်ထားသည်။
မှတ်ချက်- LPAD() လုပ်ဆောင်ချက် ကိုလည်း ကြည့်ရှု ပါ။
အထားအသို
RPAD(string,
length, rpad_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 right-padded |
rpad_string | Required. The string to right-pad to string |
နည်းပညာဆိုင်ရာအသေးစိတ်
အလုပ်လုပ်သည်- | MySQL 4.0 မှ |
---|
နောက်ထပ် ဥပမာများ
ဥပမာ
"ABC" ဖြင့် "CustomerName" ရှိ စာသားကို ညာဘက်တွင် စုစုပေါင်းအရှည် 30 အထိ နှိပ်ပါ။
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;