Problem: a table of coordinate lat/lngs. Two rows can potentially have the same coordinate. We want a query that returns a set of rows with unique coordinates (within the returned set). Note that distinct
is not usable because I need to return the id column which is, by definition, distinct. This sort of works (@maxcount
is the number of rows we need, intid
is a unique int id column):
select top (@maxcount) max(intid)
from Documents d
group by d.geoLng, d.geoLat
It will always return the same row for a given coordinate unfortunately, which is bit of a shame for my use. If only we had a rand()
aggregate we could use instead of max()
... Note that you can't use max()
with guids created by newid()
.
Any ideas? (there's some more background here, if you're interested: http://www.itu.dk/~friism/blog/?p=121)
UPDATE: Full solution here