2

在 Rethinkdb 中分组后如何排序,如在 sql 中:

select count(id) as cid, ... from x 
group by y
order by cid desc
4

1 回答 1

4

如果我正确理解了您的问题,那么您要查找的查询是(在 JavaScript 中)

 r.table("x").group("y").count().ungroup().orderBy("reduction")

在 Python/Ruby 中,它将是

 r.table("x").group("y").count().ungroup().order_by("reduction")
于 2014-04-21T05:44:21.470 回答