Is there any difference between:
SELECT * FROM users WHERE username=\"davyjones\"
and
SELECT * FROM users WHERE username LI
The LIKE condition allows you to use wildcards:
LIKE
SELECT * FROM suppliers WHERE supplier_name like 'Hew%';
See more examples.
and Equals = is used for equality matching.
=