Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
したがって、IDのリストと、特定のテーブルでそれらが繰り返されている回数のカウントを提供するこのクエリがあります。テーブルは非常に大きく、クエリが吐き出す行数を数える方法を理解するのに苦労しています。
テーブルと「IN」句で自己結合を試みましたが、それらを機能させることができませんでした
何かご意見は?
select id, count(*) as C from tblProduct group by id having count(*) > 2 order by C desc
select count(*) from (select id, count(*) as C from tblProduct group by id having count(*) > 2 ) mytable