MySQL 的 INNER JOIN DISTINCT

发布于 2024-09-26 15:16:04 字数 850 浏览 7 评论 0原文

我有一个 mysql 问题。我有两张这样的桌子,我需要将它们连接在一起。

桌子:

id otherid2
1 | 1
2 | 1
3 | 2
4 | 2

表2:

otherid otherid2
1 | 1
2 | 1
3 | 2
4 | 2

我正在使用:

SELECT id,otherid FROM table INNER JOIN table2 ON table.otherid2=table2.otherid2

这给了我:

id otherid
1 | 1
1 | 2
2 | 1
2 | 2
3 | 3
3 | 4
4 | 3
4 | 4

如您所见,我得到了 id 的重复项,因为 table2 中存在不唯一的 otherid2。我需要的是以某种方式 INNER JOIN DISTINCT,我只希望结果如下。不重复。

这就是我想要的:

id otherid
1 | 1
2 | 1
3 | 3
4 | 3

我可以用简单的方法做到这一点吗?

I have a mysql problem. I have two tables like this that I need to join together.

table:

id otherid2
1 | 1
2 | 1
3 | 2
4 | 2

table2:

otherid otherid2
1 | 1
2 | 1
3 | 2
4 | 2

I'm using:

SELECT id,otherid FROM table INNER JOIN table2 ON table.otherid2=table2.otherid2

This gives me:

id otherid
1 | 1
1 | 2
2 | 1
2 | 2
3 | 3
3 | 4
4 | 3
4 | 4

As you can see I get duplicates of id as there is otherid2s that is not unique in table2. What I need is to INNER JOIN DISTINCT in some way, I only want the result to be as below. Not duplicates.

This is what I want:

id otherid
1 | 1
2 | 1
3 | 3
4 | 3

Can I do this in an easy way?

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

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

发布评论

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

评论(2

最偏执的依靠 2024-10-03 15:16:04

如果你想要 table2 中 id 最小的行,这应该可以做到

SELECT id, min(otherid)
FROM table 
INNER JOIN table2 
ON table.otherid2=table2.otherid2
GROUP BY id

If you want the row with the lowest id in table2, this should probably do it

SELECT id, min(otherid)
FROM table 
INNER JOIN table2 
ON table.otherid2=table2.otherid2
GROUP BY id
感情洁癖 2024-10-03 15:16:04

在您的评论中,您想要最低的,那么我建议使用一个分组依据和一个最小聚合器

SELECT id, MIN(otherid) AS otherid ... GROUP BY id

In your comment you wanted the lowest, then I'd suggest a group by and a min aggregator

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