MySQL RPAD() İşlevi
Örnek
Dizeyi "ABC" ile toplam 20 uzunluğa kadar sağ tuşlayın:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Tanım ve Kullanım
RPAD() işlevi, bir dizeyi başka bir dizeyle belirli bir uzunluğa kadar sağda tutar.
Not: Ayrıca LPAD() işlevine bakın.
Sözdizimi
RPAD(string,
length, rpad_string)
Parametre Değerleri
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 |
Teknik detaylar
Çalışır: | MySQL 4.0'dan |
---|
Daha fazla örnek
Örnek
"MüşteriAdı" içindeki metni "ABC" ile sağ tuşla toplam 30 uzunluğa getirin:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;