MySQL REPEAT() လုပ်ဆောင်ချက်
ဥပမာ
ကြိုးတစ်ချောင်းကို ၃ ကြိမ်ပြန်လုပ်ပါ
SELECT REPEAT("SQL Tutorial", 3);
အဓိပ္ပါယ်နှင့် အသုံးပြုမှု
REPEAT() လုပ်ဆောင်ချက်သည် သတ်မှတ်ထားသည့်အတိုင်း ကြိုးတစ်ချောင်းကို အကြိမ်များစွာ ပြန်လုပ်သည်။
အထားအသို
REPEAT(string, number)
ကန့်သတ်တန်ဖိုးများ
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
နည်းပညာဆိုင်ရာအသေးစိတ်
အလုပ်လုပ်သည်- | MySQL 4.0 မှ |
---|
နောက်ထပ် ဥပမာများ
ဥပမာ
CustomerName တွင် စာသားကို ၂ ကြိမ်ပြန်လုပ်ပါ-
SELECT REPEAT(CustomerName,
2)
FROM Customers;
ဥပမာ
string ကို 0 ကြိမ်ပြန်လုပ်ပါ-
SELECT REPEAT("SQL Tutorial", 0);