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.
数百万のトリプルが格納されているSQLデータベースがあります。トリプルの大部分は少なくとも1回繰り返されます。すべてのトリプルがデータベースで発生する回数をカウントする最も実用的な方法は何ですか?ありがとう。
「トリプル」が3つの列、、、で構成されているとするc1とc2、次のように使用して個別のタプルをカウントc3できます。group by
c1
c2
c3
group by
select c1, c2, c3, count(1) from mytable group by c1, c2, c3
デモ:http ://www.sqlfiddle.com/#!7 / 693c4 / 2