我试图显示两个字段的不同值。不确定是否可以从Mongodb
中的两个字段返回值。
我试过这个:
db.sInsert.distinct("post_id","post_message").
但是不可能这样做。
答案 0 :(得分:0)
您可以在聚合中使用$ group
db.sInsert.aggregate( [ {"$group": { "_id": { post_id: "$post_id", post_message: "$post_message" } } } ]);