Subject Re: [firebird-support] sql question
Author Svein Erling Tysvaer
Hi Maurizio!

I'd say your question is very much an on-topic subject for this list.
Here's my five minute attempt for a solution:

select M1.ID, M2.ID
from MaurizioTable M1
join MaurizioTable M2 on M2.F1 = M1.F1
and M2.F2 = M1.F2
and M2.F3 = M1.F3
where not exists(select * from MaurizioTable M3
where M3.ID = M1.ID
where not exists(select * from MaurizioTable M4
where M4.ID = M2.ID
and M4.F1 = M3.F1
and M4.F2 = M3.F2
and M4.F3 = M3.F3))
and not exists(select * from MaurizioTable M5
where M5.ID = M2.ID
where not exists(select * from MaurizioTable M6
where M6.ID = M1.ID
and M6.F1 = M5.F1
and M6.F2 = M5.F2
and M6.F3 = M5.F3))

Now, it's way past bedtime and I wrote this using ThunderBird, which is
lousy at parsing SQL ;o). Hence, no guarantees that I'm even close to a
working solution, but

HTH,
Set

Maurizio P. wrote:
> hi
> i know it is not connected with the newsgroup theme ,
> but i would be glad for any suggestion :
>
> how can i find if there are two groups with the same
> values , where *ID* is the index of the group ?
>
> for example in the case :
>
> ID F1 F2 F3
>
> 5 D F G
> 5 S J T
> 10 A C H
> 10 Z J H
> 12 A C F
> 12 A C X
> 15 D D G
> 16 A C H
> 16 Z J H
>
> i have a duplicate with the ID 10 and 16
> infact :
>
> 10 A C H
> 10 Z J H
>
> are the same of :
> 16 A C H
> 16 Z J H
>
>
> ..mmm... maybe my knowledge of SQL is still poor ,
> but today i could not find a good solution .
>
> thanks
>
> bye
>
> Maurizio