Answers for "ORACLE SQL lpad"

SQL
0

ORACLE SQL lpad

LPAD('tech', 7);
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'
Posted by: Guest on September-24-2021
0

lpad oracle

LPAD( string1, padded_length [, pad_string] )
Posted by: Guest on March-31-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language