When doing a cfquery to MySQL, MYSQL gives me the error Unknown column 'Question' in 'field list' on the following code:
<cfquery name="qUpdateTheQuestion" datasource="testmaster">
INSERT INTO ETrueFalseQuestions
VALUES (<cfoutput>#newTypeID#</cfoutput>, `<cfoutput>#FORM.Question#</cfoutput>`, <cfoutput>#FORM.truefalse#</cfoutput>
I have tried everything I could think of to try to solve this issue, as well as some suggestions I found when trying to search for a solution, such as using backticks instead of single quotes.
I also don't understand why it is searching for a column with the name Question, as that is the value of FORM.Question, and changes depending on what is typed into the form. Any suggestions would be greatly appreciated.