I am trying to pass a string which has a '%' in it (its actually a sql query string). How do I pass the % (do I have to use a specific escape character?
eg: compute_answertime("%how do I%")
I am trying to pass a string which has a '%' in it (its actually a sql query string). How do I pass the % (do I have to use a specific escape character?
eg: compute_answertime("%how do I%")
Use another %
to escape it
>>> compute_answertime("%%how do I%%")