question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
Who was played against with a result of 3β6, 2β6?
|
CREATE TABLE table_name_99 (against VARCHAR, result VARCHAR)
|
SELECT against FROM table_name_99 WHERE result = "3β6, 2β6"
|
### Context: CREATE TABLE table_name_99 (against VARCHAR, result VARCHAR) ### Question: Who was played against with a result of 3β6, 2β6? ### Answer: SELECT against FROM table_name_99 WHERE result = "3β6, 2β6"
|
Name the least year for paris, france venue
|
CREATE TABLE table_name_92 (year INTEGER, venue VARCHAR)
|
SELECT MIN(year) FROM table_name_92 WHERE venue = "paris, france"
|
### Context: CREATE TABLE table_name_92 (year INTEGER, venue VARCHAR) ### Question: Name the least year for paris, france venue ### Answer: SELECT MIN(year) FROM table_name_92 WHERE venue = "paris, france"
|
What's the total number of picks for mckinney high school?
|
CREATE TABLE table_name_72 (pick INTEGER, school VARCHAR)
|
SELECT SUM(pick) FROM table_name_72 WHERE school = "mckinney high school"
|
### Context: CREATE TABLE table_name_72 (pick INTEGER, school VARCHAR) ### Question: What's the total number of picks for mckinney high school? ### Answer: SELECT SUM(pick) FROM table_name_72 WHERE school = "mckinney high school"
|
What was the highest pick for the player Adam Jones?
|
CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR)
|
SELECT MAX(pick) FROM table_name_31 WHERE player = "adam jones"
|
### Context: CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR) ### Question: What was the highest pick for the player Adam Jones? ### Answer: SELECT MAX(pick) FROM table_name_31 WHERE player = "adam jones"
|
What's the total number of picks for the player Matt Murton?
|
CREATE TABLE table_name_25 (pick INTEGER, player VARCHAR)
|
SELECT SUM(pick) FROM table_name_25 WHERE player = "matt murton"
|
### Context: CREATE TABLE table_name_25 (pick INTEGER, player VARCHAR) ### Question: What's the total number of picks for the player Matt Murton? ### Answer: SELECT SUM(pick) FROM table_name_25 WHERE player = "matt murton"
|
What position was pick 32?
|
CREATE TABLE table_name_86 (position VARCHAR, pick VARCHAR)
|
SELECT position FROM table_name_86 WHERE pick = 32
|
### Context: CREATE TABLE table_name_86 (position VARCHAR, pick VARCHAR) ### Question: What position was pick 32? ### Answer: SELECT position FROM table_name_86 WHERE pick = 32
|
Who won at the Barbagallo Raceway circuit?
|
CREATE TABLE table_name_49 (winner VARCHAR, circuit VARCHAR)
|
SELECT winner FROM table_name_49 WHERE circuit = "barbagallo raceway"
|
### Context: CREATE TABLE table_name_49 (winner VARCHAR, circuit VARCHAR) ### Question: Who won at the Barbagallo Raceway circuit? ### Answer: SELECT winner FROM table_name_49 WHERE circuit = "barbagallo raceway"
|
What was the title of the race at Oran Park Raceway?
|
CREATE TABLE table_name_72 (race_title VARCHAR, circuit VARCHAR)
|
SELECT race_title FROM table_name_72 WHERE circuit = "oran park raceway"
|
### Context: CREATE TABLE table_name_72 (race_title VARCHAR, circuit VARCHAR) ### Question: What was the title of the race at Oran Park Raceway? ### Answer: SELECT race_title FROM table_name_72 WHERE circuit = "oran park raceway"
|
Who won at the Oran Park Raceway?
|
CREATE TABLE table_name_17 (winner VARCHAR, circuit VARCHAR)
|
SELECT winner FROM table_name_17 WHERE circuit = "oran park raceway"
|
### Context: CREATE TABLE table_name_17 (winner VARCHAR, circuit VARCHAR) ### Question: Who won at the Oran Park Raceway? ### Answer: SELECT winner FROM table_name_17 WHERE circuit = "oran park raceway"
|
When Jim Richards won at the Winton Motor Raceway circuit, what was the city and state listed?
|
CREATE TABLE table_name_70 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)
|
SELECT city___state FROM table_name_70 WHERE winner = "jim richards" AND circuit = "winton motor raceway"
|
### Context: CREATE TABLE table_name_70 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR) ### Question: When Jim Richards won at the Winton Motor Raceway circuit, what was the city and state listed? ### Answer: SELECT city___state FROM table_name_70 WHERE winner = "jim richards" AND circuit = "winton motor raceway"
|
What is the capacity of the mine that is operated by Cyprus Amax minerals?
|
CREATE TABLE table_name_83 (capacity__thousands_of_metric_tons_ VARCHAR, operator VARCHAR)
|
SELECT capacity__thousands_of_metric_tons_ FROM table_name_83 WHERE operator = "cyprus amax minerals"
|
### Context: CREATE TABLE table_name_83 (capacity__thousands_of_metric_tons_ VARCHAR, operator VARCHAR) ### Question: What is the capacity of the mine that is operated by Cyprus Amax minerals? ### Answer: SELECT capacity__thousands_of_metric_tons_ FROM table_name_83 WHERE operator = "cyprus amax minerals"
|
What rank is the Silver Bell mine of Pima county?
|
CREATE TABLE table_name_56 (rank VARCHAR, county VARCHAR, mine VARCHAR)
|
SELECT rank FROM table_name_56 WHERE county = "pima" AND mine = "silver bell"
|
### Context: CREATE TABLE table_name_56 (rank VARCHAR, county VARCHAR, mine VARCHAR) ### Question: What rank is the Silver Bell mine of Pima county? ### Answer: SELECT rank FROM table_name_56 WHERE county = "pima" AND mine = "silver bell"
|
What is the capacity of the Pinto Valley mine in Gila county?
|
CREATE TABLE table_name_67 (capacity__thousands_of_metric_tons_ VARCHAR, county VARCHAR, mine VARCHAR)
|
SELECT capacity__thousands_of_metric_tons_ FROM table_name_67 WHERE county = "gila" AND mine = "pinto valley"
|
### Context: CREATE TABLE table_name_67 (capacity__thousands_of_metric_tons_ VARCHAR, county VARCHAR, mine VARCHAR) ### Question: What is the capacity of the Pinto Valley mine in Gila county? ### Answer: SELECT capacity__thousands_of_metric_tons_ FROM table_name_67 WHERE county = "gila" AND mine = "pinto valley"
|
What is the first leg with an agg of 10-2?
|
CREATE TABLE table_name_31 (agg VARCHAR)
|
SELECT 1 AS st_leg FROM table_name_31 WHERE agg = "10-2"
|
### Context: CREATE TABLE table_name_31 (agg VARCHAR) ### Question: What is the first leg with an agg of 10-2? ### Answer: SELECT 1 AS st_leg FROM table_name_31 WHERE agg = "10-2"
|
What is the agg of team 2 for Vantour Club Mangoungou?
|
CREATE TABLE table_name_38 (agg VARCHAR, team_2 VARCHAR)
|
SELECT agg FROM table_name_38 WHERE team_2 = "vantour club mangoungou"
|
### Context: CREATE TABLE table_name_38 (agg VARCHAR, team_2 VARCHAR) ### Question: What is the agg of team 2 for Vantour Club Mangoungou? ### Answer: SELECT agg FROM table_name_38 WHERE team_2 = "vantour club mangoungou"
|
What is the first leg of team 1 for Hardware stars?
|
CREATE TABLE table_name_19 (team_1 VARCHAR)
|
SELECT 1 AS st_leg FROM table_name_19 WHERE team_1 = "hardware stars"
|
### Context: CREATE TABLE table_name_19 (team_1 VARCHAR) ### Question: What is the first leg of team 1 for Hardware stars? ### Answer: SELECT 1 AS st_leg FROM table_name_19 WHERE team_1 = "hardware stars"
|
On what date was the game played at home against the opponent Siena?
|
CREATE TABLE table_name_58 (date VARCHAR, opponent VARCHAR, ground VARCHAR)
|
SELECT date FROM table_name_58 WHERE opponent = "siena" AND ground = "home"
|
### Context: CREATE TABLE table_name_58 (date VARCHAR, opponent VARCHAR, ground VARCHAR) ### Question: On what date was the game played at home against the opponent Siena? ### Answer: SELECT date FROM table_name_58 WHERE opponent = "siena" AND ground = "home"
|
What time was the game played against Cagliari that lasted 16 rounds?
|
CREATE TABLE table_name_32 (time VARCHAR, opponent VARCHAR, round VARCHAR)
|
SELECT time FROM table_name_32 WHERE opponent = "cagliari" AND round = "16"
|
### Context: CREATE TABLE table_name_32 (time VARCHAR, opponent VARCHAR, round VARCHAR) ### Question: What time was the game played against Cagliari that lasted 16 rounds? ### Answer: SELECT time FROM table_name_32 WHERE opponent = "cagliari" AND round = "16"
|
Where was the game played that had a score of 3-2 and a time of 15:00 cet?
|
CREATE TABLE table_name_7 (ground VARCHAR, score VARCHAR, time VARCHAR)
|
SELECT ground FROM table_name_7 WHERE score = "3-2" AND time = "15:00 cet"
|
### Context: CREATE TABLE table_name_7 (ground VARCHAR, score VARCHAR, time VARCHAR) ### Question: Where was the game played that had a score of 3-2 and a time of 15:00 cet? ### Answer: SELECT ground FROM table_name_7 WHERE score = "3-2" AND time = "15:00 cet"
|
What was the score on April 18?
|
CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_49 WHERE date = "april 18"
|
### Context: CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR) ### Question: What was the score on April 18? ### Answer: SELECT score FROM table_name_49 WHERE date = "april 18"
|
What was the attendance when Nakamura (0-1) lost?
|
CREATE TABLE table_name_77 (attendance VARCHAR, loss VARCHAR)
|
SELECT attendance FROM table_name_77 WHERE loss = "nakamura (0-1)"
|
### Context: CREATE TABLE table_name_77 (attendance VARCHAR, loss VARCHAR) ### Question: What was the attendance when Nakamura (0-1) lost? ### Answer: SELECT attendance FROM table_name_77 WHERE loss = "nakamura (0-1)"
|
What was their record when they lost with Lilly (0-1) pitching?
|
CREATE TABLE table_name_6 (record VARCHAR, loss VARCHAR)
|
SELECT record FROM table_name_6 WHERE loss = "lilly (0-1)"
|
### Context: CREATE TABLE table_name_6 (record VARCHAR, loss VARCHAR) ### Question: What was their record when they lost with Lilly (0-1) pitching? ### Answer: SELECT record FROM table_name_6 WHERE loss = "lilly (0-1)"
|
What was their record when the attendance was 26,827?
|
CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR)
|
SELECT record FROM table_name_51 WHERE attendance = "26,827"
|
### Context: CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR) ### Question: What was their record when the attendance was 26,827? ### Answer: SELECT record FROM table_name_51 WHERE attendance = "26,827"
|
Who is the December playmate with a February playmate Anne-Marie Fox?
|
CREATE TABLE table_name_76 (december VARCHAR, february VARCHAR)
|
SELECT december FROM table_name_76 WHERE february = "anne-marie fox"
|
### Context: CREATE TABLE table_name_76 (december VARCHAR, february VARCHAR) ### Question: Who is the December playmate with a February playmate Anne-Marie Fox? ### Answer: SELECT december FROM table_name_76 WHERE february = "anne-marie fox"
|
Who is the August playmate with the October playmate Shannon Long?
|
CREATE TABLE table_name_51 (august VARCHAR, october VARCHAR)
|
SELECT august FROM table_name_51 WHERE october = "shannon long"
|
### Context: CREATE TABLE table_name_51 (august VARCHAR, october VARCHAR) ### Question: Who is the August playmate with the October playmate Shannon Long? ### Answer: SELECT august FROM table_name_51 WHERE october = "shannon long"
|
Who is the December playmate with a November playmate Marlene Janssen?
|
CREATE TABLE table_name_72 (december VARCHAR, november VARCHAR)
|
SELECT december FROM table_name_72 WHERE november = "marlene janssen"
|
### Context: CREATE TABLE table_name_72 (december VARCHAR, november VARCHAR) ### Question: Who is the December playmate with a November playmate Marlene Janssen? ### Answer: SELECT december FROM table_name_72 WHERE november = "marlene janssen"
|
Who is the November playmate with the July playmate Hope Marie Carlton?
|
CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR)
|
SELECT november FROM table_name_66 WHERE july = "hope marie carlton"
|
### Context: CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR) ### Question: Who is the November playmate with the July playmate Hope Marie Carlton? ### Answer: SELECT november FROM table_name_66 WHERE july = "hope marie carlton"
|
Who is the March playmate with an August playmate Gianna Amore?
|
CREATE TABLE table_name_53 (march VARCHAR, august VARCHAR)
|
SELECT march FROM table_name_53 WHERE august = "gianna amore"
|
### Context: CREATE TABLE table_name_53 (march VARCHAR, august VARCHAR) ### Question: Who is the March playmate with an August playmate Gianna Amore? ### Answer: SELECT march FROM table_name_53 WHERE august = "gianna amore"
|
Who is the January playmate with the November playmate Donna Edmondson?
|
CREATE TABLE table_name_66 (january VARCHAR, november VARCHAR)
|
SELECT january FROM table_name_66 WHERE november = "donna edmondson"
|
### Context: CREATE TABLE table_name_66 (january VARCHAR, november VARCHAR) ### Question: Who is the January playmate with the November playmate Donna Edmondson? ### Answer: SELECT january FROM table_name_66 WHERE november = "donna edmondson"
|
What is the home stadium of the Tennessee Titans?
|
CREATE TABLE table_name_10 (stadium VARCHAR, host_team VARCHAR)
|
SELECT stadium FROM table_name_10 WHERE host_team = "tennessee titans"
|
### Context: CREATE TABLE table_name_10 (stadium VARCHAR, host_team VARCHAR) ### Question: What is the home stadium of the Tennessee Titans? ### Answer: SELECT stadium FROM table_name_10 WHERE host_team = "tennessee titans"
|
When were the Houston Texans the visiting team later in the season?
|
CREATE TABLE table_name_29 (week INTEGER, visiting_team VARCHAR)
|
SELECT MAX(week) FROM table_name_29 WHERE visiting_team = "houston texans"
|
### Context: CREATE TABLE table_name_29 (week INTEGER, visiting_team VARCHAR) ### Question: When were the Houston Texans the visiting team later in the season? ### Answer: SELECT MAX(week) FROM table_name_29 WHERE visiting_team = "houston texans"
|
The final score was 24-34 on what date?
|
CREATE TABLE table_name_18 (date VARCHAR, final_score VARCHAR)
|
SELECT date FROM table_name_18 WHERE final_score = "24-34"
|
### Context: CREATE TABLE table_name_18 (date VARCHAR, final_score VARCHAR) ### Question: The final score was 24-34 on what date? ### Answer: SELECT date FROM table_name_18 WHERE final_score = "24-34"
|
What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?
|
CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR)
|
SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7
|
### Context: CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, total VARCHAR) ### Question: What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total? ### Answer: SELECT SUM(gold) FROM table_name_24 WHERE silver = 2 AND total < 7
|
What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals?
|
CREATE TABLE table_name_26 (total INTEGER, bronze VARCHAR, gold VARCHAR)
|
SELECT SUM(total) FROM table_name_26 WHERE bronze = 7 AND gold > 18
|
### Context: CREATE TABLE table_name_26 (total INTEGER, bronze VARCHAR, gold VARCHAR) ### Question: What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals? ### Answer: SELECT SUM(total) FROM table_name_26 WHERE bronze = 7 AND gold > 18
|
What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?
|
CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
|
SELECT MIN(gold) FROM table_name_47 WHERE silver > 11 AND rank = "1" AND bronze < 7
|
### Context: CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) ### Question: What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals? ### Answer: SELECT MIN(gold) FROM table_name_47 WHERE silver > 11 AND rank = "1" AND bronze < 7
|
What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals?
|
CREATE TABLE table_name_43 (total INTEGER, bronze VARCHAR, silver VARCHAR)
|
SELECT MAX(total) FROM table_name_43 WHERE bronze = 7 AND silver > 12
|
### Context: CREATE TABLE table_name_43 (total INTEGER, bronze VARCHAR, silver VARCHAR) ### Question: What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals? ### Answer: SELECT MAX(total) FROM table_name_43 WHERE bronze = 7 AND silver > 12
|
What nation won the fewest gold medals while being in Rank 1, with a total of 37 medals and more than 7 bronze medals?
|
CREATE TABLE table_name_4 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)
|
SELECT MIN(gold) FROM table_name_4 WHERE total = 37 AND rank = "1" AND bronze > 7
|
### Context: CREATE TABLE table_name_4 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR) ### Question: What nation won the fewest gold medals while being in Rank 1, with a total of 37 medals and more than 7 bronze medals? ### Answer: SELECT MIN(gold) FROM table_name_4 WHERE total = 37 AND rank = "1" AND bronze > 7
|
Name the score for yuliya ustyuzhanina
|
CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR)
|
SELECT score FROM table_name_84 WHERE opponent = "yuliya ustyuzhanina"
|
### Context: CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR) ### Question: Name the score for yuliya ustyuzhanina ### Answer: SELECT score FROM table_name_84 WHERE opponent = "yuliya ustyuzhanina"
|
Name the date for hard surface and tournament of fort walton beach
|
CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
|
SELECT date FROM table_name_84 WHERE surface = "hard" AND tournament = "fort walton beach"
|
### Context: CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, tournament VARCHAR) ### Question: Name the date for hard surface and tournament of fort walton beach ### Answer: SELECT date FROM table_name_84 WHERE surface = "hard" AND tournament = "fort walton beach"
|
Name the opponent with score of 1β6, 6β4, 6β4
|
CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)
|
SELECT opponent FROM table_name_7 WHERE score = "1β6, 6β4, 6β4"
|
### Context: CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR) ### Question: Name the opponent with score of 1β6, 6β4, 6β4 ### Answer: SELECT opponent FROM table_name_7 WHERE score = "1β6, 6β4, 6β4"
|
Name the score for 10 april 2007 and opponent of selima sfar
|
CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR, opponent VARCHAR)
|
SELECT score FROM table_name_43 WHERE date = "10 april 2007" AND opponent = "selima sfar"
|
### Context: CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR, opponent VARCHAR) ### Question: Name the score for 10 april 2007 and opponent of selima sfar ### Answer: SELECT score FROM table_name_43 WHERE date = "10 april 2007" AND opponent = "selima sfar"
|
How many runners had placings over 8?
|
CREATE TABLE table_name_34 (runners VARCHAR, placing INTEGER)
|
SELECT COUNT(runners) FROM table_name_34 WHERE placing > 8
|
### Context: CREATE TABLE table_name_34 (runners VARCHAR, placing INTEGER) ### Question: How many runners had placings over 8? ### Answer: SELECT COUNT(runners) FROM table_name_34 WHERE placing > 8
|
Which course had a jockey of Royston FFrench?
|
CREATE TABLE table_name_22 (course VARCHAR, jockey VARCHAR)
|
SELECT course FROM table_name_22 WHERE jockey = "royston ffrench"
|
### Context: CREATE TABLE table_name_22 (course VARCHAR, jockey VARCHAR) ### Question: Which course had a jockey of Royston FFrench? ### Answer: SELECT course FROM table_name_22 WHERE jockey = "royston ffrench"
|
What is the average prize for the Buttercross Limited Stakes?
|
CREATE TABLE table_name_33 (prize__ INTEGER, race VARCHAR)
|
SELECT AVG(prize__) AS Β£k_ FROM table_name_33 WHERE race = "buttercross limited stakes"
|
### Context: CREATE TABLE table_name_33 (prize__ INTEGER, race VARCHAR) ### Question: What is the average prize for the Buttercross Limited Stakes? ### Answer: SELECT AVG(prize__) AS Β£k_ FROM table_name_33 WHERE race = "buttercross limited stakes"
|
How many total runners had jockeys of Olivier Peslier with placings under 2?
|
CREATE TABLE table_name_81 (runners INTEGER, jockey VARCHAR, placing VARCHAR)
|
SELECT SUM(runners) FROM table_name_81 WHERE jockey = "olivier peslier" AND placing < 2
|
### Context: CREATE TABLE table_name_81 (runners INTEGER, jockey VARCHAR, placing VARCHAR) ### Question: How many total runners had jockeys of Olivier Peslier with placings under 2? ### Answer: SELECT SUM(runners) FROM table_name_81 WHERE jockey = "olivier peslier" AND placing < 2
|
Name the games with marks of 21
|
CREATE TABLE table_name_71 (games VARCHAR, marks VARCHAR)
|
SELECT games FROM table_name_71 WHERE marks = "21"
|
### Context: CREATE TABLE table_name_71 (games VARCHAR, marks VARCHAR) ### Question: Name the games with marks of 21 ### Answer: SELECT games FROM table_name_71 WHERE marks = "21"
|
Name the kicks with goals of 1
|
CREATE TABLE table_name_40 (kicks VARCHAR, goals VARCHAR)
|
SELECT kicks FROM table_name_40 WHERE goals = "1"
|
### Context: CREATE TABLE table_name_40 (kicks VARCHAR, goals VARCHAR) ### Question: Name the kicks with goals of 1 ### Answer: SELECT kicks FROM table_name_40 WHERE goals = "1"
|
Name the goals with games of 6
|
CREATE TABLE table_name_65 (goals VARCHAR, games VARCHAR)
|
SELECT goals FROM table_name_65 WHERE games = "6"
|
### Context: CREATE TABLE table_name_65 (goals VARCHAR, games VARCHAR) ### Question: Name the goals with games of 6 ### Answer: SELECT goals FROM table_name_65 WHERE games = "6"
|
What game had the date was it with the final score of 7-23
|
CREATE TABLE table_name_35 (date VARCHAR, final_score VARCHAR)
|
SELECT date FROM table_name_35 WHERE final_score = "7-23"
|
### Context: CREATE TABLE table_name_35 (date VARCHAR, final_score VARCHAR) ### Question: What game had the date was it with the final score of 7-23 ### Answer: SELECT date FROM table_name_35 WHERE final_score = "7-23"
|
What was the final score of the game at the astrodome?
|
CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)
|
SELECT final_score FROM table_name_74 WHERE stadium = "astrodome"
|
### Context: CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR) ### Question: What was the final score of the game at the astrodome? ### Answer: SELECT final_score FROM table_name_74 WHERE stadium = "astrodome"
|
What was the final score for the date of December 30?
|
CREATE TABLE table_name_99 (final_score VARCHAR, date VARCHAR)
|
SELECT final_score FROM table_name_99 WHERE date = "december 30"
|
### Context: CREATE TABLE table_name_99 (final_score VARCHAR, date VARCHAR) ### Question: What was the final score for the date of December 30? ### Answer: SELECT final_score FROM table_name_99 WHERE date = "december 30"
|
What was the name of the Visiting team at Jack Murphy Stadium?
|
CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR)
|
SELECT visiting_team FROM table_name_90 WHERE stadium = "jack murphy stadium"
|
### Context: CREATE TABLE table_name_90 (visiting_team VARCHAR, stadium VARCHAR) ### Question: What was the name of the Visiting team at Jack Murphy Stadium? ### Answer: SELECT visiting_team FROM table_name_90 WHERE stadium = "jack murphy stadium"
|
What was the name of the host team at Texas stadium?
|
CREATE TABLE table_name_1 (host_team VARCHAR, stadium VARCHAR)
|
SELECT host_team FROM table_name_1 WHERE stadium = "texas stadium"
|
### Context: CREATE TABLE table_name_1 (host_team VARCHAR, stadium VARCHAR) ### Question: What was the name of the host team at Texas stadium? ### Answer: SELECT host_team FROM table_name_1 WHERE stadium = "texas stadium"
|
What was the name of the host team dated December 16?
|
CREATE TABLE table_name_39 (host_team VARCHAR, date VARCHAR)
|
SELECT host_team FROM table_name_39 WHERE date = "december 16"
|
### Context: CREATE TABLE table_name_39 (host_team VARCHAR, date VARCHAR) ### Question: What was the name of the host team dated December 16? ### Answer: SELECT host_team FROM table_name_39 WHERE date = "december 16"
|
Are there any Teams after 1997?
|
CREATE TABLE table_name_21 (team VARCHAR, year INTEGER)
|
SELECT team FROM table_name_21 WHERE year > 1997
|
### Context: CREATE TABLE table_name_21 (team VARCHAR, year INTEGER) ### Question: Are there any Teams after 1997? ### Answer: SELECT team FROM table_name_21 WHERE year > 1997
|
Which class has laps under 77?
|
CREATE TABLE table_name_85 (class VARCHAR, laps INTEGER)
|
SELECT class FROM table_name_85 WHERE laps < 77
|
### Context: CREATE TABLE table_name_85 (class VARCHAR, laps INTEGER) ### Question: Which class has laps under 77? ### Answer: SELECT class FROM table_name_85 WHERE laps < 77
|
Who boarded first class?
|
CREATE TABLE table_name_48 (boarded VARCHAR, class VARCHAR)
|
SELECT boarded FROM table_name_48 WHERE class = "first"
|
### Context: CREATE TABLE table_name_48 (boarded VARCHAR, class VARCHAR) ### Question: Who boarded first class? ### Answer: SELECT boarded FROM table_name_48 WHERE class = "first"
|
What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?
|
CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR)
|
SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = "bury"
|
### Context: CREATE TABLE table_name_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR) ### Question: What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury? ### Answer: SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = "bury"
|
What are the lowest number of points with a Year of 1978, and a Chassis of ensign n177?
|
CREATE TABLE table_name_15 (points INTEGER, year VARCHAR, chassis VARCHAR)
|
SELECT MIN(points) FROM table_name_15 WHERE year = 1978 AND chassis = "ensign n177"
|
### Context: CREATE TABLE table_name_15 (points INTEGER, year VARCHAR, chassis VARCHAR) ### Question: What are the lowest number of points with a Year of 1978, and a Chassis of ensign n177? ### Answer: SELECT MIN(points) FROM table_name_15 WHERE year = 1978 AND chassis = "ensign n177"
|
What are the highest number of points with an Entrant of warsteiner brewery?
|
CREATE TABLE table_name_8 (points INTEGER, entrant VARCHAR)
|
SELECT MAX(points) FROM table_name_8 WHERE entrant = "warsteiner brewery"
|
### Context: CREATE TABLE table_name_8 (points INTEGER, entrant VARCHAR) ### Question: What are the highest number of points with an Entrant of warsteiner brewery? ### Answer: SELECT MAX(points) FROM table_name_8 WHERE entrant = "warsteiner brewery"
|
What is the D 43 when D 46 is R 6?
|
CREATE TABLE table_name_68 (d_43 VARCHAR, d_46 VARCHAR)
|
SELECT d_43 FROM table_name_68 WHERE d_46 = "r 6"
|
### Context: CREATE TABLE table_name_68 (d_43 VARCHAR, d_46 VARCHAR) ### Question: What is the D 43 when D 46 is R 6? ### Answer: SELECT d_43 FROM table_name_68 WHERE d_46 = "r 6"
|
What is the D44 when D43 is R 14?
|
CREATE TABLE table_name_64 (d_44 VARCHAR, d_43 VARCHAR)
|
SELECT d_44 FROM table_name_64 WHERE d_43 = "r 14"
|
### Context: CREATE TABLE table_name_64 (d_44 VARCHAR, d_43 VARCHAR) ### Question: What is the D44 when D43 is R 14? ### Answer: SELECT d_44 FROM table_name_64 WHERE d_43 = "r 14"
|
What is the D48 when D 43 is plurality β??
|
CREATE TABLE table_name_27 (d_48 VARCHAR, d_43 VARCHAR)
|
SELECT d_48 FROM table_name_27 WHERE d_43 = "plurality β"
|
### Context: CREATE TABLE table_name_27 (d_48 VARCHAR, d_43 VARCHAR) ### Question: What is the D48 when D 43 is plurality β?? ### Answer: SELECT d_48 FROM table_name_27 WHERE d_43 = "plurality β"
|
What is the D44 when D41 is D 16?
|
CREATE TABLE table_name_70 (d_44 VARCHAR, d_41 VARCHAR)
|
SELECT d_44 FROM table_name_70 WHERE d_41 = "d 16"
|
### Context: CREATE TABLE table_name_70 (d_44 VARCHAR, d_41 VARCHAR) ### Question: What is the D44 when D41 is D 16? ### Answer: SELECT d_44 FROM table_name_70 WHERE d_41 = "d 16"
|
What gender is the team that has a decile of 5 and in the Dalefield area?
|
CREATE TABLE table_name_95 (gender VARCHAR, decile VARCHAR, area VARCHAR)
|
SELECT gender FROM table_name_95 WHERE decile = 5 AND area = "dalefield"
|
### Context: CREATE TABLE table_name_95 (gender VARCHAR, decile VARCHAR, area VARCHAR) ### Question: What gender is the team that has a decile of 5 and in the Dalefield area? ### Answer: SELECT gender FROM table_name_95 WHERE decile = 5 AND area = "dalefield"
|
What school in Dalefield has a roll less than 81?
|
CREATE TABLE table_name_61 (name VARCHAR, roll VARCHAR, area VARCHAR)
|
SELECT name FROM table_name_61 WHERE roll < 81 AND area = "dalefield"
|
### Context: CREATE TABLE table_name_61 (name VARCHAR, roll VARCHAR, area VARCHAR) ### Question: What school in Dalefield has a roll less than 81? ### Answer: SELECT name FROM table_name_61 WHERE roll < 81 AND area = "dalefield"
|
What is the lowest Height (m) on the island of Burray?
|
CREATE TABLE table_name_22 (height__m_ INTEGER, island VARCHAR)
|
SELECT MIN(height__m_) FROM table_name_22 WHERE island = "burray"
|
### Context: CREATE TABLE table_name_22 (height__m_ INTEGER, island VARCHAR) ### Question: What is the lowest Height (m) on the island of Burray? ### Answer: SELECT MIN(height__m_) FROM table_name_22 WHERE island = "burray"
|
What group on the island of Faray has a Height (m) of 32 and a Population of 0?
|
CREATE TABLE table_name_99 (group VARCHAR, island VARCHAR, height__m_ VARCHAR, population VARCHAR)
|
SELECT group FROM table_name_99 WHERE height__m_ = 32 AND population = "0" AND island = "faray"
|
### Context: CREATE TABLE table_name_99 (group VARCHAR, island VARCHAR, height__m_ VARCHAR, population VARCHAR) ### Question: What group on the island of Faray has a Height (m) of 32 and a Population of 0? ### Answer: SELECT group FROM table_name_99 WHERE height__m_ = 32 AND population = "0" AND island = "faray"
|
What group has a Population of see hoy?
|
CREATE TABLE table_name_23 (group VARCHAR, population VARCHAR)
|
SELECT group FROM table_name_23 WHERE population = "see hoy"
|
### Context: CREATE TABLE table_name_23 (group VARCHAR, population VARCHAR) ### Question: What group has a Population of see hoy? ### Answer: SELECT group FROM table_name_23 WHERE population = "see hoy"
|
What group on the island of Muckle Green Holm has a population of 0?
|
CREATE TABLE table_name_49 (group VARCHAR, population VARCHAR, island VARCHAR)
|
SELECT group FROM table_name_49 WHERE population = "0" AND island = "muckle green holm"
|
### Context: CREATE TABLE table_name_49 (group VARCHAR, population VARCHAR, island VARCHAR) ### Question: What group on the island of Muckle Green Holm has a population of 0? ### Answer: SELECT group FROM table_name_49 WHERE population = "0" AND island = "muckle green holm"
|
What is the area (ha) of the group on the island of Linga Holm that has a Height (m) larger than 7?
|
CREATE TABLE table_name_31 (area___ha__ VARCHAR, height__m_ VARCHAR, island VARCHAR)
|
SELECT area___ha__ FROM table_name_31 WHERE height__m_ > 7 AND island = "linga holm"
|
### Context: CREATE TABLE table_name_31 (area___ha__ VARCHAR, height__m_ VARCHAR, island VARCHAR) ### Question: What is the area (ha) of the group on the island of Linga Holm that has a Height (m) larger than 7? ### Answer: SELECT area___ha__ FROM table_name_31 WHERE height__m_ > 7 AND island = "linga holm"
|
What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?
|
CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR)
|
SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = "00017 17"
|
### Context: CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR) ### Question: What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17? ### Answer: SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = "00017 17"
|
What is the roll number of the school in Aramoho with a decile of 1?
|
CREATE TABLE table_name_86 (roll VARCHAR, area VARCHAR, decile VARCHAR)
|
SELECT roll FROM table_name_86 WHERE area = "aramoho" AND decile = 1
|
### Context: CREATE TABLE table_name_86 (roll VARCHAR, area VARCHAR, decile VARCHAR) ### Question: What is the roll number of the school in Aramoho with a decile of 1? ### Answer: SELECT roll FROM table_name_86 WHERE area = "aramoho" AND decile = 1
|
What is the area of Mangamahu primary school?
|
CREATE TABLE table_name_54 (area VARCHAR, name VARCHAR)
|
SELECT area FROM table_name_54 WHERE name = "mangamahu primary school"
|
### Context: CREATE TABLE table_name_54 (area VARCHAR, name VARCHAR) ### Question: What is the area of Mangamahu primary school? ### Answer: SELECT area FROM table_name_54 WHERE name = "mangamahu primary school"
|
What is the area of the coed school with a state authority and a roll number of 122?
|
CREATE TABLE table_name_17 (area VARCHAR, roll VARCHAR, authority VARCHAR, gender VARCHAR)
|
SELECT area FROM table_name_17 WHERE authority = "state" AND gender = "coed" AND roll = 122
|
### Context: CREATE TABLE table_name_17 (area VARCHAR, roll VARCHAR, authority VARCHAR, gender VARCHAR) ### Question: What is the area of the coed school with a state authority and a roll number of 122? ### Answer: SELECT area FROM table_name_17 WHERE authority = "state" AND gender = "coed" AND roll = 122
|
Which result is older than 2007?
|
CREATE TABLE table_name_18 (result___category VARCHAR, year INTEGER)
|
SELECT result___category FROM table_name_18 WHERE year < 2007
|
### Context: CREATE TABLE table_name_18 (result___category VARCHAR, year INTEGER) ### Question: Which result is older than 2007? ### Answer: SELECT result___category FROM table_name_18 WHERE year < 2007
|
What year was the Album/Song Speaking louder than before?
|
CREATE TABLE table_name_39 (year INTEGER, album___song VARCHAR)
|
SELECT SUM(year) FROM table_name_39 WHERE album___song = "speaking louder than before"
|
### Context: CREATE TABLE table_name_39 (year INTEGER, album___song VARCHAR) ### Question: What year was the Album/Song Speaking louder than before? ### Answer: SELECT SUM(year) FROM table_name_39 WHERE album___song = "speaking louder than before"
|
What is the most recent year with the Album/Song "the best worst-case scenario"?
|
CREATE TABLE table_name_19 (year INTEGER, album___song VARCHAR)
|
SELECT MAX(year) FROM table_name_19 WHERE album___song = "the best worst-case scenario"
|
### Context: CREATE TABLE table_name_19 (year INTEGER, album___song VARCHAR) ### Question: What is the most recent year with the Album/Song "the best worst-case scenario"? ### Answer: SELECT MAX(year) FROM table_name_19 WHERE album___song = "the best worst-case scenario"
|
What was the score of the final in which Melanie South played with partner Remi Tezuka on a clay surface?
|
CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, partner VARCHAR)
|
SELECT score FROM table_name_23 WHERE surface = "clay" AND partner = "remi tezuka"
|
### Context: CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, partner VARCHAR) ### Question: What was the score of the final in which Melanie South played with partner Remi Tezuka on a clay surface? ### Answer: SELECT score FROM table_name_23 WHERE surface = "clay" AND partner = "remi tezuka"
|
What was the score of the final in which Melanie South played with partner Ksenia Lykina during the Kurume Cup tournament?
|
CREATE TABLE table_name_59 (score VARCHAR, partner VARCHAR, tournament VARCHAR)
|
SELECT score FROM table_name_59 WHERE partner = "ksenia lykina" AND tournament = "kurume"
|
### Context: CREATE TABLE table_name_59 (score VARCHAR, partner VARCHAR, tournament VARCHAR) ### Question: What was the score of the final in which Melanie South played with partner Ksenia Lykina during the Kurume Cup tournament? ### Answer: SELECT score FROM table_name_59 WHERE partner = "ksenia lykina" AND tournament = "kurume"
|
What was the score of the final in which Melanie South played with partner Katie O'Brien?
|
CREATE TABLE table_name_27 (score VARCHAR, partner VARCHAR)
|
SELECT score FROM table_name_27 WHERE partner = "katie o'brien"
|
### Context: CREATE TABLE table_name_27 (score VARCHAR, partner VARCHAR) ### Question: What was the score of the final in which Melanie South played with partner Katie O'Brien? ### Answer: SELECT score FROM table_name_27 WHERE partner = "katie o'brien"
|
What was the outcome of the tournament in Edinburgh?
|
CREATE TABLE table_name_82 (outcome VARCHAR, tournament VARCHAR)
|
SELECT outcome FROM table_name_82 WHERE tournament = "edinburgh"
|
### Context: CREATE TABLE table_name_82 (outcome VARCHAR, tournament VARCHAR) ### Question: What was the outcome of the tournament in Edinburgh? ### Answer: SELECT outcome FROM table_name_82 WHERE tournament = "edinburgh"
|
What is the total decile with an Authority of state, and a Name of newfield park school?
|
CREATE TABLE table_name_66 (decile INTEGER, authority VARCHAR, name VARCHAR)
|
SELECT SUM(decile) FROM table_name_66 WHERE authority = "state" AND name = "newfield park school"
|
### Context: CREATE TABLE table_name_66 (decile INTEGER, authority VARCHAR, name VARCHAR) ### Question: What is the total decile with an Authority of state, and a Name of newfield park school? ### Answer: SELECT SUM(decile) FROM table_name_66 WHERE authority = "state" AND name = "newfield park school"
|
What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown?
|
CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR)
|
SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = "coed" AND authority = "state integrated" AND area = "georgetown"
|
### Context: CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR) ### Question: What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown? ### Answer: SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = "coed" AND authority = "state integrated" AND area = "georgetown"
|
What is the smallest roll with an Authority of state, a Name of newfield park school, and a Decile smaller than 2?
|
CREATE TABLE table_name_97 (roll INTEGER, decile VARCHAR, authority VARCHAR, name VARCHAR)
|
SELECT MIN(roll) FROM table_name_97 WHERE authority = "state" AND name = "newfield park school" AND decile < 2
|
### Context: CREATE TABLE table_name_97 (roll INTEGER, decile VARCHAR, authority VARCHAR, name VARCHAR) ### Question: What is the smallest roll with an Authority of state, a Name of newfield park school, and a Decile smaller than 2? ### Answer: SELECT MIN(roll) FROM table_name_97 WHERE authority = "state" AND name = "newfield park school" AND decile < 2
|
Which name has an Area of makarewa?
|
CREATE TABLE table_name_65 (name VARCHAR, area VARCHAR)
|
SELECT name FROM table_name_65 WHERE area = "makarewa"
|
### Context: CREATE TABLE table_name_65 (name VARCHAR, area VARCHAR) ### Question: Which name has an Area of makarewa? ### Answer: SELECT name FROM table_name_65 WHERE area = "makarewa"
|
Which name has a Gender of coed, and a Decile larger than 5, and a Roll of 131?
|
CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)
|
SELECT name FROM table_name_35 WHERE gender = "coed" AND decile > 5 AND roll = 131
|
### Context: CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR) ### Question: Which name has a Gender of coed, and a Decile larger than 5, and a Roll of 131? ### Answer: SELECT name FROM table_name_35 WHERE gender = "coed" AND decile > 5 AND roll = 131
|
Add up all the Ends columns that have goals smaller than 0.
|
CREATE TABLE table_name_65 (ends INTEGER, goals INTEGER)
|
SELECT SUM(ends) FROM table_name_65 WHERE goals < 0
|
### Context: CREATE TABLE table_name_65 (ends INTEGER, goals INTEGER) ### Question: Add up all the Ends columns that have goals smaller than 0. ### Answer: SELECT SUM(ends) FROM table_name_65 WHERE goals < 0
|
What was the competition in 2003?
|
CREATE TABLE table_name_43 (competition VARCHAR, year VARCHAR)
|
SELECT competition FROM table_name_43 WHERE year = 2003
|
### Context: CREATE TABLE table_name_43 (competition VARCHAR, year VARCHAR) ### Question: What was the competition in 2003? ### Answer: SELECT competition FROM table_name_43 WHERE year = 2003
|
What was the competition in 2003?
|
CREATE TABLE table_name_76 (competition VARCHAR, year VARCHAR)
|
SELECT competition FROM table_name_76 WHERE year = 2003
|
### Context: CREATE TABLE table_name_76 (competition VARCHAR, year VARCHAR) ### Question: What was the competition in 2003? ### Answer: SELECT competition FROM table_name_76 WHERE year = 2003
|
Which position has 50+12 points and fewer than 10 draws?
|
CREATE TABLE table_name_92 (position INTEGER, points VARCHAR, draws VARCHAR)
|
SELECT MAX(position) FROM table_name_92 WHERE points = "50+12" AND draws < 10
|
### Context: CREATE TABLE table_name_92 (position INTEGER, points VARCHAR, draws VARCHAR) ### Question: Which position has 50+12 points and fewer than 10 draws? ### Answer: SELECT MAX(position) FROM table_name_92 WHERE points = "50+12" AND draws < 10
|
How many positions have goals of fewer than 40 and more than 38 played?
|
CREATE TABLE table_name_62 (position VARCHAR, goals_for VARCHAR, played VARCHAR)
|
SELECT COUNT(position) FROM table_name_62 WHERE goals_for < 40 AND played > 38
|
### Context: CREATE TABLE table_name_62 (position VARCHAR, goals_for VARCHAR, played VARCHAR) ### Question: How many positions have goals of fewer than 40 and more than 38 played? ### Answer: SELECT COUNT(position) FROM table_name_62 WHERE goals_for < 40 AND played > 38
|
How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?
|
CREATE TABLE table_name_26 (losses INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
|
SELECT SUM(losses) FROM table_name_26 WHERE goal_difference < -2 AND club = "cd sabadell" AND played > 38
|
### Context: CREATE TABLE table_name_26 (losses INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR) ### Question: How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played? ### Answer: SELECT SUM(losses) FROM table_name_26 WHERE goal_difference < -2 AND club = "cd sabadell" AND played > 38
|
What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?
|
CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR)
|
SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = "30-8"
|
### Context: CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR) ### Question: What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points? ### Answer: SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = "30-8"
|
What is the total number of losses of the player with an avg/g smaller than -3.3 and a gain larger than 126?
|
CREATE TABLE table_name_86 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR)
|
SELECT COUNT(loss) FROM table_name_86 WHERE avg_g < -3.3 AND gain > 126
|
### Context: CREATE TABLE table_name_86 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR) ### Question: What is the total number of losses of the player with an avg/g smaller than -3.3 and a gain larger than 126? ### Answer: SELECT COUNT(loss) FROM table_name_86 WHERE avg_g < -3.3 AND gain > 126
|
What is the total number of losses Jackson, T., who had more than 27 gain, an avg/g smaller than 55.9, and a long less than 34, had?
|
CREATE TABLE table_name_41 (loss VARCHAR, long VARCHAR, name VARCHAR, gain VARCHAR, avg_g VARCHAR)
|
SELECT COUNT(loss) FROM table_name_41 WHERE gain > 27 AND avg_g < 55.9 AND name = "jackson, t." AND long < 34
|
### Context: CREATE TABLE table_name_41 (loss VARCHAR, long VARCHAR, name VARCHAR, gain VARCHAR, avg_g VARCHAR) ### Question: What is the total number of losses Jackson, T., who had more than 27 gain, an avg/g smaller than 55.9, and a long less than 34, had? ### Answer: SELECT COUNT(loss) FROM table_name_41 WHERE gain > 27 AND avg_g < 55.9 AND name = "jackson, t." AND long < 34
|
What is the total number of long Dubose, E., who had 0 losses, a gain less than 17, and an avg/g bigger than 0, had?
|
CREATE TABLE table_name_45 (long VARCHAR, name VARCHAR, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)
|
SELECT COUNT(long) FROM table_name_45 WHERE loss = 0 AND gain < 17 AND avg_g > 0 AND name = "dubose, e."
|
### Context: CREATE TABLE table_name_45 (long VARCHAR, name VARCHAR, avg_g VARCHAR, loss VARCHAR, gain VARCHAR) ### Question: What is the total number of long Dubose, E., who had 0 losses, a gain less than 17, and an avg/g bigger than 0, had? ### Answer: SELECT COUNT(long) FROM table_name_45 WHERE loss = 0 AND gain < 17 AND avg_g > 0 AND name = "dubose, e."
|
What date was the record 20β16?
|
CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR)
|
SELECT date FROM table_name_38 WHERE record = "20β16"
|
### Context: CREATE TABLE table_name_38 (date VARCHAR, record VARCHAR) ### Question: What date was the record 20β16? ### Answer: SELECT date FROM table_name_38 WHERE record = "20β16"
|
What was the attendance in the gave versus the Brewers with a score of 9β6?
|
CREATE TABLE table_name_43 (attendance VARCHAR, opponent VARCHAR, score VARCHAR)
|
SELECT attendance FROM table_name_43 WHERE opponent = "brewers" AND score = "9β6"
|
### Context: CREATE TABLE table_name_43 (attendance VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: What was the attendance in the gave versus the Brewers with a score of 9β6? ### Answer: SELECT attendance FROM table_name_43 WHERE opponent = "brewers" AND score = "9β6"
|
What was the attendance on May 26?
|
CREATE TABLE table_name_90 (attendance VARCHAR, date VARCHAR)
|
SELECT attendance FROM table_name_90 WHERE date = "may 26"
|
### Context: CREATE TABLE table_name_90 (attendance VARCHAR, date VARCHAR) ### Question: What was the attendance on May 26? ### Answer: SELECT attendance FROM table_name_90 WHERE date = "may 26"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.