ItHurtsWhenIThink
Technical User
I have a very simple query. But, it just does not provide the results I want. Need to query table and get rows with distinct phone number. Do not want duplicate phone numbers.
Here is my query that looks like it should work. Currently gives my duplicate phone numbers.
SELECT Distinct(Phone), FName, LName, City, Address, Zip
FROM Voters
WHERE Phone Like '523*' AND City='WhoVille'
ORDER BY Phone;
should work heh?
Here is my query that looks like it should work. Currently gives my duplicate phone numbers.
SELECT Distinct(Phone), FName, LName, City, Address, Zip
FROM Voters
WHERE Phone Like '523*' AND City='WhoVille'
ORDER BY Phone;
should work heh?