Hockey Teams
A Comprehensive Overview of Hockey Team Records and Statistics
@kaggle.sirishasingla1906_hockey_teams
A Comprehensive Overview of Hockey Team Records and Statistics
@kaggle.sirishasingla1906_hockey_teams
"Discover cool facts about hockey teams in this awesome dataset! It has info on different teams over the years, showing wins, losses, and more. See how well each team did and learn interesting things about their performance. Check out win percentages, goals scored, and goals against – it's like a treasure trove of hockey fun! Whether you love sports or just like interesting facts, this dataset is a great way to explore and understand how hockey teams have been doing. Have fun exploring the world of hockey stats!"
CREATE TABLE hockeyteams (
"team_name" VARCHAR,
"year" BIGINT,
"wins" BIGINT,
"losses" BIGINT,
"ot_losses" DOUBLE,
"win" DOUBLE -- Win %,
"goals_for_gf" BIGINT -- Goals For (GF),
"goals_against_ga" BIGINT -- Goals Against (GA),
"n" BIGINT -- + / -
);
Anyone who has the link will be able to view this.