2

我有一个表,其中一些行看起来像这样:

{
  "id": "12345"
  "created_date": Fri May 27 2016 22:06:25 GMT+00:00 ,
  "image": true

} {
  "id": "6789"
  "created_date": Mon May 30 2016 07:48:35 GMT+00:00 ,
  "video": true

}{
  "id": "12345"
  "created_date": Fri May 21 2016 22:06:25 GMT+00:00 ,
  "image": true

} {
  "id": "6789"
  "created_date": Mon May 6 2016 07:48:35 GMT+00:00 ,
  "video": true

}
etc...

"video":true 我想返回除此之外的最新(最新、最早日期)对象我想返回具有"image":true.

但是,我想在一个查询中执行此操作,因为这最终将在同一张表上完成。

理想的答案是:

[{
      "id": "12345"
      "created_date": Fri May 27 2016 22:06:25 GMT+00:00 ,
      "image": true

    }, {
      "id": "6789"
      "created_date": Mon May 30 2016 07:48:35 GMT+00:00 ,
      "video": true

    }]

有没有办法做到这一点?

4

1 回答 1

2

您可以通过编写类似的东西来组合两个查询r.expr([query1, query2]),它应该可以工作。

于 2016-06-06T20:08:49.323 回答