Función MySQL LPAD()
Ejemplo
Rellene a la izquierda la cadena con "ABC", hasta una longitud total de 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definición y uso
La función LPAD() rellena a la izquierda una cadena con otra cadena, hasta una determinada longitud.
Nota: Mire también la función RPAD() .
Sintaxis
LPAD(string,
length, lpad_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 left-padded |
lpad_string | Required. The string to left-pad to string |
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|
Más ejemplos
Ejemplo
Rellene a la izquierda el texto en "CustomerName" con "ABC", hasta una longitud total de 30:
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;