假设我们有三张桌子 Baseball_players, Bats, Plays_with_bat
棒球运动员
player_id | name
----------+-------
1. 01 | Jackson
2. 02 | Smith
3. 03 | Washington
3. 04 | Stein
和
Plays_with_bat
player_id | Bat_id
----------+-------
1. 01 | 01
2. 01 | 02
3. 02 | 01
4. 03 | 01
5. 04 | 01
6. 04 | 02
和
蝙蝠
Bat_id | Manufacturer
-------+-------
1. 01 | Easton
2. 02 | Rawlings
我想知道的是如何返回所有使用Bats
过一次的玩家。Bat_id
是表中的外键,是Plays_with_bat
表中的外键。player_id
Plays_with_bat
所以我想要的输出就像
player_id
----------
01
04
只有已经使用过所有球棒的球员