RPAD(s1,len,s2) 返回字符串 s1 ,其右边由字符串 s2 填充到 len 字符长度,如果 s1 的长度大于 len ,则返回值被缩短至 len 长度
mysql> SELECT RPAD(‘hello‘,4,‘?‘), RPAD(‘hello‘,10,‘?‘); +---------------------+----------------------+ | RPAD(‘hello‘,4,‘?‘) | RPAD(‘hello‘,10,‘?‘) | # 字符串‘hello‘长度大于4,不需要被填充,因此被缩短至4 +---------------------+----------------------+ | hell | hello????? | # 字符串‘hello‘长度小于10,因此被填充 +---------------------+----------------------+
时间: 2024-11-05 21:39:00