gpt4 book ai didi

sql - 在 SQL 查询中为 2 列选择不同

转载 作者:行者123 更新时间:2023-12-02 07:35:15 27 4
gpt4 key购买 nike

如果我有一张 table ,例如

1 bob
1 ray
1 bob
1 ray
2 joe
2 joe

我想根据两列选择不同的,这样我就可以得到

1 bob
1 ray
2 joe

我该如何表达我的查询?是连接列并将它们包装在不同的函数运算符周围的唯一方法吗?

最佳答案

select distinct id, name from [table]

select id, name from [table] group by id, name

关于sql - 在 SQL 查询中为 2 列选择不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3679931/

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