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