I have a table that looks like this:
name | surname
------------------
John | John
Jessica | Madson
I have a query like this:
SELECT *
FROM TABLE
WHERE name LIKE '%j%'
OR surname LIKE '%j%'
What I get:
John John
John John
Jessica Madson
What I want:
John John
Jessica Madson
How can I get rid of the duplicate results?
Use
DISTINCT: