目录

MySQL LPAD() 函数

示例

用 "ABC" 向左填充字符串,使总长度为 20:

SELECT LPAD("SQL Tutorial", 20, "ABC");
亲自试一试 »

定义和用法

LPAD() 函数用另一个字符串向左填充一个字符串,使其达到一定长度。

笔记:另请参阅RPAD()功能。

语法

LPAD( string, length, lpad_string)

参数值

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

技术细节

工作于: 从 MySQL 4.0 开始

更多示例

示例

用"ABC" 向左填充 "CustomerName" 中的文本,使总长度为 30:

SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;
亲自试一试 »