Elimizde bulunan bir datanın sağından veya solun san veri atmak veya silmek için kullanılır.
Örnek ;
Result: ‘ tech’
LPAD(‘tech’, 2);
Result: ‘te’
LPAD(‘tech’, 8, ‘0’);
Result: ‘0000tech’
LPAD(‘tech on the net’, 15, ‘z’);
Result: ‘tech on the net’
LPAD(‘tech on the net’, 16, ‘z’);
Result: ‘ztech on the net’