Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 MongoDB 集合中获取一些文档,但是有很多非常相似的条目。假设有 4 个文档具有{title: "Foo", author: "John"},但我只想返回结果集中的一个。例如,只要有一个文档具有一组给定的重复值,就只有一条记录。你是怎样做的?有点像一个SQL SELECT DISTINCT(author), title
{title: "Foo", author: "John"}
SQL SELECT DISTINCT(author), title
更新
我应该澄清一下:我有兴趣显示一个包含 100 个标题的列表,但只显示标题的 1 个实例,无论有多少作者拥有该标题的内容。
mongo 中有一个独特的命令可用。