返回字符串str,左填充用字符串padstr填补到len字符长度。 如果str为大于len长,返回值被缩短至len个字符(即,不能超过 len 长)。
select DISTINCT(b.name) from a, b where LPAD(b.bid,4,0) = a.aid;