like()()
LIKE() is a MySQL string function — it takes text and returns text or a number. You use it in SELECT (and sometimes WHERE/UPDATE). It does not change stored data unless you UPDATE … SET col = LIKE(col).
Board: SELECT LIKE(name) 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). NULL input often yields NULL. Try it on one row first.
Interview — name LIKE, one argument list, one example on the students table. Don’t recite every string function.
On the example next to this theory — like()() — wHERE combines predicates with AND/OR; LIKE does pattern match.
Say what LIKE returns, then SELECT LIKE(name) FROM students;