gpt4 book ai didi

sql - 从表中选择不同 - 两列不应该有重复

转载 作者:行者123 更新时间:2023-12-01 02:21:42 25 4
gpt4 key购买 nike

例如,如何针对包含这些记录的表 A 进行选择。

|Column1|Column2|
| A |F |
| A | G |
| B |G |
| B |H |
| C |H |
| D |H |
| E |I |

我的预期结果是:
|Column1 |Column2|
| A | F |
| B | G |
| C | H |
| E | I |

所有的列都应该有一个唯一的值。

我可以为此使用什么查询语句?

谢谢

最佳答案

请尝试:

select 
MIN(Column1) Column1,
Column2
from(
select
Column1,
MIN(Column2) Column2
from YourTable
group by Column1
)x group by Column2
order by 1

SQL Fiddle Demo

关于sql - 从表中选择不同 - 两列不应该有重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19970896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com