The underscore matches any single character. For example,
WHERE fieldname LIKE '___'
would match all three-letter words as there are 3 underscores.
LIKE '%_%' matches everything in your database containing one character somewhere in the name field. This would match on every name field in your database that is not empty, except for id 27561.