我有一个表,其中一些行看起来像这样:
{
"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
}]
有没有办法做到这一点?