Funzione MySQL LPAD()
Esempio
Premi a sinistra la stringa con "ABC", per una lunghezza totale di 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definizione e utilizzo
La funzione LPAD() inserisce a sinistra una stringa con un'altra stringa, fino a una certa lunghezza.
Nota: guarda anche la funzione RPAD() .
Sintassi
LPAD(string,
length, lpad_string)
Valori dei parametri
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 |
Dettagli tecnici
Funziona in: | Da MySQL 4.0 |
---|
Altri esempi
Esempio
Premere il tasto sinistro del mouse sul testo in "CustomerName" con "ABC", per una lunghezza totale di 30:
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;