![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Assuming you have a table like: X Y Z ------- A, B, C A, B, C A, A, C A, A, A A, A, A select DISTINCT X, Y, Z FROM table; A, B, C A, A, C A, A, A is this different than select DISTINCT(X), Y, Z from table; |
|
and why doesn't this work? select X, DISTINCT(Y), Z from table; |
#3
| |||
| |||
|
|
select DISTINCT X, Y, Z FROM table; A, B, C A, A, C A, A, A is this different than select DISTINCT(X), Y, Z from table; and why doesn't this work? select X, DISTINCT(Y), Z from table; |
#4
| |||
| |||
|
|
select DISTINCT X, Y, Z FROM table; is this different than select DISTINCT(X), Y, Z from table; |
|
and why doesn't this work? select X, DISTINCT(Y), Z from table; |
![]() |
| Thread Tools | |
| Display Modes | |
| |