select *
from Table1
where Email = 'test()<>[]:;@\\@test.com'
select *
from Table1
where Email like '%test()<>[]:;@\\@test.com%'
The first query is returning data, while the second query is not. How can we use like
in this query?
The second query should return the same data as the first.