MySQL error: Unknown column in ‘where clause’
backticks (`) are used for identifiers, like table names, column names, etc. Single quotes(‘) are used for string literals. You want to do: Or, to be more explicit: When there is no chance of ambiguity, and when table/column names do not have special characters or spaces, then you can leave the ` off. Here is … Read more