Is there any difference between:
SELECT * FROM users WHERE username=\"davyjones\"
and
SELECT * FROM users WHERE username LI
LIKE supports wildcards. Usually it uses the % or _ character for the wildcard.
Using the LIKE operator with no wildcards is the same as using the = operator.