I have an SQL statement like this:
SELECT TOP 100 id,
lastname,
firstname,
address1,
city,
state,
zip
FROM leads
WHERE id > 100
ORDER BY id ASC
Now I want the ZIP to be different (not dup) for 100 result with 1 query statement like that.