mongodb 随笔
2021/8/11 19:36:26
本文主要是介绍mongodb 随笔,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- 报错:db.collection.find({}, { "record" : 0 , "index.teacher_base_name" : 1 , "_id" : 0})
queryObject.fields().exclude("_id"); queryObject.fields().exclude("record"); queryObject.fields().include("index." + indexName);
- mongodb内容过大
/usr/bin/mongod --config /etc/mongod.conf --fork --wiredTigerCacheSizeGB 1
- Aggregation.group
db.teacher_record.aggregate([{$group: { _id: "$cardId", approvalStatus: { $first: "$approvalStatus" } }}]) { _id: {cardId:"$cardId", tenantId:"$tenantId"}, approvalStatus: { $push: "$approvalStatus" } } Aggregation.group("cardId", "tenantId") .first("operationUser.userName").as("operationUser.userName") .first("operationUser.unitName").as("operationUser.unitName") .first("approvalTime").as("approvalTime") .sum(ConditionalOperators.when(Criteria.where("approvalStatus").is(0)).then(1).otherwise(0)).as("pendingNum") .push("recordId").as("recordIds")
这篇关于mongodb 随笔的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26go.mod的文件内容是什么?-icode9专业技术文章分享
- 2024-11-23MongoDB身份认证机制揭秘!
- 2024-11-20MongoDB教程:从入门到实践详解
- 2024-11-17执行 Google Ads API 查询后返回的是空数组什么原因?-icode9专业技术文章分享
- 2024-11-17google广告数据不同经理账户下的凭证可以获取对方的api数据吗?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么实现同时向多个邮箱发送邮件?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么设置header 和 标签tag 呢?-icode9专业技术文章分享
- 2024-11-12Cargo deny安装指路
- 2024-11-02MongoDB项目实战:从入门到初级应用
- 2024-11-01随时随地一键转录,Google Cloud 新模型 Chirp 2 让语音识别更上一层楼