I'm currently using the below query;
SELECT * FROM '' WHERE Name LIKE 'argument'
OR Reg LIKE 'argument'
However, this will only show results that are LIKE
Name
or Reg
not exact.
How do I change this query to search for results that are exact and like?