I'd like to query all user_questions where a question ends with a '\'.
I tried the following but the none of them seem to work. All of them return empty results.
select * from user_question where question like "%\\"
select * from user_questions where question like "%[\]"
select * from user_questions where question like "%\\\\"
select * from user_questions where question like "%[\\]"
I am using mysql workbench 6.0.7
mysql - How to handle query search with special characters /(forward slash) and \(backslash)