question
stringlengths
24
83
sql_query
stringlengths
55
102
What is the total points scored by LeBron James?
SELECT SUM(points) FROM players WHERE player_name = 'LeBron James';
Who has the highest rebounds per game?
SELECT player_name FROM players ORDER BY rebounds_per_game DESC LIMIT 1;
Which team has the highest field goal percentage?
SELECT team_name FROM teams ORDER BY field_goal_percentage DESC LIMIT 1;
Who has the most assists?
SELECT player_name FROM players ORDER BY assists DESC LIMIT 1;
What is the average points per game for Stephen Curry?
SELECT AVG(points_per_game) FROM players WHERE player_name = 'Stephen Curry';
Which team has the lowest turnovers?
SELECT team_name FROM teams ORDER BY turnovers ASC LIMIT 1;
Who has the highest free throw percentage?
SELECT player_name FROM players ORDER BY free_throw_percentage DESC LIMIT 1;
What is the total blocks for Anthony Davis?
SELECT SUM(blocks) FROM players WHERE player_name = 'Anthony Davis';
Which player has the highest three-point percentage?
SELECT player_name FROM players ORDER BY three_point_percentage DESC LIMIT 1;
Which team has the highest assist-to-turnover ratio?
SELECT team_name FROM teams ORDER BY assist_to_turnover_ratio DESC LIMIT 1;
What is the total steals for Kevin Durant?
SELECT SUM(steals) FROM players WHERE player_name = 'Kevin Durant';
Who has the highest field goal percentage?
SELECT player_name FROM players ORDER BY field_goal_percentage DESC LIMIT 1;
Which player has the highest player efficiency rating?
SELECT player_name FROM players ORDER BY player_efficiency_rating DESC LIMIT 1;
Which team has the most wins?
SELECT team_name FROM teams ORDER BY wins DESC LIMIT 1;
Who has the highest minutes per game?
SELECT player_name FROM players ORDER BY minutes_per_game DESC LIMIT 1;
Which team has the most three-pointers made?
SELECT team_name FROM teams ORDER BY three_pointers_made DESC LIMIT 1;
Who has the highest field goal percentage among guards?
SELECT player_name FROM players WHERE position = 'Guard' ORDER BY field_goal_percentage DESC LIMIT 1;
Which team has the highest points per game average?
SELECT team_name FROM teams ORDER BY points_per_game DESC LIMIT 1;
Which player has the highest usage rate?
SELECT player_name FROM players ORDER BY usage_rate DESC LIMIT 1;
Which team has the highest offensive rating?
SELECT team_name FROM teams ORDER BY offensive_rating DESC LIMIT 1;
Who has the most blocks per game?
SELECT player_name FROM players ORDER BY blocks_per_game DESC LIMIT 1;
Which team has the highest effective field goal percentage?
SELECT team_name FROM teams ORDER BY effective_field_goal_percentage DESC LIMIT 1;
Who has the highest free throw percentage among centers?
SELECT player_name FROM players WHERE position = 'Center' ORDER BY free_throw_percentage DESC LIMIT 1;
Which team has the highest rebounding percentage?
SELECT team_name FROM teams ORDER BY rebounding_percentage DESC LIMIT 1;
What is the total rebounds for Kevin Durant?
SELECT SUM(REB) FROM players WHERE PLAYER_NAME = 'Kevin Durant';
Who has the highest field goal percentage?
SELECT PLAYER_NAME FROM players ORDER BY FG_PCT DESC LIMIT 1;
What is the average assists per game for Chris Paul?
SELECT AVG(AST) FROM players WHERE PLAYER_NAME = 'Chris Paul';
Which team has the highest three-point percentage?
SELECT TEAM_NAME FROM teams ORDER BY FG3_PCT DESC LIMIT 1;
Who has the most steals?
SELECT PLAYER_NAME FROM players ORDER BY STL DESC LIMIT 1;
What is the total blocks for Rudy Gobert?
SELECT SUM(BLK) FROM players WHEREPLAYER_NAME = 'Rudy Gobert';
What is the average minutes played per game for James Harden?
SELECT AVG(MIN) FROM players WHERE PLAYER_NAME = 'James Harden';
Which team has the highest free throw percentage?
SELECT TEAM_NAME FROM teams ORDER BY FT_PCT DESC LIMIT 1;
Who has the highest plus-minus rating?
SELECT PLAYER_NAME FROM players ORDER BY PLUS_MINUS DESC LIMIT 1;
What is the total steals for Ben Simmons?
SELECT SUM(STL) FROM players WHERE PLAYER_NAME = 'Ben Simmons';
Which player has the highest player efficiency rating?
SELECT PLAYER_NAME FROM players ORDER BY NBA_FANTASY_PTS DESC LIMIT 1;
Which team has the highest win percentage?
SELECT TEAM_NAME FROM teams ORDER BY W_PCT DESC LIMIT 1;
What is the total points scored by Kevin Durant?
SELECT SUM(PTS) FROM players WHERE PLAYER_NAME = 'Kevin Durant';
Who has the highest field goal percentage among players with at least 200 attempts?
SELECT PLAYER_NAME FROM players WHERE FGA >= 200 ORDER BY FG_PCT DESC LIMIT 1;
What is the average rebounds per game for Giannis Antetokounmpo?
SELECT AVG(REB) FROM players WHERE PLAYER_NAME = 'Giannis Antetokounmpo';
Which team has the highest steals per game?
SELECT TEAM_NAME FROM teams ORDER BY STL/(GP*1.0) DESC LIMIT 1;
Who has the highest blocks per game?
SELECT PLAYER_NAME FROM players ORDER BY BLK DESC LIMIT 1;
What is the total three-pointers made by Stephen Curry?
SELECT SUM(FG3M) FROM players WHERE PLAYER_NAME = 'Stephen Curry';
Which player has the highest field goal percentage among guards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'G' ORDER BY FG_PCT DESC LIMIT 1;
What is the average steals per game for Kawhi Leonard?
SELECT AVG(STL) FROM players WHERE PLAYER_NAME = 'Kawhi Leonard';
Which team has the highest blocks per game?
SELECT TEAM_NAME FROM teams ORDER BY BLK/(GP*1.0) DESC LIMIT 1;
Who has the highest player efficiency rating among forwards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'F' ORDER BY NBA_FANTASY_PTS DESC LIMIT 1;
What is the total assists for Russell Westbrook?
SELECT SUM(AST) FROM players WHERE PLAYER_NAME = 'Russell Westbrook';
Who has the highest field goal percentage among centers?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'C' ORDER BY FG_PCT DESC LIMIT 1;
What is the average blocks per game for Joel Embiid?
SELECT AVG(BLK) FROM players WHERE PLAYER_NAME = 'Joel Embiid';
Which team has the highest points per game?
SELECT TEAM_NAME FROM teams ORDER BY PTS/(GP*1.0) DESC LIMIT 1;
Who has the highest steals per game?
SELECT PLAYER_NAME FROM players ORDER BY STL/(GP*1.0) DESC LIMIT 1;
What is the total free throws made by Damian Lillard?
SELECT SUM(FTM) FROM players WHERE PLAYER_NAME = 'Damian Lillard';
Which player has the highest three-point percentage among forwards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'F' ORDER BY FG3_PCT DESC LIMIT 1;
What is the average steals per game for Ben Simmons?
SELECT AVG(STL) FROM players WHERE PLAYER_NAME = 'Ben Simmons';
Which team has the highest blocks per game?
SELECT TEAM_NAME FROM teams ORDER BY BLK/(GP*1.0) DESC LIMIT 1;
Who has the highest player efficiency rating among guards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'G' ORDER BY NBA_FANTASY_PTS DESC LIMIT 1;
What is the total assists for Russell Westbrook?
SELECT SUM(AST) FROM players WHERE PLAYER_NAME = 'Russell Westbrook';
What is the total points scored by Luka Doncic?
SELECT SUM(PTS) FROM players WHERE PLAYER_NAME = 'Luka Doncic';
Who has the highest field goal percentage among guards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'G' ORDER BY FG_PCT DESC LIMIT 1;
What is the average rebounds per game for Nikola Jokic?
SELECT AVG(REB) FROM players WHERE PLAYER_NAME = 'Nikola Jokic';
Which team has the highest points per game?
SELECT TEAM_NAME FROM teams ORDER BY PTS/(GP*1.0) DESC LIMIT 1;
Who has the highest steals per game?
SELECT PLAYER_NAME FROM players ORDER BY STL/(GP*1.0) DESC LIMIT 1;
What is the total free throws made by Kevin Durant?
SELECT SUM(FTM) FROM players WHERE PLAYER_NAME = 'Kevin Durant';
Which player has the highest three-point percentage among forwards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'F' ORDER BY FG3_PCT DESC LIMIT 1;
What is the average steals per game for Ben Simmons?
SELECT AVG(STL) FROM players WHERE PLAYER_NAME = 'Ben Simmons';
Which team has the highest blocks per game?
SELECT TEAM_NAME FROM teams ORDER BY BLK/(GP*1.0) DESC LIMIT 1;
Who has the highest player efficiency rating among guards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'G' ORDER BY NBA_FANTASY_PTS DESC LIMIT 1;
What is the total rebounds for Anthony Davis?
SELECT SUM(REB) FROM players WHERE PLAYER_NAME = 'Anthony Davis';
Who has the highest field goal percentage among forwards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'F' ORDER BY FG_PCT DESC LIMIT 1;
What is the average assists per game for Luka Doncic?
SELECT AVG(AST) FROM players WHERE PLAYER_NAME = 'Luka Doncic';
Which team has the highest three-point percentage?
SELECT TEAM_NAME FROM teams ORDER BY FG3_PCT DESC LIMIT 1;
Who has the most blocks?
SELECT PLAYER_NAME FROM players ORDER BY BLK DESC LIMIT 1;
What is the total field goals made by Stephen Curry?
SELECT SUM(FGM) FROM players WHERE PLAYER_NAME = 'Stephen Curry';
Which player has the highest free throw percentage among guards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'G' ORDER BY FT_PCT DESC LIMIT 1;
What is the average turnovers per game for LeBron James?
SELECT AVG(TOV) FROM players WHERE PLAYER_NAME = 'LeBron James';
Which team has the highest steals per game?
SELECT TEAM_NAME FROM teams ORDER BY STL/(GP*1.0) DESC LIMIT 1;
Who has the highest player efficiency rating among centers?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'C' ORDER BY NBA_FANTASY_PTS DESC LIMIT 1;
What is the total rebounds for Giannis Antetokounmpo?
SELECT SUM(REB) FROM players WHERE PLAYER_NAME = 'Giannis Antetokounmpo';
Who has the highest field goal percentage among PGs?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'PG' ORDER BY FG_PCT DESC LIMIT 1;
What is the average assists per game for Ja Morant?
SELECT AVG(AST) FROM players WHERE PLAYER_NAME = 'Ja Morant';
Which player has the highest three-point percentage?
SELECT PLAYER_NAME FROM players ORDER BY FG3_PCT DESC LIMIT 1;
What is the total blocks for Jared Vanderbilt?
SELECT SUM(BLK) FROM players WHERE PLAYER_NAME = 'Jared Vanderbilt';
Which player has the highest free throw percentage among forwards?
SELECT PLAYER_NAME FROM players WHERE POSITION = 'F' ORDER BY FT_PCT DESC LIMIT 1;
What is the average turnovers per game for James Harden?
SELECT AVG(TOV) FROM players WHERE PLAYER_NAME = 'James Harden';