Canadian Hockey Player Birth Months
Are Canadian NHL players more likely to be born early in the year?
@kaggle.joebeachcapital_canadian_hockey_player_birth_months
Are Canadian NHL players more likely to be born early in the year?
@kaggle.joebeachcapital_canadian_hockey_player_birth_months
CREATE TABLE canada_births_1991_2022 (
"year" BIGINT,
"month" BIGINT,
"births" BIGINT
);
CREATE TABLE nhl_player_births (
"player_id" BIGINT,
"first_name" VARCHAR,
"last_name" VARCHAR,
"birth_date" TIMESTAMP,
"birth_city" VARCHAR,
"birth_country" VARCHAR,
"birth_state_province" VARCHAR,
"birth_year" BIGINT,
"birth_month" BIGINT
);
CREATE TABLE nhl_rosters (
"team_code" VARCHAR,
"season" BIGINT,
"position_type" VARCHAR,
"player_id" BIGINT,
"headshot" VARCHAR,
"first_name" VARCHAR,
"last_name" VARCHAR,
"sweater_number" DOUBLE,
"position_code" VARCHAR,
"shoots_catches" VARCHAR,
"height_in_inches" DOUBLE,
"weight_in_pounds" DOUBLE,
"height_in_centimeters" DOUBLE,
"weight_in_kilograms" DOUBLE,
"birth_date" TIMESTAMP,
"birth_city" VARCHAR,
"birth_country" VARCHAR,
"birth_state_province" VARCHAR
);
CREATE TABLE nhl_teams (
"team_code" VARCHAR,
"full_name" VARCHAR
);
Anyone who has the link will be able to view this.