I have to make a query against a table in a SQL Server 2014 database, the problem is that I have to search for the string _ _ _ (three followed without spaces / strong>, I put it that way because it edits it to me) and since the character _ is a wildcard when doing the search by LIKE %___%
it does not return the desired results.
I would appreciate if someone can tell me how to do that search and not treat _ _ _ as a wildcard but as three _ followed and only remove those records where the field has _ _ _ anywhere in the chain.
Greetings.