MySQL LPAD () Fungsi
Contoh
Letakkan string di kiri dengan "ABC", dengan total panjang 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definisi dan Penggunaan
Fungsi LPAD() memberi bantalan kiri pada string dengan string lain, hingga panjang tertentu.
Catatan: Lihat juga fungsi RPAD() .
Sintaksis
LPAD(string,
length, lpad_string)
Nilai Parameter
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 |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Letakkan teks di "NamaPelanggan" dengan "ABC", dengan panjang total 30:
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;