The following query returns the result 'yzybuilding'.
SELECT LPAD('building', 11, 'yz');
The following query returns the result 'build'.
SELECT LPAD('building', 5, 'yz');
The following query returns the result ' building'. The space character is used by default to pad the source string.
SELECT LPAD('building', 11);