Returns the string str, left-padded with the string padstr to a length of len characters. If str is longer than len, the return value is shortened to len characters.
SELECT LPAD('hi',4,'??');
'??hi'
SELECT LPAD('hi',1,'??');
'h'
Returns NULL if any of its arguments are NULL.
SELECT LPAD('hi',4,'??');
'??hi'
SELECT LPAD('hi',1,'??');
'h'