vote up 4 vote down star

Hi!

Recently I came across with the following quiz. Imagine we have this table

+--------+
| colors |
+--------+
| red    |
| black  |
| white  |
| green  |
| orange |
+--------+

The task is to write a SQL query that will select all pairs without allowing duplicates. Permutations are counted too ({red, black} = {black, red}, hence only one of the pair is allowed).

flag

70% accept rate
are you looking for ANSI SQL or can it be DBMS specific (ex. SQL Server)? – Cody C Jul 28 at 19:07
no, just simple ANSI – glaz666 Jul 28 at 19:11

1 Answer

vote up 22 vote down check

Try this

Select A.Color, B.Color
From Colors A
Cross Join Colors B
Where A.Color > B.Color
link|flag
+1 - I am slow – John Rasch Jul 28 at 19:08
+1 fastest and enlightened :) – Rax Olgud Jul 28 at 19:08
Black = Black would be false, therefore it wouldt get selected. The above query looks good to me – Neil N Jul 28 at 19:09
@I'm slow too. deleting... – Raj More Jul 28 at 19:11
Here is an interesting link on CROSS JOINS databasejournal.com/sqletc/article.php/… – Cody C Jul 28 at 19:15
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.