4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

はじめに

担当する案件でデータの集計を依頼されることがあり、後輩君が頑張ってSQLとExcelのフィルタをコネコネしているののを見て伝えたかった

問題

データで特定のカラム単位で集計してxxx件以上のものをリスト化したい

解決方

SELECT a.hoge,count(*) FROM TABLE a GROUP BY a.hoge HAVING count(*) > xxx

おわりに

group byは使えるけどhavingは知らない、みたいな状態だったのでhavingを伝えると喜んでくれてうれしかった
havingを使うとgroup byの取得結果に対して条件の記載ができるので、group byを使う機会があったら頭の片隅にでもおいておくと役に立つ日がくるかもしれない。(こないかもしれない)

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?