question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played?
CREATE TABLE table_name_42 (drawn INTEGER, first_game VARCHAR, played VARCHAR)
SELECT SUM(drawn) FROM table_name_42 WHERE first_game < 2006 AND played < 2
### Context: CREATE TABLE table_name_42 (drawn INTEGER, first_game VARCHAR, played VARCHAR) ### Question: What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played? ### Answer: SELECT SUM(drawn) FROM table_name_42 WHERE first_game < 2006 AND played < 2
What is the highest number of losses associated with 2 matches played, a first game after 1997, and more than 0 draws?
CREATE TABLE table_name_37 (lost INTEGER, drawn VARCHAR, played VARCHAR, first_game VARCHAR)
SELECT MAX(lost) FROM table_name_37 WHERE played = 2 AND first_game > 1997 AND drawn > 0
### Context: CREATE TABLE table_name_37 (lost INTEGER, drawn VARCHAR, played VARCHAR, first_game VARCHAR) ### Question: What is the highest number of losses associated with 2 matches played, a first game after 1997, and more than 0 draws? ### Answer: SELECT MAX(lost) FROM table_name_37 WHERE played = 2 AND first_game > 1997 AND drawn > 0
What is the Result of the Test match at the Edgbaston Venue on 5,6,7,8 June 1997?
CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_53 WHERE date = "5,6,7,8 june 1997"
### Context: CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR) ### Question: What is the Result of the Test match at the Edgbaston Venue on 5,6,7,8 June 1997? ### Answer: SELECT result FROM table_name_53 WHERE date = "5,6,7,8 june 1997"
What is the Date of the Test match of Australia in England at The Oval Venue?
CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_12 WHERE venue = "the oval"
### Context: CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR) ### Question: What is the Date of the Test match of Australia in England at The Oval Venue? ### Answer: SELECT date FROM table_name_12 WHERE venue = "the oval"
Who was the Away captain for the Test match of Australia in England where the Result was AUS by 264 runs?
CREATE TABLE table_name_56 (away_captain VARCHAR, result VARCHAR)
SELECT away_captain FROM table_name_56 WHERE result = "aus by 264 runs"
### Context: CREATE TABLE table_name_56 (away_captain VARCHAR, result VARCHAR) ### Question: Who was the Away captain for the Test match of Australia in England where the Result was AUS by 264 runs? ### Answer: SELECT away_captain FROM table_name_56 WHERE result = "aus by 264 runs"
Who was the Home captain for the Test match of Australia in England at the Edgbaston Venue?
CREATE TABLE table_name_99 (home_captain VARCHAR, venue VARCHAR)
SELECT home_captain FROM table_name_99 WHERE venue = "edgbaston"
### Context: CREATE TABLE table_name_99 (home_captain VARCHAR, venue VARCHAR) ### Question: Who was the Home captain for the Test match of Australia in England at the Edgbaston Venue? ### Answer: SELECT home_captain FROM table_name_99 WHERE venue = "edgbaston"
what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009?
CREATE TABLE table_name_8 (role VARCHAR, notes VARCHAR, year VARCHAR)
SELECT role FROM table_name_8 WHERE notes = "co-protagonist" AND year = "2008-2009"
### Context: CREATE TABLE table_name_8 (role VARCHAR, notes VARCHAR, year VARCHAR) ### Question: what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009? ### Answer: SELECT role FROM table_name_8 WHERE notes = "co-protagonist" AND year = "2008-2009"
What is the name of the role that has a Title of Olvidarte Jamas?
CREATE TABLE table_name_41 (role VARCHAR, title VARCHAR)
SELECT role FROM table_name_41 WHERE title = "olvidarte jamas"
### Context: CREATE TABLE table_name_41 (role VARCHAR, title VARCHAR) ### Question: What is the name of the role that has a Title of Olvidarte Jamas? ### Answer: SELECT role FROM table_name_41 WHERE title = "olvidarte jamas"
Which production company has the year of 2005 listed?
CREATE TABLE table_name_45 (production_company VARCHAR, year VARCHAR)
SELECT production_company FROM table_name_45 WHERE year = "2005"
### Context: CREATE TABLE table_name_45 (production_company VARCHAR, year VARCHAR) ### Question: Which production company has the year of 2005 listed? ### Answer: SELECT production_company FROM table_name_45 WHERE year = "2005"
What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field?
CREATE TABLE table_name_26 (role VARCHAR, notes VARCHAR, title VARCHAR)
SELECT role FROM table_name_26 WHERE notes = "antagonist" AND title = "salud, dinero y amor"
### Context: CREATE TABLE table_name_26 (role VARCHAR, notes VARCHAR, title VARCHAR) ### Question: What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field? ### Answer: SELECT role FROM table_name_26 WHERE notes = "antagonist" AND title = "salud, dinero y amor"
What is the name of the production company that has a year of 2008-2009?
CREATE TABLE table_name_19 (production_company VARCHAR, year VARCHAR)
SELECT production_company FROM table_name_19 WHERE year = "2008-2009"
### Context: CREATE TABLE table_name_19 (production_company VARCHAR, year VARCHAR) ### Question: What is the name of the production company that has a year of 2008-2009? ### Answer: SELECT production_company FROM table_name_19 WHERE year = "2008-2009"
What is the Authority for Kuranui Primary School that is located in the Area of Tirau?
CREATE TABLE table_name_82 (authority VARCHAR, area VARCHAR, name VARCHAR)
SELECT authority FROM table_name_82 WHERE area = "tirau" AND name = "kuranui primary school"
### Context: CREATE TABLE table_name_82 (authority VARCHAR, area VARCHAR, name VARCHAR) ### Question: What is the Authority for Kuranui Primary School that is located in the Area of Tirau? ### Answer: SELECT authority FROM table_name_82 WHERE area = "tirau" AND name = "kuranui primary school"
Which Names have Deciles larger than 7?
CREATE TABLE table_name_38 (name VARCHAR, decile INTEGER)
SELECT name FROM table_name_38 WHERE decile > 7
### Context: CREATE TABLE table_name_38 (name VARCHAR, decile INTEGER) ### Question: Which Names have Deciles larger than 7? ### Answer: SELECT name FROM table_name_38 WHERE decile > 7
What Gender are the schools that have a Roll of 135?
CREATE TABLE table_name_62 (gender VARCHAR, roll VARCHAR)
SELECT gender FROM table_name_62 WHERE roll = "135"
### Context: CREATE TABLE table_name_62 (gender VARCHAR, roll VARCHAR) ### Question: What Gender are the schools that have a Roll of 135? ### Answer: SELECT gender FROM table_name_62 WHERE roll = "135"
What is the Name of a state Authority that has a Roll of 72?
CREATE TABLE table_name_13 (name VARCHAR, authority VARCHAR, roll VARCHAR)
SELECT name FROM table_name_13 WHERE authority = "state" AND roll = "72"
### Context: CREATE TABLE table_name_13 (name VARCHAR, authority VARCHAR, roll VARCHAR) ### Question: What is the Name of a state Authority that has a Roll of 72? ### Answer: SELECT name FROM table_name_13 WHERE authority = "state" AND roll = "72"
Which friendly competition took place on 19 April 1979?
CREATE TABLE table_name_37 (score VARCHAR, competition VARCHAR, date VARCHAR)
SELECT score FROM table_name_37 WHERE competition = "friendly" AND date = "19 april 1979"
### Context: CREATE TABLE table_name_37 (score VARCHAR, competition VARCHAR, date VARCHAR) ### Question: Which friendly competition took place on 19 April 1979? ### Answer: SELECT score FROM table_name_37 WHERE competition = "friendly" AND date = "19 april 1979"
Which Team 1 faced Dynamos FC?
CREATE TABLE table_name_83 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_83 WHERE team_2 = "dynamos fc"
### Context: CREATE TABLE table_name_83 (team_1 VARCHAR, team_2 VARCHAR) ### Question: Which Team 1 faced Dynamos FC? ### Answer: SELECT team_1 FROM table_name_83 WHERE team_2 = "dynamos fc"
What is Team 1 Al-Hilal's Agg.?
CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR)
SELECT agg FROM table_name_81 WHERE team_1 = "al-hilal"
### Context: CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR) ### Question: What is Team 1 Al-Hilal's Agg.? ### Answer: SELECT agg FROM table_name_81 WHERE team_1 = "al-hilal"
Which record happened on the date of May 7?
CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_34 WHERE date = "may 7"
### Context: CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR) ### Question: Which record happened on the date of May 7? ### Answer: SELECT record FROM table_name_34 WHERE date = "may 7"
Which tournament had Lubomira Bacheva as the opponent in the final?
CREATE TABLE table_name_53 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_53 WHERE opponent_in_the_final = "lubomira bacheva"
### Context: CREATE TABLE table_name_53 (tournament VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which tournament had Lubomira Bacheva as the opponent in the final? ### Answer: SELECT tournament FROM table_name_53 WHERE opponent_in_the_final = "lubomira bacheva"
Who was the opponent in the final on 5 July 1992?
CREATE TABLE table_name_46 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_46 WHERE date = "5 july 1992"
### Context: CREATE TABLE table_name_46 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who was the opponent in the final on 5 July 1992? ### Answer: SELECT opponent_in_the_final FROM table_name_46 WHERE date = "5 july 1992"
What is the date of the tournament where Kyoko Nagatsuka was the opponent in the final?
CREATE TABLE table_name_89 (date VARCHAR, opponent_in_the_final VARCHAR)
SELECT date FROM table_name_89 WHERE opponent_in_the_final = "kyoko nagatsuka"
### Context: CREATE TABLE table_name_89 (date VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the date of the tournament where Kyoko Nagatsuka was the opponent in the final? ### Answer: SELECT date FROM table_name_89 WHERE opponent_in_the_final = "kyoko nagatsuka"
What is the surface at the tournament of Vaihingen?
CREATE TABLE table_name_24 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_24 WHERE tournament = "vaihingen"
### Context: CREATE TABLE table_name_24 (surface VARCHAR, tournament VARCHAR) ### Question: What is the surface at the tournament of Vaihingen? ### Answer: SELECT surface FROM table_name_24 WHERE tournament = "vaihingen"
What was the surface of the tournament where Anna Benzon was the opponent in the final?
CREATE TABLE table_name_59 (surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT surface FROM table_name_59 WHERE opponent_in_the_final = "anna benzon"
### Context: CREATE TABLE table_name_59 (surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the surface of the tournament where Anna Benzon was the opponent in the final? ### Answer: SELECT surface FROM table_name_59 WHERE opponent_in_the_final = "anna benzon"
What is the average position of Eesti P玫levkivi J玫hvi when they had less than 13 points and worse than a -12 goal differential?
CREATE TABLE table_name_54 (position INTEGER, points VARCHAR, goals_ VARCHAR, __ VARCHAR)
SELECT AVG(position) FROM table_name_54 WHERE points < 13 AND goals_ + __ > -12
### Context: CREATE TABLE table_name_54 (position INTEGER, points VARCHAR, goals_ VARCHAR, __ VARCHAR) ### Question: What is the average position of Eesti P玫levkivi J玫hvi when they had less than 13 points and worse than a -12 goal differential? ### Answer: SELECT AVG(position) FROM table_name_54 WHERE points < 13 AND goals_ + __ > -12
What is the to par for the player who had a score of 70-72-70-69=281?
CREATE TABLE table_name_18 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_18 WHERE score = 70 - 72 - 70 - 69 = 281
### Context: CREATE TABLE table_name_18 (to_par VARCHAR, score VARCHAR) ### Question: What is the to par for the player who had a score of 70-72-70-69=281? ### Answer: SELECT to_par FROM table_name_18 WHERE score = 70 - 72 - 70 - 69 = 281
What year had the qual of totals
CREATE TABLE table_name_88 (year VARCHAR, qual VARCHAR)
SELECT year FROM table_name_88 WHERE qual = "totals"
### Context: CREATE TABLE table_name_88 (year VARCHAR, qual VARCHAR) ### Question: What year had the qual of totals ### Answer: SELECT year FROM table_name_88 WHERE qual = "totals"
What qual had a finish of 16 in 1968?
CREATE TABLE table_name_64 (qual VARCHAR, finish VARCHAR, year VARCHAR)
SELECT qual FROM table_name_64 WHERE finish = "16" AND year = "1968"
### Context: CREATE TABLE table_name_64 (qual VARCHAR, finish VARCHAR, year VARCHAR) ### Question: What qual had a finish of 16 in 1968? ### Answer: SELECT qual FROM table_name_64 WHERE finish = "16" AND year = "1968"
What was the finish with the start of 25 and a lap larger than 46?
CREATE TABLE table_name_21 (finish VARCHAR, start VARCHAR, laps VARCHAR)
SELECT finish FROM table_name_21 WHERE start = "25" AND laps > 46
### Context: CREATE TABLE table_name_21 (finish VARCHAR, start VARCHAR, laps VARCHAR) ### Question: What was the finish with the start of 25 and a lap larger than 46? ### Answer: SELECT finish FROM table_name_21 WHERE start = "25" AND laps > 46
What was the lowest lap with the ranking of 19?
CREATE TABLE table_name_99 (laps INTEGER, start VARCHAR)
SELECT MIN(laps) FROM table_name_99 WHERE start = "19"
### Context: CREATE TABLE table_name_99 (laps INTEGER, start VARCHAR) ### Question: What was the lowest lap with the ranking of 19? ### Answer: SELECT MIN(laps) FROM table_name_99 WHERE start = "19"
Name the least ovrs for wkts of 0
CREATE TABLE table_name_89 (ovrs INTEGER, wkts VARCHAR)
SELECT MIN(ovrs) FROM table_name_89 WHERE wkts = 0
### Context: CREATE TABLE table_name_89 (ovrs INTEGER, wkts VARCHAR) ### Question: Name the least ovrs for wkts of 0 ### Answer: SELECT MIN(ovrs) FROM table_name_89 WHERE wkts = 0
Name the average econ for runs more than 703 and ovrs more than 25.5
CREATE TABLE table_name_2 (econ INTEGER, ovrs VARCHAR, runs VARCHAR)
SELECT AVG(econ) FROM table_name_2 WHERE ovrs > 25.5 AND runs > 703
### Context: CREATE TABLE table_name_2 (econ INTEGER, ovrs VARCHAR, runs VARCHAR) ### Question: Name the average econ for runs more than 703 and ovrs more than 25.5 ### Answer: SELECT AVG(econ) FROM table_name_2 WHERE ovrs > 25.5 AND runs > 703
What is the average year that has a car that won 0 stages with a position of DNF?
CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, class VARCHAR, stages_won VARCHAR)
SELECT AVG(year) FROM table_name_68 WHERE class = "car" AND stages_won = "0" AND position = "dnf"
### Context: CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, class VARCHAR, stages_won VARCHAR) ### Question: What is the average year that has a car that won 0 stages with a position of DNF? ### Answer: SELECT AVG(year) FROM table_name_68 WHERE class = "car" AND stages_won = "0" AND position = "dnf"
What is the class that that won 2 stages and has a position of DNF?
CREATE TABLE table_name_20 (class VARCHAR, stages_won VARCHAR, position VARCHAR)
SELECT class FROM table_name_20 WHERE stages_won = "2" AND position = "dnf"
### Context: CREATE TABLE table_name_20 (class VARCHAR, stages_won VARCHAR, position VARCHAR) ### Question: What is the class that that won 2 stages and has a position of DNF? ### Answer: SELECT class FROM table_name_20 WHERE stages_won = "2" AND position = "dnf"
What position did the BMW vehicle made in 2006 hold?
CREATE TABLE table_name_89 (position VARCHAR, vehicle VARCHAR, year VARCHAR)
SELECT position FROM table_name_89 WHERE vehicle = "bmw" AND year = 2006
### Context: CREATE TABLE table_name_89 (position VARCHAR, vehicle VARCHAR, year VARCHAR) ### Question: What position did the BMW vehicle made in 2006 hold? ### Answer: SELECT position FROM table_name_89 WHERE vehicle = "bmw" AND year = 2006
Which builder has a Fuel Propulsion of diesel, a Model of d40lf, and an Order Year of 2005?
CREATE TABLE table_name_68 (builder VARCHAR, order_year VARCHAR, fuel_propulsion VARCHAR, model VARCHAR)
SELECT builder FROM table_name_68 WHERE fuel_propulsion = "diesel" AND model = "d40lf" AND order_year = "2005"
### Context: CREATE TABLE table_name_68 (builder VARCHAR, order_year VARCHAR, fuel_propulsion VARCHAR, model VARCHAR) ### Question: Which builder has a Fuel Propulsion of diesel, a Model of d40lf, and an Order Year of 2005? ### Answer: SELECT builder FROM table_name_68 WHERE fuel_propulsion = "diesel" AND model = "d40lf" AND order_year = "2005"
Which model has a Fleet Series (Quantity) of 11081-11092 (12)?
CREATE TABLE table_name_1 (model VARCHAR, fleet_series__quantity_ VARCHAR)
SELECT model FROM table_name_1 WHERE fleet_series__quantity_ = "11081-11092 (12)"
### Context: CREATE TABLE table_name_1 (model VARCHAR, fleet_series__quantity_ VARCHAR) ### Question: Which model has a Fleet Series (Quantity) of 11081-11092 (12)? ### Answer: SELECT model FROM table_name_1 WHERE fleet_series__quantity_ = "11081-11092 (12)"
Which order year has a Fleet Series (Quantity) of 12081-12090 (10)?
CREATE TABLE table_name_73 (order_year VARCHAR, fleet_series__quantity_ VARCHAR)
SELECT order_year FROM table_name_73 WHERE fleet_series__quantity_ = "12081-12090 (10)"
### Context: CREATE TABLE table_name_73 (order_year VARCHAR, fleet_series__quantity_ VARCHAR) ### Question: Which order year has a Fleet Series (Quantity) of 12081-12090 (10)? ### Answer: SELECT order_year FROM table_name_73 WHERE fleet_series__quantity_ = "12081-12090 (10)"
Which Fleet Series (Quantity) that has a Builder of mci, and an Order Year of 2002?
CREATE TABLE table_name_23 (fleet_series__quantity_ VARCHAR, builder VARCHAR, order_year VARCHAR)
SELECT fleet_series__quantity_ FROM table_name_23 WHERE builder = "mci" AND order_year = "2002"
### Context: CREATE TABLE table_name_23 (fleet_series__quantity_ VARCHAR, builder VARCHAR, order_year VARCHAR) ### Question: Which Fleet Series (Quantity) that has a Builder of mci, and an Order Year of 2002? ### Answer: SELECT fleet_series__quantity_ FROM table_name_23 WHERE builder = "mci" AND order_year = "2002"
Which Fleet Series (Quantity) has an Order Year of 2010, and a Model of de40lfr?
CREATE TABLE table_name_60 (fleet_series__quantity_ VARCHAR, order_year VARCHAR, model VARCHAR)
SELECT fleet_series__quantity_ FROM table_name_60 WHERE order_year = "2010" AND model = "de40lfr"
### Context: CREATE TABLE table_name_60 (fleet_series__quantity_ VARCHAR, order_year VARCHAR, model VARCHAR) ### Question: Which Fleet Series (Quantity) has an Order Year of 2010, and a Model of de40lfr? ### Answer: SELECT fleet_series__quantity_ FROM table_name_60 WHERE order_year = "2010" AND model = "de40lfr"
Which Fuel Propulsion has a Fleet Series (Quantity) of 04001-04125 (125)?
CREATE TABLE table_name_73 (fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR)
SELECT fuel_propulsion FROM table_name_73 WHERE fleet_series__quantity_ = "04001-04125 (125)"
### Context: CREATE TABLE table_name_73 (fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR) ### Question: Which Fuel Propulsion has a Fleet Series (Quantity) of 04001-04125 (125)? ### Answer: SELECT fuel_propulsion FROM table_name_73 WHERE fleet_series__quantity_ = "04001-04125 (125)"
Name the sum of roll for morrinsville school
CREATE TABLE table_name_65 (roll INTEGER, name VARCHAR)
SELECT SUM(roll) FROM table_name_65 WHERE name = "morrinsville school"
### Context: CREATE TABLE table_name_65 (roll INTEGER, name VARCHAR) ### Question: Name the sum of roll for morrinsville school ### Answer: SELECT SUM(roll) FROM table_name_65 WHERE name = "morrinsville school"
Name the authority for morrinsville college
CREATE TABLE table_name_88 (authority VARCHAR, name VARCHAR)
SELECT authority FROM table_name_88 WHERE name = "morrinsville college"
### Context: CREATE TABLE table_name_88 (authority VARCHAR, name VARCHAR) ### Question: Name the authority for morrinsville college ### Answer: SELECT authority FROM table_name_88 WHERE name = "morrinsville college"
Name the years when decile was less than 7 for waitoa school
CREATE TABLE table_name_67 (years VARCHAR, decile VARCHAR, name VARCHAR)
SELECT years FROM table_name_67 WHERE decile < 7 AND name = "waitoa school"
### Context: CREATE TABLE table_name_67 (years VARCHAR, decile VARCHAR, name VARCHAR) ### Question: Name the years when decile was less than 7 for waitoa school ### Answer: SELECT years FROM table_name_67 WHERE decile < 7 AND name = "waitoa school"
Name the total number of roll for state authority and stanley avenue school with decile more than 5
CREATE TABLE table_name_31 (roll VARCHAR, decile VARCHAR, authority VARCHAR, name VARCHAR)
SELECT COUNT(roll) FROM table_name_31 WHERE authority = "state" AND name = "stanley avenue school" AND decile > 5
### Context: CREATE TABLE table_name_31 (roll VARCHAR, decile VARCHAR, authority VARCHAR, name VARCHAR) ### Question: Name the total number of roll for state authority and stanley avenue school with decile more than 5 ### Answer: SELECT COUNT(roll) FROM table_name_31 WHERE authority = "state" AND name = "stanley avenue school" AND decile > 5
What is the grid total associated with 18 laps?
CREATE TABLE table_name_35 (grid VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_35 WHERE laps = 18
### Context: CREATE TABLE table_name_35 (grid VARCHAR, laps VARCHAR) ### Question: What is the grid total associated with 18 laps? ### Answer: SELECT COUNT(grid) FROM table_name_35 WHERE laps = 18
What rider is on an aprilia that went under 18 laps with a grid total of 17?
CREATE TABLE table_name_14 (rider VARCHAR, grid VARCHAR, manufacturer VARCHAR, laps VARCHAR)
SELECT rider FROM table_name_14 WHERE manufacturer = "aprilia" AND laps < 18 AND grid = 17
### Context: CREATE TABLE table_name_14 (rider VARCHAR, grid VARCHAR, manufacturer VARCHAR, laps VARCHAR) ### Question: What rider is on an aprilia that went under 18 laps with a grid total of 17? ### Answer: SELECT rider FROM table_name_14 WHERE manufacturer = "aprilia" AND laps < 18 AND grid = 17
What is the Manufacturer for simone corsi?
CREATE TABLE table_name_85 (manufacturer VARCHAR, rider VARCHAR)
SELECT manufacturer FROM table_name_85 WHERE rider = "simone corsi"
### Context: CREATE TABLE table_name_85 (manufacturer VARCHAR, rider VARCHAR) ### Question: What is the Manufacturer for simone corsi? ### Answer: SELECT manufacturer FROM table_name_85 WHERE rider = "simone corsi"
What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19?
CREATE TABLE table_name_77 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT MIN(grid) FROM table_name_77 WHERE time_retired = "+33.634" AND laps < 19
### Context: CREATE TABLE table_name_77 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19? ### Answer: SELECT MIN(grid) FROM table_name_77 WHERE time_retired = "+33.634" AND laps < 19
Tell me the power when the torque is n路m (lb路ft)/*n路m (lb路ft) @1750
CREATE TABLE table_name_37 (power_rpm VARCHAR, torque__nm__rpm VARCHAR)
SELECT power_rpm FROM table_name_37 WHERE torque__nm__rpm = "n路m (lb路ft)/*n路m (lb路ft) @1750"
### Context: CREATE TABLE table_name_37 (power_rpm VARCHAR, torque__nm__rpm VARCHAR) ### Question: Tell me the power when the torque is n路m (lb路ft)/*n路m (lb路ft) @1750 ### Answer: SELECT power_rpm FROM table_name_37 WHERE torque__nm__rpm = "n路m (lb路ft)/*n路m (lb路ft) @1750"
Name the capacity for the engine of 2.0 duratorq
CREATE TABLE table_name_84 (capacity VARCHAR, model_engine VARCHAR)
SELECT capacity FROM table_name_84 WHERE model_engine = "2.0 duratorq"
### Context: CREATE TABLE table_name_84 (capacity VARCHAR, model_engine VARCHAR) ### Question: Name the capacity for the engine of 2.0 duratorq ### Answer: SELECT capacity FROM table_name_84 WHERE model_engine = "2.0 duratorq"
Name the capacity for the torque of n路m (lb路ft) @4150
CREATE TABLE table_name_90 (capacity VARCHAR, torque__nm__rpm VARCHAR)
SELECT capacity FROM table_name_90 WHERE torque__nm__rpm = "n路m (lb路ft) @4150"
### Context: CREATE TABLE table_name_90 (capacity VARCHAR, torque__nm__rpm VARCHAR) ### Question: Name the capacity for the torque of n路m (lb路ft) @4150 ### Answer: SELECT capacity FROM table_name_90 WHERE torque__nm__rpm = "n路m (lb路ft) @4150"
Name the power for 1.8 duratorq
CREATE TABLE table_name_91 (power_rpm VARCHAR, model_engine VARCHAR)
SELECT power_rpm FROM table_name_91 WHERE model_engine = "1.8 duratorq"
### Context: CREATE TABLE table_name_91 (power_rpm VARCHAR, model_engine VARCHAR) ### Question: Name the power for 1.8 duratorq ### Answer: SELECT power_rpm FROM table_name_91 WHERE model_engine = "1.8 duratorq"
Name the power for when the torque is n路m (lb路ft)/*n路m (lb路ft) @1750
CREATE TABLE table_name_62 (power_rpm VARCHAR, torque__nm__rpm VARCHAR)
SELECT power_rpm FROM table_name_62 WHERE torque__nm__rpm = "n路m (lb路ft)/*n路m (lb路ft) @1750"
### Context: CREATE TABLE table_name_62 (power_rpm VARCHAR, torque__nm__rpm VARCHAR) ### Question: Name the power for when the torque is n路m (lb路ft)/*n路m (lb路ft) @1750 ### Answer: SELECT power_rpm FROM table_name_62 WHERE torque__nm__rpm = "n路m (lb路ft)/*n路m (lb路ft) @1750"
What are the smallest goals with a Goal Ratio of 0.14, and a Debut in Europe smaller than 1995?
CREATE TABLE table_name_20 (goals INTEGER, goal_ratio VARCHAR, debut_in_europe VARCHAR)
SELECT MIN(goals) FROM table_name_20 WHERE goal_ratio = 0.14 AND debut_in_europe < 1995
### Context: CREATE TABLE table_name_20 (goals INTEGER, goal_ratio VARCHAR, debut_in_europe VARCHAR) ### Question: What are the smallest goals with a Goal Ratio of 0.14, and a Debut in Europe smaller than 1995? ### Answer: SELECT MIN(goals) FROM table_name_20 WHERE goal_ratio = 0.14 AND debut_in_europe < 1995
What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?
CREATE TABLE table_name_71 (goal_ratio INTEGER, debut_in_europe VARCHAR, goals VARCHAR, games VARCHAR)
SELECT AVG(goal_ratio) FROM table_name_71 WHERE goals > 1 AND games > 161 AND debut_in_europe < 1985
### Context: CREATE TABLE table_name_71 (goal_ratio INTEGER, debut_in_europe VARCHAR, goals VARCHAR, games VARCHAR) ### Question: What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985? ### Answer: SELECT AVG(goal_ratio) FROM table_name_71 WHERE goals > 1 AND games > 161 AND debut_in_europe < 1985
What lowest games have 20 goals and a Goal Ratio smaller than 0.14?
CREATE TABLE table_name_51 (games INTEGER, goals VARCHAR, goal_ratio VARCHAR)
SELECT MIN(games) FROM table_name_51 WHERE goals = 20 AND goal_ratio < 0.14
### Context: CREATE TABLE table_name_51 (games INTEGER, goals VARCHAR, goal_ratio VARCHAR) ### Question: What lowest games have 20 goals and a Goal Ratio smaller than 0.14? ### Answer: SELECT MIN(games) FROM table_name_51 WHERE goals = 20 AND goal_ratio < 0.14
What is the largest goal ratio with Goals smaller than 0?
CREATE TABLE table_name_73 (goal_ratio INTEGER, goals INTEGER)
SELECT MAX(goal_ratio) FROM table_name_73 WHERE goals < 0
### Context: CREATE TABLE table_name_73 (goal_ratio INTEGER, goals INTEGER) ### Question: What is the largest goal ratio with Goals smaller than 0? ### Answer: SELECT MAX(goal_ratio) FROM table_name_73 WHERE goals < 0
What lowest games have a Goal Ratio of 0, and Goals smaller than 0?
CREATE TABLE table_name_87 (games INTEGER, goal_ratio VARCHAR, goals VARCHAR)
SELECT MIN(games) FROM table_name_87 WHERE goal_ratio = 0 AND goals < 0
### Context: CREATE TABLE table_name_87 (games INTEGER, goal_ratio VARCHAR, goals VARCHAR) ### Question: What lowest games have a Goal Ratio of 0, and Goals smaller than 0? ### Answer: SELECT MIN(games) FROM table_name_87 WHERE goal_ratio = 0 AND goals < 0
How many debuts in Europe have less than 76 goals, more than 151 games, and a rank greater than 5?
CREATE TABLE table_name_77 (debut_in_europe VARCHAR, rank VARCHAR, goals VARCHAR, games VARCHAR)
SELECT COUNT(debut_in_europe) FROM table_name_77 WHERE goals < 76 AND games > 151 AND rank > 5
### Context: CREATE TABLE table_name_77 (debut_in_europe VARCHAR, rank VARCHAR, goals VARCHAR, games VARCHAR) ### Question: How many debuts in Europe have less than 76 goals, more than 151 games, and a rank greater than 5? ### Answer: SELECT COUNT(debut_in_europe) FROM table_name_77 WHERE goals < 76 AND games > 151 AND rank > 5
What is the average points of the Ferrari 1512 Chassis after 1965?
CREATE TABLE table_name_18 (points INTEGER, chassis VARCHAR, year VARCHAR)
SELECT AVG(points) FROM table_name_18 WHERE chassis = "ferrari 1512" AND year > 1965
### Context: CREATE TABLE table_name_18 (points INTEGER, chassis VARCHAR, year VARCHAR) ### Question: What is the average points of the Ferrari 1512 Chassis after 1965? ### Answer: SELECT AVG(points) FROM table_name_18 WHERE chassis = "ferrari 1512" AND year > 1965
What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12?
CREATE TABLE table_name_33 (chassis VARCHAR, engine VARCHAR, year VARCHAR, team VARCHAR)
SELECT chassis FROM table_name_33 WHERE year > 1965 AND team = "cooper car company" AND engine = "maserati v12"
### Context: CREATE TABLE table_name_33 (chassis VARCHAR, engine VARCHAR, year VARCHAR, team VARCHAR) ### Question: What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12? ### Answer: SELECT chassis FROM table_name_33 WHERE year > 1965 AND team = "cooper car company" AND engine = "maserati v12"
Which location had a round of 3, and an Opponent of matt horwich?
CREATE TABLE table_name_9 (location VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_9 WHERE round < 3 AND opponent = "matt horwich"
### Context: CREATE TABLE table_name_9 (location VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: Which location had a round of 3, and an Opponent of matt horwich? ### Answer: SELECT location FROM table_name_9 WHERE round < 3 AND opponent = "matt horwich"
What was the time of sportfight 10?
CREATE TABLE table_name_45 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_45 WHERE event = "sportfight 10"
### Context: CREATE TABLE table_name_45 (time VARCHAR, event VARCHAR) ### Question: What was the time of sportfight 10? ### Answer: SELECT time FROM table_name_45 WHERE event = "sportfight 10"
Which opponent had a time of 0:29?
CREATE TABLE table_name_71 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_71 WHERE time = "0:29"
### Context: CREATE TABLE table_name_71 (opponent VARCHAR, time VARCHAR) ### Question: Which opponent had a time of 0:29? ### Answer: SELECT opponent FROM table_name_71 WHERE time = "0:29"
What number has the builder ruston hornsby, the date 1961, and the name Topsy?
CREATE TABLE table_name_10 (number VARCHAR, name VARCHAR, builder VARCHAR, date VARCHAR)
SELECT COUNT(number) FROM table_name_10 WHERE builder = "ruston hornsby" AND date = 1961 AND name = "topsy"
### Context: CREATE TABLE table_name_10 (number VARCHAR, name VARCHAR, builder VARCHAR, date VARCHAR) ### Question: What number has the builder ruston hornsby, the date 1961, and the name Topsy? ### Answer: SELECT COUNT(number) FROM table_name_10 WHERE builder = "ruston hornsby" AND date = 1961 AND name = "topsy"
What is the number with the builder hunslet and a works number greater than 822?
CREATE TABLE table_name_62 (number VARCHAR, builder VARCHAR, works_number VARCHAR)
SELECT COUNT(number) FROM table_name_62 WHERE builder = "hunslet" AND works_number > 822
### Context: CREATE TABLE table_name_62 (number VARCHAR, builder VARCHAR, works_number VARCHAR) ### Question: What is the number with the builder hunslet and a works number greater than 822? ### Answer: SELECT COUNT(number) FROM table_name_62 WHERE builder = "hunslet" AND works_number > 822
What was the score of the March 14 game?
CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_95 WHERE date = "march 14"
### Context: CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR) ### Question: What was the score of the March 14 game? ### Answer: SELECT score FROM table_name_95 WHERE date = "march 14"
What was the score for the December 11 game against the Ottawa Senators?
CREATE TABLE table_name_52 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT score FROM table_name_52 WHERE visitor = "ottawa senators" AND date = "december 11"
### Context: CREATE TABLE table_name_52 (score VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What was the score for the December 11 game against the Ottawa Senators? ### Answer: SELECT score FROM table_name_52 WHERE visitor = "ottawa senators" AND date = "december 11"
Name the project with length overall being 25 and name of levante
CREATE TABLE table_name_40 (project VARCHAR, length_overall_in_meters__without_bowsprit_ VARCHAR, name VARCHAR)
SELECT project FROM table_name_40 WHERE length_overall_in_meters__without_bowsprit_ = 25 AND name = "levante"
### Context: CREATE TABLE table_name_40 (project VARCHAR, length_overall_in_meters__without_bowsprit_ VARCHAR, name VARCHAR) ### Question: Name the project with length overall being 25 and name of levante ### Answer: SELECT project FROM table_name_40 WHERE length_overall_in_meters__without_bowsprit_ = 25 AND name = "levante"
Name the sum of Hull number with portugal destination
CREATE TABLE table_name_84 (hull_no INTEGER, destination VARCHAR)
SELECT SUM(hull_no) FROM table_name_84 WHERE destination = "portugal"
### Context: CREATE TABLE table_name_84 (hull_no INTEGER, destination VARCHAR) ### Question: Name the sum of Hull number with portugal destination ### Answer: SELECT SUM(hull_no) FROM table_name_84 WHERE destination = "portugal"
Name the sum of hull number for italy and year more than 1999
CREATE TABLE table_name_37 (hull_no INTEGER, destination VARCHAR, year VARCHAR)
SELECT SUM(hull_no) FROM table_name_37 WHERE destination = "italy" AND year > 1999
### Context: CREATE TABLE table_name_37 (hull_no INTEGER, destination VARCHAR, year VARCHAR) ### Question: Name the sum of hull number for italy and year more than 1999 ### Answer: SELECT SUM(hull_no) FROM table_name_37 WHERE destination = "italy" AND year > 1999
Give me the result for a format saying album with 1994 as the year.
CREATE TABLE table_name_91 (result_s_ VARCHAR, format_s_ VARCHAR, year VARCHAR)
SELECT result_s_ FROM table_name_91 WHERE format_s_ = "album" AND year = 1994
### Context: CREATE TABLE table_name_91 (result_s_ VARCHAR, format_s_ VARCHAR, year VARCHAR) ### Question: Give me the result for a format saying album with 1994 as the year. ### Answer: SELECT result_s_ FROM table_name_91 WHERE format_s_ = "album" AND year = 1994
List the Award Descriptions for the year of 1989.
CREATE TABLE table_name_17 (award_description_s_ VARCHAR, year VARCHAR)
SELECT award_description_s_ FROM table_name_17 WHERE year = 1989
### Context: CREATE TABLE table_name_17 (award_description_s_ VARCHAR, year VARCHAR) ### Question: List the Award Descriptions for the year of 1989. ### Answer: SELECT award_description_s_ FROM table_name_17 WHERE year = 1989
What was the score of the game played on August 5?
CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_66 WHERE date = "august 5"
### Context: CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game played on August 5? ### Answer: SELECT score FROM table_name_66 WHERE date = "august 5"
On what date was the Blue Jays record 60-56?
CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_25 WHERE record = "60-56"
### Context: CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR) ### Question: On what date was the Blue Jays record 60-56? ### Answer: SELECT date FROM table_name_25 WHERE record = "60-56"
Tell me the name for first elected more than 1988 and district of mason
CREATE TABLE table_name_4 (name VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT name FROM table_name_4 WHERE first_elected > 1988 AND district = "mason"
### Context: CREATE TABLE table_name_4 (name VARCHAR, first_elected VARCHAR, district VARCHAR) ### Question: Tell me the name for first elected more than 1988 and district of mason ### Answer: SELECT name FROM table_name_4 WHERE first_elected > 1988 AND district = "mason"
Name the party with first elected more than 1999 and position of supervisor for john foust
CREATE TABLE table_name_88 (party VARCHAR, name VARCHAR, first_elected VARCHAR, position VARCHAR)
SELECT party FROM table_name_88 WHERE first_elected > 1999 AND position = "supervisor" AND name = "john foust"
### Context: CREATE TABLE table_name_88 (party VARCHAR, name VARCHAR, first_elected VARCHAR, position VARCHAR) ### Question: Name the party with first elected more than 1999 and position of supervisor for john foust ### Answer: SELECT party FROM table_name_88 WHERE first_elected > 1999 AND position = "supervisor" AND name = "john foust"
Name the total number of first elected for dranesville
CREATE TABLE table_name_20 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_name_20 WHERE district = "dranesville"
### Context: CREATE TABLE table_name_20 (first_elected VARCHAR, district VARCHAR) ### Question: Name the total number of first elected for dranesville ### Answer: SELECT COUNT(first_elected) FROM table_name_20 WHERE district = "dranesville"
What year was the venue at Sydney Cricket Ground, and the opponent was Parramatta Eels?
CREATE TABLE table_name_71 (year VARCHAR, venue VARCHAR, opponent VARCHAR)
SELECT COUNT(year) FROM table_name_71 WHERE venue = "sydney cricket ground" AND opponent = "parramatta eels"
### Context: CREATE TABLE table_name_71 (year VARCHAR, venue VARCHAR, opponent VARCHAR) ### Question: What year was the venue at Sydney Cricket Ground, and the opponent was Parramatta Eels? ### Answer: SELECT COUNT(year) FROM table_name_71 WHERE venue = "sydney cricket ground" AND opponent = "parramatta eels"
What was the competition in 1978?
CREATE TABLE table_name_71 (competition VARCHAR, year VARCHAR)
SELECT competition FROM table_name_71 WHERE year = 1978
### Context: CREATE TABLE table_name_71 (competition VARCHAR, year VARCHAR) ### Question: What was the competition in 1978? ### Answer: SELECT competition FROM table_name_71 WHERE year = 1978
What year was the average attendance 80,388?
CREATE TABLE table_name_24 (year INTEGER, attendance VARCHAR)
SELECT AVG(year) FROM table_name_24 WHERE attendance = "80,388"
### Context: CREATE TABLE table_name_24 (year INTEGER, attendance VARCHAR) ### Question: What year was the average attendance 80,388? ### Answer: SELECT AVG(year) FROM table_name_24 WHERE attendance = "80,388"
What was the score with the opponent being New Zealand Warriors?
CREATE TABLE table_name_67 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_67 WHERE opponent = "new zealand warriors"
### Context: CREATE TABLE table_name_67 (score VARCHAR, opponent VARCHAR) ### Question: What was the score with the opponent being New Zealand Warriors? ### Answer: SELECT score FROM table_name_67 WHERE opponent = "new zealand warriors"
Which 1st Party has an election in 1847?
CREATE TABLE table_name_28 (election VARCHAR)
SELECT 1 AS st_party FROM table_name_28 WHERE election = "1847"
### Context: CREATE TABLE table_name_28 (election VARCHAR) ### Question: Which 1st Party has an election in 1847? ### Answer: SELECT 1 AS st_party FROM table_name_28 WHERE election = "1847"
Which 1st Party has an election in 1865?
CREATE TABLE table_name_92 (election VARCHAR)
SELECT 1 AS st_party FROM table_name_92 WHERE election = "1865"
### Context: CREATE TABLE table_name_92 (election VARCHAR) ### Question: Which 1st Party has an election in 1865? ### Answer: SELECT 1 AS st_party FROM table_name_92 WHERE election = "1865"
What was the average number of points with bonus pts less than 31 with the rider dennis gavros?
CREATE TABLE table_name_29 (total_points INTEGER, rider VARCHAR, bonus_pts VARCHAR)
SELECT AVG(total_points) FROM table_name_29 WHERE rider = "dennis gavros" AND bonus_pts < 31
### Context: CREATE TABLE table_name_29 (total_points INTEGER, rider VARCHAR, bonus_pts VARCHAR) ### Question: What was the average number of points with bonus pts less than 31 with the rider dennis gavros? ### Answer: SELECT AVG(total_points) FROM table_name_29 WHERE rider = "dennis gavros" AND bonus_pts < 31
How many total matches involving dennis gavros had total points less than 167?
CREATE TABLE table_name_35 (matches VARCHAR, rider VARCHAR, total_points VARCHAR)
SELECT COUNT(matches) FROM table_name_35 WHERE rider = "dennis gavros" AND total_points < 167
### Context: CREATE TABLE table_name_35 (matches VARCHAR, rider VARCHAR, total_points VARCHAR) ### Question: How many total matches involving dennis gavros had total points less than 167? ### Answer: SELECT COUNT(matches) FROM table_name_35 WHERE rider = "dennis gavros" AND total_points < 167
What is the smallest number of matches with Bonus Pts of 19 and Total Points greater than 421?
CREATE TABLE table_name_36 (matches INTEGER, bonus_pts VARCHAR, total_points VARCHAR)
SELECT MIN(matches) FROM table_name_36 WHERE bonus_pts = 19 AND total_points > 421
### Context: CREATE TABLE table_name_36 (matches INTEGER, bonus_pts VARCHAR, total_points VARCHAR) ### Question: What is the smallest number of matches with Bonus Pts of 19 and Total Points greater than 421? ### Answer: SELECT MIN(matches) FROM table_name_36 WHERE bonus_pts = 19 AND total_points > 421
Which category earlier than 2006 has Bart Brentjens as rider 2?
CREATE TABLE table_name_33 (category VARCHAR, date VARCHAR, rider_2 VARCHAR)
SELECT category FROM table_name_33 WHERE date < 2006 AND rider_2 = "bart brentjens"
### Context: CREATE TABLE table_name_33 (category VARCHAR, date VARCHAR, rider_2 VARCHAR) ### Question: Which category earlier than 2006 has Bart Brentjens as rider 2? ### Answer: SELECT category FROM table_name_33 WHERE date < 2006 AND rider_2 = "bart brentjens"
How many dates does the ladies category correspond to Rothaus-Cube?
CREATE TABLE table_name_37 (date VARCHAR, category VARCHAR, team VARCHAR)
SELECT COUNT(date) FROM table_name_37 WHERE category = "ladies" AND team = "rothaus-cube"
### Context: CREATE TABLE table_name_37 (date VARCHAR, category VARCHAR, team VARCHAR) ### Question: How many dates does the ladies category correspond to Rothaus-Cube? ### Answer: SELECT COUNT(date) FROM table_name_37 WHERE category = "ladies" AND team = "rothaus-cube"
Which category has a team of Cannondale Vredestein?
CREATE TABLE table_name_28 (category VARCHAR, team VARCHAR)
SELECT category FROM table_name_28 WHERE team = "cannondale vredestein"
### Context: CREATE TABLE table_name_28 (category VARCHAR, team VARCHAR) ### Question: Which category has a team of Cannondale Vredestein? ### Answer: SELECT category FROM table_name_28 WHERE team = "cannondale vredestein"
What is the qual with a rank 9?
CREATE TABLE table_name_9 (qual VARCHAR, rank VARCHAR)
SELECT qual FROM table_name_9 WHERE rank = "9"
### Context: CREATE TABLE table_name_9 (qual VARCHAR, rank VARCHAR) ### Question: What is the qual with a rank 9? ### Answer: SELECT qual FROM table_name_9 WHERE rank = "9"
What is the finish in 1956?
CREATE TABLE table_name_17 (finish VARCHAR, year VARCHAR)
SELECT finish FROM table_name_17 WHERE year = "1956"
### Context: CREATE TABLE table_name_17 (finish VARCHAR, year VARCHAR) ### Question: What is the finish in 1956? ### Answer: SELECT finish FROM table_name_17 WHERE year = "1956"
What is the finish with 200 laps and a start of 3?
CREATE TABLE table_name_91 (finish VARCHAR, laps VARCHAR, start VARCHAR)
SELECT finish FROM table_name_91 WHERE laps = 200 AND start = "3"
### Context: CREATE TABLE table_name_91 (finish VARCHAR, laps VARCHAR, start VARCHAR) ### Question: What is the finish with 200 laps and a start of 3? ### Answer: SELECT finish FROM table_name_91 WHERE laps = 200 AND start = "3"
What is the qual with 200 laps and a rank of 27?
CREATE TABLE table_name_86 (qual VARCHAR, laps VARCHAR, rank VARCHAR)
SELECT qual FROM table_name_86 WHERE laps = 200 AND rank = "27"
### Context: CREATE TABLE table_name_86 (qual VARCHAR, laps VARCHAR, rank VARCHAR) ### Question: What is the qual with 200 laps and a rank of 27? ### Answer: SELECT qual FROM table_name_86 WHERE laps = 200 AND rank = "27"
What is the rank with a 14 finish?
CREATE TABLE table_name_13 (rank VARCHAR, finish VARCHAR)
SELECT rank FROM table_name_13 WHERE finish = "14"
### Context: CREATE TABLE table_name_13 (rank VARCHAR, finish VARCHAR) ### Question: What is the rank with a 14 finish? ### Answer: SELECT rank FROM table_name_13 WHERE finish = "14"
What is the lowest cuts made of the Masters tournament, which had a top-25 less than 0?
CREATE TABLE table_name_72 (cuts_made INTEGER, tournament VARCHAR, top_25 VARCHAR)
SELECT MIN(cuts_made) FROM table_name_72 WHERE tournament = "masters tournament" AND top_25 < 0
### Context: CREATE TABLE table_name_72 (cuts_made INTEGER, tournament VARCHAR, top_25 VARCHAR) ### Question: What is the lowest cuts made of the Masters tournament, which had a top-25 less than 0? ### Answer: SELECT MIN(cuts_made) FROM table_name_72 WHERE tournament = "masters tournament" AND top_25 < 0
What is the highest number of wins a tournament with 1 cuts made, a top-25 less than 1, and less than 2 events has?
CREATE TABLE table_name_82 (wins INTEGER, events VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)
SELECT MAX(wins) FROM table_name_82 WHERE cuts_made = 1 AND top_25 < 1 AND events < 2
### Context: CREATE TABLE table_name_82 (wins INTEGER, events VARCHAR, cuts_made VARCHAR, top_25 VARCHAR) ### Question: What is the highest number of wins a tournament with 1 cuts made, a top-25 less than 1, and less than 2 events has? ### Answer: SELECT MAX(wins) FROM table_name_82 WHERE cuts_made = 1 AND top_25 < 1 AND events < 2
What is the average number of events the Masters tournament, which has more than 0 top-25, has?
CREATE TABLE table_name_84 (events INTEGER, tournament VARCHAR, top_25 VARCHAR)
SELECT AVG(events) FROM table_name_84 WHERE tournament = "masters tournament" AND top_25 > 0
### Context: CREATE TABLE table_name_84 (events INTEGER, tournament VARCHAR, top_25 VARCHAR) ### Question: What is the average number of events the Masters tournament, which has more than 0 top-25, has? ### Answer: SELECT AVG(events) FROM table_name_84 WHERE tournament = "masters tournament" AND top_25 > 0
What is the total number of top-25 a tournament with less than 2 events has?
CREATE TABLE table_name_93 (top_25 VARCHAR, events INTEGER)
SELECT COUNT(top_25) FROM table_name_93 WHERE events < 2
### Context: CREATE TABLE table_name_93 (top_25 VARCHAR, events INTEGER) ### Question: What is the total number of top-25 a tournament with less than 2 events has? ### Answer: SELECT COUNT(top_25) FROM table_name_93 WHERE events < 2