gpt4 book ai didi

mysql - SQL : select distinct of one column while ignoring other columns

转载 作者:可可西里 更新时间:2023-11-01 06:35:33 25 4
gpt4 key购买 nike

所以我有一个这样的表:

---------
id, keyid
---------
1, 3
1, 5
1, 6
2, 1
2, 1
2, 3
4, 1

I want the output of the query to be
1,3
2,1
4,1

如果我使用 select distinct(id,keyid) from table 它会在 id,keyid 对上应用 distinct 而不仅仅是 id。

最佳答案

select id, min(keyid) from tbl group by id

关于mysql - SQL : select distinct of one column while ignoring other columns,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8044281/

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