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.
我想对过滤结果进行分组,而不是全部,只过滤。像这样的东西:
r.table(TABLE_NAME).filter(...).group("supplier").max("ts").run(...)
你写的查询
r.table("orders").filter({company: "bar"}).group("supplier").max("ts").run(...)
检索公司为“bar”的所有文档,然后将它们按供应商分组,然后对于每个组,它计算字段“ts”的最大值。所以你想要的就是你写的(除非我误解了你的问题)。