-
hi, i'm doing a python code who analyse data from a specific league, and i have a problem with the file players.csv. We don't have the players that are playing for Everton this season, is it normal ? |
Beta Was this translation helpful? Give feedback.
Answered by
dcaribou
May 11, 2024
Replies: 1 comment 2 replies
-
This is the list of players playing for Everton this season according to the dataset and the query I used to extract them. select
player_id,
first_name,
last_name
from dev.players
left join dev.clubs on players.current_club_id = clubs.club_id
where clubs.name = 'Everton Football Club'
and players.last_season = 2023
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
dcaribou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the list of players playing for Everton this season according to the dataset and the query I used to extract them.
It seems accurate to me.