Wildcards
LIKE wildcards — % any string, _ one character. Not * . In REGEXP, . and .* are different. Don’t mix the two languages.
ESCAPE if you need a literal % — LIKE '%10\%%' ESCAPE '\\' (messy — mention you can escape).
Trap — * from globbing files.
On the example next to this theory: Wildcards: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
LIKE 'A%' and LIKE 'A_ha'. Not *.