Función MySQL RPAD()
Ejemplo
Rellene a la derecha la cadena con "ABC", hasta una longitud total de 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definición y uso
La función RPAD() rellena a la derecha una cadena con otra cadena, hasta una determinada longitud.
Nota: Mire también la función LPAD() .
Sintaxis
RPAD(string,
length, rpad_string)
Valores paramétricos
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 |
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|
Más ejemplos
Ejemplo
Rellene con el botón derecho el texto en "CustomerName" con "ABC", hasta una longitud total de 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;