当前位置:Gxlcms > 数据库问题 > MongoDB 使用group by 并显示其他列max值

MongoDB 使用group by 并显示其他列max值

时间:2021-07-01 10:21:17 帮助过:6人阅读

以下脚本实现功能为把word_info表通过word字段去重,并写到到word_info_new表里

db.word_info.aggregate([
{$group:
        { _id:"$word" ,
         meaning:{$max:"$meaning"}, 
         usphonetic:{$max:"$usphonetic"} 
        }
 }]).forEach(
            function(dc){
                    db.word_info_new.insert(
                                    {"word":dc._id,
                                        "meaning":dc.meaning,
                                        "usphonetic":dc.usphonetic
                                    }
                                )}
    );

MongoDB 使用group by 并显示其他列max值

标签:gate   hone   max   mon   _id   phone   insert   mongo   通过   

人气教程排行