When using SQL, are there any benefits of using = in a WHERE clause instead of LIKE?
=
WHERE
LIKE
Without any special operators, LIKE
One difference - apart from the possibility to use wildcards with LIKE - is in trailing spaces: The = operator ignores trailing space, but LIKE does not.