LPAD
RPAD
REPEAT
Right-pads a string to a specified length.
RPAD(str, n, fill)
Enter values below to update the example in real time.
status
status_col
orders
SELECT RPAD(status, 12, '.') AS status_col FROM orders;