I am a bit new to MySQL and just wanted to know what is the difference between:
` \' \"
when I\'m using them in a query.
With ` you write mysql variable names. With ' you write mysql variable values
For example
SELECT * FROM `test` WHERE `x` = '1'