devicesegments
というテーブルがあり、各行にはdevicesという大きな配列が含まれています。デバイスアレイのサイズのせいで、すべてdevicesegment
をリストアップしたページのクエリには含めないように頼んだことがありますが、カウントだけが含まれています。これは可能ですか?
私が前にやっていた何を : シンプルdb.devicesegments.find()
私が今やっている何をMongoDB - 内部配列を除外しますが、その数を含めます
: db.devicesegments.find({}, { devices : 0 })
私は何を達成したい:COUNT(devices) AS device_count
よう db.devicesegments.find({}, { devices : 0, devices.length : 1 })
何かを!