Following on from Dave's response....
You only need one query, which selects the Min ID, Min Name and GroupBy Address,
For example:
Code:
SELECT Min(id) AS id, Min(Name) AS Name, Address
FROM YourTable
GROUP BY Address;
Steven
I am a loud man with a very large hat. This means I am in charge