I have a database query: SELECT * from `ukbiz` WHERE name LIKE '%$NAME%' some entries are duplicated, and i want to eliminate the dupes by looking for matching phone numbers... i know i can do this: SELECT DISTINCT phone from `ukbiz` WHERE name LIKE '%$NAME%' but that only returns phone numbers, i want all values returned, just with unique phone numbers.... help?