The way you have written the SQL "LIKE" statement to search strings with "/"(forward slash) and "\"(backslash) will not work.
You have to escape the "\" (backslash) with "\\" (double backslash) and "/" (forward slash) with "\" (single backslash).
So, your SQL should look like the following SQL:
SELECT * FROM my_table WHERE my_column LIKE '%discussion\\\\/%';
There are 3 extra "\": 2 for "\" and 1 for "/".