VNL 2024 - Men's Volleyball Stats
Men's statistics for the 2024 Volleyball Nations League
@kaggle.jonathanpmoyer_vnl_2024_mens_stats
Men's statistics for the 2024 Volleyball Nations League
@kaggle.jonathanpmoyer_vnl_2024_mens_stats
I created this dataset as a first project with several goals, including becoming more familiar with SQL, populating a dataset, and just as an overall learning experience.
I used the VNL 2024 data because I like volleyball and thought this would be fun to work with, and also give me some insight into the highest level of the sport.
You can read my write-up on this dataset here.
CREATE TABLE vnl2024men_blockers (
"name" VARCHAR,
"team" VARCHAR,
"pt_block" BIGINT,
"err_block" BIGINT,
"rebounds" BIGINT,
"mavg_block" DOUBLE,
"p_block" DOUBLE,
"tot_block" BIGINT
);CREATE TABLE vnl2024men_diggers (
"name" VARCHAR,
"team" VARCHAR,
"sf_dig" BIGINT,
"err_dig" BIGINT,
"receptions" BIGINT,
"mavg_dig" DOUBLE,
"p_dig" DOUBLE,
"t_dig" BIGINT
);CREATE TABLE vnl2024men_players (
"team" VARCHAR,
"name" VARCHAR,
"position" VARCHAR,
"height" BIGINT,
"birth_year" BIGINT
);CREATE TABLE vnl2024men_receivers (
"name" VARCHAR,
"team" VARCHAR,
"sf_receive" BIGINT,
"err_receive" BIGINT,
"att_receive" BIGINT,
"mavg_receive" DOUBLE,
"p_receive" DOUBLE,
"tot_receive" BIGINT
);CREATE TABLE vnl2024men_scorers (
"name" VARCHAR,
"team" VARCHAR,
"tot_pts" DOUBLE,
"tot_atk" DOUBLE,
"tot_block" DOUBLE,
"tot_serve" DOUBLE
);CREATE TABLE vnl2024men_servers (
"name" VARCHAR,
"team" VARCHAR,
"pt_serve" BIGINT,
"err_serve" BIGINT,
"att_serve" BIGINT,
"mavg_serve" DOUBLE,
"p_serve" DOUBLE,
"tot_serve" BIGINT
);CREATE TABLE vnl2024men_setters (
"name" VARCHAR,
"team" VARCHAR,
"sf_set" BIGINT,
"err_set" BIGINT,
"att_set" BIGINT,
"mavg_set" DOUBLE,
"p_set" DOUBLE,
"tot_set" BIGINT
);Anyone who has the link will be able to view this.