Funzione MySQL RPAD()
Esempio
Premi con il tasto destro del mouse la stringa con "ABC", per una lunghezza totale di 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definizione e utilizzo
La funzione RPAD() inserisce a destra una stringa con un'altra stringa, fino a una certa lunghezza.
Nota: guarda anche la funzione LPAD() .
Sintassi
RPAD(string,
length, rpad_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 right-padded |
rpad_string | Required. The string to right-pad to string |
Dettagli tecnici
Funziona in: | Da MySQL 4.0 |
---|
Altri esempi
Esempio
Tasto destro del mouse in "Nome cliente" con "ABC", per una lunghezza totale di 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;