$PAD('54345','0','6) equals
-
'054345''
-
'0054345''
-
54345'0'
-
d'54345'00'
A
Correct answer
Explanation
$PAD adds padding characters to the left side of a string to reach the target length. '54345' (5 characters) padded with '0' to length 6 becomes '054345', with one zero added to the left.