我当前正在查询数据库,以使用长时间戳仅显示将来带有日期的项目。请参见下面的代码,该代码非常有效:
Long time1 = System.currentTimeMillis();
Long time = (time1/1000);
//querying for events which are happening in the future
Query dateQuery = eventRef.orderByChild("timestamp").startAt(time);
现在,我想通过两个值查询数据库:日期和名称。 我已阅读并根据以下答案:Query based on multiple where clauses in Firebase,可以通过首先在服务器上进行过滤,然后在客户端上查询此过滤后的数据来做到这一点。
我想知道是否可以在Firebase服务器上执行上述查询,如果可以,它会是什么样?