MongoDB常用语句

1.只统计记录总数:

let result = await CorrectionRecordModel.countDocuments(db);

2.数组遍历,循环体中可以有调用异步函数:

            for(let item of result2){
                if(item && Tool.checkNotEmptString(item.auth_id) && (item.status !== 1)){
                    await apiUtil.modifyData(EstateDetailModel, {auth_id: item.auth_id}, {
                        status: 1, 
                    });
                }
            }

3.遍历数组,循环体中不可以调用异步函数:

                space_service_labels.forEach(item =>{
                    let name = Tool.getEnumValue(14, item);
                    if(Tool.checkNotEmptString(name)){
                        space_service_labels_names.push(name);
                    }
                });

4.对数组,投影出指定对象组成新数组:

let ids = list.map(item => item.id);

5.查询出指定距离内的记录:

                    db.location = {
                        $near: {
                            $geometry: currentLocation,
                            $maxDistance: distance1
                        }
                    };

6.对查询出的结果数组,按照指定字段再排序:

// 按照每组内的记录数降序排序
                groupedArray.sort((a, b) => b.count - a.count);

7.数据查询条件中对结果进行排序(-1从倒序,1正序):

db.sort({ update_time : -1 })

8.聚合语句:

        let result = await ApiUserPushModel.aggregate([
            {
                $match: {
                    user_id:,
                    create_time: {
                        $gte: start_time,
                        $lte: end_time
                    },
                }
            },
            {
                $group: {
                    _id: '$batch_number',
                    push_count: { $sum: 1 },
                    push_title: { $first: '$push_title' },
                    commission : { $first: '$commission' },
                    notes : { $first: '$notes' },
                    create_time : { $first: '$create_time' },
                    batch_number : { $first: '$batch_number' },
                    data: { $push: '$$ROOT' },
                    
                }
            },
            {
                $project:{
                    _id:0
                }
            }
            
        ]);
  1. 查询是否存在:

             const exist = await UserModel.exists({
                 user_name: user_name
             });
    
相关推荐
远歌已逝28 分钟前
维护在线重做日志(二)
数据库·oracle
qq_433099402 小时前
Ubuntu20.04从零安装IsaacSim/IsaacLab
数据库
Dlwyz2 小时前
redis-击穿、穿透、雪崩
数据库·redis·缓存
网易独家音乐人Mike Zhou3 小时前
【卡尔曼滤波】数据预测Prediction观测器的理论推导及应用 C语言、Python实现(Kalman Filter)
c语言·python·单片机·物联网·算法·嵌入式·iot
工业甲酰苯胺4 小时前
Redis性能优化的18招
数据库·redis·性能优化
没书读了4 小时前
ssm框架-spring-spring声明式事务
java·数据库·spring
i道i5 小时前
MySQL win安装 和 pymysql使用示例
数据库·mysql
小怪兽ysl5 小时前
【PostgreSQL使用pg_filedump工具解析数据文件以恢复数据】
数据库·postgresql
wqq_9922502776 小时前
springboot基于微信小程序的食堂预约点餐系统
数据库·微信小程序·小程序
爱上口袋的天空6 小时前
09 - Clickhouse的SQL操作
数据库·sql·clickhouse