如何将一列与我在 Sqlite 中选择的所有列区分开来
如何将一列与我在 Sqlite 中选择的所有列区分开来?
感谢您的帮助
How to Distinct one column from all the column that i choose in Sqlite?
Thanks for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只选择一列,这很简单:
如果您的意思是选择多列,但只有一列希望其中一列不同,您可以这样做:
显然,您需要小心这是否意味着您要选择错过一些您需要的 col2 和 col3 数据。有时最好选择更多并过滤客户端。
If you're only selecting one column, it's easy:
If you mean you're selecting multiple columns, but only one want one of them to be distinct you can do:
Obviously you need to be careful about whether this means you're going to miss some data from col2 and col3 that you need. Sometimes it's better to select more and filter client-side instead.
在查询中使用 DISTINCT 关键字:
希望这有帮助,
Phil Lello
Use the DISTINCT keyword in your query :
Hope this helps,
Phil Lello