question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?
CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = "switzerland" AND silver < 0
### Context: CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR) ### Question: What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0? ### Answer: SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = "switzerland" AND silver < 0
What is the total Gold with a Bronze smaller than 7, a Total of 1, a Nation of cape verde, and a Silver smaller than 0?
CREATE TABLE table_name_48 (gold INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT SUM(gold) FROM table_name_48 WHERE bronze < 7 AND total = 1 AND nation = "cape verde" AND silver < 0
### Context: CREATE TABLE table_name_48 (gold INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: What is the total Gold with a Bronze smaller than 7, a Total of 1, a Nation of cape verde, and a Silver smaller than 0? ### Answer: SELECT SUM(gold) FROM table_name_48 WHERE bronze < 7 AND total = 1 AND nation = "cape verde" AND silver < 0
How powerful is the model before 1999?
CREATE TABLE table_name_58 (power VARCHAR, year INTEGER)
SELECT power FROM table_name_58 WHERE year < 1999
### Context: CREATE TABLE table_name_58 (power VARCHAR, year INTEGER) ### Question: How powerful is the model before 1999? ### Answer: SELECT power FROM table_name_58 WHERE year < 1999
What displacement is the model in 1999 with a Torque of 280n·m (207lb·ft) @ 1750?
CREATE TABLE table_name_61 (displacement VARCHAR, year VARCHAR, torque VARCHAR)
SELECT displacement FROM table_name_61 WHERE year = 1999 AND torque = "280n·m (207lb·ft) @ 1750"
### Context: CREATE TABLE table_name_61 (displacement VARCHAR, year VARCHAR, torque VARCHAR) ### Question: What displacement is the model in 1999 with a Torque of 280n·m (207lb·ft) @ 1750? ### Answer: SELECT displacement FROM table_name_61 WHERE year = 1999 AND torque = "280n·m (207lb·ft) @ 1750"
When is the earliest year with a Power of 90kw (121hp) @ 4000?
CREATE TABLE table_name_56 (year INTEGER, power VARCHAR)
SELECT MIN(year) FROM table_name_56 WHERE power = "90kw (121hp) @ 4000"
### Context: CREATE TABLE table_name_56 (year INTEGER, power VARCHAR) ### Question: When is the earliest year with a Power of 90kw (121hp) @ 4000? ### Answer: SELECT MIN(year) FROM table_name_56 WHERE power = "90kw (121hp) @ 4000"
When is the earliest year with a Torque of 330n·m (243lb·ft) @ 2000-2500?
CREATE TABLE table_name_55 (year INTEGER, torque VARCHAR)
SELECT MIN(year) FROM table_name_55 WHERE torque = "330n·m (243lb·ft) @ 2000-2500"
### Context: CREATE TABLE table_name_55 (year INTEGER, torque VARCHAR) ### Question: When is the earliest year with a Torque of 330n·m (243lb·ft) @ 2000-2500? ### Answer: SELECT MIN(year) FROM table_name_55 WHERE torque = "330n·m (243lb·ft) @ 2000-2500"
What week 14 has the lowest attendance?
CREATE TABLE table_name_75 (attendance INTEGER, week VARCHAR)
SELECT MIN(attendance) FROM table_name_75 WHERE week = 14
### Context: CREATE TABLE table_name_75 (attendance INTEGER, week VARCHAR) ### Question: What week 14 has the lowest attendance? ### Answer: SELECT MIN(attendance) FROM table_name_75 WHERE week = 14
What is the highest attendance on September 14, 1986?
CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_name_84 WHERE date = "september 14, 1986"
### Context: CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR) ### Question: What is the highest attendance on September 14, 1986? ### Answer: SELECT MAX(attendance) FROM table_name_84 WHERE date = "september 14, 1986"
What type is the race with the vicenza to marostica course?
CREATE TABLE table_name_29 (type VARCHAR, course VARCHAR)
SELECT type FROM table_name_29 WHERE course = "vicenza to marostica"
### Context: CREATE TABLE table_name_29 (type VARCHAR, course VARCHAR) ### Question: What type is the race with the vicenza to marostica course? ### Answer: SELECT type FROM table_name_29 WHERE course = "vicenza to marostica"
Name the 2005 for 2003 of a and 2011 of 3r
CREATE TABLE table_name_82 (Id VARCHAR)
SELECT 2005 FROM table_name_82 WHERE 2003 = "a" AND 2011 = "3r"
### Context: CREATE TABLE table_name_82 (Id VARCHAR) ### Question: Name the 2005 for 2003 of a and 2011 of 3r ### Answer: SELECT 2005 FROM table_name_82 WHERE 2003 = "a" AND 2011 = "3r"
Name the 2006 with 2003 of a and 2012 of a
CREATE TABLE table_name_1 (Id VARCHAR)
SELECT 2006 FROM table_name_1 WHERE 2003 = "a" AND 2012 = "a"
### Context: CREATE TABLE table_name_1 (Id VARCHAR) ### Question: Name the 2006 with 2003 of a and 2012 of a ### Answer: SELECT 2006 FROM table_name_1 WHERE 2003 = "a" AND 2012 = "a"
Name the 2010 for 2006 of 2r
CREATE TABLE table_name_9 (Id VARCHAR)
SELECT 2010 FROM table_name_9 WHERE 2006 = "2r"
### Context: CREATE TABLE table_name_9 (Id VARCHAR) ### Question: Name the 2010 for 2006 of 2r ### Answer: SELECT 2010 FROM table_name_9 WHERE 2006 = "2r"
Name the 2007 for 2005 of a and 003 of a with 2009 of sf
CREATE TABLE table_name_17 (Id VARCHAR)
SELECT 2007 FROM table_name_17 WHERE 2005 = "a" AND 2003 = "a" AND 2009 = "sf"
### Context: CREATE TABLE table_name_17 (Id VARCHAR) ### Question: Name the 2007 for 2005 of a and 003 of a with 2009 of sf ### Answer: SELECT 2007 FROM table_name_17 WHERE 2005 = "a" AND 2003 = "a" AND 2009 = "sf"
Name the 2011 with 2006 of 2r
CREATE TABLE table_name_97 (Id VARCHAR)
SELECT 2011 FROM table_name_97 WHERE 2006 = "2r"
### Context: CREATE TABLE table_name_97 (Id VARCHAR) ### Question: Name the 2011 with 2006 of 2r ### Answer: SELECT 2011 FROM table_name_97 WHERE 2006 = "2r"
what was the venue on 7 october 2011?
CREATE TABLE table_name_11 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_11 WHERE date = "7 october 2011"
### Context: CREATE TABLE table_name_11 (venue VARCHAR, date VARCHAR) ### Question: what was the venue on 7 october 2011? ### Answer: SELECT venue FROM table_name_11 WHERE date = "7 october 2011"
What is the highest number of the match with julio césar vásquez as the opponent?
CREATE TABLE table_name_74 (number INTEGER, opponent VARCHAR)
SELECT MAX(number) FROM table_name_74 WHERE opponent = "julio césar vásquez"
### Context: CREATE TABLE table_name_74 (number INTEGER, opponent VARCHAR) ### Question: What is the highest number of the match with julio césar vásquez as the opponent? ### Answer: SELECT MAX(number) FROM table_name_74 WHERE opponent = "julio césar vásquez"
Who was the opponent of the match on 2006-04-08?
CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_47 WHERE date = "2006-04-08"
### Context: CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent of the match on 2006-04-08? ### Answer: SELECT opponent FROM table_name_47 WHERE date = "2006-04-08"
What is the result of the match with Zab Judah as the opponent?
CREATE TABLE table_name_42 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_42 WHERE opponent = "zab judah"
### Context: CREATE TABLE table_name_42 (result VARCHAR, opponent VARCHAR) ### Question: What is the result of the match with Zab Judah as the opponent? ### Answer: SELECT result FROM table_name_42 WHERE opponent = "zab judah"
What is the date of the match with a result of ud 12/12 between Pernell Whitaker and James Mcgirt?
CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, result VARCHAR, name VARCHAR)
SELECT date FROM table_name_87 WHERE result = "ud 12/12" AND name = "pernell whitaker" AND opponent = "james mcgirt"
### Context: CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, result VARCHAR, name VARCHAR) ### Question: What is the date of the match with a result of ud 12/12 between Pernell Whitaker and James Mcgirt? ### Answer: SELECT date FROM table_name_87 WHERE result = "ud 12/12" AND name = "pernell whitaker" AND opponent = "james mcgirt"
What score was on 13 June 2004?
CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_50 WHERE date = "13 june 2004"
### Context: CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) ### Question: What score was on 13 June 2004? ### Answer: SELECT score FROM table_name_50 WHERE date = "13 june 2004"
Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008?
CREATE TABLE table_name_50 (rider VARCHAR, year VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)
SELECT rider FROM table_name_50 WHERE final_position___tour < 50 AND final_position___vuelta < 11 AND year < 2008
### Context: CREATE TABLE table_name_50 (rider VARCHAR, year VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR) ### Question: Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008? ### Answer: SELECT rider FROM table_name_50 WHERE final_position___tour < 50 AND final_position___vuelta < 11 AND year < 2008
What is the earliest year of Valdimir Poelnikov, who has a final position-tour bigger than 72, a final position-vuelta less than 77, and a final position-giro less than 57?
CREATE TABLE table_name_67 (year INTEGER, rider VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)
SELECT MIN(year) FROM table_name_67 WHERE final_position___tour > 72 AND final_position___vuelta < 77 AND final_position___giro < 57 AND rider = "valdimir poelnikov"
### Context: CREATE TABLE table_name_67 (year INTEGER, rider VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR) ### Question: What is the earliest year of Valdimir Poelnikov, who has a final position-tour bigger than 72, a final position-vuelta less than 77, and a final position-giro less than 57? ### Answer: SELECT MIN(year) FROM table_name_67 WHERE final_position___tour > 72 AND final_position___vuelta < 77 AND final_position___giro < 57 AND rider = "valdimir poelnikov"
What is the number of final position-tours Mariano Piccoli, who has more than 20 final position-giros, before 1999 has?
CREATE TABLE table_name_95 (final_position___tour VARCHAR, year VARCHAR, final_position___giro VARCHAR, rider VARCHAR)
SELECT COUNT(final_position___tour) FROM table_name_95 WHERE final_position___giro > 20 AND rider = "mariano piccoli" AND year < 1999
### Context: CREATE TABLE table_name_95 (final_position___tour VARCHAR, year VARCHAR, final_position___giro VARCHAR, rider VARCHAR) ### Question: What is the number of final position-tours Mariano Piccoli, who has more than 20 final position-giros, before 1999 has? ### Answer: SELECT COUNT(final_position___tour) FROM table_name_95 WHERE final_position___giro > 20 AND rider = "mariano piccoli" AND year < 1999
What year was the rider with a final position-tour of 88 and less than 11 final position-giros?
CREATE TABLE table_name_29 (year INTEGER, final_position___tour VARCHAR, final_position___giro VARCHAR)
SELECT SUM(year) FROM table_name_29 WHERE final_position___tour = 88 AND final_position___giro < 11
### Context: CREATE TABLE table_name_29 (year INTEGER, final_position___tour VARCHAR, final_position___giro VARCHAR) ### Question: What year was the rider with a final position-tour of 88 and less than 11 final position-giros? ### Answer: SELECT SUM(year) FROM table_name_29 WHERE final_position___tour = 88 AND final_position___giro < 11
How much did they lose by on April 26?
CREATE TABLE table_name_67 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_67 WHERE date = "april 26"
### Context: CREATE TABLE table_name_67 (loss VARCHAR, date VARCHAR) ### Question: How much did they lose by on April 26? ### Answer: SELECT loss FROM table_name_67 WHERE date = "april 26"
What was the highest attendance when the opponent was the Indians and the record was 13-4?
CREATE TABLE table_name_99 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
SELECT MAX(attendance) FROM table_name_99 WHERE opponent = "indians" AND record = "13-4"
### Context: CREATE TABLE table_name_99 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: What was the highest attendance when the opponent was the Indians and the record was 13-4? ### Answer: SELECT MAX(attendance) FROM table_name_99 WHERE opponent = "indians" AND record = "13-4"
What day did the record reach 15-4?
CREATE TABLE table_name_75 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_75 WHERE record = "15-4"
### Context: CREATE TABLE table_name_75 (date VARCHAR, record VARCHAR) ### Question: What day did the record reach 15-4? ### Answer: SELECT date FROM table_name_75 WHERE record = "15-4"
What is the number of ranking when the nationalits is England with more than 53 goals?
CREATE TABLE table_name_2 (ranking INTEGER, nationality VARCHAR, goals VARCHAR)
SELECT SUM(ranking) FROM table_name_2 WHERE nationality = "england" AND goals > 53
### Context: CREATE TABLE table_name_2 (ranking INTEGER, nationality VARCHAR, goals VARCHAR) ### Question: What is the number of ranking when the nationalits is England with more than 53 goals? ### Answer: SELECT SUM(ranking) FROM table_name_2 WHERE nationality = "england" AND goals > 53
What is the lowest ranking for Paul Mctiernan?
CREATE TABLE table_name_67 (ranking INTEGER, name VARCHAR)
SELECT MIN(ranking) FROM table_name_67 WHERE name = "paul mctiernan"
### Context: CREATE TABLE table_name_67 (ranking INTEGER, name VARCHAR) ### Question: What is the lowest ranking for Paul Mctiernan? ### Answer: SELECT MIN(ranking) FROM table_name_67 WHERE name = "paul mctiernan"
What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee?
CREATE TABLE table_name_38 (years VARCHAR, name VARCHAR, ranking VARCHAR, goals VARCHAR)
SELECT years FROM table_name_38 WHERE ranking < 8 AND goals < 66 AND name = "paul mcgee"
### Context: CREATE TABLE table_name_38 (years VARCHAR, name VARCHAR, ranking VARCHAR, goals VARCHAR) ### Question: What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee? ### Answer: SELECT years FROM table_name_38 WHERE ranking < 8 AND goals < 66 AND name = "paul mcgee"
Which entrant has a year after 1999?
CREATE TABLE table_name_59 (entrant VARCHAR, year INTEGER)
SELECT entrant FROM table_name_59 WHERE year > 1999
### Context: CREATE TABLE table_name_59 (entrant VARCHAR, year INTEGER) ### Question: Which entrant has a year after 1999? ### Answer: SELECT entrant FROM table_name_59 WHERE year > 1999
Round 1 of beat lee janzen 3&2, and a Year smaller than 1998 has what total number of place?
CREATE TABLE table_name_40 (place VARCHAR, round_1 VARCHAR, year VARCHAR)
SELECT COUNT(place) FROM table_name_40 WHERE round_1 = "beat lee janzen 3&2" AND year < 1998
### Context: CREATE TABLE table_name_40 (place VARCHAR, round_1 VARCHAR, year VARCHAR) ### Question: Round 1 of beat lee janzen 3&2, and a Year smaller than 1998 has what total number of place? ### Answer: SELECT COUNT(place) FROM table_name_40 WHERE round_1 = "beat lee janzen 3&2" AND year < 1998
Round 1 of 71 has how many highest money?
CREATE TABLE table_name_33 (money__ INTEGER, round_1 VARCHAR)
SELECT MAX(money__) AS $_ FROM table_name_33 WHERE round_1 = "71"
### Context: CREATE TABLE table_name_33 (money__ INTEGER, round_1 VARCHAR) ### Question: Round 1 of 71 has how many highest money? ### Answer: SELECT MAX(money__) AS $_ FROM table_name_33 WHERE round_1 = "71"
Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year?
CREATE TABLE table_name_19 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR)
SELECT SUM(year) FROM table_name_19 WHERE round_1 = "66" AND money__$_ > 400 OFFSET 000
### Context: CREATE TABLE table_name_19 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR) ### Question: Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year? ### Answer: SELECT SUM(year) FROM table_name_19 WHERE round_1 = "66" AND money__$_ > 400 OFFSET 000
Round 1 of 70, and a Money ($) larger than 500,000 has the highest year?
CREATE TABLE table_name_72 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR)
SELECT MAX(year) FROM table_name_72 WHERE round_1 = "70" AND money__$_ > 500 OFFSET 000
### Context: CREATE TABLE table_name_72 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR) ### Question: Round 1 of 70, and a Money ($) larger than 500,000 has the highest year? ### Answer: SELECT MAX(year) FROM table_name_72 WHERE round_1 = "70" AND money__$_ > 500 OFFSET 000
When was the latest debut in Europe for Henrik Larsson, with less than 108 games?
CREATE TABLE table_name_57 (debut_in_europe INTEGER, player VARCHAR, games VARCHAR)
SELECT MAX(debut_in_europe) FROM table_name_57 WHERE player = "henrik larsson" AND games < 108
### Context: CREATE TABLE table_name_57 (debut_in_europe INTEGER, player VARCHAR, games VARCHAR) ### Question: When was the latest debut in Europe for Henrik Larsson, with less than 108 games? ### Answer: SELECT MAX(debut_in_europe) FROM table_name_57 WHERE player = "henrik larsson" AND games < 108
What were the lowest goals with a debut before 1961 in Europe?
CREATE TABLE table_name_53 (goals INTEGER, debut_in_europe INTEGER)
SELECT MIN(goals) FROM table_name_53 WHERE debut_in_europe < 1961
### Context: CREATE TABLE table_name_53 (goals INTEGER, debut_in_europe INTEGER) ### Question: What were the lowest goals with a debut before 1961 in Europe? ### Answer: SELECT MIN(goals) FROM table_name_53 WHERE debut_in_europe < 1961
What was Thierry Henry's average goal when his rank was higher than 7?
CREATE TABLE table_name_17 (goals INTEGER, player VARCHAR, rank VARCHAR)
SELECT AVG(goals) FROM table_name_17 WHERE player = "thierry henry" AND rank > 7
### Context: CREATE TABLE table_name_17 (goals INTEGER, player VARCHAR, rank VARCHAR) ### Question: What was Thierry Henry's average goal when his rank was higher than 7? ### Answer: SELECT AVG(goals) FROM table_name_17 WHERE player = "thierry henry" AND rank > 7
Name the surface for february 25, 1996
CREATE TABLE table_name_58 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_58 WHERE date = "february 25, 1996"
### Context: CREATE TABLE table_name_58 (surface VARCHAR, date VARCHAR) ### Question: Name the surface for february 25, 1996 ### Answer: SELECT surface FROM table_name_58 WHERE date = "february 25, 1996"
Name the tournament for may 18, 1997
CREATE TABLE table_name_90 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_90 WHERE date = "may 18, 1997"
### Context: CREATE TABLE table_name_90 (tournament VARCHAR, date VARCHAR) ### Question: Name the tournament for may 18, 1997 ### Answer: SELECT tournament FROM table_name_90 WHERE date = "may 18, 1997"
Name the partner for may 2, 1993
CREATE TABLE table_name_8 (partner VARCHAR, date VARCHAR)
SELECT partner FROM table_name_8 WHERE date = "may 2, 1993"
### Context: CREATE TABLE table_name_8 (partner VARCHAR, date VARCHAR) ### Question: Name the partner for may 2, 1993 ### Answer: SELECT partner FROM table_name_8 WHERE date = "may 2, 1993"
Name the opponents for may 18, 1997
CREATE TABLE table_name_80 (opponents VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_80 WHERE date = "may 18, 1997"
### Context: CREATE TABLE table_name_80 (opponents VARCHAR, date VARCHAR) ### Question: Name the opponents for may 18, 1997 ### Answer: SELECT opponents FROM table_name_80 WHERE date = "may 18, 1997"
When the call sign is wpib, what is lowest ERP W?
CREATE TABLE table_name_21 (erp_w INTEGER, call_sign VARCHAR)
SELECT MIN(erp_w) FROM table_name_21 WHERE call_sign = "wpib"
### Context: CREATE TABLE table_name_21 (erp_w INTEGER, call_sign VARCHAR) ### Question: When the call sign is wpib, what is lowest ERP W? ### Answer: SELECT MIN(erp_w) FROM table_name_21 WHERE call_sign = "wpib"
Which class's call sign is wokg?
CREATE TABLE table_name_44 (class VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_44 WHERE call_sign = "wokg"
### Context: CREATE TABLE table_name_44 (class VARCHAR, call_sign VARCHAR) ### Question: Which class's call sign is wokg? ### Answer: SELECT class FROM table_name_44 WHERE call_sign = "wokg"
The frequency 89.3 belongs to what class?
CREATE TABLE table_name_79 (class VARCHAR, frequency_mhz VARCHAR)
SELECT class FROM table_name_79 WHERE frequency_mhz = 89.3
### Context: CREATE TABLE table_name_79 (class VARCHAR, frequency_mhz VARCHAR) ### Question: The frequency 89.3 belongs to what class? ### Answer: SELECT class FROM table_name_79 WHERE frequency_mhz = 89.3
With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?
CREATE TABLE table_name_51 (high_estimate INTEGER, low_estimate VARCHAR, type VARCHAR, location VARCHAR)
SELECT SUM(high_estimate) FROM table_name_51 WHERE type = "mass suicide" AND location = "france" AND low_estimate > 16
### Context: CREATE TABLE table_name_51 (high_estimate INTEGER, low_estimate VARCHAR, type VARCHAR, location VARCHAR) ### Question: With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number? ### Answer: SELECT SUM(high_estimate) FROM table_name_51 WHERE type = "mass suicide" AND location = "france" AND low_estimate > 16
What is the sum of low estimate(s) that is listed for the date of 1978?
CREATE TABLE table_name_66 (low_estimate INTEGER, date VARCHAR)
SELECT SUM(low_estimate) FROM table_name_66 WHERE date = "1978"
### Context: CREATE TABLE table_name_66 (low_estimate INTEGER, date VARCHAR) ### Question: What is the sum of low estimate(s) that is listed for the date of 1978? ### Answer: SELECT SUM(low_estimate) FROM table_name_66 WHERE date = "1978"
What is the highest total number of finals a club with more than 2 runners-up and fewer than 1 winner went to?
CREATE TABLE table_name_56 (total_finals INTEGER, runners_up VARCHAR, winners VARCHAR)
SELECT MAX(total_finals) FROM table_name_56 WHERE runners_up > 2 AND winners < 1
### Context: CREATE TABLE table_name_56 (total_finals INTEGER, runners_up VARCHAR, winners VARCHAR) ### Question: What is the highest total number of finals a club with more than 2 runners-up and fewer than 1 winner went to? ### Answer: SELECT MAX(total_finals) FROM table_name_56 WHERE runners_up > 2 AND winners < 1
How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs?
CREATE TABLE table_name_6 (receptions VARCHAR, receiving_yards VARCHAR, rushing_tds VARCHAR)
SELECT COUNT(receptions) FROM table_name_6 WHERE receiving_yards < 161 AND rushing_tds < 14
### Context: CREATE TABLE table_name_6 (receptions VARCHAR, receiving_yards VARCHAR, rushing_tds VARCHAR) ### Question: How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs? ### Answer: SELECT COUNT(receptions) FROM table_name_6 WHERE receiving_yards < 161 AND rushing_tds < 14
What was the greatest number of rushing yards for a runner who had 283 rushes and less than 10 rushing TDs?
CREATE TABLE table_name_16 (rushing_yards INTEGER, rushes VARCHAR, rushing_tds VARCHAR)
SELECT MAX(rushing_yards) FROM table_name_16 WHERE rushes = 283 AND rushing_tds < 10
### Context: CREATE TABLE table_name_16 (rushing_yards INTEGER, rushes VARCHAR, rushing_tds VARCHAR) ### Question: What was the greatest number of rushing yards for a runner who had 283 rushes and less than 10 rushing TDs? ### Answer: SELECT MAX(rushing_yards) FROM table_name_16 WHERE rushes = 283 AND rushing_tds < 10
What was the Agg., when Team 1 was VSADC?
CREATE TABLE table_name_38 (agg VARCHAR, team_1 VARCHAR)
SELECT agg FROM table_name_38 WHERE team_1 = "vsadc"
### Context: CREATE TABLE table_name_38 (agg VARCHAR, team_1 VARCHAR) ### Question: What was the Agg., when Team 1 was VSADC? ### Answer: SELECT agg FROM table_name_38 WHERE team_1 = "vsadc"
How many goals were scored by the team that played less than 38 games, and had points of 47+9?
CREATE TABLE table_name_15 (goals_for INTEGER, points VARCHAR, played VARCHAR)
SELECT MAX(goals_for) FROM table_name_15 WHERE points = "47+9" AND played < 38
### Context: CREATE TABLE table_name_15 (goals_for INTEGER, points VARCHAR, played VARCHAR) ### Question: How many goals were scored by the team that played less than 38 games, and had points of 47+9? ### Answer: SELECT MAX(goals_for) FROM table_name_15 WHERE points = "47+9" AND played < 38
What is the average wins of the team with more than 13 draws, a goal difference of -14, and losses less than 14?
CREATE TABLE table_name_15 (wins INTEGER, losses VARCHAR, draws VARCHAR, goal_difference VARCHAR)
SELECT AVG(wins) FROM table_name_15 WHERE draws > 13 AND goal_difference = -14 AND losses < 14
### Context: CREATE TABLE table_name_15 (wins INTEGER, losses VARCHAR, draws VARCHAR, goal_difference VARCHAR) ### Question: What is the average wins of the team with more than 13 draws, a goal difference of -14, and losses less than 14? ### Answer: SELECT AVG(wins) FROM table_name_15 WHERE draws > 13 AND goal_difference = -14 AND losses < 14
In the club of Real Oviedo, what were the points of the competitor with a goal difference less than 38, and 12 wins?
CREATE TABLE table_name_39 (points VARCHAR, club VARCHAR, goal_difference VARCHAR, wins VARCHAR)
SELECT points FROM table_name_39 WHERE goal_difference < 38 AND wins = 12 AND club = "real oviedo"
### Context: CREATE TABLE table_name_39 (points VARCHAR, club VARCHAR, goal_difference VARCHAR, wins VARCHAR) ### Question: In the club of Real Oviedo, what were the points of the competitor with a goal difference less than 38, and 12 wins? ### Answer: SELECT points FROM table_name_39 WHERE goal_difference < 38 AND wins = 12 AND club = "real oviedo"
Name the record for february 25
CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_26 WHERE date = "february 25"
### Context: CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR) ### Question: Name the record for february 25 ### Answer: SELECT record FROM table_name_26 WHERE date = "february 25"
What nationality has 116 appearances?
CREATE TABLE table_name_63 (nationality VARCHAR, appearances VARCHAR)
SELECT nationality FROM table_name_63 WHERE appearances = 116
### Context: CREATE TABLE table_name_63 (nationality VARCHAR, appearances VARCHAR) ### Question: What nationality has 116 appearances? ### Answer: SELECT nationality FROM table_name_63 WHERE appearances = 116
What is the captaincy for Defender that has less than 212 appearances and 12 goals?
CREATE TABLE table_name_89 (captaincy VARCHAR, appearances VARCHAR, goals VARCHAR, position_ VARCHAR, a_ VARCHAR)
SELECT captaincy FROM table_name_89 WHERE appearances < 212 AND goals = 12 AND position_[a_] = "defender"
### Context: CREATE TABLE table_name_89 (captaincy VARCHAR, appearances VARCHAR, goals VARCHAR, position_ VARCHAR, a_ VARCHAR) ### Question: What is the captaincy for Defender that has less than 212 appearances and 12 goals? ### Answer: SELECT captaincy FROM table_name_89 WHERE appearances < 212 AND goals = 12 AND position_[a_] = "defender"
Attendance larger than 55,189 is which average game?
CREATE TABLE table_name_25 (game INTEGER, attendance INTEGER)
SELECT AVG(game) FROM table_name_25 WHERE attendance > 55 OFFSET 189
### Context: CREATE TABLE table_name_25 (game INTEGER, attendance INTEGER) ### Question: Attendance larger than 55,189 is which average game? ### Answer: SELECT AVG(game) FROM table_name_25 WHERE attendance > 55 OFFSET 189
Game larger than 4, and a Time of 2:26 resulted in what score?
CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, time VARCHAR)
SELECT score FROM table_name_15 WHERE game > 4 AND time = "2:26"
### Context: CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, time VARCHAR) ### Question: Game larger than 4, and a Time of 2:26 resulted in what score? ### Answer: SELECT score FROM table_name_15 WHERE game > 4 AND time = "2:26"
What record does the event of dream 9 with a round of 2 hold?
CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)
SELECT record FROM table_name_19 WHERE round = 2 AND event = "dream 9"
### Context: CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR) ### Question: What record does the event of dream 9 with a round of 2 hold? ### Answer: SELECT record FROM table_name_19 WHERE round = 2 AND event = "dream 9"
What time was Opponent Fredson Paixão beaten in?
CREATE TABLE table_name_68 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_68 WHERE opponent = "fredson paixão"
### Context: CREATE TABLE table_name_68 (time VARCHAR, opponent VARCHAR) ### Question: What time was Opponent Fredson Paixão beaten in? ### Answer: SELECT time FROM table_name_68 WHERE opponent = "fredson paixão"
What league is entering this round with 24 clubs remaining?
CREATE TABLE table_name_39 (leagues_entering_at_this_round VARCHAR, clubs_remaining VARCHAR)
SELECT leagues_entering_at_this_round FROM table_name_39 WHERE clubs_remaining = 24
### Context: CREATE TABLE table_name_39 (leagues_entering_at_this_round VARCHAR, clubs_remaining VARCHAR) ### Question: What league is entering this round with 24 clubs remaining? ### Answer: SELECT leagues_entering_at_this_round FROM table_name_39 WHERE clubs_remaining = 24
How many new entries are there for a second phase that has 4 winners from previous rounds?
CREATE TABLE table_name_71 (new_entries_this_round VARCHAR, phase VARCHAR, winners_from_previous_round VARCHAR)
SELECT new_entries_this_round FROM table_name_71 WHERE phase = "second phase" AND winners_from_previous_round = "4"
### Context: CREATE TABLE table_name_71 (new_entries_this_round VARCHAR, phase VARCHAR, winners_from_previous_round VARCHAR) ### Question: How many new entries are there for a second phase that has 4 winners from previous rounds? ### Answer: SELECT new_entries_this_round FROM table_name_71 WHERE phase = "second phase" AND winners_from_previous_round = "4"
What is the highest number of laps with a 21 start?
CREATE TABLE table_name_42 (laps INTEGER, start VARCHAR)
SELECT MAX(laps) FROM table_name_42 WHERE start = "21"
### Context: CREATE TABLE table_name_42 (laps INTEGER, start VARCHAR) ### Question: What is the highest number of laps with a 21 start? ### Answer: SELECT MAX(laps) FROM table_name_42 WHERE start = "21"
What is the qual for rank 20?
CREATE TABLE table_name_5 (qual VARCHAR, rank VARCHAR)
SELECT qual FROM table_name_5 WHERE rank = "20"
### Context: CREATE TABLE table_name_5 (qual VARCHAR, rank VARCHAR) ### Question: What is the qual for rank 20? ### Answer: SELECT qual FROM table_name_5 WHERE rank = "20"
What is the average number of laps in 1949?
CREATE TABLE table_name_15 (laps INTEGER, year VARCHAR)
SELECT AVG(laps) FROM table_name_15 WHERE year = "1949"
### Context: CREATE TABLE table_name_15 (laps INTEGER, year VARCHAR) ### Question: What is the average number of laps in 1949? ### Answer: SELECT AVG(laps) FROM table_name_15 WHERE year = "1949"
What is the total number of laps with a 128.260 qual?
CREATE TABLE table_name_29 (laps VARCHAR, qual VARCHAR)
SELECT COUNT(laps) FROM table_name_29 WHERE qual = "128.260"
### Context: CREATE TABLE table_name_29 (laps VARCHAR, qual VARCHAR) ### Question: What is the total number of laps with a 128.260 qual? ### Answer: SELECT COUNT(laps) FROM table_name_29 WHERE qual = "128.260"
What is the start number for a rank 11 race with less than 200 laps?
CREATE TABLE table_name_36 (start VARCHAR, laps VARCHAR, rank VARCHAR)
SELECT start FROM table_name_36 WHERE laps < 200 AND rank = "11"
### Context: CREATE TABLE table_name_36 (start VARCHAR, laps VARCHAR, rank VARCHAR) ### Question: What is the start number for a rank 11 race with less than 200 laps? ### Answer: SELECT start FROM table_name_36 WHERE laps < 200 AND rank = "11"
Name the staes on the ballot for jack herer
CREATE TABLE table_name_98 (state_s__on_the_ballot VARCHAR, candidate VARCHAR)
SELECT state_s__on_the_ballot FROM table_name_98 WHERE candidate = "jack herer"
### Context: CREATE TABLE table_name_98 (state_s__on_the_ballot VARCHAR, candidate VARCHAR) ### Question: Name the staes on the ballot for jack herer ### Answer: SELECT state_s__on_the_ballot FROM table_name_98 WHERE candidate = "jack herer"
Name the loss with record of 45-59
CREATE TABLE table_name_87 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_87 WHERE record = "45-59"
### Context: CREATE TABLE table_name_87 (loss VARCHAR, record VARCHAR) ### Question: Name the loss with record of 45-59 ### Answer: SELECT loss FROM table_name_87 WHERE record = "45-59"
Name the loss with record of 38-53
CREATE TABLE table_name_48 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_48 WHERE record = "38-53"
### Context: CREATE TABLE table_name_48 (loss VARCHAR, record VARCHAR) ### Question: Name the loss with record of 38-53 ### Answer: SELECT loss FROM table_name_48 WHERE record = "38-53"
Name the score for record 33-47
CREATE TABLE table_name_30 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_30 WHERE record = "33-47"
### Context: CREATE TABLE table_name_30 (score VARCHAR, record VARCHAR) ### Question: Name the score for record 33-47 ### Answer: SELECT score FROM table_name_30 WHERE record = "33-47"
Name the attendance with record of 34-51
CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_61 WHERE record = "34-51"
### Context: CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR) ### Question: Name the attendance with record of 34-51 ### Answer: SELECT attendance FROM table_name_61 WHERE record = "34-51"
Name the opponent with attendance of 31,777
CREATE TABLE table_name_6 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_6 WHERE attendance = "31,777"
### Context: CREATE TABLE table_name_6 (opponent VARCHAR, attendance VARCHAR) ### Question: Name the opponent with attendance of 31,777 ### Answer: SELECT opponent FROM table_name_6 WHERE attendance = "31,777"
How many points drew 2 with a losing bonus of 5?
CREATE TABLE table_name_12 (points_for VARCHAR, drawn VARCHAR, losing_bonus VARCHAR)
SELECT points_for FROM table_name_12 WHERE drawn = "2" AND losing_bonus = "5"
### Context: CREATE TABLE table_name_12 (points_for VARCHAR, drawn VARCHAR, losing_bonus VARCHAR) ### Question: How many points drew 2 with a losing bonus of 5? ### Answer: SELECT points_for FROM table_name_12 WHERE drawn = "2" AND losing_bonus = "5"
What is the number of tries for that has 30 tries against?
CREATE TABLE table_name_74 (tries_for VARCHAR, tries_against VARCHAR)
SELECT tries_for FROM table_name_74 WHERE tries_against = "30"
### Context: CREATE TABLE table_name_74 (tries_for VARCHAR, tries_against VARCHAR) ### Question: What is the number of tries for that has 30 tries against? ### Answer: SELECT tries_for FROM table_name_74 WHERE tries_against = "30"
How many points did the Bridgend Athletic RFC have?
CREATE TABLE table_name_42 (points VARCHAR, club VARCHAR)
SELECT points FROM table_name_42 WHERE club = "bridgend athletic rfc"
### Context: CREATE TABLE table_name_42 (points VARCHAR, club VARCHAR) ### Question: How many points did the Bridgend Athletic RFC have? ### Answer: SELECT points FROM table_name_42 WHERE club = "bridgend athletic rfc"
How many points were scored against the club that drew 3 and scored 50 points?
CREATE TABLE table_name_60 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT points_against FROM table_name_60 WHERE drawn = "3" AND points = "50"
### Context: CREATE TABLE table_name_60 (points_against VARCHAR, drawn VARCHAR, points VARCHAR) ### Question: How many points were scored against the club that drew 3 and scored 50 points? ### Answer: SELECT points_against FROM table_name_60 WHERE drawn = "3" AND points = "50"
What try bonus drew 0 and scored 427 points for?
CREATE TABLE table_name_83 (try_bonus VARCHAR, drawn VARCHAR, points_for VARCHAR)
SELECT try_bonus FROM table_name_83 WHERE drawn = "0" AND points_for = "427"
### Context: CREATE TABLE table_name_83 (try_bonus VARCHAR, drawn VARCHAR, points_for VARCHAR) ### Question: What try bonus drew 0 and scored 427 points for? ### Answer: SELECT try_bonus FROM table_name_83 WHERE drawn = "0" AND points_for = "427"
What was the qualifying time of Jim Rathmann in 1959?
CREATE TABLE table_name_97 (qual VARCHAR, year VARCHAR)
SELECT qual FROM table_name_97 WHERE year = "1959"
### Context: CREATE TABLE table_name_97 (qual VARCHAR, year VARCHAR) ### Question: What was the qualifying time of Jim Rathmann in 1959? ### Answer: SELECT qual FROM table_name_97 WHERE year = "1959"
What is the most recent championship for FISA?
CREATE TABLE table_name_26 (year INTEGER, entrant VARCHAR)
SELECT MAX(year) FROM table_name_26 WHERE entrant = "fisa"
### Context: CREATE TABLE table_name_26 (year INTEGER, entrant VARCHAR) ### Question: What is the most recent championship for FISA? ### Answer: SELECT MAX(year) FROM table_name_26 WHERE entrant = "fisa"
What is the average points earned for entrants with ATS V8 engines?
CREATE TABLE table_name_12 (points INTEGER, engine VARCHAR)
SELECT AVG(points) FROM table_name_12 WHERE engine = "ats v8"
### Context: CREATE TABLE table_name_12 (points INTEGER, engine VARCHAR) ### Question: What is the average points earned for entrants with ATS V8 engines? ### Answer: SELECT AVG(points) FROM table_name_12 WHERE engine = "ats v8"
What was the outcome from the 2009 match in the final against Chong Wei Feng?
CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_final VARCHAR)
SELECT outcome FROM table_name_44 WHERE year = 2009 AND opponent_in_final = "chong wei feng"
### Context: CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_final VARCHAR) ### Question: What was the outcome from the 2009 match in the final against Chong Wei Feng? ### Answer: SELECT outcome FROM table_name_44 WHERE year = 2009 AND opponent_in_final = "chong wei feng"
What was the try bonus for the team with 25 tries for?
CREATE TABLE table_name_56 (try_bonus VARCHAR, tries_for VARCHAR)
SELECT try_bonus FROM table_name_56 WHERE tries_for = "25"
### Context: CREATE TABLE table_name_56 (try_bonus VARCHAR, tries_for VARCHAR) ### Question: What was the try bonus for the team with 25 tries for? ### Answer: SELECT try_bonus FROM table_name_56 WHERE tries_for = "25"
How many points for did Bridgend Athletic RFC score?
CREATE TABLE table_name_86 (points_for VARCHAR, club VARCHAR)
SELECT points_for FROM table_name_86 WHERE club = "bridgend athletic rfc"
### Context: CREATE TABLE table_name_86 (points_for VARCHAR, club VARCHAR) ### Question: How many points for did Bridgend Athletic RFC score? ### Answer: SELECT points_for FROM table_name_86 WHERE club = "bridgend athletic rfc"
How many tries for did the team with a try bonus of 5 score?
CREATE TABLE table_name_49 (tries_for VARCHAR, try_bonus VARCHAR)
SELECT tries_for FROM table_name_49 WHERE try_bonus = "5"
### Context: CREATE TABLE table_name_49 (tries_for VARCHAR, try_bonus VARCHAR) ### Question: How many tries for did the team with a try bonus of 5 score? ### Answer: SELECT tries_for FROM table_name_49 WHERE try_bonus = "5"
How many points against did the team that allowed 42 tries against allow?
CREATE TABLE table_name_65 (points_against VARCHAR, tries_against VARCHAR)
SELECT points_against FROM table_name_65 WHERE tries_against = "42"
### Context: CREATE TABLE table_name_65 (points_against VARCHAR, tries_against VARCHAR) ### Question: How many points against did the team that allowed 42 tries against allow? ### Answer: SELECT points_against FROM table_name_65 WHERE tries_against = "42"
What is the average number of bronze medals associated with 0 silver, 1 total, and ranks over 16?
CREATE TABLE table_name_58 (bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT AVG(bronze) FROM table_name_58 WHERE total = 1 AND silver = 0 AND rank > 16
### Context: CREATE TABLE table_name_58 (bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR) ### Question: What is the average number of bronze medals associated with 0 silver, 1 total, and ranks over 16? ### Answer: SELECT AVG(bronze) FROM table_name_58 WHERE total = 1 AND silver = 0 AND rank > 16
What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze?
CREATE TABLE table_name_33 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT MAX(total) FROM table_name_33 WHERE bronze = 2 AND gold = 1 AND silver > 0
### Context: CREATE TABLE table_name_33 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze? ### Answer: SELECT MAX(total) FROM table_name_33 WHERE bronze = 2 AND gold = 1 AND silver > 0
What is the total number of Total values associated with mroe than 3 silvers, more than 2 bronze, and a rank of 3?
CREATE TABLE table_name_53 (total VARCHAR, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT COUNT(total) FROM table_name_53 WHERE silver > 3 AND rank = 3 AND bronze > 2
### Context: CREATE TABLE table_name_53 (total VARCHAR, bronze VARCHAR, silver VARCHAR, rank VARCHAR) ### Question: What is the total number of Total values associated with mroe than 3 silvers, more than 2 bronze, and a rank of 3? ### Answer: SELECT COUNT(total) FROM table_name_53 WHERE silver > 3 AND rank = 3 AND bronze > 2
What is the smallest Silver value associated with teams having more than 0 gold, 0 bronze, and a rank of 14?
CREATE TABLE table_name_75 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(silver) FROM table_name_75 WHERE bronze = 0 AND rank = 14 AND gold > 0
### Context: CREATE TABLE table_name_75 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: What is the smallest Silver value associated with teams having more than 0 gold, 0 bronze, and a rank of 14? ### Answer: SELECT MIN(silver) FROM table_name_75 WHERE bronze = 0 AND rank = 14 AND gold > 0
What is the qual 1 for conquest racing?
CREATE TABLE table_name_41 (qual_1 VARCHAR, team VARCHAR)
SELECT qual_1 FROM table_name_41 WHERE team = "conquest racing"
### Context: CREATE TABLE table_name_41 (qual_1 VARCHAR, team VARCHAR) ### Question: What is the qual 1 for conquest racing? ### Answer: SELECT qual_1 FROM table_name_41 WHERE team = "conquest racing"
Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?
CREATE TABLE table_name_34 (best INTEGER, qual_2 VARCHAR, team VARCHAR, name VARCHAR)
SELECT MIN(best) FROM table_name_34 WHERE team = "n/h/l racing" AND name = "graham rahal" AND qual_2 > 59.384
### Context: CREATE TABLE table_name_34 (best INTEGER, qual_2 VARCHAR, team VARCHAR, name VARCHAR) ### Question: Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best? ### Answer: SELECT MIN(best) FROM table_name_34 WHERE team = "n/h/l racing" AND name = "graham rahal" AND qual_2 > 59.384
What is the total best for Bruno junqueira
CREATE TABLE table_name_32 (best INTEGER, name VARCHAR)
SELECT SUM(best) FROM table_name_32 WHERE name = "bruno junqueira"
### Context: CREATE TABLE table_name_32 (best INTEGER, name VARCHAR) ### Question: What is the total best for Bruno junqueira ### Answer: SELECT SUM(best) FROM table_name_32 WHERE name = "bruno junqueira"
What is the Mascot of Brook?
CREATE TABLE table_name_25 (mascot VARCHAR, location VARCHAR)
SELECT mascot FROM table_name_25 WHERE location = "brook"
### Context: CREATE TABLE table_name_25 (mascot VARCHAR, location VARCHAR) ### Question: What is the Mascot of Brook? ### Answer: SELECT mascot FROM table_name_25 WHERE location = "brook"
When was the first year when Fowler joined?
CREATE TABLE table_name_73 (year_left INTEGER, location VARCHAR)
SELECT MIN(year_left) FROM table_name_73 WHERE location = "fowler"
### Context: CREATE TABLE table_name_73 (year_left INTEGER, location VARCHAR) ### Question: When was the first year when Fowler joined? ### Answer: SELECT MIN(year_left) FROM table_name_73 WHERE location = "fowler"
What is the molecular target of bacterium?
CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_α VARCHAR)
SELECT molecular_target FROM table_name_10 WHERE marine_organism_α = "bacterium"
### Context: CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_α VARCHAR) ### Question: What is the molecular target of bacterium? ### Answer: SELECT molecular_target FROM table_name_10 WHERE marine_organism_α = "bacterium"
What is the organism that has a disease area of cancer and has 4/4 clinical trial b?
CREATE TABLE table_name_96 (marine_organism_α VARCHAR, disease_area VARCHAR, clinical_trials_β VARCHAR)
SELECT marine_organism_α FROM table_name_96 WHERE disease_area = "cancer" AND clinical_trials_β = "4/4"
### Context: CREATE TABLE table_name_96 (marine_organism_α VARCHAR, disease_area VARCHAR, clinical_trials_β VARCHAR) ### Question: What is the organism that has a disease area of cancer and has 4/4 clinical trial b? ### Answer: SELECT marine_organism_α FROM table_name_96 WHERE disease_area = "cancer" AND clinical_trials_β = "4/4"
What is the molecular target of the organism that has a disease area of antiviral?
CREATE TABLE table_name_45 (molecular_target VARCHAR, disease_area VARCHAR)
SELECT molecular_target FROM table_name_45 WHERE disease_area = "antiviral"
### Context: CREATE TABLE table_name_45 (molecular_target VARCHAR, disease_area VARCHAR) ### Question: What is the molecular target of the organism that has a disease area of antiviral? ### Answer: SELECT molecular_target FROM table_name_45 WHERE disease_area = "antiviral"
On what date was the record 62–84?
CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_38 WHERE record = "62–84"
### Context: CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 62–84? ### Answer: SELECT date FROM table_name_38 WHERE record = "62–84"