I need a select query
TBLSRC
TR CN TK
100 200 300
100 201 300
100 202 300
100 202 302
100 202 303
100 203 300
101 200 300
101 200 302
101 201 300
101 201 302
101 201 303
101 202 300
101 202 302
101 202 305
output should be
TR TK
100 300
101 300
101 302
Discard all TK which is not present in all CN for a single TR
Suggested clarification:
For each group of TR, I want to get all TK that have a complete set of CN values.
In the group TR=100 for example, there are four different values for CN. There are three different values for TK, but only the value 300 have all the four values for CN.
The question doesn't seem to get reopened, so I'll just put the solution here:
select y.TR, y.TK
from (
select TR, cnt = count(distinct CN)
from TBLSRC
group by TR
) x
inner join (
select TR, TK, cnt = count(*)
from TBLSRC
group by TR, TK
) y on y.TR = x.TR and y.cnt = x.cnt
//Guffa
