Premier League Standings 2021-22 (Oct 13–2021)
Latest EPL Soccer Table of 20 Teams
@kaggle.pratmo_premier_league_standings_202122_oct_13_2021
Latest EPL Soccer Table of 20 Teams
@kaggle.pratmo_premier_league_standings_202122_oct_13_2021
Latest Premier League team standings as of October 13th 2021.
Team: The team names
Played: How many matches played so far
Won: How many games won
Drawn: How many games drawn
Lost: How many games lost
For: How many goals scored
Against: How many goals conceded
Goal Difference: The goal difference is calculated as For minus Against. In case there is tie in total points between two teams, the team with greater goal difference stands above.
Points: Total points each team has
Form Last 5 Games: Form of last five games
Link - https://www.bbc.com/sport/football/tables
robots.txt permissions can be found in https://www.bbc.co.uk/robots.txt
Banner Image: Photo by Tim Bechervaise on Unsplash
CREATE TABLE prem_table (
"team" VARCHAR,
"played" BIGINT,
"won" BIGINT,
"drawn" BIGINT,
"lost" BIGINT,
"for" BIGINT,
"against" BIGINT,
"goal_difference" BIGINT,
"points" BIGINT,
"form_last_5_games" VARCHAR
);
Anyone who has the link will be able to view this.