Skip repeating values

from the Artful Common Queries page


You want to report all unique values of a column and skip all rows repeating any of these values.
SELECT col
FROM foo
GROUP BY col

Last updated 22 May 2024