我正在使用azure移动服务作为我正在开发的android应用程序的存储平台。如何从一个月或更短的旧表中选择数据?这是我要将功能添加到的查询:
final MobileServiceList<Crime> assaultNum = mToDoTable.where().field("county").eq(countyString).execute().get();
最佳答案
此查询选择县列等于Kildare South且日期列中的月份等于march(03)的行。所以应该是:
final MobileServiceList<Crime> assaultNum = mToDoTable.where().field("county").eq("Kildare South")
.and().month("date").eq(03).execute().get();
关于java - Azure移动存储,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36135159/