RIGHT()()
RIGHT() last n characters. You use it in SELECT (and sometimes WHERE/UPDATE). It does not change stored data unless you UPDATE … SET col = RIGHT(col).
Board: SELECT RIGHT(name, 2) 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). Not RIGHT JOIN.
Interview — name RIGHT, one argument list, one example on the students table. Don’t recite every string function.
On the example next to this theory — RIGHT()() — jOIN combines rows using a match condition between tables.
Say what RIGHT returns, then SELECT RIGHT(name, 2) FROM students;