When using SQL, are there any benefits of using = in a WHERE clause instead of LIKE?
=
WHERE
LIKE
Without any special operators, LIKE
LIKE and = are different. LIKE is what you would use in a search query. It also allows wildcards like _ (simple character wildcard) and % (multi-character wildcard).
_
%
= should be used if you want exact matches and it will be faster.
This site explains LIKE