Android ManagedQuery 中是否可能有类似 GROUP BY 子句的内容?
我计划从 2.0 开始支持 Android 设备,因此我使用 ManagedQuery 来查询联系人。我得到了具有相同姓名和电话号码的人的多个结果,因此我希望对这些结果进行分组。 (也就是说,我希望每个姓名和电话号码组合都是唯一的)
是否可以将这些结果分组到托管查询中(类似于 SQL 中的 GROUP BY 子句)
Mel
I'm planning to support Android devices from 2.0 onwards so I am using a managedQuery to query contacts. I get multiple results for people with the same name and phone number so I would like those results to be grouped. (That is I want each name and phone number combination to be unique)
IS it possicle to group these results in a managed query (similar to the GROUP BY clause in SQL)
Mel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
selection
语句中使用 hack,例如"1) GROUP BY (" + Phone.DISPLAY_NAME;
。You can use a hack in the
selection
statement like"1) GROUP BY (" + Phone.DISPLAY_NAME;
.