MongoDB集約フレームワーク(Aggregation Framework)の使い方その1

URL
date
Nov 1, 2023
slug
mongodb-aggregation-framework-basic-practices-1
status
Published
tags
MongoDB
Basic
Command
Aggregate
summary
MongoDB集約フレームワーク(Aggregation Framework)の使い方
type
Post

集計フレームワーク(Aggregation Framework)とは?

  • aggregation frameworkは、find() メソッドと同じ検索も可能だが変換や複雑なデータ操作のための柔軟なパイプライン(Pipeline)ベースを提供
  • 一連の操作 (Stage) を順次適用することで、データを変換、フィルタリング、グルーピング、ソーティングなどができます。
 

Aggregation Frameworkの基本

メソッドの定義

 
基本 Syntax
 
 
以下は、MongoDB サンプルデータです。
  • persons Collection サンプルデータ 5000件
 
簡単に$aggregateStageと$match$groupOperatorを用いて、データを集約してみる。
 

© EndlessDev2016 2021 - 2025