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.
use ` (backquotes) for column name
use ' or " for values
Don't use backticks with column values. use either single or double quotes otherwise mysql considered that value as a column name.