query
stringlengths
24
325
positive
stringlengths
1
580
negative_1
stringlengths
6
580
negative_2
stringlengths
1
576
negative_3
stringlengths
1
576
negative_4
stringlengths
1
580
negative_5
stringlengths
1
580
negative_6
stringlengths
1
580
negative_7
stringlengths
5
576
negative_8
stringlengths
1
576
negative_9
stringlengths
1
580
negative_10
stringlengths
1
580
For he who had the highest plus / minus on the court in the 1981 season, what's his full name?
highest Plus/minus refers to MAX(+/-); full name refers to firstName, lastName; 1981 season refers to year = '1981'
date of birth refers to birthDay + birthMon + birthYear
end up with a tie or an overtime loss refers to T/OL
goalies refers to pos = 'G'; deceased goalies refers to deathYear IS NOT NULL
winning rate refers to DIVIDE (w, SUM(w, l)); Vancouver Canucks is name of team where tmID = 'VAN' Winning rate refers to DIVIDE(wins in year = '2005/2006'(ADD(wins+loses); improvement refers to SUBTRACT(DIVIDE(wins in year = '2005'(ADD(wins+loses), DIVIDE(wins in year = '2006'(ADD(wins+loses))
year BETWEEN 1950 and 1980; average = DIVIDE(COUNT(hofID)), 30)
weight of over 195 refers to weight>195
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
first season in NHL in before 1950 refers to firstNHL<1950; goalies who are still alive refers to deathYear IS NOT NULL
21st century refers to year >2000; Power play goals refers to PPG
passed away means deathYear is not NULL;
For the player who scored 7 shorthanded goals in 1989, what's his dominant hand?
1989 refers to the year of scoring; "dominant hand" and "shooting hand" are synonyms which refers to shootCatch
the biggest power play percentage = max(divide(PPG, PPC))
first year they were in NHL refers to firstNHL; first year in WHA refers to firstWHA; play in both refers to firstNHL IS NOT NULL AND firstWHA IS NOT NULL
year BETWEEN 1950 and 1980; average = DIVIDE(COUNT(hofID)), 30)
team refers to name; year = 2006
hall of famers refers to hofID; both played and coached means playerID is not NULL and coachID is not NULL;
co-coached refers to notes = 'co-coach'; birth place refers to 'birthCountry-birthState-birthCity'
which team played the most games against refers to oppID where MAX(SUM(G); Buffalo Sabres is the name of team;
same total number of postseason wins and postseason loses refers to PostW = PostL
nick name refers to nameNick; tallest player refers to MAX(height); had left NHL refers to lastNHL
not in the Hall of Fame refers to hofID IS NULL
List the first Name and last name of all players not from USA and who are born in 1990 .
Not from USA refers to birthCountry! = 'USA'; born in 1990 refers to birthYear = 1990
least number of penalty kill chances refers to min(PKC); power play percentage refers to (PP%) = divide(PPG, PPC); team playing refers to tmID; victorious team refers to tmIDWinner; team victorious refers to tmID = tmIDWinner and vice versa
penalty minutes refer to PIM = 24; wins refer to W;
weight of over 195 refers to weight>195
the number of years refers to count(year)
how many teams refer to COUNT(tmID); over 20 points refer to Pts>20; year = 1922;
end up with a tie or an overtime loss refers to T/OL
5 heaviest players refer to MAX(weight) limit to 5 playerID;
team refers to name; year = 2006
winning rate refers to DIVIDE (w, SUM(w, l)); Vancouver Canucks is name of team where tmID = 'VAN' Winning rate refers to DIVIDE(wins in year = '2005/2006'(ADD(wins+loses); improvement refers to SUBTRACT(DIVIDE(wins in year = '2005'(ADD(wins+loses), DIVIDE(wins in year = '2006'(ADD(wins+loses))
penalty minutes refer to PIM = 49;
How many players were included in the Hall of Fame on average between 1950 and 1980?
year BETWEEN 1950 and 1980; average = DIVIDE(COUNT(hofID)), 30)
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
the number of wins refers to W
most number of goals refers to max(G); how old refers to age = subtract(year(max(G)), birthYear)
first-ever Second Team All-Star award refers to min(year(award = 'Second Team All-Star')); How many games before receiving such award = sum(g(coachID(min(year(award = 'Second Team All-Star')))): g(min(year)))
least number of penalty kill chances refers to min(PKC); power play percentage refers to (PP%) = divide(PPG, PPC); team playing refers to tmID; victorious team refers to tmIDWinner; team victorious refers to tmID = tmIDWinner and vice versa
Post season of 2011 refers to year = ’2011’ defensive success rate refers to (SUBTRACT(1 (DIVIDE(PostGA/PostSA)), *100%)
after retirement means playerID Iis not NULL and coachID is not NULL;
temporary coached refers to notes = 'interim'; number of loss refers to L (to add)
the most play minutes refer to MAX(Min); goalie refers to pos = 'G'; New York Islanders is the nameof team;
saved the most goal attempts refers to max(subtract(SA, GA)); team id refers to tmID
How many years were there after Don Waddell retired and became a coach in NHL?
after retired and became a coach refers to max(subtract(year, lastNHL))
Coach of the team refers to firstName+lastName; 2003 refers to the year
temporary coached refers to notes = 'interim'; number of loss refers to L (to add)
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
position refers to pos; date of birth refers to birthDay + birthMon + birthYear
10 empty net goals refer to ENG = 10; tallest refers to MAX(height);
Montreal Canadiens is the name of team.
country refers to birthCountry
nick name refers to nameNick; team refers to tmID; season refers to year
more wins than loses refers to W>L; year = 1917;
exhibition game refers to note = 'EX'; team of losing team refers to tmIDLoser
Name the deceased players whose death country is different from his birth country order by birth year.
death country is different from his birth country refers to birthCountry! = deathCountry
after the year 1980 refers to year>1980
the first one refers to MIN(year);
end up with a tie or an overtime loss refers to T/OL
players who became coaches refers to playerID IS NOT NULL AND coachID IS NOT NULL
5 heaviest players refer to MAX(weight) limit to 5 playerID;
penalty minutes refer to PIM = 49;
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
least number of penalty kill chances refers to min(PKC); power play percentage refers to (PP%) = divide(PPG, PPC); team playing refers to tmID; victorious team refers to tmIDWinner; team victorious refers to tmID = tmIDWinner and vice versa
the number of goals refers to G
born in Toronto refers to birthCountry = 'Toronto'
Among the players who became coaches, how many of them have gotten in the Hall of Fame?
players who became coaches refers to playerID IS NOT NULL AND coachID IS NOT NULL
after retirement means playerID Iis not NULL and coachID is not NULL;
NHL refers to lgID = 'NHL'; least number of times being on the ice when a goal is scored for the team versus against the team refers to min(+/-); duration the player's been playing = subtract(year(playerID(min(+/-))), firstNHL(playerID(min(+/-)))); full name = nameGiven + lastName
end up with a tie or an overtime loss refers to T/OL
goaltender' and 'goalie' are synonyms; fewest goals while on the ice refers to min(GA); How old = subtract(lastNHL(playerID(min(GA))), birthYear(playerID(min(GA)))))
21st century refers to year >2000; Power play goals refers to PPG
from Canada refers to birthCountry = 'Canada'; NHL league refers to lgID = 'NHL'
penalty minutes refers to PIM; year of scoring BETWEEN 2003 AND 2005; most number of games played refers to max(GP)
first year they were in NHL refers to firstNHL; first year in WHA refers to firstWHA; play in both refers to firstNHL IS NOT NULL AND firstWHA IS NOT NULL
the highest winning rate refer to divide(W, sum(W, L))
left winger refers to pos = 'L'; weight>200
What's the weight of the player who had the most Power Play Goals in the 21st century?
21st century refers to year >2000; Power play goals refers to PPG
worked a temporary term refers to notes = 'interim'
Weight of above 190 refers to weight >190; 1978 season refers to the year played
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
average height of 75 refers to AVG(height) = 75;
born in July and August refers to birthMon IN('7','8')
penalty refers to BenchMinor; Ties refer to T
the most play minutes refer to MAX(Min); goalie refers to pos = 'G'; New York Islanders is the nameof team;
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
nick name refers to nameNick; tallest player refers to MAX(height); had left NHL refers to lastNHL
Please list the awards won by coaches who were born in 1952.
born in 1977 refers to birthYear = '1977'
shutouts refers to SHO; number of goals refers to GA; 5% shutouts among the number of goals refers to DIVIDE(SHO,GA)*100 = 5.00
10 empty net goals refer to ENG = 10; tallest refers to MAX(height);
nick name refers to nameNick; tallest player refers to MAX(height); had left NHL refers to lastNHL
21st century refers to year >2000; Power play goals refers to PPG
end up with a tie or an overtime loss refers to T/OL
winning percentage refers to DIVIDE(w,g)*100; team DET refers to tmID = 'DET'
died in Arlington refers to deathCity = 'Arlington'
the biggest power play percentage = max(divide(PPG, PPC))
most number of goals refers to max(G); how old refers to age = subtract(year(max(G)), birthYear)
Coach of the team refers to firstName+lastName; 2003 refers to the year
How many hall of famers both played and coached in the league?
hall of famers refers to hofID; both played and coached means playerID is not NULL and coachID is not NULL;
which league refers to lgID
total number of the games refers to GP
average height refers to AVG(height); born in 1990 refers to birthYear = 1990
first season in NHL in before 1950 refers to firstNHL<1950; goalies who are still alive refers to deathYear IS NOT NULL
shutouts refers to SHO; number of goals refers to GA; 5% shutouts among the number of goals refers to DIVIDE(SHO,GA)*100 = 5.00
year BETWEEN 1950 and 1980; average = DIVIDE(COUNT(hofID)), 30)
players who became coaches refers to playerID IS NOT NULL AND coachID IS NOT NULL
date of birth refers to birthDay + birthMon + birthYear
Post season of 2011 refers to year = ’2011’ defensive success rate refers to (SUBTRACT(1 (DIVIDE(PostGA/PostSA)), *100%)
Philadelphia Flyers is name of team playing; Boston Bruins is name of opposing team where oppID = 'BOS'; year = 1985; wins refer to W;
In the history of team id NJD, which goalie saved the most goal attempts? Give his full name.
saved the most goal attempts refers to max(subtract(SA, GA)); team id refers to tmID
least number of penalty kill chances refers to min(PKC); power play percentage refers to (PP%) = divide(PPG, PPC); team playing refers to tmID; victorious team refers to tmIDWinner; team victorious refers to tmID = tmIDWinner and vice versa
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
co-coached refers to notes = 'co-coach'; birth place refers to 'birthCountry-birthState-birthCity'
the first one refers to MIN(year);
after retirement means playerID Iis not NULL and coachID is not NULL;
penalty refers to BenchMinor; Ties refer to T
weight of over 195 refers to weight>195
after retired and became a coach refers to max(subtract(year, lastNHL))
year = 1976; BIR refers to tmID; Division 'EW' refers to divID = 'EW'; goals = G;
the number of wins refers to W
Which player who showed as the third goalie in a game has the biggest weight? Give the full name of the player.
the third goalie refers to stint = 3; the biggest weight refers to max(weight)
total goals refer to SUM(G); how old = SUBTRACT(YEAR(CURDATE, birthYear);
tie refers to T>0; year = 1909;
worked a temporary term refers to notes = 'interim'
which league refers to lgID
goalie is a players; teams refer to tmID;
year = 1998; wins per game played = DIVIDE(W, G); CAR refers to tmID; contributed the most goals refers to MAX(G);
the biggest power play percentage = max(divide(PPG, PPC))
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
NHL refers to lgID = 'NHL'; most assists refers to max(A); full name = nameGiven + lastName; total amount of assists = sum(A(playerID(max(A))))
total number of the games refers to GP
Among the teams with the most number of ties, how many penalty was committed by a player or coach that is not on the ice? Indicate the name of the team.
penalty refers to BenchMinor; Ties refer to T
the first 3 teams that got the most penalty minutes refer to name where MAX(PIM) limit to 3; year = 2006;
born in March refers to birthMon = '3'; nicknames refers to nameNick
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
Year most hockey players were born refers to MAX(birthYear); birthCountry refers to the country where a player was born
show me how many minutes refers to Min
penalty minutes refer to PIM = 24; wins refer to W;
received the most awards in total refers to max(count(award))
co-coached refers to notes = 'co-coach'; birth place refers to 'birthCountry-birthState-birthCity'
Weight of above 190 refers to weight >190; 1978 season refers to the year played
victories' and 'wins' are synonyms; most number of victories refers to max(w)
Please list the first 3 teams that got the most penalty minutes in 2006.
the first 3 teams that got the most penalty minutes refer to name where MAX(PIM) limit to 3; year = 2006;
team refers to name; year = 2006
the highest total points = MAX(Pts)
played in the league but not coached means playerID is not NULL and coachID is NULL;
teams scored against their opponent who had pulled their goalie refers to ENG is not null
goals against refers to GA; shots against refers to SA; lowest percentage of goals against among all the shots against refers to MIN(DIVIDE(GA,SA)*100)
highest percentage of game winning refers to MAX(DIVIDE(w,g)*100)
the number of wins refers to W
most seasons played refers to MAX(COUNT(playerID)); average time he played for each season refers to DIVIDE(SUM(T2.Min),COUNT(T2.playerID))
co-coached refers to notes = 'co-coach'; birth place refers to 'birthCountry-birthState-birthCity'
more wins than loses refers to W>L; year = 1917;
What is the power play percentage of the team with the most number of loses?
Power play percentage refers to PPG, most number of loses refers to MAX(L)
Goals Against are the number of goals recorded while the goalie is on the ice; the most Goal Againsts refers to MAX(GA); Minnesota North Stars is name of team;
first year they were in NHL refers to firstNHL; first year in WHA refers to firstWHA; play in both refers to firstNHL IS NOT NULL AND firstWHA IS NOT NULL
exhibition game refers to note = 'EX'; team of losing team refers to tmIDLoser
date of birth refers to birthDay + birthMon + birthYear
hall of famers refers to hofID; both played and coached means playerID is not NULL and coachID is not NULL;
clutch player' and 'trustworthy player in the critical moment' are synonyms; most clutch player refers to the most trustworthy player which refers to MAX(GWG); 1986 is the year played
country refers to birthCountry
average height refers to AVG(height); born in 1990 refers to birthYear = 1990
winning rate refers to DIVIDE (w, SUM(w, l)); Vancouver Canucks is name of team where tmID = 'VAN' Winning rate refers to DIVIDE(wins in year = '2005/2006'(ADD(wins+loses); improvement refers to SUBTRACT(DIVIDE(wins in year = '2005'(ADD(wins+loses), DIVIDE(wins in year = '2006'(ADD(wins+loses))
highest Plus/minus refers to MAX(+/-); full name refers to firstName, lastName; 1981 season refers to year = '1981'
Among the coaches who have taught teams from the NHL League, how many of them are from Canada?
from Canada refers to birthCountry = 'Canada'; NHL league refers to lgID = 'NHL'
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
average height of 75 refers to AVG(height) = 75;
Canadian players mean player whose birthCountry = Canada; ages of 18 and 24 refers to SUBTRACT(firstNHL, birthYear) BETWEEN 18 AND 24; cumulative goal total of no more than 5 refers to G < 5; complete name = nameGiven + lastName
more wins than loses refers to W>L; year = 1917;
PCHA refers to lgID = 'PCHA'; NHL league refers to lgID = 'NHL'
died in Arlington refers to deathCity = 'Arlington'
nick name refers to nameNick; tallest player refers to MAX(height); had left NHL refers to lastNHL
average height refers to AVG(height); born in 1990 refers to birthYear = 1990
least number of penalty kill chances refers to min(PKC); power play percentage refers to (PP%) = divide(PPG, PPC); team playing refers to tmID; victorious team refers to tmIDWinner; team victorious refers to tmID = tmIDWinner and vice versa
which team played the most games against refers to oppID where MAX(SUM(G); Buffalo Sabres is the name of team;
For the team had the biggest power play percentage in 2011, who was their coach that season? Give the full name.
the biggest power play percentage = max(divide(PPG, PPC))
5 heaviest players refer to MAX(weight) limit to 5 playerID;
nick name refers to nameNick; tallest player refers to MAX(height); had left NHL refers to lastNHL
highest percentage of game winning refers to MAX(DIVIDE(w,g)*100)
hall of famers refers to hofID; both played and coached means playerID is not NULL and coachID is not NULL;
after year 2000 refers to year>2000;
played in the league but not coached means playerID is not NULL and coachID is NULL;
received the most awards in total refers to max(count(award))
victories' and 'wins' are synonyms; most number of victories refers to max(w)
NHL refers to lgID = 'NHL'; most assists refers to max(A); full name = nameGiven + lastName; total amount of assists = sum(A(playerID(max(A))))
position refers to pos; date of birth refers to birthDay + birthMon + birthYear
Please list the years in which the NHL League had shots recorded while the goalie was on the ice.
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
goalies refers to pos = 'G'; deceased goalies refers to deathYear IS NOT NULL
most number of goals refers to max(G); how old refers to age = subtract(year(max(G)), birthYear)
Montreal Canadiens is the name of team.
the number of years refers to count(year)
year = 1976; BIR refers to tmID; Division 'EW' refers to divID = 'EW'; goals = G;
Post season of 2011 refers to year = ’2011’ defensive success rate refers to (SUBTRACT(1 (DIVIDE(PostGA/PostSA)), *100%)
the number of wins refers to W
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
year BETWEEN 1950 and 1980; average = DIVIDE(COUNT(hofID)), 30)
regular season refers to `R/P` = 'R'
What was the total number of the games that player Id "rutlewa01" played in 1967?
total number of the games refers to GP
same total number of postseason wins and postseason loses refers to PostW = PostL
first year they were in NHL refers to firstNHL; first year in WHA refers to firstWHA; play in both refers to firstNHL IS NOT NULL AND firstWHA IS NOT NULL
left winger refers to pos = 'L'; weight>200
hall of famers refers to hofID; both played and coached means playerID is not NULL and coachID is not NULL;
players who became coaches refers to playerID IS NOT NULL AND coachID IS NOT NULL
total goals refer to SUM(G); how old = SUBTRACT(YEAR(CURDATE, birthYear);
born in Canada refers to birthCountry = 'Canada'; pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
clutch player' and 'trustworthy player in the critical moment' are synonyms; most clutch player refers to the most trustworthy player which refers to MAX(GWG); 1986 is the year played
the highest total points = MAX(Pts)
21st century refers to year >2000; Power play goals refers to PPG
Which team recorded the most number of road victories in 2005? Indicate the team ID.
road victories refers to rW; team id refers to tmID; victories and wins are synonyms
first season in NHL in before 1950 refers to firstNHL<1950; goalies who are still alive refers to deathYear IS NOT NULL
show me how many minutes refers to Min
penalty minutes refer to PIM = 24; wins refer to W;
Montreal Canadiens is the name of team.
PCHA refers to lgID = 'PCHA'; NHL league refers to lgID = 'NHL'
average height of 75 refers to AVG(height) = 75;
regular season refers to `R/P` = 'R'
victories' and 'wins' are synonyms; most number of victories refers to max(w)
after retired and became a coach refers to max(subtract(year, lastNHL))
position refers to pos; date of birth refers to birthDay + birthMon + birthYear
What is the highest total points a team got in a year?
the highest total points = MAX(Pts)
Goals Against are the number of goals recorded while the goalie is on the ice; the most Goal Againsts refers to MAX(GA); Minnesota North Stars is name of team;
death country is different from his birth country refers to birthCountry! = deathCountry
average height of 75 refers to AVG(height) = 75;
played more than total of 5000 minutes refers to SUM(Min)>5000;country he was born refers to birthCountry
5 heaviest players refer to MAX(weight) limit to 5 playerID;
WCHL is the league's abbreviated name which refers to lgID = 'WCHL'; most goals scored referst to MAX(PostGA); GA is abbreviation for Post Against which means number of goals recorded while the goalie is on the ice. Include all goals against during regulation and overtime play.
team refers to name; year = 2006
PCHA refers to lgID = 'PCHA'; NHL league refers to lgID = 'NHL'
team ID refers to tmID; 'defeats' and 'loses' are synonyms; most October defeats refers to max(OctL)
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
What is the percentage of winning rate of improvement since Alain Vigneault became the coach of Vancouver Canucks in 2006 season?
winning rate refers to DIVIDE (w, SUM(w, l)); Vancouver Canucks is name of team where tmID = 'VAN' Winning rate refers to DIVIDE(wins in year = '2005/2006'(ADD(wins+loses); improvement refers to SUBTRACT(DIVIDE(wins in year = '2005'(ADD(wins+loses), DIVIDE(wins in year = '2006'(ADD(wins+loses))
Post season of 2011 refers to year = ’2011’ defensive success rate refers to (SUBTRACT(1 (DIVIDE(PostGA/PostSA)), *100%)
pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
teams scored against their opponent who had pulled their goalie refers to ENG is not null
born in Canada refers to birthCountry = 'Canada'; pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
players who became coaches refers to playerID IS NOT NULL AND coachID IS NOT NULL
clutch player' and 'trustworthy player in the critical moment' are synonyms; most clutch player refers to the most trustworthy player which refers to MAX(GWG); 1986 is the year played
teams that have played against refer to oppID; Buffalo Sabres is the name of team;
which team played the most games against refers to oppID where MAX(SUM(G); Buffalo Sabres is the name of team;
weight of over 195 refers to weight>195
not in the Hall of Fame refers to hofID IS NULL
How many coaches worked a temporary term in the year 2007?
worked a temporary term refers to notes = 'interim'
goalie is a players; teams refer to tmID;
Coach of the team refers to firstName+lastName; 2003 refers to the year
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
tie refers to T>0; year = 1909;
after retired and became a coach refers to max(subtract(year, lastNHL))
goaltender' and 'goalie' are synonyms; fewest goals while on the ice refers to min(GA); How old = subtract(lastNHL(playerID(min(GA))), birthYear(playerID(min(GA)))))
show me how many minutes refers to Min
clutch player' and 'trustworthy player in the critical moment' are synonyms; most clutch player refers to the most trustworthy player which refers to MAX(GWG); 1986 is the year played
team ID refers to tmID; 'defeats' and 'loses' are synonyms; most October defeats refers to max(OctL)
the most play minutes refer to MAX(Min); goalie refers to pos = 'G'; New York Islanders is the nameof team;
How many teams have the same total number of postseason wins and postseason loses?
same total number of postseason wins and postseason loses refers to PostW = PostL
how many teams refer to COUNT(tmID); over 20 points refer to Pts>20; year = 1922;
hall of famers refers to hofID; both played and coached means playerID is not NULL and coachID is not NULL;
worked a temporary term refers to notes = 'interim'
regular season refers to `R/P` = 'R'
Weight of above 190 refers to weight >190; 1978 season refers to the year played
the highest winning rate refer to divide(W, sum(W, L))
died in Arlington refers to deathCity = 'Arlington'
after retired and became a coach refers to max(subtract(year, lastNHL))
first-ever Second Team All-Star award refers to min(year(award = 'Second Team All-Star')); How many games before receiving such award = sum(g(coachID(min(year(award = 'Second Team All-Star')))): g(min(year)))
after the year 1980 refers to year>1980
What are the awards won by the coach who coached the team with the most number of victories of all time? Indicate the choach ID.
victories' and 'wins' are synonyms; most number of victories refers to max(w)
same total number of postseason wins and postseason loses refers to PostW = PostL
penalty minutes refers to PIM; year of scoring BETWEEN 2003 AND 2005; most number of games played refers to max(GP)
highest Plus/minus refers to MAX(+/-); full name refers to firstName, lastName; 1981 season refers to year = '1981'
left winger refers to pos = 'L'; weight>200
Coach of the team refers to firstName+lastName; 2003 refers to the year
average height refers to AVG(height); born in 1990 refers to birthYear = 1990
first season in NHL in before 1950 refers to firstNHL<1950; goalies who are still alive refers to deathYear IS NOT NULL
born in Canada refers to birthCountry = 'Canada'; pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
teams that have played against refer to oppID; Buffalo Sabres is the name of team;
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
Did legendsID "P194502" personally attend his Hall of Fame dedication?
note = 'posthumous'refers to "didn't personally attend"
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
Weight of above 190 refers to weight >190; 1978 season refers to the year played
after retired and became a coach refers to max(subtract(year, lastNHL))
NHL refers to lgID = 'NHL'; most assists refers to max(A); full name = nameGiven + lastName; total amount of assists = sum(A(playerID(max(A))))
1989 refers to the year of scoring; "dominant hand" and "shooting hand" are synonyms which refers to shootCatch
penalty minutes refers to PIM; year of scoring BETWEEN 2003 AND 2005; most number of games played refers to max(GP)
Not from USA refers to birthCountry! = 'USA'; born in 1990 refers to birthYear = 1990
first-ever Second Team All-Star award refers to min(year(award = 'Second Team All-Star')); How many games before receiving such award = sum(g(coachID(min(year(award = 'Second Team All-Star')))): g(min(year)))
winning percentage refers to DIVIDE(w,g)*100; team DET refers to tmID = 'DET'
from Canada refers to birthCountry = 'Canada'; NHL league refers to lgID = 'NHL'
Who is the youngest player who is still living. State the given name and date of birth.
still living refers to deathYear IS NULL; youngest refers to MAX(birthYear,birthMon,birthDay)
death country is different from his birth country refers to birthCountry! = deathCountry
shots recorded while the goalie was on the ice refers to SA IS NOT NULL; NHL League refers to lgID = 'NHL'
born in July and August refers to birthMon IN('7','8')
good at both left hands and right hands for goalie refers to shootCatch IS NULL
10 empty net goals refer to ENG = 10; tallest refers to MAX(height);
note = 'posthumous'refers to "didn't personally attend"
born in 1977 refers to birthYear = '1977'
players who became coaches refers to playerID IS NOT NULL AND coachID IS NOT NULL
played more than total of 5000 minutes refers to SUM(Min)>5000;country he was born refers to birthCountry
goalies refers to pos = 'G'; deceased goalies refers to deathYear IS NOT NULL
Who are the players who were not in the Hall of Fame list.
not in the Hall of Fame refers to hofID IS NULL
the number of wins refers to W
position refers to pos; date of birth refers to birthDay + birthMon + birthYear
more wins than loses refers to W>L; year = 1917;
team playing refers to tmID; oppositng team refers to oppID; victories' and 'wins' are synonyms; most victories refers to max(w)
total goals refer to SUM(G); how old = SUBTRACT(YEAR(CURDATE, birthYear);
goals against refers to GA; shots against refers to SA; lowest percentage of goals against among all the shots against refers to MIN(DIVIDE(GA,SA)*100)
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
the most play minutes refer to MAX(Min); goalie refers to pos = 'G'; New York Islanders is the nameof team;
good at both left hands and right hands for goalie refers to shootCatch IS NULL
winning rate refers to DIVIDE (w, SUM(w, l)); Vancouver Canucks is name of team where tmID = 'VAN' Winning rate refers to DIVIDE(wins in year = '2005/2006'(ADD(wins+loses); improvement refers to SUBTRACT(DIVIDE(wins in year = '2005'(ADD(wins+loses), DIVIDE(wins in year = '2006'(ADD(wins+loses))
State the nick name of the tallest player? If the player had left NHL, mention the last season he was with NHL.
nick name refers to nameNick; tallest player refers to MAX(height); had left NHL refers to lastNHL
shooting/catching hand is both left and right refers to shootCatch is NULL, debuted their first NHL in 2011 refers to firstNHL = 2011
21st century refers to year >2000; Power play goals refers to PPG
highest percentage of game winning refers to MAX(DIVIDE(w,g)*100)
NHL refers to lgID = 'NHL'; most assists refers to max(A); full name = nameGiven + lastName; total amount of assists = sum(A(playerID(max(A))))
teams that have played against refer to oppID; Buffalo Sabres is the name of team;
NHL refers to lgID = 'NHL'; least number of times being on the ice when a goal is scored for the team versus against the team refers to min(+/-); duration the player's been playing = subtract(year(playerID(min(+/-))), firstNHL(playerID(min(+/-)))); full name = nameGiven + lastName
pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
Post season of 2011 refers to year = ’2011’ defensive success rate refers to (SUBTRACT(1 (DIVIDE(PostGA/PostSA)), *100%)
passed away means deathYear is not NULL;
born in Canada refers to birthCountry = 'Canada'
Which country has the most players in the Hall of Fame?
country refers to birthCountry
Shortest refers to MIN(height); from 1925 to 1936 refers to year between 1925 and 1936;
penalty minutes refer to PIM = 24; wins refer to W;
Montreal Canadiens is the name of team.
MAX(DIVIDE(COUNT(W), SUM(COUNT(W), (COUNT (L)) where year = 2000;
weight of over 195 refers to weight>195
5 heaviest players refer to MAX(weight) limit to 5 playerID;
most seasons played refers to MAX(COUNT(playerID)); average time he played for each season refers to DIVIDE(SUM(T2.Min),COUNT(T2.playerID))
the most play minutes refer to MAX(Min); goalie refers to pos = 'G'; New York Islanders is the nameof team;
regular season refers to `R/P` = 'R'
winning rate refers to DIVIDE (w, SUM(w, l)); Vancouver Canucks is name of team where tmID = 'VAN' Winning rate refers to DIVIDE(wins in year = '2005/2006'(ADD(wins+loses); improvement refers to SUBTRACT(DIVIDE(wins in year = '2005'(ADD(wins+loses), DIVIDE(wins in year = '2006'(ADD(wins+loses))
Name the goalie and the season he played where he had 5% shutouts among the number of goals recorded while the goalie was on the ice.
shutouts refers to SHO; number of goals refers to GA; 5% shutouts among the number of goals refers to DIVIDE(SHO,GA)*100 = 5.00
highest percentage of game winning refers to MAX(DIVIDE(w,g)*100)
5 heaviest players refer to MAX(weight) limit to 5 playerID;
position refers to pos; date of birth refers to birthDay + birthMon + birthYear
year = 1998; wins per game played = DIVIDE(W, G); CAR refers to tmID; contributed the most goals refers to MAX(G);
left winger refers to pos = 'L'; weight>200
Montreal Canadiens is the name of team.
died in Arlington refers to deathCity = 'Arlington'
which league refers to lgID
goalies refers to pos = 'G'; deceased goalies refers to deathYear IS NOT NULL
born in Canada refers to birthCountry = 'Canada'; pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
State the player ID of player with average height of 75.
average height of 75 refers to AVG(height) = 75;
saved the most goal attempts refers to max(subtract(SA, GA)); team id refers to tmID
from the USA refers to birthCountry = 'USA'; year = 1922;
shutouts refers to SHO; number of goals refers to GA; 5% shutouts among the number of goals refers to DIVIDE(SHO,GA)*100 = 5.00
WCHL is the league's abbreviated name which refers to lgID = 'WCHL'; most goals scored referst to MAX(PostGA); GA is abbreviation for Post Against which means number of goals recorded while the goalie is on the ice. Include all goals against during regulation and overtime play.
5 heaviest players refer to MAX(weight) limit to 5 playerID;
pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
the number of wins refers to W
born in 1977 refers to birthYear = '1977'
Goals Against are the number of goals recorded while the goalie is on the ice; the most Goal Againsts refers to MAX(GA); Minnesota North Stars is name of team;
good at left hand refers to shootCatch = 'L'; goalies refers to pos = 'G'
Among the coaches who have gotten in the Hall of Fame, how many of them have a weight of over 195?
weight of over 195 refers to weight>195
died in Arlington refers to deathCity = 'Arlington'
born in Canada refers to birthCountry = 'Canada'; pos = 'LW' refers to left winger; pos = 'RW' refers to right winger; pos = 'C' refers to center; pos = 'G' refers to goalie; pos = 'D' refers to defenceman; pos = 'W' refers to winger; pos = 'F' refers to forward
date of birth refers to birthDay + birthMon + birthYear
teams scored against their opponent who had pulled their goalie refers to ENG is not null
goalie is a players; teams refer to tmID;
how many teams refer to COUNT(tmID); over 20 points refer to Pts>20; year = 1922;
saved the most goal attempts refers to max(subtract(SA, GA)); team id refers to tmID
left winger refers to pos = 'L'; weight>200
goalies refers to pos = 'G'; deceased goalies refers to deathYear IS NOT NULL
have died means deathYear is not NULL; Buffalo Sabres is the name of team;
Who was the coach for the team which had the most bench minors penalty in 2003?
Coach of the team refers to firstName+lastName; 2003 refers to the year
first season in NHL in before 1950 refers to firstNHL<1950; goalies who are still alive refers to deathYear IS NOT NULL
5 heaviest players refer to MAX(weight) limit to 5 playerID;
1989 refers to the year of scoring; "dominant hand" and "shooting hand" are synonyms which refers to shootCatch
MAX(DIVIDE(COUNT(W), SUM(COUNT(W), (COUNT (L)) where year = 2000;
the number of years refers to count(year)
the most shutouts refer to MAX(SHO); catching hand refers to shootCatch; year = 2010;
teams scored against their opponent who had pulled their goalie refers to ENG is not null
show me how many minutes refers to Min
worked a temporary term refers to notes = 'interim'
over 30 wins refers to w>30; born in the USA refers to birthCountry = 'USA'
Show me how many minutes player Id "valiqst01" played in the game in 2007 season.
show me how many minutes refers to Min
total goals refer to SUM(G); how old = SUBTRACT(YEAR(CURDATE, birthYear);
most number of goals refers to max(G); how old refers to age = subtract(year(max(G)), birthYear)
the first 3 teams that got the most penalty minutes refer to name where MAX(PIM) limit to 3; year = 2006;
average height of 75 refers to AVG(height) = 75;
the first one refers to MIN(year);
year = 1976; BIR refers to tmID; Division 'EW' refers to divID = 'EW'; goals = G;
penalty minutes refer to PIM = 49;
passed away means deathYear is not NULL;
penalty minutes refers to PIM; year of scoring BETWEEN 2003 AND 2005; most number of games played refers to max(GP)
played in the league but not coached means playerID is not NULL and coachID is NULL;
Give the number of female employees.
number of female employees means COUNT(gender = 'F')
the highest paid refers to MAX(salary); manager is a position title
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
In which city's office does Sandy Adams work at?
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
Miami office refers to locationcity = 'Miami'
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
social security numbers refers to ssn; California refers to state = 'CA'
number of female employees means COUNT(gender = 'F')
full name = firstname, lastname; trainees is a position title
good job performance refers to performance = 'Good'
the highest paid refers to MAX(salary); manager is a position title
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
Who is the employee with the highest salary? Specify his/her full name.
the highest salary refers to MAX(salary); full name = firstname, lastname
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
David Whitehead is the full name of an employee; full name = firstname, lastname
full name = firstname, lastname; ssn = '767-74-7373'
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
Emily Wood is the full name of an employee; full name = firstname, lastname;
2 year degree refers to educationrequired = '2 year degree'; female refers to gender = 'F'; the highest number of employees refers to MAX(positionID)
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
male employees refers to gender = 'M'
Which position has the highest amount of poor performing employees?
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
the highest salary refers to MAX(salary); full name = firstname, lastname
David Whitehead is the full name of an employee; full name = firstname, lastname
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; ssn = '767-74-7373'
number of female employees means COUNT(gender = 'F')
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
What is the required education for the position of regional manager?
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
David Whitehead is the full name of an employee; full name = firstname, lastname
social security numbers refers to ssn; California refers to state = 'CA'
zip code of above 90000 refers to zipcode > 90000; city refers to locationcity
full name = firstname, lastname; ssn = '767-74-7373'
Emily Wood is the full name of an employee; full name = firstname, lastname;
first-ever employee that was hired refers to MIN(hiredate)
good job performance refers to performance = 'Good'
the highest salary refers to MAX(salary); full name = firstname, lastname
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
Which city and address has zip code of above 90000?
zip code of above 90000 refers to zipcode > 90000; city refers to locationcity
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
social security numbers refers to ssn; California refers to state = 'CA'
first-ever employee that was hired refers to MIN(hiredate)
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
Account Representatives is a position title; satisfying performance mostly refers togood performance
male employees refers to gender = 'M'
What is the full office location address where most of the employees work at?
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
the highest salary refers to MAX(salary); full name = firstname, lastname
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
Mention the full name, hired date and performance status of the employee whose location is in Utah state.
full name = firstname, lastname; Utah refers to state = 'UT'
Account Representatives is a position title; satisfying performance mostly refers togood performance
number of female employees means COUNT(gender = 'F')
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
full name = firstname, lastname; ssn = '767-74-7373'
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
full name = firstname, lastname; trainees is a position title
Write down the full name, performance status and located city of the employee who's social security number is "767-74-7373".
full name = firstname, lastname; ssn = '767-74-7373'
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
2 year degree refers to educationrequired = '2 year degree'; female refers to gender = 'F'; the highest number of employees refers to MAX(positionID)
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
Account Representatives is a position title; satisfying performance mostly refers togood performance
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
full name = firstname, lastname; trainees is a position title
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
How many "account representatives" are there in Chicago with a good performance?
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
good job performance refers to performance = 'Good'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
social security numbers refers to ssn; California refers to state = 'CA'
List the full names, gender and positions who's location is in New York city.
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
David Whitehead is the full name of an employee; full name = firstname, lastname
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
full name = firstname, lastname; ssn = '767-74-7373'
full name = firstname, lastname; Utah refers to state = 'UT'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
number of female employees means COUNT(gender = 'F')
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
Account Representatives is a position title; satisfying performance mostly refers togood performance
How many employees are there in the "Miami" office?
Miami office refers to locationcity = 'Miami'
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
social security numbers refers to ssn; California refers to state = 'CA'
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
Trainees is a position title; California refers to state = 'NY'
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; Utah refers to state = 'UT'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
male refers to gender = 'M'; Regional Managers is a position title
Please list the social security numbers of all the employees who work in California.
social security numbers refers to ssn; California refers to state = 'CA'
zip code of above 90000 refers to zipcode > 90000; city refers to locationcity
male refers to gender = 'M'; Regional Managers is a position title
number of female employees means COUNT(gender = 'F')
the highest paid refers to MAX(salary); manager is a position title
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
male employees refers to gender = 'M'
first-ever employee that was hired refers to MIN(hiredate)
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
good job performance refers to performance = 'Good'
Which positions are suitable with 4 years degree education?
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
full name = firstname, lastname; trainees is a position title
Emily Wood is the full name of an employee; full name = firstname, lastname;
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
Trainees is a position title; California refers to state = 'NY'
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
male employees refers to gender = 'M'
the highest paid refers to MAX(salary); manager is a position title
Among the employees with poor performance, provide the managers' full names, location city, address and its zip code.
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
Trainees is a position title; California refers to state = 'NY'
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
Account Representatives is a position title; satisfying performance mostly refers togood performance
Emily Wood is the full name of an employee; full name = firstname, lastname;
the highest salary refers to MAX(salary); full name = firstname, lastname
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
full name = firstname, lastname; Utah refers to state = 'UT'
Please list the social security numbers of the male employees with a salary of over $70,000 a year.
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
Miami office refers to locationcity = 'Miami'
good job performance refers to performance = 'Good'
Trainees is a position title; California refers to state = 'NY'
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; trainees is a position title
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
Who is the employee in “New York City” with a good performance? Give the social security number of the employee.
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
the highest salary refers to MAX(salary); full name = firstname, lastname
full name = firstname, lastname; trainees is a position title
full name = firstname, lastname; Utah refers to state = 'UT'
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
Miami office refers to locationcity = 'Miami'
David Whitehead is the full name of an employee; full name = firstname, lastname
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
2 year degree refers to educationrequired = '2 year degree'; female refers to gender = 'F'; the highest number of employees refers to MAX(positionID)
State the name of the city where Jose Rodriguez works.
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
the highest salary refers to MAX(salary); full name = firstname, lastname
social security numbers refers to ssn; California refers to state = 'CA'
Account Representatives is a position title; satisfying performance mostly refers togood performance
number of female employees means COUNT(gender = 'F')
Miami office refers to locationcity = 'Miami'
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
Which position has the highest number of female employees with a 2 year degree?
2 year degree refers to educationrequired = '2 year degree'; female refers to gender = 'F'; the highest number of employees refers to MAX(positionID)
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
Emily Wood is the full name of an employee; full name = firstname, lastname;
good job performance refers to performance = 'Good'
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
number of female employees means COUNT(gender = 'F')
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
Describe the employees' full name, positions, located city and office phone number within Colorado state.
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
Miami office refers to locationcity = 'Miami'
Emily Wood is the full name of an employee; full name = firstname, lastname;
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
male refers to gender = 'M'; Regional Managers is a position title
first-ever employee that was hired refers to MIN(hiredate)
David Whitehead is the full name of an employee; full name = firstname, lastname
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
How many positions have a maximum salary of no more than US$1000,000?
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
social security numbers refers to ssn; California refers to state = 'CA'
Trainees is a position title; California refers to state = 'NY'
Miami office refers to locationcity = 'Miami'
first-ever employee that was hired refers to MIN(hiredate)
the highest salary refers to MAX(salary); full name = firstname, lastname
Account Representatives is a position title; satisfying performance mostly refers togood performance
Emily Wood is the full name of an employee; full name = firstname, lastname;
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
How much is the salary of the first ever employee that was hired?
first-ever employee that was hired refers to MIN(hiredate)
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
full name = firstname, lastname; Utah refers to state = 'UT'
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
Account Representatives is a position title; satisfying performance mostly refers togood performance
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
male employees refers to gender = 'M'
What is the average salary of the employees who work as a Trainee?
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
full name = firstname, lastname; ssn = '767-74-7373'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
the highest paid refers to MAX(salary); manager is a position title
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
full name = firstname, lastname; trainees is a position title
Miami office refers to locationcity = 'Miami'
social security numbers refers to ssn; California refers to state = 'CA'
How many male Regional Managers are there?
male refers to gender = 'M'; Regional Managers is a position title
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
2 year degree refers to educationrequired = '2 year degree'; female refers to gender = 'F'; the highest number of employees refers to MAX(positionID)
zip code of above 90000 refers to zipcode > 90000; city refers to locationcity
the highest salary refers to MAX(salary); full name = firstname, lastname
male employees refers to gender = 'M'
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
How many emplyees have a good job performance?
good job performance refers to performance = 'Good'
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
the highest paid refers to MAX(salary); manager is a position title
full name = firstname, lastname; ssn = '767-74-7373'
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
the highest salary refers to MAX(salary); full name = firstname, lastname
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
full name = firstname, lastname; Utah refers to state = 'UT'
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
In which state does Emily Wood work?
Emily Wood is the full name of an employee; full name = firstname, lastname;
good job performance refers to performance = 'Good'
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
Trainees is a position title; California refers to state = 'NY'
David Whitehead is the full name of an employee; full name = firstname, lastname
male refers to gender = 'M'; Regional Managers is a position title
male employees refers to gender = 'M'
the highest salary refers to MAX(salary); full name = firstname, lastname
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
How many Account Representatives are there in Illinois with satisfying performance?
Account Representatives is a position title; satisfying performance mostly refers togood performance
the highest paid refers to MAX(salary); manager is a position title
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
first-ever employee that was hired refers to MIN(hiredate)
Miami office refers to locationcity = 'Miami'
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
full name = firstname, lastname; ssn = '767-74-7373'
Trainees is a position title; California refers to state = 'NY'
the highest salary refers to MAX(salary); full name = firstname, lastname
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
male refers to gender = 'M'; Regional Managers is a position title
Which employee's job position requires a higher education level, Jose Rodriguez or Sandy Adams?
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
full name = firstname, lastname; ssn = '767-74-7373'
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
the highest salary refers to MAX(salary); full name = firstname, lastname
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
number of female employees means COUNT(gender = 'F')
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
List the full name and social security number of the account representative with average performance.
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
Miami office refers to locationcity = 'Miami'
Emily Wood is the full name of an employee; full name = firstname, lastname;
good job performance refers to performance = 'Good'
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
Account Representatives is a position title; satisfying performance mostly refers togood performance
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
full name = firstname, lastname; Utah refers to state = 'UT'
In which state can you find the highest amount of good performing Account Representatives?
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
first-ever employee that was hired refers to MIN(hiredate)
full name = firstname, lastname; Utah refers to state = 'UT'
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
full name = firstname, lastname; trainees is a position title
number of female employees means COUNT(gender = 'F')
Sandy Adams is the fullname of an employee; full name = firstname, lastname; city refers to locationcity
Jose Rodriguez is the fullname of an employee; full name = firstname, lastname; name of city refers to locationcity
full name = firstname, lastname; ssn = '767-74-7373'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
Please list the full names of the employees who are working as a Trainee.
full name = firstname, lastname; trainees is a position title
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
Trainees is a position title; California refers to state = 'NY'
Miami office refers to locationcity = 'Miami'
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
Emily Wood is the full name of an employee; full name = firstname, lastname;
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
male refers to gender = 'M'; Regional Managers is a position title
number of female employees means COUNT(gender = 'F')
David Whitehead is the full name of an employee; full name = firstname, lastname
How many male employees work at the address 450 Peachtree Rd?
male employees refers to gender = 'M'
good job performance refers to performance = 'Good'
Account Representatives is a position title; satisfying performance mostly refers togood performance
David Whitehead is the full name of an employee; full name = firstname, lastname
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
poor performance refers to performance = 'Poor'; full name = firstname, lastname; managers is a position title
Emily Wood is the full name of an employee; full name = firstname, lastname;
Jose Rodriguez AND Sandy Adams are the fullname of employee; full name = firstname, lastname; higher education level refers to MAX(educationrequired)
the highest salary refers to MAX(salary); full name = firstname, lastname
Trainees is a position title; California refers to state = 'NY'
2 year degree refers to educationrequired = '2 year degree'; female refers to gender = 'F'; the highest number of employees refers to MAX(positionID)
Which employee has the highest salary? Please give his or her full name.
the highest salary refers to MAX(salary); full name = firstname, lastname
male refers to gender = 'M'; Regional Managers is a position title
Account Representatives is a position title; satisfying performance mostly refers togood performance
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
first-ever employee that was hired refers to MIN(hiredate)
full office location address = address, locationcity, state, zipcode; location where most employees work at refers to MAX(locationID)
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
social security numbers refers to ssn; male employees refers to gender = 'M'; salary of over $70,000 a year refers to salary > '70000'
Trainees is a position title; California refers to state = 'NY'
David Whitehead is the full name of an employee; full name = firstname, lastname
good job performance refers to performance = 'Good'
What is the education required for David Whitehead to reach his current position?
David Whitehead is the full name of an employee; full name = firstname, lastname
full name = firstname, lastname; trainees is a position title
the highest salary refers to MAX(salary); full name = firstname, lastname
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
Miami office refers to locationcity = 'Miami'
full name = firstname, lastname; Colorado state refers to state = 'CO'; positions refers to positiontitle; located city refers to locationcity; office phone number refers to officephone;
average = DIVIDE( SUM(salary), COUNT(positiontitle) where positiontitle = 'Trainee'; Trainee is a position title
required education refers to educationrequired; position of regional manager refers to  positiontitle = 'Regional Manager'
the highest paid refers to MAX(salary); manager is a position title
maximum salary of no more than US$1000,000 refers to maxsalary < '100000';
full name = firstname, lastname; ssn = '767-74-7373'
Among the employees who are Trainees, how many of them work in New York?
Trainees is a position title; California refers to state = 'NY'
full name = firstname, lastname; social security number refers to ssn; account representative is a position title; average performance refers to performance = 'Average'
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
Miami office refers to locationcity = 'Miami'
poor performing employees refers to performance = 'Poor'; the highest amount of employees refers to MAX(positiontitle)
the highest salary refers to MAX(salary); full name = firstname, lastname
New York City refers to locationcity = 'New York City'; good performance refers to performance = 'Good'; social security number refers to ssn
David Whitehead is the full name of an employee; full name = firstname, lastname
the highest paid refers to MAX(salary); manager is a position title
first-ever employee that was hired refers to MIN(hiredate)
full name = firstname, lastname; New York city refers to locationcity = 'New York City'
Give the full address of the office of the highest paid manager.
the highest paid refers to MAX(salary); manager is a position title
account representatives is a position title; Chicago refers to locationcity = 'Chicago'; good performance refers to performance = 'Good'
4 years degree education refers to educationrequired = '4 year degree'; positions refers to positiontitle
good performing refers to performance = 'Good'; Account Representatives is a positiontitle; highest amount of employee refers to MAX(positionID);
full name = firstname, lastname; ssn = '767-74-7373'
male refers to gender = 'M'; Regional Managers is a position title
Trainees is a position title; California refers to state = 'NY'
Miami office refers to locationcity = 'Miami'
David Whitehead is the full name of an employee; full name = firstname, lastname
number of female employees means COUNT(gender = 'F')
the highest salary refers to MAX(salary); full name = firstname, lastname
Among the USA players, who has the lightest weight?
USA refers to nation = 'USA' ; players refers to PlayerName; lightest weight refers to MIN(weight_in_lbs);
1997-1998 season refers to SEASON = '1997-1998';
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
youngest player refers to MAX(birthdate); 1997-1998 season refers to SEASON = '1997-1998'; OHL league refers to LEAGUE = 'OHL';
oldest player refers to MIN(birthdate); Avangard Omsk refers to TEAM = 'Avangard Omsk'; regular season refers to GAMETYPE = 'Regular Season'; 2000-2001 season refers to SEASON = '2000-2001';
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
Among all players drafted by the Toronto Maple Leafs in 2008, identify the player with the highest prospects for the draft.
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
difference = SUBTRACT(SUM(G WHERE GAMETYPE = 'Regular Season'), SUM(G WHERE GAMETYPE = 'Playoffs') WHERE SEASON = '1998-1999'); number of goals scored refers to G; regular season refers to GAMETYPE = 'Regular Season'; playoffs refers to GAMETYPE = 'Playoffs'; 1998-1999 season refers to SEASON = '1998-1999';
FALSE;
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
right-shooted refers to shoots = 'R'; weigh over 90 kg refers to weight_in_kg > 90;
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
weight in kilograms refers to weight_in_kg; longest time on ice in the player's first 7 years of NHL career refers to MAX(sum_7yr_TOI);
weight in kilograms refers to weight_in_kg; highest number of goal differential of all time refers to MAX(PLUSMINUS);
youngest player refers to MAX(birthdate); 1997-1998 season refers to SEASON = '1997-1998'; OHL league refers to LEAGUE = 'OHL';
OHL league refers to LEAGUE = 'OHL'; who refers to PlayerName; regular season refers to GAMETYPE = 'Regular Season'; most number of assist refers to MAX(A); 2007-2008 season refers to SEASON = '2007-2008';
What is the name of the tallest player?
tallest player refers to MAX(height_in_cm);
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
who refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes'; committed the highest rule violations refers to MAX(PIM); in 2000 refers to draftyear = 2000;
FALSE;
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
name of the player refers to PlayerName; most goals refers to MAX(G); team Rimouski Oceanic refers to TEAM = 'Rimouski Oceanic'; playoff refers to GAMETYPE = 'Playoffs';
playoffs refers to GAMETYPE = 'Playoffs';
right-shooted refers to shoots = 'R'; weigh over 90 kg refers to weight_in_kg > 90;
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';
Among all the players that are right-shooted, how many of them weigh over 90 kg?
right-shooted refers to shoots = 'R'; weigh over 90 kg refers to weight_in_kg > 90;
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
born in 1980 refers to birthyear = 1980; weigh 185 in pounds refers to weight_in_lbs = 185;
weigh more than 90 kg refers to weight_in_kg > 90;
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
names of the players refers to PlayerName; Avangard Omsk refers to TEAM = 'Avangard Omsk'; playoffs refers to GAMETYPE = 'Playoffs'; 2000-2001 season refers to SEASON = '2000-2001';
drafted by Anaheim Ducks refers to overallby = 'Anaheim Ducks'; in 2008 refers to draftyear = 2008; played for U.S. National U18 Team refers to TEAM = 'U.S. National U18 Team';
playoffs refers to GAMETYPE = 'Playoffs';
weigh in kilograms refers to weight_in_kg;
average = AVG(height_in_cm); players refers to PlayerName; position of defense refers to position_info = 'D' ;
1997-1998 season refers to SEASON = '1997-1998';
What is the difference in the number of goals scored by Pavel Brendl during the regular season versus the playoffs in the 1998-1999 season?
difference = SUBTRACT(SUM(G WHERE GAMETYPE = 'Regular Season'), SUM(G WHERE GAMETYPE = 'Playoffs') WHERE SEASON = '1998-1999'); number of goals scored refers to G; regular season refers to GAMETYPE = 'Regular Season'; playoffs refers to GAMETYPE = 'Playoffs'; 1998-1999 season refers to SEASON = '1998-1999';
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
FALSE;
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';
players refers to PlayerName; weigh 120 kg refers to weight_in_kg = 120;
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
goals scored refers to G; Calgary Hitmen refers to TEAM = 'Calgary Hitmen'; percentage = MULTIPLY(DIVIDE(SUM(G WHERE PlayerName = 'Ian Schultz'), SUM(G)), 100); 2007-2008 season refers to SEASON = '2007-2008';
FALSE;
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
tallest player refers to MAX(height_in_cm);
List out the seasons that Niklas Eckerblom played.
FALSE;
OHL league refers to LEAGUE = 'OHL'; who refers to PlayerName; regular season refers to GAMETYPE = 'Regular Season'; most number of assist refers to MAX(A); 2007-2008 season refers to SEASON = '2007-2008';
FALSE;
tallest refers to MAX(height_in_cm); player refers to PlayerName; team USA U20 refers to TEAM = 'USA U20';
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
heigh in inches refers to height_in_inch;
tallest player refers to MAX(height_in_cm);
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; percentage = MULTIPLY(DIVIDE(SUM(nation = 'Eastern Europe'), COUNT(ELITEID) WHERE overallby = 'Toronto Maple Leafs'), 100); from Eastern Europe refers to nation in ('Belarus', 'Bulgaria', 'Czech Republic', 'Hungary', 'Moldova', 'Poland', 'Romania', 'Slovakia', 'Ukraine'); countries in a continent can be identified by referring to https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent;
who refers to PlayerName; heaviest weight refers to MAX(weight_in_kg);
Among all penalty minutes picked up by Ak Bars Kazan in the 1999-2000 season, identify the percentage picked up by Yevgeni Muratov.
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
tallest refers to MAX(height_in_cm); player refers to PlayerName; team USA U20 refers to TEAM = 'USA U20';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
average = AVG(height_in_cm); players refers to PlayerName; position of defense refers to position_info = 'D' ;
drafted by Anaheim Ducks refers to overallby = 'Anaheim Ducks'; in 2008 refers to draftyear = 2008; played for U.S. National U18 Team refers to TEAM = 'U.S. National U18 Team';
committed the highest rule violations or penalty minutes refers to MAX(PIM); 2000-2001 season refers to SEASON = '2000-2001'
FALSE;
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
weight in kilograms refers to weight_in_kg; longest time on ice in the player's first 7 years of NHL career refers to MAX(sum_7yr_TOI);
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
Calculate the average weight in pounds of all players drafted by Arizona Coyotes.
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
players refers to PlayerName; weigh 120 kg refers to weight_in_kg = 120;
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
tallest player refers to MAX(height_in_cm);
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
committed the highest rule violations or penalty minutes refers to MAX(PIM); 2000-2001 season refers to SEASON = '2000-2001'
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; percentage = MULTIPLY(DIVIDE(SUM(nation = 'Eastern Europe'), COUNT(ELITEID) WHERE overallby = 'Toronto Maple Leafs'), 100); from Eastern Europe refers to nation in ('Belarus', 'Bulgaria', 'Czech Republic', 'Hungary', 'Moldova', 'Poland', 'Romania', 'Slovakia', 'Ukraine'); countries in a continent can be identified by referring to https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
Name the player who has the most NHL points in draft year.
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
drafted by Anaheim Ducks refers to overallby = 'Anaheim Ducks'; in 2008 refers to draftyear = 2008; played for U.S. National U18 Team refers to TEAM = 'U.S. National U18 Team';
tallest player refers to MAX(height_in_cm);
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
weigh more than 90 kg refers to weight_in_kg > 90;
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';
weight in kilograms refers to weight_in_kg; highest number of goal differential of all time refers to MAX(PLUSMINUS);
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
1997-1998 season refers to SEASON = '1997-1998';
difference = SUBTRACT(SUM(G WHERE GAMETYPE = 'Regular Season'), SUM(G WHERE GAMETYPE = 'Playoffs') WHERE SEASON = '1998-1999'); number of goals scored refers to G; regular season refers to GAMETYPE = 'Regular Season'; playoffs refers to GAMETYPE = 'Playoffs'; 1998-1999 season refers to SEASON = '1998-1999';
How many players were born in 1982 and have a height above 182cm?
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
weigh more than 90 kg refers to weight_in_kg > 90;
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
FALSE;
name of players refers to PlayerName; height of 5'8" refers to height_in_inch = '5''8"';
names of the players refers to PlayerName; Avangard Omsk refers to TEAM = 'Avangard Omsk'; playoffs refers to GAMETYPE = 'Playoffs'; 2000-2001 season refers to SEASON = '2000-2001';
weight in kilograms refers to weight_in_kg; longest time on ice in the player's first 7 years of NHL career refers to MAX(sum_7yr_TOI);
players refers to PlayerName; weigh 120 kg refers to weight_in_kg = 120;
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
List the names of all players in team Avangard Omsk in season 2000-2001.
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
USA refers to nation = 'USA' ; players refers to PlayerName; lightest weight refers to MIN(weight_in_lbs);
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
goals scored refers to G; Calgary Hitmen refers to TEAM = 'Calgary Hitmen'; percentage = MULTIPLY(DIVIDE(SUM(G WHERE PlayerName = 'Ian Schultz'), SUM(G)), 100); 2007-2008 season refers to SEASON = '2007-2008';
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Russia' WHERE height_in_cm < 200), COUNT(ELITEID)), 100); Russian refers to nation = 'Russia'; players refers to PlayerName; height of under 200 inch refers to height_in_cm < 200;
difference = SUBTRACT(SUM(G WHERE GAMETYPE = 'Regular Season'), SUM(G WHERE GAMETYPE = 'Playoffs') WHERE SEASON = '1998-1999'); number of goals scored refers to G; regular season refers to GAMETYPE = 'Regular Season'; playoffs refers to GAMETYPE = 'Playoffs'; 1998-1999 season refers to SEASON = '1998-1999';
Which team has the most Swedish?
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';
heaviest player refers to MAX(weight_in_lb); drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
heigh in inches refers to height_in_inch;
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
USA refers to nation = 'USA' ; players refers to PlayerName; lightest weight refers to MIN(weight_in_lbs);
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
drafted by Anaheim Ducks refers to overallby = 'Anaheim Ducks'; in 2008 refers to draftyear = 2008; played for U.S. National U18 Team refers to TEAM = 'U.S. National U18 Team';
Who among the players drafted by Arizona Coyotes in 2000 has committed the highest rule violations?
who refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes'; committed the highest rule violations refers to MAX(PIM); in 2000 refers to draftyear = 2000;
tallest player refers to MAX(height_in_cm);
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
type of game refers to GAMETYPE;
FALSE;
playoffs refers to GAMETYPE = 'Playoffs';
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
weigh in kilograms refers to weight_in_kg;
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
Among all players drafted by the Toronto Maple Leafs, identify the percentage who are from Eastern Europe.
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; percentage = MULTIPLY(DIVIDE(SUM(nation = 'Eastern Europe'), COUNT(ELITEID) WHERE overallby = 'Toronto Maple Leafs'), 100); from Eastern Europe refers to nation in ('Belarus', 'Bulgaria', 'Czech Republic', 'Hungary', 'Moldova', 'Poland', 'Romania', 'Slovakia', 'Ukraine'); countries in a continent can be identified by referring to https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent;
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
players refers to PlayerName; weigh 120 kg refers to weight_in_kg = 120;
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
FALSE;
FALSE;
drafted by Anaheim Ducks refers to overallby = 'Anaheim Ducks'; in 2008 refers to draftyear = 2008; played for U.S. National U18 Team refers to TEAM = 'U.S. National U18 Team';
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
Who is the youngest player to have played during the 1997-1998 season for OHL League?
youngest player refers to MAX(birthdate); 1997-1998 season refers to SEASON = '1997-1998'; OHL league refers to LEAGUE = 'OHL';
playoffs refers to GAMETYPE = 'Playoffs';
born in 1980 refers to birthyear = 1980; weigh 185 in pounds refers to weight_in_lbs = 185;
average = AVG(height_in_cm); players refers to PlayerName; position of defense refers to position_info = 'D' ;
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
who refers to PlayerName; heaviest weight refers to MAX(weight_in_kg);
heigh in inches refers to height_in_inch;
USA refers to nation = 'USA' ; players refers to PlayerName; lightest weight refers to MIN(weight_in_lbs);
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
How many players who were drafted by the Toronto Maple Leafs have played over 300 games in their first 7 years of the NHL career?
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
FALSE;
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
who refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes'; committed the highest rule violations refers to MAX(PIM); in 2000 refers to draftyear = 2000;
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
name of players refers to PlayerName; height of 5'8" refers to height_in_inch = '5''8"';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
Identify the name and position of the player who has committed the most rule violations.
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
USA refers to nation = 'USA' ; players refers to PlayerName; lightest weight refers to MIN(weight_in_lbs);
OHL league refers to LEAGUE = 'OHL'; who refers to PlayerName; regular season refers to GAMETYPE = 'Regular Season'; most number of assist refers to MAX(A); 2007-2008 season refers to SEASON = '2007-2008';
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Russia' WHERE height_in_cm < 200), COUNT(ELITEID)), 100); Russian refers to nation = 'Russia'; players refers to PlayerName; height of under 200 inch refers to height_in_cm < 200;
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
names of the players refers to PlayerName; Avangard Omsk refers to TEAM = 'Avangard Omsk'; playoffs refers to GAMETYPE = 'Playoffs'; 2000-2001 season refers to SEASON = '2000-2001';
difference = SUBTRACT(SUM(G WHERE GAMETYPE = 'Regular Season'), SUM(G WHERE GAMETYPE = 'Playoffs') WHERE SEASON = '1998-1999'); number of goals scored refers to G; regular season refers to GAMETYPE = 'Regular Season'; playoffs refers to GAMETYPE = 'Playoffs'; 1998-1999 season refers to SEASON = '1998-1999';
weigh more than 90 kg refers to weight_in_kg > 90;
What is the percentage of Swedish players in playoffs games in the 1997 - 2000 season?
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
FALSE;
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
heigh in inches refers to height_in_inch;
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
weight in kilograms refers to weight_in_kg; longest time on ice in the player's first 7 years of NHL career refers to MAX(sum_7yr_TOI);
right-shooted refers to shoots = 'R'; weigh over 90 kg refers to weight_in_kg > 90;
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
1997-1998 season refers to SEASON = '1997-1998';
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Russia' WHERE height_in_cm < 200), COUNT(ELITEID)), 100); Russian refers to nation = 'Russia'; players refers to PlayerName; height of under 200 inch refers to height_in_cm < 200;
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
List the names of all players from Avangard Omsk that have played for playoffs in season 2000-2001.
names of the players refers to PlayerName; Avangard Omsk refers to TEAM = 'Avangard Omsk'; playoffs refers to GAMETYPE = 'Playoffs'; 2000-2001 season refers to SEASON = '2000-2001';
committed the highest rule violations or penalty minutes refers to MAX(PIM); 2000-2001 season refers to SEASON = '2000-2001'
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
tallest refers to MAX(height_in_cm); player refers to PlayerName; team USA U20 refers to TEAM = 'USA U20';
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
who refers to PlayerName; heaviest weight refers to MAX(weight_in_kg);
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
type of game refers to GAMETYPE;
How many teams did the heaviest player drafted by Arizona Coyotes have played for?
heaviest player refers to MAX(weight_in_lb); drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
committed the highest rule violations or penalty minutes refers to MAX(PIM); 2000-2001 season refers to SEASON = '2000-2001'
names of the players refers to PlayerName; team Avangard Omsk refers to TEAM = 'Avangard Omsk'; 2000-2001 season refers to SEASON = '2000-2001';
drafted by Anaheim Ducks refers to overallby = 'Anaheim Ducks'; in 2008 refers to draftyear = 2008; played for U.S. National U18 Team refers to TEAM = 'U.S. National U18 Team';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
type of game refers to GAMETYPE;
youngest player refers to MAX(birthdate); 1997-1998 season refers to SEASON = '1997-1998'; OHL league refers to LEAGUE = 'OHL';
oldest player refers to MIN(birthdate); Avangard Omsk refers to TEAM = 'Avangard Omsk'; regular season refers to GAMETYPE = 'Regular Season'; 2000-2001 season refers to SEASON = '2000-2001';
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
1997-1998 season refers to SEASON = '1997-1998';
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Russia' WHERE height_in_cm < 200), COUNT(ELITEID)), 100); Russian refers to nation = 'Russia'; players refers to PlayerName; height of under 200 inch refers to height_in_cm < 200;
Who among the players in season 2000-2001 has committed the highest rule violations or penalty minutes?
committed the highest rule violations or penalty minutes refers to MAX(PIM); 2000-2001 season refers to SEASON = '2000-2001'
difference = SUBTRACT(SUM(G WHERE GAMETYPE = 'Regular Season'), SUM(G WHERE GAMETYPE = 'Playoffs') WHERE SEASON = '1998-1999'); number of goals scored refers to G; regular season refers to GAMETYPE = 'Regular Season'; playoffs refers to GAMETYPE = 'Playoffs'; 1998-1999 season refers to SEASON = '1998-1999';
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
oldest player refers to MIN(birthdate); Avangard Omsk refers to TEAM = 'Avangard Omsk'; regular season refers to GAMETYPE = 'Regular Season'; 2000-2001 season refers to SEASON = '2000-2001';
playoffs refers to GAMETYPE = 'Playoffs';
weigh in kilograms refers to weight_in_kg;
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
who refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes'; committed the highest rule violations refers to MAX(PIM); in 2000 refers to draftyear = 2000;
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
born in 1980 refers to birthyear = 1980; weigh 185 in pounds refers to weight_in_lbs = 185;
What is the birthplace of Aaron Gagnon?
FALSE;
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
name of players refers to PlayerName; height of 5'8" refers to height_in_inch = '5''8"';
right-shooted refers to shoots = 'R'; weigh over 90 kg refers to weight_in_kg > 90;
weight in kilograms refers to weight_in_kg; highest number of goal differential of all time refers to MAX(PLUSMINUS);
names of the players refers to PlayerName; Avangard Omsk refers to TEAM = 'Avangard Omsk'; playoffs refers to GAMETYPE = 'Playoffs'; 2000-2001 season refers to SEASON = '2000-2001';
name of the player refers to PlayerName; most goals refers to MAX(G); team Rimouski Oceanic refers to TEAM = 'Rimouski Oceanic'; playoff refers to GAMETYPE = 'Playoffs';
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
What is the weight in kilograms of the player with the highest number of goal differential of all time?
weight in kilograms refers to weight_in_kg; highest number of goal differential of all time refers to MAX(PLUSMINUS);
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
born in 1980 refers to birthyear = 1980; weigh 185 in pounds refers to weight_in_lbs = 185;
OHL league refers to LEAGUE = 'OHL'; who refers to PlayerName; regular season refers to GAMETYPE = 'Regular Season'; most number of assist refers to MAX(A); 2007-2008 season refers to SEASON = '2007-2008';
played the most game plays refers to MAX(GP); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
FALSE;
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
height in inches refers to height_in_inch; players refers to PlayerName; team Oshawa Generals refers to TEAM = 'Oshawa Generals';
Who has the heaviest weight?
who refers to PlayerName; heaviest weight refers to MAX(weight_in_kg);
players refers to PlayerName; weigh 120 kg refers to weight_in_kg = 120;
goals scored refers to G; Calgary Hitmen refers to TEAM = 'Calgary Hitmen'; percentage = MULTIPLY(DIVIDE(SUM(G WHERE PlayerName = 'Ian Schultz'), SUM(G)), 100); 2007-2008 season refers to SEASON = '2007-2008';
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
total NHL games played in their first 7 years of NHL career is no less than 500 refers to sum_7yr_GP > 500; name of the player refers to PlayerName; committed the most rule violations refers to MAX(PIM);
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
weigh in kilograms refers to weight_in_kg;
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
heigh in inches refers to height_in_inch;
How much taller is David Bornhammar than Pauli Levokari in centimeters?
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
FALSE;
youngest player refers to MAX(birthdate); 1997-1998 season refers to SEASON = '1997-1998'; OHL league refers to LEAGUE = 'OHL';
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Sweden'), COUNT(ELITEID) WHERE SEASON = '1997-2000'), 100); Swedish refers to nation = 'Sweden'; players refers to PlayerName; playoffs games refers to GAMETYPE = 'Playoffs'; 1997-2000 season refers to 3 consecutive SEASONs : '1997-1998', '1998-1999', '1999-2000';
tallest player refers to MAX(height_in_cm);
tallest refers to MAX(height_in_cm); player refers to PlayerName; team USA U20 refers to TEAM = 'USA U20';
weight in kilograms refers to weight_in_kg; highest number of goal differential of all time refers to MAX(PLUSMINUS);
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; percentage = MULTIPLY(DIVIDE(SUM(nation = 'Eastern Europe'), COUNT(ELITEID) WHERE overallby = 'Toronto Maple Leafs'), 100); from Eastern Europe refers to nation in ('Belarus', 'Bulgaria', 'Czech Republic', 'Hungary', 'Moldova', 'Poland', 'Romania', 'Slovakia', 'Ukraine'); countries in a continent can be identified by referring to https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent;
oldest player refers to MIN(birthdate); Avangard Omsk refers to TEAM = 'Avangard Omsk'; regular season refers to GAMETYPE = 'Regular Season'; 2000-2001 season refers to SEASON = '2000-2001';
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
name of players refers to PlayerName; height of 5'8" refers to height_in_inch = '5''8"';
Who has played the most game plays in the 2000-2001 season of the International league?
played the most game plays refers to MAX(GP); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; played over 300 games in their first 7 years of the NHL career refers to sum_7yr_GP > 300;
tallest refers to MAX(height_in_cm); player refers to PlayerName; team USA U20 refers to TEAM = 'USA U20';
goals scored refers to G; Calgary Hitmen refers to TEAM = 'Calgary Hitmen'; percentage = MULTIPLY(DIVIDE(SUM(G WHERE PlayerName = 'Ian Schultz'), SUM(G)), 100); 2007-2008 season refers to SEASON = '2007-2008';
how much taller = SUBTRACT(SUM(height_in_cm WHERE PlayerName = 'David Bornhammar'), SUM(height_in_cm WHERE PlayerName = 'Pauli Levokari')); height in centimeters refers to height_in_cm;
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
weigh in kilograms refers to weight_in_kg;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Russia' WHERE height_in_cm < 200), COUNT(ELITEID)), 100); Russian refers to nation = 'Russia'; players refers to PlayerName; height of under 200 inch refers to height_in_cm < 200;
name of players refers to PlayerName; height of 5'8" refers to height_in_inch = '5''8"';
heaviest player refers to MAX(weight_in_lb); drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
How much does David Bornhammar weigh in kilograms?
weigh in kilograms refers to weight_in_kg;
name of the player refers to PlayerName; playoffs refers to GAMETYPE = 'Playoffs'; highest points refers to MAX(P); 2006-2007 season refers to SEASON = '2006-2007'; SuperElit league refers to LEAGUE = 'SuperElit';
youngest player refers to MAX(birthdate); 1997-1998 season refers to SEASON = '1997-1998'; OHL league refers to LEAGUE = 'OHL';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; percentage = MULTIPLY(DIVIDE(SUM(nation = 'Eastern Europe'), COUNT(ELITEID) WHERE overallby = 'Toronto Maple Leafs'), 100); from Eastern Europe refers to nation in ('Belarus', 'Bulgaria', 'Czech Republic', 'Hungary', 'Moldova', 'Poland', 'Romania', 'Slovakia', 'Ukraine'); countries in a continent can be identified by referring to https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent;
name of players refers to PlayerName; height of 5'8" refers to height_in_inch = '5''8"';
weigh more than 90 kg refers to weight_in_kg > 90;
name of the player refers to PlayerName; most NHL points in draft year refers to MAX(P);
right-shooted refers to shoots = 'R'; weigh over 90 kg refers to weight_in_kg > 90;
percentage = MULTIPLY(DIVIDE(SUM(nation = 'Russia' WHERE height_in_cm < 200), COUNT(ELITEID)), 100); Russian refers to nation = 'Russia'; players refers to PlayerName; height of under 200 inch refers to height_in_cm < 200;
Swedish refers to nation = 'Sweden'; team with the most Swedish refers to MAX(TEAM WHERE nation = 'Sweden');
born in 1980 refers to birthyear = 1980; weigh 185 in pounds refers to weight_in_lbs = 185;
What is the weight of the player with the longest time on ice in the player’s first 7 years of NHL career in kilograms?
weight in kilograms refers to weight_in_kg; longest time on ice in the player's first 7 years of NHL career refers to MAX(sum_7yr_TOI);
average = AVG(height_in_cm); players refers to PlayerName; position of defense refers to position_info = 'D' ;
name of the player refers to PlayerName; position of the player refers to position_info; committed the most rule violations refers to MAX(PIM);
FALSE;
penalty minutes refers to PIM; Ak Bars Kazan refers to TEAM = 'Ak Bars Kazan'; percentage = MULTIPLY(DIVIDE(SUM(PIM WHERE PlayerName = 'Yevgeni Muratov'), SUM(PIM)), 100.0); 1999-2000 season refers to SEASON = '1999-2000';
weigh in kilograms refers to weight_in_kg;
type of game refers to GAMETYPE;
tallest player refers to MAX(height_in_cm);
average weight in pounds = AVG(weight_in_lbs); weight in pounds refers to weight_in_lbs; players refers to PlayerName; drafted by Arizona Coyotes refers to overallby = 'Arizona Coyotes';
playoffs refers to GAMETYPE = 'Playoffs';
goals scored refers to G; Calgary Hitmen refers to TEAM = 'Calgary Hitmen'; percentage = MULTIPLY(DIVIDE(SUM(G WHERE PlayerName = 'Ian Schultz'), SUM(G)), 100); 2007-2008 season refers to SEASON = '2007-2008';
Who is the oldest player who played for Avangard Omsk during the regular season in 2000-2001?
oldest player refers to MIN(birthdate); Avangard Omsk refers to TEAM = 'Avangard Omsk'; regular season refers to GAMETYPE = 'Regular Season'; 2000-2001 season refers to SEASON = '2000-2001';
born in 1982 refers to birthyear = 1982; height above 182cm refers to height_in_cm > 182 ;
height of over 6'2" inches refers to height_in_inch > '6''2"'; born in Sweden refers to nation = 'Sweden' ;
goals scored refers to G; Calgary Hitmen refers to TEAM = 'Calgary Hitmen'; percentage = MULTIPLY(DIVIDE(SUM(G WHERE PlayerName = 'Ian Schultz'), SUM(G)), 100); 2007-2008 season refers to SEASON = '2007-2008';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; percentage = MULTIPLY(DIVIDE(SUM(nation = 'Eastern Europe'), COUNT(ELITEID) WHERE overallby = 'Toronto Maple Leafs'), 100); from Eastern Europe refers to nation in ('Belarus', 'Bulgaria', 'Czech Republic', 'Hungary', 'Moldova', 'Poland', 'Romania', 'Slovakia', 'Ukraine'); countries in a continent can be identified by referring to https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent;
most valuable player refers to MAX(P); 2000-2001 season refers to SEASON = '2000-2001'; International league refers to LEAGUE = 'International';
players refers to PlayerName; drafted by the Toronto Maple Leafs refers to overallby = 'Toronto Maple Leafs'; highest prospects for the draft refers to MAX(CSS_rank);
FALSE;
USA refers to nation = 'USA' ; players refers to PlayerName; lightest weight refers to MIN(weight_in_lbs);
names of the players refers to PlayerName; Avangard Omsk refers to TEAM = 'Avangard Omsk'; playoffs refers to GAMETYPE = 'Playoffs'; 2000-2001 season refers to SEASON = '2000-2001';
right-shooted players refers to shoots = 'R'; height of 5'7'' refers to height_in_inch = '5''7"';