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