如何在Rethinkdb中进行分组后的顺序,如sql:
select count(id) as cid, ... from x
group by y
order by cid desc
答案 0 :(得分:4)
如果我正确理解了您的问题,那么您正在寻找的查询是(在JavaScript中)
r.table("x").group("y").count().ungroup().orderBy("reduction")
在Python / Ruby中,它将是
r.table("x").group("y").count().ungroup().order_by("reduction")