我设法过滤掉了相同但不同的TID的名字,然后我如何选择这些名字而不重复?
输出: 好的,每个请求的欲望输出应该是这样的。
firstname | lastname | year | tid
Alex Hannum 1956 MI1
Alex Hannum 1956 ROC
Alex Hannum 1956 STL
Alex Hannum 1956 SYR
Alvin Attles 1969 PH1
Alvin Attles 1969 SFW
Alvin Attles 1970 PH1
Alvin Attles 1970 SFW
Andrew Levane 1952 MI1
Andrew Levane 1952 ROC
Andrew Levane 1952 SYR
....等等。
答案 0 :(得分:0)
我认为你正在寻找一年内选择退出两次或更多次的球员,
如果是这样,您可以对屏幕截图中显示的数据使用以下查询,假设它还有一列可以唯一识别玩家。
选择year
,tid
,player
,player_id
FROM player_id
其中player
位于{{distinct firstname
中{ {1}}分组lastname
,year
,{{1}}有计数(*)> 1)