LPAD(s1, len, s2)
返回字符串 s1
,其 左边
由字符 s2
填充,填充长度为 len
。假如 s1
的长度大于 len
,则返回值被缩短至 len
字符。
RPAD(s1, len, s2)
返回字符串 s1
,其 右边
由字符 s2
填充,填充长度为 len
。假如 s1
的长度大于 len
,则返回值被缩短至 len
字符。
示例:
$ SELECT LPAD('hello',4,'????'), LPAD('hello',10,'ab'), RPAD('hello',4,'????'), RPAD('hello',10,'ab');点击复制复制失败已复制
执行结果: |lpad(text)|lpad(text)|rpad(text)|rpad(text)| |-----|-----|-----|-----| |hell | ababahello | hell | helloababa|