ESports Earnings
Money earned by Players & Teams from eSports Tournaments
@kaggle.jackdaoud_esports_earnings_for_players_teams_by_game
Money earned by Players & Teams from eSports Tournaments
@kaggle.jackdaoud_esports_earnings_for_players_teams_by_game
CREATE TABLE country_and_continent_codes_list (
"continent_name" VARCHAR,
"continent_code" VARCHAR,
"country_name" VARCHAR,
"two_letter_country_code" VARCHAR,
"three_letter_country_code" VARCHAR,
"country_number" DOUBLE
);
CREATE TABLE highest_earning_players (
"playerid" BIGINT,
"namefirst" VARCHAR,
"namelast" VARCHAR,
"currenthandle" VARCHAR,
"countrycode" VARCHAR,
"totalusdprize" DOUBLE,
"game" VARCHAR,
"genre" VARCHAR
);
CREATE TABLE highest_earning_teams (
"teamid" BIGINT,
"teamname" VARCHAR,
"totalusdprize" DOUBLE,
"totaltournaments" BIGINT,
"game" VARCHAR,
"genre" VARCHAR
);
Anyone who has the link will be able to view this.