C100DEV 試験問題 71

football_palyers コレクションに次のインデックスがあるとします: { "last_name": 1, "details.country": 1, "details.club": 1, "age": 1 } フィルタリングと並べ替えの両方で特定のインデックスを正常に使用できるクエリを特定します。
  • C100DEV 試験問題 72

    データベースには、次のドキュメント構造を持つ sales というコレクションがあります: { _id: ObjectId("5bd761dcae323e45a93ccfe8"), saleDate: ISODate("2015-03-23T21:06:49.506Z"), items: [ { name: 'printer paper', tags: [ 'office', 'stationary' ], price: Decimal128("40.01"), quantity: 2 }, { name: 'notepad', tags: [ 'office', 'writing', 'school' ], price: Decimal128("35.29"), quantity: 2 }, { name: 'pens', tags: [ 'writing', 'school', 'stationary' ], price: Decimal128("56.12"), quantity: 5 } ], storeLocation: 'Denver', customer: { gender: 'M', age: 42, email: '[email protected]', satisfaction: 4 }, purchaseMethod: 'Online' } { _id: ObjectId("5bd761dcae323e45a93ccfe9"), saleDate: ISODate("2015-08-25T10:01:02.918Z"), items: [ { name: 'binder', tags: [ 'school', 'general', 'organization' ], price: Decimal128("28.31"), quantity: 9 }, { name: 'backpack', tags: [ 'school', 'travel', 'kids' ], price: Decimal128("83.28"), quantity: 2 } ]、storeLocation: 'Seattle'、customer: { gender: 'M'、age: 50、email: '[email protected]'、satisfit: 5 }、couponUsed: false、purchaseMethod: 'Phone' } このコレクションから、タグ フィールド (配列) の最初のタグが少なくとも 1 つの項目で 'office' であるすべてのドキュメントを抽出するにはどうすればよいでしょうか。
  • C100DEV 試験問題 73

    集約フレームワークの自動バケット化機能に関する正しい記述をすべて選択します。($bucketAuto ステージ)
  • C100DEV 試験問題 74

    データベース用語における IOPS は何の略ですか?
  • C100DEV 試験問題 75

    次のインデックスがあります: { name: 1, found_year: 1 } { tag_list: 1, is_active: 1 } また、次のドキュメントがあります: { _id: ObjectId("52cdef7c4bab8bd675297daa"), name: "Sparter", found_year: 2007, tag_list: ["gaming", "game", "wow"], is_active: true }, { _id: ObjectId("52cdef7c4bab8bd675297da3"), name: "Yahoo!", found_year: 1994, tag_list: ["search", "webmail"], is_active: true } true ステートメントを選択します。