question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Name the album for years after 2007 | CREATE TABLE table_name_45 (album VARCHAR, year INTEGER) | SELECT album FROM table_name_45 WHERE year > 2007 | ### Context: CREATE TABLE table_name_45 (album VARCHAR, year INTEGER) ### Question: Name the album for years after 2007 ### Answer: SELECT album FROM table_name_45 WHERE year > 2007 |
What was the score on october 17, 2007? | CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_33 WHERE date = "october 17, 2007" | ### Context: CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR) ### Question: What was the score on october 17, 2007? ### Answer: SELECT score FROM table_name_33 WHERE date = "october 17, 2007" |
What was the competition for score of 3-0 | CREATE TABLE table_name_71 (competition VARCHAR, score VARCHAR) | SELECT competition FROM table_name_71 WHERE score = "3-0" | ### Context: CREATE TABLE table_name_71 (competition VARCHAR, score VARCHAR) ### Question: What was the competition for score of 3-0 ### Answer: SELECT competition FROM table_name_71 WHERE score = "3-0" |
I want the date for nihat kahveci | CREATE TABLE table_name_93 (date VARCHAR, turkey_scorers VARCHAR) | SELECT date FROM table_name_93 WHERE turkey_scorers = "nihat kahveci" | ### Context: CREATE TABLE table_name_93 (date VARCHAR, turkey_scorers VARCHAR) ### Question: I want the date for nihat kahveci ### Answer: SELECT date FROM table_name_93 WHERE turkey_scorers = "nihat kahveci" |
What is the smallest pick with a Reg GP less than 0? | CREATE TABLE table_name_8 (pick__number INTEGER, reg_gp INTEGER) | SELECT MIN(pick__number) FROM table_name_8 WHERE reg_gp < 0 | ### Context: CREATE TABLE table_name_8 (pick__number INTEGER, reg_gp INTEGER) ### Question: What is the smallest pick with a Reg GP less than 0? ### Answer: SELECT MIN(pick__number) FROM table_name_8 WHERE reg_gp < 0 |
What is the total of pick numbers with a Reg GP larger than 0? | CREATE TABLE table_name_80 (pick__number VARCHAR, reg_gp INTEGER) | SELECT COUNT(pick__number) FROM table_name_80 WHERE reg_gp > 0 | ### Context: CREATE TABLE table_name_80 (pick__number VARCHAR, reg_gp INTEGER) ### Question: What is the total of pick numbers with a Reg GP larger than 0? ### Answer: SELECT COUNT(pick__number) FROM table_name_80 WHERE reg_gp > 0 |
What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud? | CREATE TABLE table_name_85 (points INTEGER, faults VARCHAR, rider VARCHAR) | SELECT SUM(points) FROM table_name_85 WHERE faults = "refusal" AND rider = "h.r.h. prince abdullah al-soud" | ### Context: CREATE TABLE table_name_85 (points INTEGER, faults VARCHAR, rider VARCHAR) ### Question: What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud? ### Answer: SELECT SUM(points) FROM table_name_85 WHERE faults = "refusal" AND rider = "h.r.h. prince abdullah al-soud" |
What is the total points when the horse is Chippison? | CREATE TABLE table_name_96 (points VARCHAR, horse VARCHAR) | SELECT COUNT(points) FROM table_name_96 WHERE horse = "chippison" | ### Context: CREATE TABLE table_name_96 (points VARCHAR, horse VARCHAR) ### Question: What is the total points when the horse is Chippison? ### Answer: SELECT COUNT(points) FROM table_name_96 WHERE horse = "chippison" |
What is the total time (s) for the horse Pinot Grigio? | CREATE TABLE table_name_53 (total_time___s__ VARCHAR, horse VARCHAR) | SELECT total_time___s__ FROM table_name_53 WHERE horse = "pinot grigio" | ### Context: CREATE TABLE table_name_53 (total_time___s__ VARCHAR, horse VARCHAR) ### Question: What is the total time (s) for the horse Pinot Grigio? ### Answer: SELECT total_time___s__ FROM table_name_53 WHERE horse = "pinot grigio" |
What is the average amount of points when the time (s) is 81.78? | CREATE TABLE table_name_93 (points INTEGER, time___s__ VARCHAR) | SELECT AVG(points) FROM table_name_93 WHERE time___s__ = "81.78" | ### Context: CREATE TABLE table_name_93 (points INTEGER, time___s__ VARCHAR) ### Question: What is the average amount of points when the time (s) is 81.78? ### Answer: SELECT AVG(points) FROM table_name_93 WHERE time___s__ = "81.78" |
What is the position of the player from Glades Day School? | CREATE TABLE table_name_59 (position VARCHAR, school VARCHAR) | SELECT position FROM table_name_59 WHERE school = "glades day school" | ### Context: CREATE TABLE table_name_59 (position VARCHAR, school VARCHAR) ### Question: What is the position of the player from Glades Day School? ### Answer: SELECT position FROM table_name_59 WHERE school = "glades day school" |
What is the position of the player who went to college of notre dame? | CREATE TABLE table_name_78 (position VARCHAR, college VARCHAR) | SELECT position FROM table_name_78 WHERE college = "notre dame" | ### Context: CREATE TABLE table_name_78 (position VARCHAR, college VARCHAR) ### Question: What is the position of the player who went to college of notre dame? ### Answer: SELECT position FROM table_name_78 WHERE college = "notre dame" |
What is the school of the player who went to the college of michigan and originally comes from Wheaton, Illinois? | CREATE TABLE table_name_2 (school VARCHAR, college VARCHAR, hometown VARCHAR) | SELECT school FROM table_name_2 WHERE college = "michigan" AND hometown = "wheaton, illinois" | ### Context: CREATE TABLE table_name_2 (school VARCHAR, college VARCHAR, hometown VARCHAR) ### Question: What is the school of the player who went to the college of michigan and originally comes from Wheaton, Illinois? ### Answer: SELECT school FROM table_name_2 WHERE college = "michigan" AND hometown = "wheaton, illinois" |
What Chassis was driven by Otto Stuppacher? | CREATE TABLE table_name_12 (chassis VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_12 WHERE driver = "otto stuppacher" | ### Context: CREATE TABLE table_name_12 (chassis VARCHAR, driver VARCHAR) ### Question: What Chassis was driven by Otto Stuppacher? ### Answer: SELECT chassis FROM table_name_12 WHERE driver = "otto stuppacher" |
Who drove the car with the n175 chassis in round 13? | CREATE TABLE table_name_1 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR) | SELECT driver FROM table_name_1 WHERE chassis = "n175" AND rounds = "13" | ### Context: CREATE TABLE table_name_1 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR) ### Question: Who drove the car with the n175 chassis in round 13? ### Answer: SELECT driver FROM table_name_1 WHERE chassis = "n175" AND rounds = "13" |
What chassis did John Watson drive? | CREATE TABLE table_name_4 (chassis VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_4 WHERE driver = "john watson" | ### Context: CREATE TABLE table_name_4 (chassis VARCHAR, driver VARCHAR) ### Question: What chassis did John Watson drive? ### Answer: SELECT chassis FROM table_name_4 WHERE driver = "john watson" |
what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″? | CREATE TABLE table_name_53 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, declination___j2000__ VARCHAR) | SELECT right_ascension___j2000__ FROM table_name_53 WHERE constellation = "sextans" AND declination___j2000__ = "°28′01″" | ### Context: CREATE TABLE table_name_53 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, declination___j2000__ VARCHAR) ### Question: what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″? ### Answer: SELECT right_ascension___j2000__ FROM table_name_53 WHERE constellation = "sextans" AND declination___j2000__ = "°28′01″" |
what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s? | CREATE TABLE table_name_10 (constellation VARCHAR, right_ascension___j2000__ VARCHAR) | SELECT constellation FROM table_name_10 WHERE right_ascension___j2000__ = "10h18m58.4s" | ### Context: CREATE TABLE table_name_10 (constellation VARCHAR, right_ascension___j2000__ VARCHAR) ### Question: what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s? ### Answer: SELECT constellation FROM table_name_10 WHERE right_ascension___j2000__ = "10h18m58.4s" |
what is the highest ngc number when the declination (j2000) is °25′26″? | CREATE TABLE table_name_51 (ngc_number INTEGER, declination___j2000__ VARCHAR) | SELECT MAX(ngc_number) FROM table_name_51 WHERE declination___j2000__ = "°25′26″" | ### Context: CREATE TABLE table_name_51 (ngc_number INTEGER, declination___j2000__ VARCHAR) ### Question: what is the highest ngc number when the declination (j2000) is °25′26″? ### Answer: SELECT MAX(ngc_number) FROM table_name_51 WHERE declination___j2000__ = "°25′26″" |
What is the score for Collingwood as the home team? | CREATE TABLE table_name_85 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_85 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_85 (home_team VARCHAR) ### Question: What is the score for Collingwood as the home team? ### Answer: SELECT home_team AS score FROM table_name_85 WHERE home_team = "collingwood" |
What did the home team score at Princes Park? | CREATE TABLE table_name_15 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_15 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_15 (home_team VARCHAR, venue VARCHAR) ### Question: What did the home team score at Princes Park? ### Answer: SELECT home_team AS score FROM table_name_15 WHERE venue = "princes park" |
What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879? | CREATE TABLE table_name_68 (population INTEGER, simplified VARCHAR, area VARCHAR) | SELECT SUM(population) FROM table_name_68 WHERE simplified = "上杭县" AND area < 2 OFFSET 879 | ### Context: CREATE TABLE table_name_68 (population INTEGER, simplified VARCHAR, area VARCHAR) ### Question: What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879? ### Answer: SELECT SUM(population) FROM table_name_68 WHERE simplified = "上杭县" AND area < 2 OFFSET 879 |
What's the total number of density for the place with a population over 393,390? | CREATE TABLE table_name_57 (density VARCHAR, population INTEGER) | SELECT COUNT(density) FROM table_name_57 WHERE population > 393 OFFSET 390 | ### Context: CREATE TABLE table_name_57 (density VARCHAR, population INTEGER) ### Question: What's the total number of density for the place with a population over 393,390? ### Answer: SELECT COUNT(density) FROM table_name_57 WHERE population > 393 OFFSET 390 |
What's the average area for the xinluo district? | CREATE TABLE table_name_20 (area INTEGER, english_name VARCHAR) | SELECT AVG(area) FROM table_name_20 WHERE english_name = "xinluo district" | ### Context: CREATE TABLE table_name_20 (area INTEGER, english_name VARCHAR) ### Question: What's the average area for the xinluo district? ### Answer: SELECT AVG(area) FROM table_name_20 WHERE english_name = "xinluo district" |
What was the attendance on July 30? | CREATE TABLE table_name_77 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_77 WHERE date = "july 30" | ### Context: CREATE TABLE table_name_77 (attendance INTEGER, date VARCHAR) ### Question: What was the attendance on July 30? ### Answer: SELECT AVG(attendance) FROM table_name_77 WHERE date = "july 30" |
How many Goals have a Result of 0 – 4? | CREATE TABLE table_name_26 (goals INTEGER, result VARCHAR) | SELECT AVG(goals) FROM table_name_26 WHERE result = "0 – 4" | ### Context: CREATE TABLE table_name_26 (goals INTEGER, result VARCHAR) ### Question: How many Goals have a Result of 0 – 4? ### Answer: SELECT AVG(goals) FROM table_name_26 WHERE result = "0 – 4" |
How many goals have a Result of 12 – 0? | CREATE TABLE table_name_33 (goals VARCHAR, result VARCHAR) | SELECT goals FROM table_name_33 WHERE result = "12 – 0" | ### Context: CREATE TABLE table_name_33 (goals VARCHAR, result VARCHAR) ### Question: How many goals have a Result of 12 – 0? ### Answer: SELECT goals FROM table_name_33 WHERE result = "12 – 0" |
Which Result has a Date of 9 october 2009? | CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_77 WHERE date = "9 october 2009" | ### Context: CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR) ### Question: Which Result has a Date of 9 october 2009? ### Answer: SELECT result FROM table_name_77 WHERE date = "9 october 2009" |
Which Goals have a Date of 7 february 2010? | CREATE TABLE table_name_45 (goals INTEGER, date VARCHAR) | SELECT MAX(goals) FROM table_name_45 WHERE date = "7 february 2010" | ### Context: CREATE TABLE table_name_45 (goals INTEGER, date VARCHAR) ### Question: Which Goals have a Date of 7 february 2010? ### Answer: SELECT MAX(goals) FROM table_name_45 WHERE date = "7 february 2010" |
What was the first year to have a Chassis of Jordan 193? | CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR) | SELECT MIN(year) FROM table_name_89 WHERE chassis = "jordan 193" | ### Context: CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR) ### Question: What was the first year to have a Chassis of Jordan 193? ### Answer: SELECT MIN(year) FROM table_name_89 WHERE chassis = "jordan 193" |
Which School's Mascot is Raiders? | CREATE TABLE table_name_28 (school VARCHAR, mascot VARCHAR) | SELECT school FROM table_name_28 WHERE mascot = "raiders" | ### Context: CREATE TABLE table_name_28 (school VARCHAR, mascot VARCHAR) ### Question: Which School's Mascot is Raiders? ### Answer: SELECT school FROM table_name_28 WHERE mascot = "raiders" |
What is North Valleys School Mascot? | CREATE TABLE table_name_51 (mascot VARCHAR, school VARCHAR) | SELECT mascot FROM table_name_51 WHERE school = "north valleys" | ### Context: CREATE TABLE table_name_51 (mascot VARCHAR, school VARCHAR) ### Question: What is North Valleys School Mascot? ### Answer: SELECT mascot FROM table_name_51 WHERE school = "north valleys" |
What is the Enrollment where Cougars is a Mascot? | CREATE TABLE table_name_66 (enrollment INTEGER, mascot VARCHAR) | SELECT SUM(enrollment) FROM table_name_66 WHERE mascot = "cougars" | ### Context: CREATE TABLE table_name_66 (enrollment INTEGER, mascot VARCHAR) ### Question: What is the Enrollment where Cougars is a Mascot? ### Answer: SELECT SUM(enrollment) FROM table_name_66 WHERE mascot = "cougars" |
In what League is the Reed School? | CREATE TABLE table_name_87 (league VARCHAR, school VARCHAR) | SELECT league FROM table_name_87 WHERE school = "reed" | ### Context: CREATE TABLE table_name_87 (league VARCHAR, school VARCHAR) ### Question: In what League is the Reed School? ### Answer: SELECT league FROM table_name_87 WHERE school = "reed" |
What Mascot has an Enrollment greater than 2,464? | CREATE TABLE table_name_23 (mascot VARCHAR, enrollment INTEGER) | SELECT mascot FROM table_name_23 WHERE enrollment > 2 OFFSET 464 | ### Context: CREATE TABLE table_name_23 (mascot VARCHAR, enrollment INTEGER) ### Question: What Mascot has an Enrollment greater than 2,464? ### Answer: SELECT mascot FROM table_name_23 WHERE enrollment > 2 OFFSET 464 |
Who was the runner-up in the tournament in which Omar Camporese held third place? | CREATE TABLE table_name_60 (runner_up VARCHAR, third_place VARCHAR) | SELECT runner_up FROM table_name_60 WHERE third_place = "omar camporese" | ### Context: CREATE TABLE table_name_60 (runner_up VARCHAR, third_place VARCHAR) ### Question: Who was the runner-up in the tournament in which Omar Camporese held third place? ### Answer: SELECT runner_up FROM table_name_60 WHERE third_place = "omar camporese" |
Who was the runner-up in the tournament in London? | CREATE TABLE table_name_86 (runner_up VARCHAR, tournament VARCHAR) | SELECT runner_up FROM table_name_86 WHERE tournament = "london" | ### Context: CREATE TABLE table_name_86 (runner_up VARCHAR, tournament VARCHAR) ### Question: Who was the runner-up in the tournament in London? ### Answer: SELECT runner_up FROM table_name_86 WHERE tournament = "london" |
What was the score in the tournament in which Michael Stich took third place? | CREATE TABLE table_name_32 (score VARCHAR, third_place VARCHAR) | SELECT score FROM table_name_32 WHERE third_place = "michael stich" | ### Context: CREATE TABLE table_name_32 (score VARCHAR, third_place VARCHAR) ### Question: What was the score in the tournament in which Michael Stich took third place? ### Answer: SELECT score FROM table_name_32 WHERE third_place = "michael stich" |
Who holds third place in the tournament with a score of 2–6, 7–6(3), [10–5]? | CREATE TABLE table_name_16 (third_place VARCHAR, score VARCHAR) | SELECT third_place FROM table_name_16 WHERE score = "2–6, 7–6(3), [10–5]" | ### Context: CREATE TABLE table_name_16 (third_place VARCHAR, score VARCHAR) ### Question: Who holds third place in the tournament with a score of 2–6, 7–6(3), [10–5]? ### Answer: SELECT third_place FROM table_name_16 WHERE score = "2–6, 7–6(3), [10–5]" |
what is the least number of goals for when the goals against is 70 and the ties less than 0? | CREATE TABLE table_name_32 (goals_for INTEGER, goals_against VARCHAR, ties VARCHAR) | SELECT MIN(goals_for) FROM table_name_32 WHERE goals_against = 70 AND ties < 0 | ### Context: CREATE TABLE table_name_32 (goals_for INTEGER, goals_against VARCHAR, ties VARCHAR) ### Question: what is the least number of goals for when the goals against is 70 and the ties less than 0? ### Answer: SELECT MIN(goals_for) FROM table_name_32 WHERE goals_against = 70 AND ties < 0 |
what is the average losses when the wins is 9 and ties more than 0? | CREATE TABLE table_name_10 (losses INTEGER, wins VARCHAR, ties VARCHAR) | SELECT AVG(losses) FROM table_name_10 WHERE wins = 9 AND ties > 0 | ### Context: CREATE TABLE table_name_10 (losses INTEGER, wins VARCHAR, ties VARCHAR) ### Question: what is the average losses when the wins is 9 and ties more than 0? ### Answer: SELECT AVG(losses) FROM table_name_10 WHERE wins = 9 AND ties > 0 |
what is the lowest number of ties when the losses is 7 and games played is less than 10? | CREATE TABLE table_name_10 (ties INTEGER, losses VARCHAR, games_played VARCHAR) | SELECT MIN(ties) FROM table_name_10 WHERE losses = 7 AND games_played < 10 | ### Context: CREATE TABLE table_name_10 (ties INTEGER, losses VARCHAR, games_played VARCHAR) ### Question: what is the lowest number of ties when the losses is 7 and games played is less than 10? ### Answer: SELECT MIN(ties) FROM table_name_10 WHERE losses = 7 AND games_played < 10 |
what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76? | CREATE TABLE table_name_31 (games_played INTEGER, goals_for VARCHAR, losses VARCHAR, wins VARCHAR) | SELECT SUM(games_played) FROM table_name_31 WHERE losses < 7 AND wins = 6 AND goals_for > 76 | ### Context: CREATE TABLE table_name_31 (games_played INTEGER, goals_for VARCHAR, losses VARCHAR, wins VARCHAR) ### Question: what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76? ### Answer: SELECT SUM(games_played) FROM table_name_31 WHERE losses < 7 AND wins = 6 AND goals_for > 76 |
what is the total number of games played when the goals for is less than 30? | CREATE TABLE table_name_8 (games_played VARCHAR, goals_for INTEGER) | SELECT COUNT(games_played) FROM table_name_8 WHERE goals_for < 30 | ### Context: CREATE TABLE table_name_8 (games_played VARCHAR, goals_for INTEGER) ### Question: what is the total number of games played when the goals for is less than 30? ### Answer: SELECT COUNT(games_played) FROM table_name_8 WHERE goals_for < 30 |
what is the sum of wins for the ottawa hockey club when the games played is less than 10? | CREATE TABLE table_name_53 (wins INTEGER, team VARCHAR, games_played VARCHAR) | SELECT SUM(wins) FROM table_name_53 WHERE team = "ottawa hockey club" AND games_played < 10 | ### Context: CREATE TABLE table_name_53 (wins INTEGER, team VARCHAR, games_played VARCHAR) ### Question: what is the sum of wins for the ottawa hockey club when the games played is less than 10? ### Answer: SELECT SUM(wins) FROM table_name_53 WHERE team = "ottawa hockey club" AND games_played < 10 |
How many people attended the game on February 3, 2008? | CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR) | SELECT SUM(attendance) FROM table_name_34 WHERE date = "february 3, 2008" | ### Context: CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR) ### Question: How many people attended the game on February 3, 2008? ### Answer: SELECT SUM(attendance) FROM table_name_34 WHERE date = "february 3, 2008" |
What is the name of the home team that played against Collingwood? | CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_17 WHERE away_team = "collingwood" | ### Context: CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the name of the home team that played against Collingwood? ### Answer: SELECT home_team FROM table_name_17 WHERE away_team = "collingwood" |
Which Away team played at the Windy Hill Venue? | CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_50 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR) ### Question: Which Away team played at the Windy Hill Venue? ### Answer: SELECT away_team FROM table_name_50 WHERE venue = "windy hill" |
How large of a crowd can the Glenferrie oval hold? | CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_9 WHERE venue = "glenferrie oval" | ### Context: CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR) ### Question: How large of a crowd can the Glenferrie oval hold? ### Answer: SELECT crowd FROM table_name_9 WHERE venue = "glenferrie oval" |
How large of a crowd can the Brunswick Street Oval hold? | CREATE TABLE table_name_48 (crowd VARCHAR, venue VARCHAR) | SELECT COUNT(crowd) FROM table_name_48 WHERE venue = "brunswick street oval" | ### Context: CREATE TABLE table_name_48 (crowd VARCHAR, venue VARCHAR) ### Question: How large of a crowd can the Brunswick Street Oval hold? ### Answer: SELECT COUNT(crowd) FROM table_name_48 WHERE venue = "brunswick street oval" |
What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored? | CREATE TABLE table_name_67 (league INTEGER, total INTEGER) | SELECT MIN(league) FROM table_name_67 WHERE total > 8 | ### Context: CREATE TABLE table_name_67 (league INTEGER, total INTEGER) ### Question: What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored? ### Answer: SELECT MIN(league) FROM table_name_67 WHERE total > 8 |
What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals? | CREATE TABLE table_name_72 (fa_cup INTEGER, name VARCHAR, total VARCHAR) | SELECT AVG(fa_cup) FROM table_name_72 WHERE name = "whelan" AND total > 7 | ### Context: CREATE TABLE table_name_72 (fa_cup INTEGER, name VARCHAR, total VARCHAR) ### Question: What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals? ### Answer: SELECT AVG(fa_cup) FROM table_name_72 WHERE name = "whelan" AND total > 7 |
What is the Uyghur Latin with a population of 69,361? | CREATE TABLE table_name_14 (uyghur_latin___uly__ VARCHAR, population__2010_census_ VARCHAR) | SELECT uyghur_latin___uly__ FROM table_name_14 WHERE population__2010_census_ = "69,361" | ### Context: CREATE TABLE table_name_14 (uyghur_latin___uly__ VARCHAR, population__2010_census_ VARCHAR) ### Question: What is the Uyghur Latin with a population of 69,361? ### Answer: SELECT uyghur_latin___uly__ FROM table_name_14 WHERE population__2010_census_ = "69,361" |
What is the Hanyu Pinyin with an area of 400? | CREATE TABLE table_name_94 (hanyu_pinyin VARCHAR, area__km²_ VARCHAR) | SELECT hanyu_pinyin FROM table_name_94 WHERE area__km²_ = "400" | ### Context: CREATE TABLE table_name_94 (hanyu_pinyin VARCHAR, area__km²_ VARCHAR) ### Question: What is the Hanyu Pinyin with an area of 400? ### Answer: SELECT hanyu_pinyin FROM table_name_94 WHERE area__km²_ = "400" |
What is the Hanyu Pinyin with a density of 39.63? | CREATE TABLE table_name_32 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR) | SELECT hanyu_pinyin FROM table_name_32 WHERE density___km²_ = "39.63" | ### Context: CREATE TABLE table_name_32 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR) ### Question: What is the Hanyu Pinyin with a density of 39.63? ### Answer: SELECT hanyu_pinyin FROM table_name_32 WHERE density___km²_ = "39.63" |
How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)? | CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR) | SELECT SUM(attendance) FROM table_name_71 WHERE visitor = "nuggets" AND leading_scorer = "j.r. smith (28)" | ### Context: CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR) ### Question: How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)? ### Answer: SELECT SUM(attendance) FROM table_name_71 WHERE visitor = "nuggets" AND leading_scorer = "j.r. smith (28)" |
Who was the leading scorer on 23 February 2008? | CREATE TABLE table_name_78 (leading_scorer VARCHAR, date VARCHAR) | SELECT leading_scorer FROM table_name_78 WHERE date = "23 february 2008" | ### Context: CREATE TABLE table_name_78 (leading_scorer VARCHAR, date VARCHAR) ### Question: Who was the leading scorer on 23 February 2008? ### Answer: SELECT leading_scorer FROM table_name_78 WHERE date = "23 february 2008" |
Name what was nominated in years before 2002 for most popular comedy performer at the national television awards | CREATE TABLE table_name_95 (nominated_for VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR) | SELECT nominated_for FROM table_name_95 WHERE year < 2002 AND award = "national television awards" AND category = "most popular comedy performer" | ### Context: CREATE TABLE table_name_95 (nominated_for VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR) ### Question: Name what was nominated in years before 2002 for most popular comedy performer at the national television awards ### Answer: SELECT nominated_for FROM table_name_95 WHERE year < 2002 AND award = "national television awards" AND category = "most popular comedy performer" |
Name the result for the bafta tv awards | CREATE TABLE table_name_83 (result VARCHAR, award VARCHAR) | SELECT result FROM table_name_83 WHERE award = "bafta tv awards" | ### Context: CREATE TABLE table_name_83 (result VARCHAR, award VARCHAR) ### Question: Name the result for the bafta tv awards ### Answer: SELECT result FROM table_name_83 WHERE award = "bafta tv awards" |
Name the category for nominated at the british comedy awards | CREATE TABLE table_name_26 (category VARCHAR, result VARCHAR, award VARCHAR) | SELECT category FROM table_name_26 WHERE result = "nominated" AND award = "british comedy awards" | ### Context: CREATE TABLE table_name_26 (category VARCHAR, result VARCHAR, award VARCHAR) ### Question: Name the category for nominated at the british comedy awards ### Answer: SELECT category FROM table_name_26 WHERE result = "nominated" AND award = "british comedy awards" |
Name the year that Birds of a feather category for most popular actress was nominated | CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR) | SELECT AVG(year) FROM table_name_57 WHERE category = "most popular actress" AND nominated_for = "birds of a feather" | ### Context: CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR) ### Question: Name the year that Birds of a feather category for most popular actress was nominated ### Answer: SELECT AVG(year) FROM table_name_57 WHERE category = "most popular actress" AND nominated_for = "birds of a feather" |
What dates did Ferrari win races? | CREATE TABLE table_name_40 (date VARCHAR, constructor VARCHAR) | SELECT date FROM table_name_40 WHERE constructor = "ferrari" | ### Context: CREATE TABLE table_name_40 (date VARCHAR, constructor VARCHAR) ### Question: What dates did Ferrari win races? ### Answer: SELECT date FROM table_name_40 WHERE constructor = "ferrari" |
What was the original air date of the episode with production code 2395120? | CREATE TABLE table_name_55 (original_air_date VARCHAR, production_code VARCHAR) | SELECT original_air_date FROM table_name_55 WHERE production_code = "2395120" | ### Context: CREATE TABLE table_name_55 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What was the original air date of the episode with production code 2395120? ### Answer: SELECT original_air_date FROM table_name_55 WHERE production_code = "2395120" |
How many points for the ferrari v12 engine and ferrari 1512 chassis, after 1965? | CREATE TABLE table_name_85 (pts INTEGER, year VARCHAR, engine VARCHAR, chassis VARCHAR) | SELECT MAX(pts) FROM table_name_85 WHERE engine = "ferrari v12" AND chassis = "ferrari 1512" AND year > 1965 | ### Context: CREATE TABLE table_name_85 (pts INTEGER, year VARCHAR, engine VARCHAR, chassis VARCHAR) ### Question: How many points for the ferrari v12 engine and ferrari 1512 chassis, after 1965? ### Answer: SELECT MAX(pts) FROM table_name_85 WHERE engine = "ferrari v12" AND chassis = "ferrari 1512" AND year > 1965 |
What was the date when the crowd was larger than 30,495? | CREATE TABLE table_name_58 (date VARCHAR, crowd INTEGER) | SELECT date FROM table_name_58 WHERE crowd > 30 OFFSET 495 | ### Context: CREATE TABLE table_name_58 (date VARCHAR, crowd INTEGER) ### Question: What was the date when the crowd was larger than 30,495? ### Answer: SELECT date FROM table_name_58 WHERE crowd > 30 OFFSET 495 |
What was the home team when Carlton was the away team? | CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_59 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team when Carlton was the away team? ### Answer: SELECT home_team FROM table_name_59 WHERE away_team = "carlton" |
What was the score for the away team when they played at lake oval? | CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_70 WHERE venue = "lake oval" | ### Context: CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR) ### Question: What was the score for the away team when they played at lake oval? ### Answer: SELECT away_team AS score FROM table_name_70 WHERE venue = "lake oval" |
What was the score of the away team when hawthorn was the home team? | CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_43 WHERE home_team = "hawthorn" | ### Context: CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the score of the away team when hawthorn was the home team? ### Answer: SELECT away_team AS score FROM table_name_43 WHERE home_team = "hawthorn" |
How many golds for nations ranked below 4, over 5 medals, and under 6 silvers? | CREATE TABLE table_name_26 (gold VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR) | SELECT COUNT(gold) FROM table_name_26 WHERE rank > 4 AND total > 5 AND silver < 6 | ### Context: CREATE TABLE table_name_26 (gold VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR) ### Question: How many golds for nations ranked below 4, over 5 medals, and under 6 silvers? ### Answer: SELECT COUNT(gold) FROM table_name_26 WHERE rank > 4 AND total > 5 AND silver < 6 |
Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency? | CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR) | SELECT rank FROM table_name_21 WHERE winning_party_2003 = "labour" AND swing_to_gain > 2.13 AND result = "lab hold" AND constituency = "linlithgow" | ### Context: CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR) ### Question: Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency? ### Answer: SELECT rank FROM table_name_21 WHERE winning_party_2003 = "labour" AND swing_to_gain > 2.13 AND result = "lab hold" AND constituency = "linlithgow" |
Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold? | CREATE TABLE table_name_26 (winning_party_2003 VARCHAR, swing_to_gain VARCHAR, result VARCHAR) | SELECT winning_party_2003 FROM table_name_26 WHERE swing_to_gain < 2.92 AND result = "ld hold" | ### Context: CREATE TABLE table_name_26 (winning_party_2003 VARCHAR, swing_to_gain VARCHAR, result VARCHAR) ### Question: Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold? ### Answer: SELECT winning_party_2003 FROM table_name_26 WHERE swing_to_gain < 2.92 AND result = "ld hold" |
Which constituency had the conservative party win in 2003? | CREATE TABLE table_name_72 (constituency VARCHAR, winning_party_2003 VARCHAR) | SELECT constituency FROM table_name_72 WHERE winning_party_2003 = "conservative" | ### Context: CREATE TABLE table_name_72 (constituency VARCHAR, winning_party_2003 VARCHAR) ### Question: Which constituency had the conservative party win in 2003? ### Answer: SELECT constituency FROM table_name_72 WHERE winning_party_2003 = "conservative" |
What is the final score when the visiting team is the Washington Redskins and the date is September 4? | CREATE TABLE table_name_82 (final_score VARCHAR, visiting_team VARCHAR, date VARCHAR) | SELECT final_score FROM table_name_82 WHERE visiting_team = "washington redskins" AND date = "september 4" | ### Context: CREATE TABLE table_name_82 (final_score VARCHAR, visiting_team VARCHAR, date VARCHAR) ### Question: What is the final score when the visiting team is the Washington Redskins and the date is September 4? ### Answer: SELECT final_score FROM table_name_82 WHERE visiting_team = "washington redskins" AND date = "september 4" |
What is the stadium when the date of the game is December 14? | CREATE TABLE table_name_12 (stadium VARCHAR, date VARCHAR) | SELECT stadium FROM table_name_12 WHERE date = "december 14" | ### Context: CREATE TABLE table_name_12 (stadium VARCHAR, date VARCHAR) ### Question: What is the stadium when the date of the game is December 14? ### Answer: SELECT stadium FROM table_name_12 WHERE date = "december 14" |
What is the name of the stadium when the visiting team is the Denver Broncos? | CREATE TABLE table_name_6 (stadium VARCHAR, visiting_team VARCHAR) | SELECT stadium FROM table_name_6 WHERE visiting_team = "denver broncos" | ### Context: CREATE TABLE table_name_6 (stadium VARCHAR, visiting_team VARCHAR) ### Question: What is the name of the stadium when the visiting team is the Denver Broncos? ### Answer: SELECT stadium FROM table_name_6 WHERE visiting_team = "denver broncos" |
What was the smallest crowd when Melbourne was the away team? | CREATE TABLE table_name_74 (crowd INTEGER, away_team VARCHAR) | SELECT MIN(crowd) FROM table_name_74 WHERE away_team = "melbourne" | ### Context: CREATE TABLE table_name_74 (crowd INTEGER, away_team VARCHAR) ### Question: What was the smallest crowd when Melbourne was the away team? ### Answer: SELECT MIN(crowd) FROM table_name_74 WHERE away_team = "melbourne" |
What is the Away when the Club is Neath? | CREATE TABLE table_name_5 (away VARCHAR, club VARCHAR) | SELECT away FROM table_name_5 WHERE club = "neath" | ### Context: CREATE TABLE table_name_5 (away VARCHAR, club VARCHAR) ### Question: What is the Away when the Club is Neath? ### Answer: SELECT away FROM table_name_5 WHERE club = "neath" |
What country has area of 7,914 m²? | CREATE TABLE table_name_64 (country VARCHAR, area_in_m² VARCHAR) | SELECT country FROM table_name_64 WHERE area_in_m² = "7,914" | ### Context: CREATE TABLE table_name_64 (country VARCHAR, area_in_m² VARCHAR) ### Question: What country has area of 7,914 m²? ### Answer: SELECT country FROM table_name_64 WHERE area_in_m² = "7,914" |
What city was completed in 1910-1978? | CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR) | SELECT city FROM table_name_23 WHERE completion = "1910-1978" | ### Context: CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR) ### Question: What city was completed in 1910-1978? ### Answer: SELECT city FROM table_name_23 WHERE completion = "1910-1978" |
What is the country with area of 3,170 in m²? | CREATE TABLE table_name_17 (country VARCHAR, area_in_m² VARCHAR) | SELECT country FROM table_name_17 WHERE area_in_m² = "3,170" | ### Context: CREATE TABLE table_name_17 (country VARCHAR, area_in_m² VARCHAR) ### Question: What is the country with area of 3,170 in m²? ### Answer: SELECT country FROM table_name_17 WHERE area_in_m² = "3,170" |
I want the time/retired for grid of 17 | CREATE TABLE table_name_17 (time_retired VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_17 WHERE grid = 17 | ### Context: CREATE TABLE table_name_17 (time_retired VARCHAR, grid VARCHAR) ### Question: I want the time/retired for grid of 17 ### Answer: SELECT time_retired FROM table_name_17 WHERE grid = 17 |
Name the opponent when the field is mitchel athletic complex | CREATE TABLE table_name_69 (opponent VARCHAR, field VARCHAR) | SELECT opponent FROM table_name_69 WHERE field = "mitchel athletic complex" | ### Context: CREATE TABLE table_name_69 (opponent VARCHAR, field VARCHAR) ### Question: Name the opponent when the field is mitchel athletic complex ### Answer: SELECT opponent FROM table_name_69 WHERE field = "mitchel athletic complex" |
Name the date for when the home/away is away and the opponent is bayhawks | CREATE TABLE table_name_81 (date VARCHAR, home_away VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_81 WHERE home_away = "away" AND opponent = "bayhawks" | ### Context: CREATE TABLE table_name_81 (date VARCHAR, home_away VARCHAR, opponent VARCHAR) ### Question: Name the date for when the home/away is away and the opponent is bayhawks ### Answer: SELECT date FROM table_name_81 WHERE home_away = "away" AND opponent = "bayhawks" |
Say the field with a result of w 12-11 | CREATE TABLE table_name_43 (field VARCHAR, result VARCHAR) | SELECT field FROM table_name_43 WHERE result = "w 12-11" | ### Context: CREATE TABLE table_name_43 (field VARCHAR, result VARCHAR) ### Question: Say the field with a result of w 12-11 ### Answer: SELECT field FROM table_name_43 WHERE result = "w 12-11" |
Name the opponent when the result is w 16-15 and has home/away of home | CREATE TABLE table_name_37 (opponent VARCHAR, home_away VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_37 WHERE home_away = "home" AND result = "w 16-15" | ### Context: CREATE TABLE table_name_37 (opponent VARCHAR, home_away VARCHAR, result VARCHAR) ### Question: Name the opponent when the result is w 16-15 and has home/away of home ### Answer: SELECT opponent FROM table_name_37 WHERE home_away = "home" AND result = "w 16-15" |
Name the opponent when the resultwas w 12-11 | CREATE TABLE table_name_45 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_45 WHERE result = "w 12-11" | ### Context: CREATE TABLE table_name_45 (opponent VARCHAR, result VARCHAR) ### Question: Name the opponent when the resultwas w 12-11 ### Answer: SELECT opponent FROM table_name_45 WHERE result = "w 12-11" |
Name the opponent which has a home/away of home and date of july 27 | CREATE TABLE table_name_9 (opponent VARCHAR, home_away VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_9 WHERE home_away = "home" AND date = "july 27" | ### Context: CREATE TABLE table_name_9 (opponent VARCHAR, home_away VARCHAR, date VARCHAR) ### Question: Name the opponent which has a home/away of home and date of july 27 ### Answer: SELECT opponent FROM table_name_9 WHERE home_away = "home" AND date = "july 27" |
I want to know the home team for mcg venue | CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_71 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR) ### Question: I want to know the home team for mcg venue ### Answer: SELECT home_team FROM table_name_71 WHERE venue = "mcg" |
Where did Konchesky move to? | CREATE TABLE table_name_34 (moving_to VARCHAR, name VARCHAR) | SELECT moving_to FROM table_name_34 WHERE name = "konchesky" | ### Context: CREATE TABLE table_name_34 (moving_to VARCHAR, name VARCHAR) ### Question: Where did Konchesky move to? ### Answer: SELECT moving_to FROM table_name_34 WHERE name = "konchesky" |
Who is Essendon's home team? | CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_94 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR) ### Question: Who is Essendon's home team? ### Answer: SELECT MIN(crowd) FROM table_name_94 WHERE home_team = "essendon" |
What is the away team score for North Melbourne's home team? | CREATE TABLE table_name_5 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_5 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_5 (away_team VARCHAR) ### Question: What is the away team score for North Melbourne's home team? ### Answer: SELECT away_team AS score FROM table_name_5 WHERE away_team = "north melbourne" |
What is Geelong's home team score? | CREATE TABLE table_name_89 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_89 WHERE home_team = "geelong" | ### Context: CREATE TABLE table_name_89 (home_team VARCHAR) ### Question: What is Geelong's home team score? ### Answer: SELECT home_team AS score FROM table_name_89 WHERE home_team = "geelong" |
What is the home team score for St Kilda's home team? | CREATE TABLE table_name_27 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_27 WHERE home_team = "st kilda" | ### Context: CREATE TABLE table_name_27 (home_team VARCHAR) ### Question: What is the home team score for St Kilda's home team? ### Answer: SELECT home_team AS score FROM table_name_27 WHERE home_team = "st kilda" |
Who was #16 rank constructor with a grid of more than 1? | CREATE TABLE table_name_59 (constructor VARCHAR, grid VARCHAR, rank VARCHAR) | SELECT constructor FROM table_name_59 WHERE grid > 1 AND rank = 16 | ### Context: CREATE TABLE table_name_59 (constructor VARCHAR, grid VARCHAR, rank VARCHAR) ### Question: Who was #16 rank constructor with a grid of more than 1? ### Answer: SELECT constructor FROM table_name_59 WHERE grid > 1 AND rank = 16 |
Who constructed Joe James car when his rank was more than 10? | CREATE TABLE table_name_12 (constructor VARCHAR, rank VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_12 WHERE rank > 10 AND driver = "joe james" | ### Context: CREATE TABLE table_name_12 (constructor VARCHAR, rank VARCHAR, driver VARCHAR) ### Question: Who constructed Joe James car when his rank was more than 10? ### Answer: SELECT constructor FROM table_name_12 WHERE rank > 10 AND driver = "joe james" |
What was the rank of the car who had more than 182 laps, gris less than 3, with a qual time of more than 134.14 and a time/retired of +14:21.72? | CREATE TABLE table_name_78 (rank INTEGER, grid VARCHAR, time_retired VARCHAR, laps VARCHAR, qual VARCHAR) | SELECT MIN(rank) FROM table_name_78 WHERE laps > 182 AND qual > 134.14 AND time_retired = "+14:21.72" AND grid < 3 | ### Context: CREATE TABLE table_name_78 (rank INTEGER, grid VARCHAR, time_retired VARCHAR, laps VARCHAR, qual VARCHAR) ### Question: What was the rank of the car who had more than 182 laps, gris less than 3, with a qual time of more than 134.14 and a time/retired of +14:21.72? ### Answer: SELECT MIN(rank) FROM table_name_78 WHERE laps > 182 AND qual > 134.14 AND time_retired = "+14:21.72" AND grid < 3 |
How many laps did Chuck Stevenson have with a grid of less than 11? | CREATE TABLE table_name_35 (laps VARCHAR, driver VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_35 WHERE driver = "chuck stevenson" AND grid < 11 | ### Context: CREATE TABLE table_name_35 (laps VARCHAR, driver VARCHAR, grid VARCHAR) ### Question: How many laps did Chuck Stevenson have with a grid of less than 11? ### Answer: SELECT COUNT(laps) FROM table_name_35 WHERE driver = "chuck stevenson" AND grid < 11 |
Which Week has an Opponent of san francisco 49ers? | CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR) | SELECT MAX(week) FROM table_name_46 WHERE opponent = "san francisco 49ers" | ### Context: CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR) ### Question: Which Week has an Opponent of san francisco 49ers? ### Answer: SELECT MAX(week) FROM table_name_46 WHERE opponent = "san francisco 49ers" |
What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22? | CREATE TABLE table_name_50 (snatch INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR) | SELECT AVG(snatch) FROM table_name_50 WHERE clean_ & _jerk = "145.0" AND bodyweight > 76.22 | ### Context: CREATE TABLE table_name_50 (snatch INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ### Question: What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22? ### Answer: SELECT AVG(snatch) FROM table_name_50 WHERE clean_ & _jerk = "145.0" AND bodyweight > 76.22 |
What is the Clean & jerk for the snatch less than 150 and a Bodyweight of 76.18? | CREATE TABLE table_name_82 (clean_ VARCHAR, _jerk VARCHAR, snatch VARCHAR, bodyweight VARCHAR) | SELECT clean_ & _jerk FROM table_name_82 WHERE snatch < 150 AND bodyweight = 76.18 | ### Context: CREATE TABLE table_name_82 (clean_ VARCHAR, _jerk VARCHAR, snatch VARCHAR, bodyweight VARCHAR) ### Question: What is the Clean & jerk for the snatch less than 150 and a Bodyweight of 76.18? ### Answer: SELECT clean_ & _jerk FROM table_name_82 WHERE snatch < 150 AND bodyweight = 76.18 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.