Use this query:<br>SELECT DISTINCTROW FIRST([field]) AS myvar, COUNT([field]) AS anotherVar<br>FROM table GROUP BY [field]<br>HAVING COUNT([field])>=1;<br><br> It's gonna give you only the list of the fields, even if they have duplicates. I mean, if you have 1,1,1,1,2,2,3,3,3 in your table, it's gonna give you 1,2,3<br>Hope it helps............<br>