Skip to content

Everton players are missing for last season #301

Answered by dcaribou
tojusumo asked this question in Q&A
Discussion options

You must be logged in to vote

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.

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
player_id first_name last_name
68390 Seamus Coleman
118534 Michael Keane
126665 Idrissa Gueye
127187 Abdoulaye Doucouré
130164 Jordan Pickford
173504 James Tarkowski
207929 Dele Alli
221025 André Gomes
306024 Dominic Calvert-Lewin
329813 João Virgínia
343475 Ben Godfrey
355861 Arnaut Danjuma
404842 Vitaliy Mykolenko
4…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@tojusumo
Comment options

@tojusumo
Comment options

Answer selected by dcaribou
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants
Converted from issue

This discussion was converted from issue #300 on May 11, 2024 10:10.