LPAD()()
LPAD() pad on the left to a length. You use it in SELECT (and sometimes WHERE/UPDATE). It does not change stored data unless you UPDATE … SET col = LPAD(col).
Board: SELECT LPAD(roll, 3, '0') FROM students; Run it. Say the result out loud. If the column is NULL, the result is often NULL — wrap with IFNULL if you need a blank instead.
String indexes in MySQL start at 1, not 0 (SUBSTR, INSTR, LEFT). Truncates if the string is already longer.
Interview — name LPAD, one argument list, one example on the students table. Don’t recite every string function.
On the example next to this theory: LPAD()(): create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Say what LPAD returns, then SELECT LPAD(roll, 3, '0') FROM students;