Android ManagedQuery 中是否可能有类似 GROUP BY 子句的内容?

发布于 2024-10-28 03:34:12 字数 186 浏览 1 评论 0原文

我计划从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二货你真萌 2024-11-04 03:34:12

您可以在 selection 语句中使用 hack,例如 "1) GROUP BY (" + Phone.DISPLAY_NAME;

You can use a hack in the selection statement like "1) GROUP BY (" + Phone.DISPLAY_NAME;.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文