Hi,
Reihen soll Record heissen ???
z.B. folgende Tabelle ???
TABLE1
FIELD1 FIELD2 FIELD2
a 1 e
b 2 e
c 3 f
d 2 e
e 3 f
f 4 g
Wenn Dich jetzt die Field2 - Field3-kombination interessiert, würde ich das wie folgt machen :
select t1.field1 from table1 t1
where t1.field2 || t1.field3 in (
select t2.field2 || t2.field3 from table1 t2
group by t2.field2, t2.field3
having count(t2.field2 || t2.field3) > 1)
Dieses
sql statement sollte Dir b,c,d,e zurückgeben, allerdings nicht a,f weil bei a und f die
field2-field3-kombination nur einmal vorkommt (also count = 1)
Hoffe, ich hab die Frage richtig verstanden und es hilft weiter.
Lutz