用于比较行的 SQL 查询

发布于 2024-11-02 19:21:01 字数 195 浏览 0 评论 0原文

假设我们有一张表:

id1  id2
1    2
2    1
3    4
4    3

预期输出是

id1  id2
1    2 
3    4

第 1,2 行和第 2,1 行相同,并且只需要输出一个。 这个的 SQL 查询是什么?

Let's suppose we have a table:

id1  id2
1    2
2    1
3    4
4    3

The expected output is

id1  id2
1    2 
3    4

Rows 1,2 and 2,1 are same, and only one needs to be outputted.
What's the SQL query for this.

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

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

发布评论

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

评论(4

变身佩奇 2024-11-09 19:21:01

假设您的RDBMS支持LEASTGREATEST(Oracle支持):

SELECT  DISTINCT LEAST(id1, id2), GREATEST(id1, id2)
FROM    mytable

跨平台版本:

SELECT  DISTINCT
        CASE WHEN id1 < id2 THEN id1 ELSE id2 END,
        CASE WHEN id1 > id2 THEN id1 ELSE id2 END
FROM    mytable

Assuming your RDBMS supports LEAST and GREATEST (Oracle does):

SELECT  DISTINCT LEAST(id1, id2), GREATEST(id1, id2)
FROM    mytable

Cross-platform version:

SELECT  DISTINCT
        CASE WHEN id1 < id2 THEN id1 ELSE id2 END,
        CASE WHEN id1 > id2 THEN id1 ELSE id2 END
FROM    mytable
苦妄 2024-11-09 19:21:01
Select ...
From MyTable As T
Where Exists    (
                Select 1
                From MyTable As T2
                Where T2.id1 = T.id2
                    And T2.id2 = T.id1
                )
    And T.id1 < T.id2     

使用 Union 的另一种解决方案

Select T.id1, T.id2
From MyTable As T
Where T.id1 <= T.id2
Union 
Select T.id2, T.id1
From MyTable As T
Where T.id1 > T.id2
Select ...
From MyTable As T
Where Exists    (
                Select 1
                From MyTable As T2
                Where T2.id1 = T.id2
                    And T2.id2 = T.id1
                )
    And T.id1 < T.id2     

Another solution using Union

Select T.id1, T.id2
From MyTable As T
Where T.id1 <= T.id2
Union 
Select T.id2, T.id1
From MyTable As T
Where T.id1 > T.id2
捎一片雪花 2024-11-09 19:21:01

我对你想要做的事情的解释是:返回行是 id1 匹配 id2 并且 id2 匹配 id1,但仅当 id1 也小于或等于 id2 时返回该集合中的行。

从中选择x.id1、x.id2
我的表 x、我的表 y
其中 x.id1 = y.id2 且 y.id1 = x.id2 且 x.id1 <= y.id1

My interpretation of what you're trying to do is: return rows were id1 matches id2 and id2 matches id1, but only return rows from that set when id1 is also less than or equal to id2.

select x.id1, x.id2 from
myTable x, myTable y
where x.id1 = y.id2 and y.id1 = x.id2 and x.id1 <= y.id1

看透却不说透 2024-11-09 19:21:01

我最近也必须解决完全相同的问题。请参阅消除重复项

select id1, id2
from t
where not exists (
  select 1
  from t
  where id1 = t.id2
  and id2 = t.id1
  and rowid > t.rowid
);

Exact same question I also had to solve recently. See Eliminating duplicates.

select id1, id2
from t
where not exists (
  select 1
  from t
  where id1 = t.id2
  and id2 = t.id1
  and rowid > t.rowid
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文