MySQL RPAD () फ़ंक्शन
उदाहरण
"एबीसी" के साथ स्ट्रिंग को राइट-पैड करें, कुल लंबाई 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
परिभाषा और उपयोग
RPAD () एक निश्चित लंबाई के लिए एक स्ट्रिंग को दूसरे स्ट्रिंग के साथ राइट-पैड करता है।
नोट: एलपीएडी () फ़ंक्शन को भी देखें ।
वाक्य - विन्यास
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 . से |
---|
और ज्यादा उदाहरण
उदाहरण
"एबीसी" के साथ "ग्राहक नाम" में टेक्स्ट को राइट-पैड करें, जिसकी कुल लंबाई 30 है:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;