question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many gold have a silver of 1 and a bronze of 0? | CREATE TABLE table_name_12 (gold INTEGER, silver VARCHAR, bronze VARCHAR) | SELECT SUM(gold) FROM table_name_12 WHERE silver = 1 AND bronze < 1 | ### Context: CREATE TABLE table_name_12 (gold INTEGER, silver VARCHAR, bronze VARCHAR) ### Question: How many gold have a silver of 1 and a bronze of 0? ### Answer: SELECT SUM(gold) FROM table_name_12 WHERE silver = 1 AND bronze < 1 |
What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban? | CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location VARCHAR, fatalities VARCHAR) | SELECT aircraft FROM table_name_3 WHERE location = "kabul" AND fatalities = "unknown" AND tail_number = "ya-ban" | ### Context: CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location VARCHAR, fatalities VARCHAR) ### Question: What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban? ### Answer: SELECT aircraft FROM table_name_3 WHERE location = "kabul" AND fatalities = "unknown" AND tail_number = "ya-ban" |
What is the Fatalities when the tail number was unknown and in Kabul> | CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR) | SELECT fatalities FROM table_name_53 WHERE tail_number = "unknown" AND location = "kabul" | ### Context: CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR) ### Question: What is the Fatalities when the tail number was unknown and in Kabul> ### Answer: SELECT fatalities FROM table_name_53 WHERE tail_number = "unknown" AND location = "kabul" |
What is the location for the an-12b aircraft? | CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR) | SELECT location FROM table_name_50 WHERE aircraft = "an-12b" | ### Context: CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR) ### Question: What is the location for the an-12b aircraft? ### Answer: SELECT location FROM table_name_50 WHERE aircraft = "an-12b" |
What location had 25/25 fatalities? | CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR) | SELECT location FROM table_name_15 WHERE fatalities = "25/25" | ### Context: CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR) ### Question: What location had 25/25 fatalities? ### Answer: SELECT location FROM table_name_15 WHERE fatalities = "25/25" |
What tail number was on the an-26, with 25/25 fatalities? | CREATE TABLE table_name_82 (tail_number VARCHAR, aircraft VARCHAR, fatalities VARCHAR) | SELECT tail_number FROM table_name_82 WHERE aircraft = "an-26" AND fatalities = "25/25" | ### Context: CREATE TABLE table_name_82 (tail_number VARCHAR, aircraft VARCHAR, fatalities VARCHAR) ### Question: What tail number was on the an-26, with 25/25 fatalities? ### Answer: SELECT tail_number FROM table_name_82 WHERE aircraft = "an-26" AND fatalities = "25/25" |
What type of aircraft was the plane with a tail number of ya-bao? | CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR) | SELECT aircraft FROM table_name_75 WHERE tail_number = "ya-bao" | ### Context: CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR) ### Question: What type of aircraft was the plane with a tail number of ya-bao? ### Answer: SELECT aircraft FROM table_name_75 WHERE tail_number = "ya-bao" |
What is the total number of Points from a Match that is larger than 18? | CREATE TABLE table_name_38 (points VARCHAR, match INTEGER) | SELECT COUNT(points) FROM table_name_38 WHERE match > 18 | ### Context: CREATE TABLE table_name_38 (points VARCHAR, match INTEGER) ### Question: What is the total number of Points from a Match that is larger than 18? ### Answer: SELECT COUNT(points) FROM table_name_38 WHERE match > 18 |
In what Season was the Series Formula Renault 3.5 series with less than 7 Races? | CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR) | SELECT SUM(season) FROM table_name_74 WHERE series = "formula renault 3.5 series" AND races < 7 | ### Context: CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR) ### Question: In what Season was the Series Formula Renault 3.5 series with less than 7 Races? ### Answer: SELECT SUM(season) FROM table_name_74 WHERE series = "formula renault 3.5 series" AND races < 7 |
What was the Series in 2009? | CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR) | SELECT series FROM table_name_67 WHERE season = 2009 | ### Context: CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR) ### Question: What was the Series in 2009? ### Answer: SELECT series FROM table_name_67 WHERE season = 2009 |
How many Wins in the Year with more than 16 Races? | CREATE TABLE table_name_7 (wins VARCHAR, races INTEGER) | SELECT wins FROM table_name_7 WHERE races > 16 | ### Context: CREATE TABLE table_name_7 (wins VARCHAR, races INTEGER) ### Question: How many Wins in the Year with more than 16 Races? ### Answer: SELECT wins FROM table_name_7 WHERE races > 16 |
In what Season were then less than 3 Races with less than 1 Win? | CREATE TABLE table_name_51 (season INTEGER, races VARCHAR, wins VARCHAR) | SELECT AVG(season) FROM table_name_51 WHERE races < 3 AND wins < 1 | ### Context: CREATE TABLE table_name_51 (season INTEGER, races VARCHAR, wins VARCHAR) ### Question: In what Season were then less than 3 Races with less than 1 Win? ### Answer: SELECT AVG(season) FROM table_name_51 WHERE races < 3 AND wins < 1 |
Which 1st leg has a Team #1 of ummc ekaterinburg? | CREATE TABLE table_name_33 (team__number1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_33 WHERE team__number1 = "ummc ekaterinburg" | ### Context: CREATE TABLE table_name_33 (team__number1 VARCHAR) ### Question: Which 1st leg has a Team #1 of ummc ekaterinburg? ### Answer: SELECT 1 AS st_leg FROM table_name_33 WHERE team__number1 = "ummc ekaterinburg" |
Which Team #2 has a Team #1 of gambrinus sika brno? | CREATE TABLE table_name_70 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_name_70 WHERE team__number1 = "gambrinus sika brno" | ### Context: CREATE TABLE table_name_70 (team__number2 VARCHAR, team__number1 VARCHAR) ### Question: Which Team #2 has a Team #1 of gambrinus sika brno? ### Answer: SELECT team__number2 FROM table_name_70 WHERE team__number1 = "gambrinus sika brno" |
What is the Goal number in Råsunda, Stockholm with a Result of 2–2? | CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR) | SELECT AVG(goal) FROM table_name_80 WHERE result = "2–2" AND venue = "råsunda, stockholm" | ### Context: CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR) ### Question: What is the Goal number in Råsunda, Stockholm with a Result of 2–2? ### Answer: SELECT AVG(goal) FROM table_name_80 WHERE result = "2–2" AND venue = "råsunda, stockholm" |
What is the Result of Goal number 3? | CREATE TABLE table_name_21 (result VARCHAR, goal VARCHAR) | SELECT result FROM table_name_21 WHERE goal = 3 | ### Context: CREATE TABLE table_name_21 (result VARCHAR, goal VARCHAR) ### Question: What is the Result of Goal number 3? ### Answer: SELECT result FROM table_name_21 WHERE goal = 3 |
On what day was a game played at Reese Smith Field, with a score of 4-3? | CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR, site_stadium VARCHAR) | SELECT date FROM table_name_14 WHERE score = "4-3" AND site_stadium = "reese smith field" | ### Context: CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR, site_stadium VARCHAR) ### Question: On what day was a game played at Reese Smith Field, with a score of 4-3? ### Answer: SELECT date FROM table_name_14 WHERE score = "4-3" AND site_stadium = "reese smith field" |
What was the score for the game played on May 10 at Alex Box Stadium? | CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR) | SELECT score FROM table_name_65 WHERE site_stadium = "alex box stadium" AND date = "may 10" | ### Context: CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR) ### Question: What was the score for the game played on May 10 at Alex Box Stadium? ### Answer: SELECT score FROM table_name_65 WHERE site_stadium = "alex box stadium" AND date = "may 10" |
What was the score for the game played at Sarge Frye Field? | CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR) | SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field" | ### Context: CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR) ### Question: What was the score for the game played at Sarge Frye Field? ### Answer: SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field" |
On what date was a game played, which left the team with a record of 5-7? | CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_16 WHERE record = "5-7" | ### Context: CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR) ### Question: On what date was a game played, which left the team with a record of 5-7? ### Answer: SELECT date FROM table_name_16 WHERE record = "5-7" |
What was the score of the game played at Harmon Stadium on February 24? | CREATE TABLE table_name_38 (score VARCHAR, site_stadium VARCHAR, date VARCHAR) | SELECT score FROM table_name_38 WHERE site_stadium = "harmon stadium" AND date = "february 24" | ### Context: CREATE TABLE table_name_38 (score VARCHAR, site_stadium VARCHAR, date VARCHAR) ### Question: What was the score of the game played at Harmon Stadium on February 24? ### Answer: SELECT score FROM table_name_38 WHERE site_stadium = "harmon stadium" AND date = "february 24" |
Where was the game on May 9 played? | CREATE TABLE table_name_21 (site_stadium VARCHAR, date VARCHAR) | SELECT site_stadium FROM table_name_21 WHERE date = "may 9" | ### Context: CREATE TABLE table_name_21 (site_stadium VARCHAR, date VARCHAR) ### Question: Where was the game on May 9 played? ### Answer: SELECT site_stadium FROM table_name_21 WHERE date = "may 9" |
What is the greatest position when the points are less than 21, and the played greater than 14? | CREATE TABLE table_name_78 (position INTEGER, points VARCHAR, played VARCHAR) | SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14 | ### Context: CREATE TABLE table_name_78 (position INTEGER, points VARCHAR, played VARCHAR) ### Question: What is the greatest position when the points are less than 21, and the played greater than 14? ### Answer: SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14 |
What is the fewest lost with a difference of 9 and a less than 3 drawn? | CREATE TABLE table_name_69 (lost INTEGER, difference VARCHAR, drawn VARCHAR) | SELECT MIN(lost) FROM table_name_69 WHERE difference = "9" AND drawn < 3 | ### Context: CREATE TABLE table_name_69 (lost INTEGER, difference VARCHAR, drawn VARCHAR) ### Question: What is the fewest lost with a difference of 9 and a less than 3 drawn? ### Answer: SELECT MIN(lost) FROM table_name_69 WHERE difference = "9" AND drawn < 3 |
Team Estudantes Paulista with a position less than 4 has what average against? | CREATE TABLE table_name_78 (against INTEGER, team VARCHAR, position VARCHAR) | SELECT AVG(against) FROM table_name_78 WHERE team = "estudantes paulista" AND position < 4 | ### Context: CREATE TABLE table_name_78 (against INTEGER, team VARCHAR, position VARCHAR) ### Question: Team Estudantes Paulista with a position less than 4 has what average against? ### Answer: SELECT AVG(against) FROM table_name_78 WHERE team = "estudantes paulista" AND position < 4 |
What was the margin of victory on Apr 8, 1979? | CREATE TABLE table_name_28 (margin_of_victory VARCHAR, date VARCHAR) | SELECT margin_of_victory FROM table_name_28 WHERE date = "apr 8, 1979" | ### Context: CREATE TABLE table_name_28 (margin_of_victory VARCHAR, date VARCHAR) ### Question: What was the margin of victory on Apr 8, 1979? ### Answer: SELECT margin_of_victory FROM table_name_28 WHERE date = "apr 8, 1979" |
What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley? | CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley" | ### Context: CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley? ### Answer: SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley" |
What was the margin of victory when the winning score was −5 (69-69-73=211)? | CREATE TABLE table_name_21 (margin_of_victory VARCHAR, winning_score VARCHAR) | SELECT margin_of_victory FROM table_name_21 WHERE winning_score = −5(69 - 69 - 73 = 211) | ### Context: CREATE TABLE table_name_21 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: What was the margin of victory when the winning score was −5 (69-69-73=211)? ### Answer: SELECT margin_of_victory FROM table_name_21 WHERE winning_score = −5(69 - 69 - 73 = 211) |
Which tournament had a winning score of −5 (69-69-73=211)? | CREATE TABLE table_name_37 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_37 WHERE winning_score = −5(69 - 69 - 73 = 211) | ### Context: CREATE TABLE table_name_37 (tournament VARCHAR, winning_score VARCHAR) ### Question: Which tournament had a winning score of −5 (69-69-73=211)? ### Answer: SELECT tournament FROM table_name_37 WHERE winning_score = −5(69 - 69 - 73 = 211) |
When was the winning score −6 (69-69-73-71=282)? | CREATE TABLE table_name_7 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_7 WHERE winning_score = −6(69 - 69 - 73 - 71 = 282) | ### Context: CREATE TABLE table_name_7 (date VARCHAR, winning_score VARCHAR) ### Question: When was the winning score −6 (69-69-73-71=282)? ### Answer: SELECT date FROM table_name_7 WHERE winning_score = −6(69 - 69 - 73 - 71 = 282) |
Who is the opponent of the game played on November 20, 1995? | CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_66 WHERE date = "november 20, 1995" | ### Context: CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR) ### Question: Who is the opponent of the game played on November 20, 1995? ### Answer: SELECT opponent FROM table_name_66 WHERE date = "november 20, 1995" |
What is the highest Grid with a Name that is jamie whincup? | CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR) | SELECT MAX(grid) FROM table_name_67 WHERE name = "jamie whincup" | ### Context: CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR) ### Question: What is the highest Grid with a Name that is jamie whincup? ### Answer: SELECT MAX(grid) FROM table_name_67 WHERE name = "jamie whincup" |
What is the Team with a Lap that is 5? | CREATE TABLE table_name_48 (team VARCHAR, laps VARCHAR) | SELECT team FROM table_name_48 WHERE laps = 5 | ### Context: CREATE TABLE table_name_48 (team VARCHAR, laps VARCHAR) ### Question: What is the Team with a Lap that is 5? ### Answer: SELECT team FROM table_name_48 WHERE laps = 5 |
What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233? | CREATE TABLE table_name_62 (round INTEGER, name VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_62 WHERE name = "justin forsett" AND pick > 233 | ### Context: CREATE TABLE table_name_62 (round INTEGER, name VARCHAR, pick VARCHAR) ### Question: What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233? ### Answer: SELECT MIN(round) FROM table_name_62 WHERE name = "justin forsett" AND pick > 233 |
What's the average round the position of RB was drafted? | CREATE TABLE table_name_90 (round INTEGER, position VARCHAR) | SELECT AVG(round) FROM table_name_90 WHERE position = "rb" | ### Context: CREATE TABLE table_name_90 (round INTEGER, position VARCHAR) ### Question: What's the average round the position of RB was drafted? ### Answer: SELECT AVG(round) FROM table_name_90 WHERE position = "rb" |
What's the average round Red Bryant was drafted with a pick larger than 121? | CREATE TABLE table_name_29 (round INTEGER, name VARCHAR, pick VARCHAR) | SELECT AVG(round) FROM table_name_29 WHERE name = "red bryant" AND pick > 121 | ### Context: CREATE TABLE table_name_29 (round INTEGER, name VARCHAR, pick VARCHAR) ### Question: What's the average round Red Bryant was drafted with a pick larger than 121? ### Answer: SELECT AVG(round) FROM table_name_29 WHERE name = "red bryant" AND pick > 121 |
Can you tell me the Overall Record that has the Away Team of miami? | CREATE TABLE table_name_46 (overall_record VARCHAR, away_team VARCHAR) | SELECT overall_record FROM table_name_46 WHERE away_team = "miami" | ### Context: CREATE TABLE table_name_46 (overall_record VARCHAR, away_team VARCHAR) ### Question: Can you tell me the Overall Record that has the Away Team of miami? ### Answer: SELECT overall_record FROM table_name_46 WHERE away_team = "miami" |
Can you tell me the Overall Record that has the Week of 3? | CREATE TABLE table_name_81 (overall_record VARCHAR, week VARCHAR) | SELECT overall_record FROM table_name_81 WHERE week = 3 | ### Context: CREATE TABLE table_name_81 (overall_record VARCHAR, week VARCHAR) ### Question: Can you tell me the Overall Record that has the Week of 3? ### Answer: SELECT overall_record FROM table_name_81 WHERE week = 3 |
Can you tell me the Divisional Record that has the Away Team of dallas? | CREATE TABLE table_name_58 (divisional_record VARCHAR, away_team VARCHAR) | SELECT divisional_record FROM table_name_58 WHERE away_team = "dallas" | ### Context: CREATE TABLE table_name_58 (divisional_record VARCHAR, away_team VARCHAR) ### Question: Can you tell me the Divisional Record that has the Away Team of dallas? ### Answer: SELECT divisional_record FROM table_name_58 WHERE away_team = "dallas" |
Can you tell me the Overall Record that has the Week smaller than 16, and the Divisional Record of (1-0), and the Away Team of miami? | CREATE TABLE table_name_42 (overall_record VARCHAR, away_team VARCHAR, week VARCHAR, divisional_record VARCHAR) | SELECT overall_record FROM table_name_42 WHERE week < 16 AND divisional_record = "(1-0)" AND away_team = "miami" | ### Context: CREATE TABLE table_name_42 (overall_record VARCHAR, away_team VARCHAR, week VARCHAR, divisional_record VARCHAR) ### Question: Can you tell me the Overall Record that has the Week smaller than 16, and the Divisional Record of (1-0), and the Away Team of miami? ### Answer: SELECT overall_record FROM table_name_42 WHERE week < 16 AND divisional_record = "(1-0)" AND away_team = "miami" |
Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota? | CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR) | SELECT week FROM table_name_40 WHERE home_team = "detroit" AND divisional_record = "(3-0)" AND overall_record = "(5-1)" AND away_team = "minnesota" | ### Context: CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR) ### Question: Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota? ### Answer: SELECT week FROM table_name_40 WHERE home_team = "detroit" AND divisional_record = "(3-0)" AND overall_record = "(5-1)" AND away_team = "minnesota" |
Who is the choreographer with the style pas de deux? | CREATE TABLE table_name_10 (choreographer_s_ VARCHAR, style VARCHAR) | SELECT choreographer_s_ FROM table_name_10 WHERE style = "pas de deux" | ### Context: CREATE TABLE table_name_10 (choreographer_s_ VARCHAR, style VARCHAR) ### Question: Who is the choreographer with the style pas de deux? ### Answer: SELECT choreographer_s_ FROM table_name_10 WHERE style = "pas de deux" |
What is the title of the person who started their reign in 1999? | CREATE TABLE table_name_63 (title VARCHAR, start_of_reign VARCHAR) | SELECT title FROM table_name_63 WHERE start_of_reign = 1999 | ### Context: CREATE TABLE table_name_63 (title VARCHAR, start_of_reign VARCHAR) ### Question: What is the title of the person who started their reign in 1999? ### Answer: SELECT title FROM table_name_63 WHERE start_of_reign = 1999 |
What is the date of birth of the person who started their reign in 1986? | CREATE TABLE table_name_61 (Birth VARCHAR, start_of_reign VARCHAR) | SELECT Birth AS name FROM table_name_61 WHERE start_of_reign = 1986 | ### Context: CREATE TABLE table_name_61 (Birth VARCHAR, start_of_reign VARCHAR) ### Question: What is the date of birth of the person who started their reign in 1986? ### Answer: SELECT Birth AS name FROM table_name_61 WHERE start_of_reign = 1986 |
What is the average number for goals less than 73? | CREATE TABLE table_name_23 (average VARCHAR, goals INTEGER) | SELECT COUNT(average) FROM table_name_23 WHERE goals < 73 | ### Context: CREATE TABLE table_name_23 (average VARCHAR, goals INTEGER) ### Question: What is the average number for goals less than 73? ### Answer: SELECT COUNT(average) FROM table_name_23 WHERE goals < 73 |
What is the total average for 1990-1995, and goals less than 90? | CREATE TABLE table_name_40 (average VARCHAR, career VARCHAR, goals VARCHAR) | SELECT COUNT(average) FROM table_name_40 WHERE career = "1990-1995" AND goals < 90 | ### Context: CREATE TABLE table_name_40 (average VARCHAR, career VARCHAR, goals VARCHAR) ### Question: What is the total average for 1990-1995, and goals less than 90? ### Answer: SELECT COUNT(average) FROM table_name_40 WHERE career = "1990-1995" AND goals < 90 |
What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played? | CREATE TABLE table_name_43 (position INTEGER, played VARCHAR, lost VARCHAR, difference VARCHAR) | SELECT MIN(position) FROM table_name_43 WHERE lost < 3 AND difference = "1" AND played > 7 | ### Context: CREATE TABLE table_name_43 (position INTEGER, played VARCHAR, lost VARCHAR, difference VARCHAR) ### Question: What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played? ### Answer: SELECT MIN(position) FROM table_name_43 WHERE lost < 3 AND difference = "1" AND played > 7 |
What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against? | CREATE TABLE table_name_12 (played INTEGER, team VARCHAR, against VARCHAR) | SELECT SUM(played) FROM table_name_12 WHERE team = "vasco da gama" AND against < 12 | ### Context: CREATE TABLE table_name_12 (played INTEGER, team VARCHAR, against VARCHAR) ### Question: What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against? ### Answer: SELECT SUM(played) FROM table_name_12 WHERE team = "vasco da gama" AND against < 12 |
What was the Difference of the Team that had a Position less than 2? | CREATE TABLE table_name_8 (difference VARCHAR, position INTEGER) | SELECT difference FROM table_name_8 WHERE position < 2 | ### Context: CREATE TABLE table_name_8 (difference VARCHAR, position INTEGER) ### Question: What was the Difference of the Team that had a Position less than 2? ### Answer: SELECT difference FROM table_name_8 WHERE position < 2 |
Which attendance number was taken on november 21, 2004? | CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_54 WHERE date = "november 21, 2004" | ### Context: CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR) ### Question: Which attendance number was taken on november 21, 2004? ### Answer: SELECT attendance FROM table_name_54 WHERE date = "november 21, 2004" |
Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents? | CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = "washington redskins" | ### Context: CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents? ### Answer: SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = "washington redskins" |
How many weeks had the Green Bay packers as opponents? | CREATE TABLE table_name_74 (week INTEGER, opponent VARCHAR) | SELECT SUM(week) FROM table_name_74 WHERE opponent = "green bay packers" | ### Context: CREATE TABLE table_name_74 (week INTEGER, opponent VARCHAR) ### Question: How many weeks had the Green Bay packers as opponents? ### Answer: SELECT SUM(week) FROM table_name_74 WHERE opponent = "green bay packers" |
What Country had a Score of 71-67=138? | CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138 | ### Context: CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR) ### Question: What Country had a Score of 71-67=138? ### Answer: SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138 |
What Country had a Score of 75-68=143? | CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_91 WHERE score = 75 - 68 = 143 | ### Context: CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR) ### Question: What Country had a Score of 75-68=143? ### Answer: SELECT country FROM table_name_91 WHERE score = 75 - 68 = 143 |
How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored? | CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR) | SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19 | ### Context: CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR) ### Question: How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored? ### Answer: SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19 |
What is the number of averages having a balls faced over 297 and more than 7 innings? | CREATE TABLE table_name_34 (average VARCHAR, balls_faced VARCHAR, innings VARCHAR) | SELECT COUNT(average) FROM table_name_34 WHERE balls_faced > 297 AND innings > 7 | ### Context: CREATE TABLE table_name_34 (average VARCHAR, balls_faced VARCHAR, innings VARCHAR) ### Question: What is the number of averages having a balls faced over 297 and more than 7 innings? ### Answer: SELECT COUNT(average) FROM table_name_34 WHERE balls_faced > 297 AND innings > 7 |
What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced? | CREATE TABLE table_name_89 (innings INTEGER, sr VARCHAR, balls_faced VARCHAR) | SELECT MIN(innings) FROM table_name_89 WHERE sr = 72.05 AND balls_faced < 297 | ### Context: CREATE TABLE table_name_89 (innings INTEGER, sr VARCHAR, balls_faced VARCHAR) ### Question: What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced? ### Answer: SELECT MIN(innings) FROM table_name_89 WHERE sr = 72.05 AND balls_faced < 297 |
What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5? | CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR) | SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5 | ### Context: CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR) ### Question: What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5? ### Answer: SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5 |
What is the Nation with a Date that is may 6, 1991? | CREATE TABLE table_name_51 (nation VARCHAR, date VARCHAR) | SELECT nation FROM table_name_51 WHERE date = "may 6, 1991" | ### Context: CREATE TABLE table_name_51 (nation VARCHAR, date VARCHAR) ### Question: What is the Nation with a Date that is may 6, 1991? ### Answer: SELECT nation FROM table_name_51 WHERE date = "may 6, 1991" |
What is the Record with a Date that is may 20, 1961? | CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_73 WHERE date = "may 20, 1961" | ### Context: CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR) ### Question: What is the Record with a Date that is may 20, 1961? ### Answer: SELECT record FROM table_name_73 WHERE date = "may 20, 1961" |
Who was the partner of the winner? | CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR) | SELECT partner FROM table_name_46 WHERE outcome = "winner" | ### Context: CREATE TABLE table_name_46 (partner VARCHAR, outcome VARCHAR) ### Question: Who was the partner of the winner? ### Answer: SELECT partner FROM table_name_46 WHERE outcome = "winner" |
How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6? | CREATE TABLE table_name_53 (place__posición_ VARCHAR, won__pg_ VARCHAR, draw__pe_ VARCHAR, team__equipo_ VARCHAR) | SELECT COUNT(place__posición_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = "paraíso" AND won__pg_ > 6 | ### Context: CREATE TABLE table_name_53 (place__posición_ VARCHAR, won__pg_ VARCHAR, draw__pe_ VARCHAR, team__equipo_ VARCHAR) ### Question: How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6? ### Answer: SELECT COUNT(place__posición_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = "paraíso" AND won__pg_ > 6 |
How many league cups have yeovil town as the club, with a league less than 16? | CREATE TABLE table_name_88 (league VARCHAR, club VARCHAR) | SELECT COUNT(league) AS Cup FROM table_name_88 WHERE club = "yeovil town" AND league < 16 | ### Context: CREATE TABLE table_name_88 (league VARCHAR, club VARCHAR) ### Question: How many league cups have yeovil town as the club, with a league less than 16? ### Answer: SELECT COUNT(league) AS Cup FROM table_name_88 WHERE club = "yeovil town" AND league < 16 |
What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5? | CREATE TABLE table_name_15 (fa_cup INTEGER, player VARCHAR, fa_trophy VARCHAR) | SELECT AVG(fa_cup) FROM table_name_15 WHERE player = "gary jones" AND fa_trophy > 5 | ### Context: CREATE TABLE table_name_15 (fa_cup INTEGER, player VARCHAR, fa_trophy VARCHAR) ### Question: What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5? ### Answer: SELECT AVG(fa_cup) FROM table_name_15 WHERE player = "gary jones" AND fa_trophy > 5 |
What FA trophys have tony hemmings as the player, with a league greater than 15? | CREATE TABLE table_name_98 (fa_trophy INTEGER, player VARCHAR, league VARCHAR) | SELECT SUM(fa_trophy) FROM table_name_98 WHERE player = "tony hemmings" AND league > 15 | ### Context: CREATE TABLE table_name_98 (fa_trophy INTEGER, player VARCHAR, league VARCHAR) ### Question: What FA trophys have tony hemmings as the player, with a league greater than 15? ### Answer: SELECT SUM(fa_trophy) FROM table_name_98 WHERE player = "tony hemmings" AND league > 15 |
What is the score where the country is Japan? | CREATE TABLE table_name_95 (score VARCHAR, country VARCHAR) | SELECT score FROM table_name_95 WHERE country = "japan" | ### Context: CREATE TABLE table_name_95 (score VARCHAR, country VARCHAR) ### Question: What is the score where the country is Japan? ### Answer: SELECT score FROM table_name_95 WHERE country = "japan" |
Which province has muju as the capital? | CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR) | SELECT province FROM table_name_82 WHERE capital = "muju" | ### Context: CREATE TABLE table_name_82 (province VARCHAR, capital VARCHAR) ### Question: Which province has muju as the capital? ### Answer: SELECT province FROM table_name_82 WHERE capital = "muju" |
What is the modern equivalent of 良州 in Hanja? | CREATE TABLE table_name_17 (modern_equivalent VARCHAR, hanja VARCHAR) | SELECT modern_equivalent FROM table_name_17 WHERE hanja = "良州" | ### Context: CREATE TABLE table_name_17 (modern_equivalent VARCHAR, hanja VARCHAR) ### Question: What is the modern equivalent of 良州 in Hanja? ### Answer: SELECT modern_equivalent FROM table_name_17 WHERE hanja = "良州" |
What is the capital of the province with 양주 in Hangul? | CREATE TABLE table_name_21 (capital VARCHAR, hangul VARCHAR) | SELECT capital FROM table_name_21 WHERE hangul = "양주" | ### Context: CREATE TABLE table_name_21 (capital VARCHAR, hangul VARCHAR) ### Question: What is the capital of the province with 양주 in Hangul? ### Answer: SELECT capital FROM table_name_21 WHERE hangul = "양주" |
What is the capital of the province with 漢州 in Hanja? | CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR) | SELECT capital FROM table_name_88 WHERE hanja = "漢州" | ### Context: CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR) ### Question: What is the capital of the province with 漢州 in Hanja? ### Answer: SELECT capital FROM table_name_88 WHERE hanja = "漢州" |
What is the Hanja for the sakju province? | CREATE TABLE table_name_78 (hanja VARCHAR, province VARCHAR) | SELECT hanja FROM table_name_78 WHERE province = "sakju" | ### Context: CREATE TABLE table_name_78 (hanja VARCHAR, province VARCHAR) ### Question: What is the Hanja for the sakju province? ### Answer: SELECT hanja FROM table_name_78 WHERE province = "sakju" |
What is the fewest number of top-25s for events with more than 0 wins? | CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER) | SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0 | ### Context: CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER) ### Question: What is the fewest number of top-25s for events with more than 0 wins? ### Answer: SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0 |
What is the highest number of top-10s in events with more than 0 wins? | CREATE TABLE table_name_46 (top_10 INTEGER, wins INTEGER) | SELECT MAX(top_10) FROM table_name_46 WHERE wins > 0 | ### Context: CREATE TABLE table_name_46 (top_10 INTEGER, wins INTEGER) ### Question: What is the highest number of top-10s in events with more than 0 wins? ### Answer: SELECT MAX(top_10) FROM table_name_46 WHERE wins > 0 |
What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10? | CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR) | SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1 | ### Context: CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR) ### Question: What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10? ### Answer: SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1 |
Which season had an average under 28, a rank under 10, and a partner of Janja Lesar? | CREATE TABLE table_name_7 (season VARCHAR, professional_partner VARCHAR, average VARCHAR, rank VARCHAR) | SELECT season FROM table_name_7 WHERE average < 28 AND rank < 10 AND professional_partner = "janja lesar" | ### Context: CREATE TABLE table_name_7 (season VARCHAR, professional_partner VARCHAR, average VARCHAR, rank VARCHAR) ### Question: Which season had an average under 28, a rank under 10, and a partner of Janja Lesar? ### Answer: SELECT season FROM table_name_7 WHERE average < 28 AND rank < 10 AND professional_partner = "janja lesar" |
What is the highest season that had rank under 1? | CREATE TABLE table_name_45 (season INTEGER, rank INTEGER) | SELECT MAX(season) FROM table_name_45 WHERE rank < 1 | ### Context: CREATE TABLE table_name_45 (season INTEGER, rank INTEGER) ### Question: What is the highest season that had rank under 1? ### Answer: SELECT MAX(season) FROM table_name_45 WHERE rank < 1 |
Who was the professional partner in season 4? | CREATE TABLE table_name_29 (professional_partner VARCHAR, season VARCHAR) | SELECT professional_partner FROM table_name_29 WHERE season = 4 | ### Context: CREATE TABLE table_name_29 (professional_partner VARCHAR, season VARCHAR) ### Question: Who was the professional partner in season 4? ### Answer: SELECT professional_partner FROM table_name_29 WHERE season = 4 |
Who had the highest rebounds against detroit? | CREATE TABLE table_name_65 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_name_65 WHERE team = "detroit" | ### Context: CREATE TABLE table_name_65 (high_rebounds VARCHAR, team VARCHAR) ### Question: Who had the highest rebounds against detroit? ### Answer: SELECT high_rebounds FROM table_name_65 WHERE team = "detroit" |
How much gold received by nation of uzbekistan (uzb)? | CREATE TABLE table_name_93 (gold INTEGER, nation VARCHAR) | SELECT MAX(gold) FROM table_name_93 WHERE nation = "uzbekistan (uzb)" | ### Context: CREATE TABLE table_name_93 (gold INTEGER, nation VARCHAR) ### Question: How much gold received by nation of uzbekistan (uzb)? ### Answer: SELECT MAX(gold) FROM table_name_93 WHERE nation = "uzbekistan (uzb)" |
Which team has the lowest gold and 0 silver? | CREATE TABLE table_name_68 (gold INTEGER, silver INTEGER) | SELECT MIN(gold) FROM table_name_68 WHERE silver < 0 | ### Context: CREATE TABLE table_name_68 (gold INTEGER, silver INTEGER) ### Question: Which team has the lowest gold and 0 silver? ### Answer: SELECT MIN(gold) FROM table_name_68 WHERE silver < 0 |
How much gold when silver, bronze and total is smaller than 1? | CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR) | SELECT MAX(gold) FROM table_name_27 WHERE silver < 1 AND bronze = 1 AND total < 1 | ### Context: CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR) ### Question: How much gold when silver, bronze and total is smaller than 1? ### Answer: SELECT MAX(gold) FROM table_name_27 WHERE silver < 1 AND bronze = 1 AND total < 1 |
What is the ICAO with commenced operations before 1989? | CREATE TABLE table_name_2 (icao VARCHAR, commenced_operations INTEGER) | SELECT icao FROM table_name_2 WHERE commenced_operations < 1989 | ### Context: CREATE TABLE table_name_2 (icao VARCHAR, commenced_operations INTEGER) ### Question: What is the ICAO with commenced operations before 1989? ### Answer: SELECT icao FROM table_name_2 WHERE commenced_operations < 1989 |
What is the lowest commenced operations that has a nouvelair callsign? | CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR) | SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = "nouvelair" | ### Context: CREATE TABLE table_name_90 (commenced_operations INTEGER, callsign VARCHAR) ### Question: What is the lowest commenced operations that has a nouvelair callsign? ### Answer: SELECT MIN(commenced_operations) FROM table_name_90 WHERE callsign = "nouvelair" |
What callsign has commenced operations in 2011? | CREATE TABLE table_name_34 (callsign VARCHAR, commenced_operations VARCHAR) | SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011 | ### Context: CREATE TABLE table_name_34 (callsign VARCHAR, commenced_operations VARCHAR) ### Question: What callsign has commenced operations in 2011? ### Answer: SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011 |
What language is used when the service is sky primafila 10 and the package/option is qualsiasi? | CREATE TABLE table_name_19 (language VARCHAR, package_option VARCHAR, television_service VARCHAR) | SELECT language FROM table_name_19 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 10" | ### Context: CREATE TABLE table_name_19 (language VARCHAR, package_option VARCHAR, television_service VARCHAR) ### Question: What language is used when the service is sky primafila 10 and the package/option is qualsiasi? ### Answer: SELECT language FROM table_name_19 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 10" |
What is the content when the package/option is qualsiasi and sky primafila 14 is the television service? | CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR) | SELECT content FROM table_name_13 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 14" | ### Context: CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR) ### Question: What is the content when the package/option is qualsiasi and sky primafila 14 is the television service? ### Answer: SELECT content FROM table_name_13 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 14" |
What is the HDTV that has television service of tv 8 mont blanc and content is general television? | CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_name_26 WHERE content = "general television" AND television_service = "tv 8 mont blanc" | ### Context: CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR) ### Question: What is the HDTV that has television service of tv 8 mont blanc and content is general television? ### Answer: SELECT hdtv FROM table_name_26 WHERE content = "general television" AND television_service = "tv 8 mont blanc" |
Which city's IATA is nkg? | CREATE TABLE table_name_64 (city VARCHAR, iata VARCHAR) | SELECT city FROM table_name_64 WHERE iata = "nkg" | ### Context: CREATE TABLE table_name_64 (city VARCHAR, iata VARCHAR) ### Question: Which city's IATA is nkg? ### Answer: SELECT city FROM table_name_64 WHERE iata = "nkg" |
Which airport is in Xinjiang province in the city Kuqa? | CREATE TABLE table_name_45 (airport VARCHAR, province VARCHAR, city VARCHAR) | SELECT airport FROM table_name_45 WHERE province = "xinjiang" AND city = "kuqa" | ### Context: CREATE TABLE table_name_45 (airport VARCHAR, province VARCHAR, city VARCHAR) ### Question: Which airport is in Xinjiang province in the city Kuqa? ### Answer: SELECT airport FROM table_name_45 WHERE province = "xinjiang" AND city = "kuqa" |
Which province's IATA is kix? | CREATE TABLE table_name_21 (province VARCHAR, iata VARCHAR) | SELECT province FROM table_name_21 WHERE iata = "kix" | ### Context: CREATE TABLE table_name_21 (province VARCHAR, iata VARCHAR) ### Question: Which province's IATA is kix? ### Answer: SELECT province FROM table_name_21 WHERE iata = "kix" |
Which airport's IATA is pen? | CREATE TABLE table_name_31 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_31 WHERE iata = "pen" | ### Context: CREATE TABLE table_name_31 (airport VARCHAR, iata VARCHAR) ### Question: Which airport's IATA is pen? ### Answer: SELECT airport FROM table_name_31 WHERE iata = "pen" |
Which Event has a Record of 4:02.54? | CREATE TABLE table_name_90 (event VARCHAR, record VARCHAR) | SELECT event FROM table_name_90 WHERE record = "4:02.54" | ### Context: CREATE TABLE table_name_90 (event VARCHAR, record VARCHAR) ### Question: Which Event has a Record of 4:02.54? ### Answer: SELECT event FROM table_name_90 WHERE record = "4:02.54" |
Whcih Date has an Event of 3000 m? | CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR) | SELECT date FROM table_name_6 WHERE event = "3000 m" | ### Context: CREATE TABLE table_name_6 (date VARCHAR, event VARCHAR) ### Question: Whcih Date has an Event of 3000 m? ### Answer: SELECT date FROM table_name_6 WHERE event = "3000 m" |
Which Record has a Date of 23 february 1986? | CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_20 WHERE date = "23 february 1986" | ### Context: CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR) ### Question: Which Record has a Date of 23 february 1986? ### Answer: SELECT record FROM table_name_20 WHERE date = "23 february 1986" |
Which Date has a Record of 8:39.49? | CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_95 WHERE record = "8:39.49" | ### Context: CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 8:39.49? ### Answer: SELECT date FROM table_name_95 WHERE record = "8:39.49" |
Which Record has a Date of 3 march 2013? | CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_71 WHERE date = "3 march 2013" | ### Context: CREATE TABLE table_name_71 (record VARCHAR, date VARCHAR) ### Question: Which Record has a Date of 3 march 2013? ### Answer: SELECT record FROM table_name_71 WHERE date = "3 march 2013" |
Which Nation has a Record of 15.16 m? | CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR) | SELECT nation FROM table_name_84 WHERE record = "15.16 m" | ### Context: CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR) ### Question: Which Nation has a Record of 15.16 m? ### Answer: SELECT nation FROM table_name_84 WHERE record = "15.16 m" |
What is the Nationality of the Player with more than 8 Goals and Apps of 52? | CREATE TABLE table_name_5 (nationality VARCHAR, goals VARCHAR, apps VARCHAR) | SELECT nationality FROM table_name_5 WHERE goals > 8 AND apps = 52 | ### Context: CREATE TABLE table_name_5 (nationality VARCHAR, goals VARCHAR, apps VARCHAR) ### Question: What is the Nationality of the Player with more than 8 Goals and Apps of 52? ### Answer: SELECT nationality FROM table_name_5 WHERE goals > 8 AND apps = 52 |
How many Apps did Player Gilberto with more than 1 Goals have? | CREATE TABLE table_name_64 (apps INTEGER, player VARCHAR, goals VARCHAR) | SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1 | ### Context: CREATE TABLE table_name_64 (apps INTEGER, player VARCHAR, goals VARCHAR) ### Question: How many Apps did Player Gilberto with more than 1 Goals have? ### Answer: SELECT AVG(apps) FROM table_name_64 WHERE player = "gilberto" AND goals > 1 |
On what date was the 4th round, with home team Itabuna, played? | CREATE TABLE table_name_4 (date VARCHAR, round VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_4 WHERE round = "4th" AND home_team = "itabuna" | ### Context: CREATE TABLE table_name_4 (date VARCHAR, round VARCHAR, home_team VARCHAR) ### Question: On what date was the 4th round, with home team Itabuna, played? ### Answer: SELECT date FROM table_name_4 WHERE round = "4th" AND home_team = "itabuna" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.