Question
Query with an apostraphe
I want to create a query such as the following:
<cfquery>
select question
from table
where question='What's your favorite color?'
</cfquery>
I keep getting an error message because of the apostraphe in What's.
How can I create this query so that it will work? These questions are submitted users, so I don't think I can say, just don't use an apostraphe.
Thanks.
<cfquery>
select question
from table
where question='What's your favorite color?'
</cfquery>
I keep getting an error message because of the apostraphe in What's.
How can I create this query so that it will work? These questions are submitted users, so I don't think I can say, just don't use an apostraphe.
Thanks.