Distinct pair of values SQL

OscarRyz picture OscarRyz · Aug 25, 2009 · Viewed 102.7k times · Source

Consider

 create table pairs ( number a, number b ) 

Where the data is

1,1
1,1
1,1
2,4
2,4
3,2
3,2
5,1

Etc.

What query gives me the distinct values the number column b has So I can see

1,1
5,1
2,4
3,2

only

I've tried

select distinct ( a ) , b from pairs group by b 

but gives me "not a group by expression"

Answer

Michael Krelin - hacker picture Michael Krelin - hacker · Aug 25, 2009

What you mean is either

SELECT DISTINCT a, b FROM pairs;

or

SELECT a, b FROM pairs GROUP BY a, b;