$year

연산자는 $year 날짜의 연도를 4자리 숫자(예: 2024)로 반환합니다. 날짜가 null이거나 누락된 경우 null을 $year 반환합니다.

문법

연산자의 $objectToArray 구문은 다음과 같습니다.

{
  $year: <dateExpression>
}

또는 표준 시간대 사양

{
  $year: {
    date: <dateExpression>,
    timezone: <timezoneExpression>
  }
}

매개 변수

매개 변수 Description
dateExpression Date, Timestamp 또는 ObjectId로 확인되는 식입니다.
timezone Optional. 계산에 사용할 표준 시간대입니다. Olson 표준 시간대 식별자(예: "America/New_York") 또는 UTC 오프셋(예: "+0530")일 수 있습니다.

예시

스토어 컬렉션에서 이 샘플 문서를 고려합니다.

{
    "_id": "0fcc0bf0-ed18-4ab8-b558-9848e18058f4",
    "name": "First Up Consultants | Beverage Shop - Satterfieldmouth",
    "location": {
        "lat": -89.2384,
        "lon": -46.4012
    },
    "staff": {
        "totalStaff": {
            "fullTime": 8,
            "partTime": 20
        }
    },
    "sales": {
        "totalSales": 75670,
        "salesByCategory": [
            {
                "categoryName": "Wine Accessories",
                "totalSales": 34440
            },
            {
                "categoryName": "Bitters",
                "totalSales": 39496
            },
            {
                "categoryName": "Rum",
                "totalSales": 1734
            }
        ]
    },
    "promotionEvents": [
        {
            "eventName": "Unbeatable Bargain Bash",
            "promotionalDates": {
                "startDate": {
                    "Year": 2024,
                    "Month": 6,
                    "Day": 23
                },
                "endDate": {
                    "Year": 2024,
                    "Month": 7,
                    "Day": 2
                }
            },
            "discounts": [
                {
                    "categoryName": "Whiskey",
                    "discountPercentage": 7
                },
                {
                    "categoryName": "Bitters",
                    "discountPercentage": 15
                },
                {
                    "categoryName": "Brandy",
                    "discountPercentage": 8
                },
                {
                    "categoryName": "Sports Drinks",
                    "discountPercentage": 22
                },
                {
                    "categoryName": "Vodka",
                    "discountPercentage": 19
                }
            ]
        },
        {
            "eventName": "Steal of a Deal Days",
            "promotionalDates": {
                "startDate": {
                    "Year": 2024,
                    "Month": 9,
                    "Day": 21
                },
                "endDate": {
                    "Year": 2024,
                    "Month": 9,
                    "Day": 29
                }
            },
            "discounts": [
                {
                    "categoryName": "Organic Wine",
                    "discountPercentage": 19
                },
                {
                    "categoryName": "White Wine",
                    "discountPercentage": 20
                },
                {
                    "categoryName": "Sparkling Wine",
                    "discountPercentage": 19
                },
                {
                    "categoryName": "Whiskey",
                    "discountPercentage": 17
                },
                {
                    "categoryName": "Vodka",
                    "discountPercentage": 23
                }
            ]
        }
    ]
}

예제 1: 매장 오픈 날짜에서 연도 추출

이 쿼리는 저장소가 열린 연도를 추출합니다.

db.stores.aggregate([
  { $match: { _id: "905d1939-e03a-413e-a9c4-221f74055aac" } },
  {
    $project: {
      name: 1,
      storeOpeningDate: 1,
      openingYear: { $year: { $toDate: "$storeOpeningDate" } }
    }
  }
])

이 쿼리는 다음 결과를 반환합니다.

[
  {
    "_id": "905d1939-e03a-413e-a9c4-221f74055aac",
    "name": "Trey Research | Home Office Depot - Lake Freeda",
    "storeOpeningDate": "2024-12-30T22:55:25.779Z",
    "openingYear": 2024
  }
]

예제 2: 특정 연도에 열린 매장 찾기

이 쿼리는 2021년에 열린 모든 저장소를 검색합니다.

db.stores.aggregate([
  {
    $match: {
      $expr: {
        $eq: [{ $year: { $toDate: "$storeOpeningDate" } }, 2021]
      }
    }
  },
  {
    $project: {
      name: 1,
      city: 1,
      openingYear: { $year: { $toDate: "$storeOpeningDate" } },
      storeOpeningDate: 1
    }
  }
])

이 쿼리는 다음 결과를 반환합니다.

[
  {
    "_id": "2cf3f885-9962-4b67-a172-aa9039e9ae2f",
    "city": "South Amir",
    "storeOpeningDate": "2021-10-03T00:00:00.000Z",
    "name": "First Up Consultants | Bed and Bath Center - South Amir",
    "openingYear": 2021
  }
]