如何将一列与我在 Sqlite 中选择的所有列区分开来

发布于 2024-10-31 04:59:03 字数 50 浏览 1 评论 0原文

如何将一列与我在 Sqlite 中选择的所有列区分开来?

感谢您的帮助

How to Distinct one column from all the column that i choose in Sqlite?

Thanks for helping

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

风渺 2024-11-07 04:59:03

如果您只选择一列,这很简单:

SELECT DISTINCT col1 FROM table

如果您的意思是选择多列,但只有一列希望其中一列不同,您可以这样做:

SELECT col1 , col2 , col3 FROM table GROUP BY col1

显然,您需要小心这是否意味着您要选择错过一些您需要的 col2 和 col3 数据。有时最好选择更多并过滤客户端。

If you're only selecting one column, it's easy:

SELECT DISTINCT col1 FROM table

If you mean you're selecting multiple columns, but only one want one of them to be distinct you can do:

SELECT col1 , col2 , col3 FROM table GROUP BY col1

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.

因为看清所以看轻 2024-11-07 04:59:03

在查询中使用 DISTINCT 关键字:

SELECT DISTINCT column FROM table

希望这有帮助,

Phil Lello

Use the DISTINCT keyword in your query :

SELECT DISTINCT column FROM table

Hope this helps,

Phil Lello

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