RPAD
appends string (third parameter) the specified number of times (second parameter) to the first parameter.
In this example each one of the student's last name that is less than 10 characters long, is filled with -
SELECT
RPAD(first_name, 10, '-') AS 'student name'
FROM students