私があなたを正しく理解したなら:-
select * from Table1 where Source in
(
Select Source from Table1 group by Source having count(*) > 10
)
これにより、Table1
からすべての行が返されます Source
を持っている人 列の値が10回以上表示されます。
編集:-
select * from Table1 t1 join
(Select Source, Dest from Table1 group by Source, Dest having count(*) > 10) t2
on t1.Source = t2.Source and t1.Dest = t2.Dest
ここで、テーブルt2は、Source, Dest
の組み合わせを返します。 10回以上出現し、ベーステーブルTable1
と結合します 。