CONCAT_WS()()
CONCAT_WS() glues strings with a separator and skips NULLs. You use it in SELECT (and sometimes WHERE/UPDATE). It does not change stored data unless you UPDATE … SET col = CONCAT_WS(col).
Board: SELECT CONCAT_WS(' ', first, last) 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). First argument is the separator, not a name.
Interview — name CONCAT_WS, one argument list, one example on the students table. Don’t recite every string function.
On the example next to this theory: CONCAT_WS()(): create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Say what CONCAT_WS returns, then SELECT CONCAT_WS(' ', first, last) FROM students;