作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含 2 列的表格,其中填充了数值:
Column1 Column2
1 2
6 9
2 1
9 6
1 3
元组(x,y)相当于我的问题领域中的元组(y,x),我需要执行一个选择,我只得到其中之一。意思是,我想要一个返回的选择查询:
Column1 Column2
1 2
6 9
1 3
在 mySQL 中实现此目的的最佳方法是什么?
最佳答案
试试这个:
select t.*
from table t
where column1 < column2 or
not exists (select 1
from table t2
where t2.column1 = t.column2 and t1.column2 = t.column1
);
如果你只想要成对的,即使它们不在原始表中,那么你可以这样做:
select least(column1, column2), greatest(column1, column2)
from table t
group by least(column1, column2), greatest(column1, column2)
关于mysql - 如何在mySQL中选择等效但倒排的元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27262864/
我是一名优秀的程序员,十分优秀!