question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
which tournament was the champion pat cash 4–6, 6–4, 6–3?
CREATE TABLE table_29296103_10 (tournament VARCHAR, champion VARCHAR)
SELECT tournament FROM table_29296103_10 WHERE champion = "Pat Cash 4–6, 6–4, 6–3"
### Context: CREATE TABLE table_29296103_10 (tournament VARCHAR, champion VARCHAR) ### Question: which tournament was the champion pat cash 4–6, 6–4, 6–3? ### Answer: SELECT tournament FROM table_29296103_10 WHERE champion = "Pat Cash 4–6, 6–4, 6–3"
Which tournament was on the week of 24 october and champion is matt doyle 1–6, 6–1, 6–2?
CREATE TABLE table_29296103_10 (tournament VARCHAR, week_of VARCHAR, champion VARCHAR)
SELECT tournament FROM table_29296103_10 WHERE week_of = "24 October" AND champion = "Matt Doyle 1–6, 6–1, 6–2"
### Context: CREATE TABLE table_29296103_10 (tournament VARCHAR, week_of VARCHAR, champion VARCHAR) ### Question: Which tournament was on the week of 24 october and champion is matt doyle 1–6, 6–1, 6–2? ### Answer: SELECT tournament FROM table_29296103_10 WHERE week_of = "24 October" AND champion = "Matt Doyle 1–6, 6–1, 6–2"
How many runner ups were there for the cologne , germany carpet – $75,000 – s32/d16 when the champion was matt doyle 1–6, 6–1, 6–2?
CREATE TABLE table_29296103_10 (runner_up VARCHAR, tournament VARCHAR, champion VARCHAR)
SELECT COUNT(runner_up) FROM table_29296103_10 WHERE tournament = "Cologne , Germany Carpet – $75,000 – S32/D16" AND champion = "Matt Doyle 1–6, 6–1, 6–2"
### Context: CREATE TABLE table_29296103_10 (runner_up VARCHAR, tournament VARCHAR, champion VARCHAR) ### Question: How many runner ups were there for the cologne , germany carpet – $75,000 – s32/d16 when the champion was matt doyle 1–6, 6–1, 6–2? ### Answer: SELECT COUNT(runner_up) FROM table_29296103_10 WHERE tournament = "Cologne , Germany Carpet – $75,000 – S32/D16" AND champion = "Matt Doyle 1–6, 6–1, 6–2"
which train number departs pune at 13:00
CREATE TABLE table_29301050_1 (train_number VARCHAR, departure_pune VARCHAR)
SELECT train_number FROM table_29301050_1 WHERE departure_pune = "13:00"
### Context: CREATE TABLE table_29301050_1 (train_number VARCHAR, departure_pune VARCHAR) ### Question: which train number departs pune at 13:00 ### Answer: SELECT train_number FROM table_29301050_1 WHERE departure_pune = "13:00"
which train number arrives in lonavla at 17:45
CREATE TABLE table_29301050_1 (train_number VARCHAR, arrival_lonavla VARCHAR)
SELECT train_number FROM table_29301050_1 WHERE arrival_lonavla = "17:45"
### Context: CREATE TABLE table_29301050_1 (train_number VARCHAR, arrival_lonavla VARCHAR) ### Question: which train number arrives in lonavla at 17:45 ### Answer: SELECT train_number FROM table_29301050_1 WHERE arrival_lonavla = "17:45"
which train name arrives in lonavla at 17:45
CREATE TABLE table_29301050_1 (train_name VARCHAR, arrival_lonavla VARCHAR)
SELECT train_name FROM table_29301050_1 WHERE arrival_lonavla = "17:45"
### Context: CREATE TABLE table_29301050_1 (train_name VARCHAR, arrival_lonavla VARCHAR) ### Question: which train name arrives in lonavla at 17:45 ### Answer: SELECT train_name FROM table_29301050_1 WHERE arrival_lonavla = "17:45"
how many trains run daily to lonavla and arrive at 12:25
CREATE TABLE table_29301050_1 (train_number VARCHAR, frequency VARCHAR, arrival_lonavla VARCHAR)
SELECT COUNT(train_number) FROM table_29301050_1 WHERE frequency = "Daily" AND arrival_lonavla = "12:25"
### Context: CREATE TABLE table_29301050_1 (train_number VARCHAR, frequency VARCHAR, arrival_lonavla VARCHAR) ### Question: how many trains run daily to lonavla and arrive at 12:25 ### Answer: SELECT COUNT(train_number) FROM table_29301050_1 WHERE frequency = "Daily" AND arrival_lonavla = "12:25"
how many trains have the number 99808
CREATE TABLE table_29301050_1 (train_name VARCHAR, train_number VARCHAR)
SELECT COUNT(train_name) FROM table_29301050_1 WHERE train_number = 99808
### Context: CREATE TABLE table_29301050_1 (train_name VARCHAR, train_number VARCHAR) ### Question: how many trains have the number 99808 ### Answer: SELECT COUNT(train_name) FROM table_29301050_1 WHERE train_number = 99808
what time does the train that arrives in lonavla at 22:22 depart pune
CREATE TABLE table_29301050_1 (departure_pune VARCHAR, arrival_lonavla VARCHAR)
SELECT departure_pune FROM table_29301050_1 WHERE arrival_lonavla = "22:22"
### Context: CREATE TABLE table_29301050_1 (departure_pune VARCHAR, arrival_lonavla VARCHAR) ### Question: what time does the train that arrives in lonavla at 22:22 depart pune ### Answer: SELECT departure_pune FROM table_29301050_1 WHERE arrival_lonavla = "22:22"
Who became the champion for the 1984 Grand Prix where Marty Davis was the runner-up?
CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_29295463_9 WHERE runner_up = "Marty Davis"
### Context: CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR) ### Question: Who became the champion for the 1984 Grand Prix where Marty Davis was the runner-up? ### Answer: SELECT champion FROM table_29295463_9 WHERE runner_up = "Marty Davis"
Who were the quarter-finalists in the event where the champion was Terry Moor 3-6, 7-6, 6-2?
CREATE TABLE table_29295463_9 (quarterfinalists VARCHAR, champion VARCHAR)
SELECT quarterfinalists FROM table_29295463_9 WHERE champion = "Terry Moor 3-6, 7-6, 6-2"
### Context: CREATE TABLE table_29295463_9 (quarterfinalists VARCHAR, champion VARCHAR) ### Question: Who were the quarter-finalists in the event where the champion was Terry Moor 3-6, 7-6, 6-2? ### Answer: SELECT quarterfinalists FROM table_29295463_9 WHERE champion = "Terry Moor 3-6, 7-6, 6-2"
Who was the champion in the tournament where Scott Davis Chris Dunk was the runner up?
CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_29295463_9 WHERE runner_up = "Scott Davis Chris Dunk"
### Context: CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR) ### Question: Who was the champion in the tournament where Scott Davis Chris Dunk was the runner up? ### Answer: SELECT champion FROM table_29295463_9 WHERE runner_up = "Scott Davis Chris Dunk"
Who were the semifinalists in the tournament where Mats Wilander 7-6, 6-3 was declared the champion?
CREATE TABLE table_29295463_9 (semifinalists VARCHAR, champion VARCHAR)
SELECT semifinalists FROM table_29295463_9 WHERE champion = "Mats Wilander 7-6, 6-3"
### Context: CREATE TABLE table_29295463_9 (semifinalists VARCHAR, champion VARCHAR) ### Question: Who were the semifinalists in the tournament where Mats Wilander 7-6, 6-3 was declared the champion? ### Answer: SELECT semifinalists FROM table_29295463_9 WHERE champion = "Mats Wilander 7-6, 6-3"
How many years saw 3 hurricanes wherein the strongest storm was level three?
CREATE TABLE table_2930244_2 (year VARCHAR, number_of_hurricanes VARCHAR, strongest_storm VARCHAR)
SELECT COUNT(year) FROM table_2930244_2 WHERE number_of_hurricanes = 3 AND strongest_storm = "Three"
### Context: CREATE TABLE table_2930244_2 (year VARCHAR, number_of_hurricanes VARCHAR, strongest_storm VARCHAR) ### Question: How many years saw 3 hurricanes wherein the strongest storm was level three? ### Answer: SELECT COUNT(year) FROM table_2930244_2 WHERE number_of_hurricanes = 3 AND strongest_storm = "Three"
What is the largest overall number of major hurricanes?
CREATE TABLE table_2930244_3 (number_of_major_hurricanes INTEGER)
SELECT MAX(number_of_major_hurricanes) FROM table_2930244_3
### Context: CREATE TABLE table_2930244_3 (number_of_major_hurricanes INTEGER) ### Question: What is the largest overall number of major hurricanes? ### Answer: SELECT MAX(number_of_major_hurricanes) FROM table_2930244_3
When the death is none what is the number of major hurricanes?
CREATE TABLE table_2930244_3 (number_of_major_hurricanes VARCHAR, deaths VARCHAR)
SELECT COUNT(number_of_major_hurricanes) FROM table_2930244_3 WHERE deaths = "None"
### Context: CREATE TABLE table_2930244_3 (number_of_major_hurricanes VARCHAR, deaths VARCHAR) ### Question: When the death is none what is the number of major hurricanes? ### Answer: SELECT COUNT(number_of_major_hurricanes) FROM table_2930244_3 WHERE deaths = "None"
What is the lowest overall number of hurricanes?
CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER)
SELECT MIN(number_of_hurricanes) FROM table_2930244_3
### Context: CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER) ### Question: What is the lowest overall number of hurricanes? ### Answer: SELECT MIN(number_of_hurricanes) FROM table_2930244_3
What country offered a prize of 66400 US dollars?
CREATE TABLE table_29302711_13 (country VARCHAR, prize_money__usd_ VARCHAR)
SELECT country FROM table_29302711_13 WHERE prize_money__usd_ = 66400
### Context: CREATE TABLE table_29302711_13 (country VARCHAR, prize_money__usd_ VARCHAR) ### Question: What country offered a prize of 66400 US dollars? ### Answer: SELECT country FROM table_29302711_13 WHERE prize_money__usd_ = 66400
What country does the player named Mark Cox play for?
CREATE TABLE table_29302711_13 (country VARCHAR, name VARCHAR)
SELECT country FROM table_29302711_13 WHERE name = "Mark Cox"
### Context: CREATE TABLE table_29302711_13 (country VARCHAR, name VARCHAR) ### Question: What country does the player named Mark Cox play for? ### Answer: SELECT country FROM table_29302711_13 WHERE name = "Mark Cox"
How many deaths did the eyar with exactly 6 hurricanes have?
CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR)
SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6
### Context: CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR) ### Question: How many deaths did the eyar with exactly 6 hurricanes have? ### Answer: SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6
What is the maximum number of tropical storms in the year that had exactly 34 deaths?
CREATE TABLE table_2930244_4 (number_of_tropical_storms INTEGER, deaths VARCHAR)
SELECT MAX(number_of_tropical_storms) FROM table_2930244_4 WHERE deaths = "34"
### Context: CREATE TABLE table_2930244_4 (number_of_tropical_storms INTEGER, deaths VARCHAR) ### Question: What is the maximum number of tropical storms in the year that had exactly 34 deaths? ### Answer: SELECT MAX(number_of_tropical_storms) FROM table_2930244_4 WHERE deaths = "34"
How many deaths did the year with 10 hurricanes and exactly 1 major hurricane have?
CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR, number_of_major_hurricanes VARCHAR)
SELECT deaths FROM table_2930244_4 WHERE number_of_hurricanes = 10 AND number_of_major_hurricanes = 1
### Context: CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR, number_of_major_hurricanes VARCHAR) ### Question: How many deaths did the year with 10 hurricanes and exactly 1 major hurricane have? ### Answer: SELECT deaths FROM table_2930244_4 WHERE number_of_hurricanes = 10 AND number_of_major_hurricanes = 1
Name the number of episodes that jim barnes wrote for 1.82 million viewers
CREATE TABLE table_29329432_1 (no VARCHAR, written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(no) FROM table_29329432_1 WHERE written_by = "Jim Barnes" AND us_viewers__million_ = "1.82"
### Context: CREATE TABLE table_29329432_1 (no VARCHAR, written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Name the number of episodes that jim barnes wrote for 1.82 million viewers ### Answer: SELECT COUNT(no) FROM table_29329432_1 WHERE written_by = "Jim Barnes" AND us_viewers__million_ = "1.82"
Name the least number for production code 3x6266
CREATE TABLE table_29329432_1 (no INTEGER, production_code VARCHAR)
SELECT MIN(no) FROM table_29329432_1 WHERE production_code = "3X6266"
### Context: CREATE TABLE table_29329432_1 (no INTEGER, production_code VARCHAR) ### Question: Name the least number for production code 3x6266 ### Answer: SELECT MIN(no) FROM table_29329432_1 WHERE production_code = "3X6266"
How many characters does Maurice Dean Wint play in the movie Cube?
CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR)
SELECT COUNT(status) FROM table_2933761_1 WHERE played_by = "Maurice Dean Wint"
### Context: CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR) ### Question: How many characters does Maurice Dean Wint play in the movie Cube? ### Answer: SELECT COUNT(status) FROM table_2933761_1 WHERE played_by = "Maurice Dean Wint"
What is Joan Leaven's occupation?
CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR)
SELECT occupation FROM table_2933761_1 WHERE name = "Joan Leaven"
### Context: CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR) ### Question: What is Joan Leaven's occupation? ### Answer: SELECT occupation FROM table_2933761_1 WHERE name = "Joan Leaven"
What gender is Quentin?
CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR)
SELECT gender FROM table_2933761_1 WHERE name = "Quentin"
### Context: CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR) ### Question: What gender is Quentin? ### Answer: SELECT gender FROM table_2933761_1 WHERE name = "Quentin"
Who played the mathematics student?
CREATE TABLE table_2933761_1 (played_by VARCHAR, occupation VARCHAR)
SELECT played_by FROM table_2933761_1 WHERE occupation = "Mathematics Student"
### Context: CREATE TABLE table_2933761_1 (played_by VARCHAR, occupation VARCHAR) ### Question: Who played the mathematics student? ### Answer: SELECT played_by FROM table_2933761_1 WHERE occupation = "Mathematics Student"
How many prisons is Joan Leaven connected with?
CREATE TABLE table_2933761_1 (prison_connection VARCHAR, name VARCHAR)
SELECT COUNT(prison_connection) FROM table_2933761_1 WHERE name = "Joan Leaven"
### Context: CREATE TABLE table_2933761_1 (prison_connection VARCHAR, name VARCHAR) ### Question: How many prisons is Joan Leaven connected with? ### Answer: SELECT COUNT(prison_connection) FROM table_2933761_1 WHERE name = "Joan Leaven"
What is aggressive rider Richie Porte's team classifaction?
CREATE TABLE table_29332810_14 (team_classification VARCHAR, aggressive_rider VARCHAR)
SELECT team_classification FROM table_29332810_14 WHERE aggressive_rider = "Richie Porte"
### Context: CREATE TABLE table_29332810_14 (team_classification VARCHAR, aggressive_rider VARCHAR) ### Question: What is aggressive rider Richie Porte's team classifaction? ### Answer: SELECT team_classification FROM table_29332810_14 WHERE aggressive_rider = "Richie Porte"
Thomas de Gendt performed on what stage as aggressive rider?
CREATE TABLE table_29332810_14 (stage INTEGER, aggressive_rider VARCHAR)
SELECT MAX(stage) FROM table_29332810_14 WHERE aggressive_rider = "Thomas De Gendt"
### Context: CREATE TABLE table_29332810_14 (stage INTEGER, aggressive_rider VARCHAR) ### Question: Thomas de Gendt performed on what stage as aggressive rider? ### Answer: SELECT MAX(stage) FROM table_29332810_14 WHERE aggressive_rider = "Thomas De Gendt"
Where Luke Durbridge is the aggressive rider who is listed as the young rider classification?
CREATE TABLE table_29332810_14 (young_rider_classification VARCHAR, aggressive_rider VARCHAR)
SELECT young_rider_classification FROM table_29332810_14 WHERE aggressive_rider = "Luke Durbridge"
### Context: CREATE TABLE table_29332810_14 (young_rider_classification VARCHAR, aggressive_rider VARCHAR) ### Question: Where Luke Durbridge is the aggressive rider who is listed as the young rider classification? ### Answer: SELECT young_rider_classification FROM table_29332810_14 WHERE aggressive_rider = "Luke Durbridge"
Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider?
CREATE TABLE table_29332810_14 (general_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR)
SELECT general_classification FROM table_29332810_14 WHERE winner = "Ben Swift" AND young_rider_classification = "Cameron Meyer"
### Context: CREATE TABLE table_29332810_14 (general_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR) ### Question: Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider? ### Answer: SELECT general_classification FROM table_29332810_14 WHERE winner = "Ben Swift" AND young_rider_classification = "Cameron Meyer"
Who is the sprint classification where Francisco Ventoso wins?
CREATE TABLE table_29332810_14 (sprint_classification VARCHAR, winner VARCHAR)
SELECT sprint_classification FROM table_29332810_14 WHERE winner = "Francisco Ventoso"
### Context: CREATE TABLE table_29332810_14 (sprint_classification VARCHAR, winner VARCHAR) ### Question: Who is the sprint classification where Francisco Ventoso wins? ### Answer: SELECT sprint_classification FROM table_29332810_14 WHERE winner = "Francisco Ventoso"
In the week of what was the runner-up Pat Du Pré?
CREATE TABLE table_29302781_12 (week_of VARCHAR, runner_up VARCHAR)
SELECT week_of FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
### Context: CREATE TABLE table_29302781_12 (week_of VARCHAR, runner_up VARCHAR) ### Question: In the week of what was the runner-up Pat Du Pré? ### Answer: SELECT week_of FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
Who were the semifinalists when the runner-up was Peter Feigl?
CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Peter Feigl"
### Context: CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR) ### Question: Who were the semifinalists when the runner-up was Peter Feigl? ### Answer: SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Peter Feigl"
Who were the semifinalists when the runner-up was Pat Du Pré?
CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
### Context: CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR) ### Question: Who were the semifinalists when the runner-up was Pat Du Pré? ### Answer: SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
Who were the semifinalists in the week of 13 November when the runner-up was Pat Du Pré?
CREATE TABLE table_29302781_12 (semifinalists VARCHAR, week_of VARCHAR, runner_up VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE week_of = "13 November" AND runner_up = "Pat Du Pré"
### Context: CREATE TABLE table_29302781_12 (semifinalists VARCHAR, week_of VARCHAR, runner_up VARCHAR) ### Question: Who were the semifinalists in the week of 13 November when the runner-up was Pat Du Pré? ### Answer: SELECT semifinalists FROM table_29302781_12 WHERE week_of = "13 November" AND runner_up = "Pat Du Pré"
What are the quarterfinalists when the runner up is andrew pattison?
CREATE TABLE table_29302816_8 (quarterfinalists VARCHAR, runner_up VARCHAR)
SELECT quarterfinalists FROM table_29302816_8 WHERE runner_up = "Andrew Pattison"
### Context: CREATE TABLE table_29302816_8 (quarterfinalists VARCHAR, runner_up VARCHAR) ### Question: What are the quarterfinalists when the runner up is andrew pattison? ### Answer: SELECT quarterfinalists FROM table_29302816_8 WHERE runner_up = "Andrew Pattison"
When indonesia is the country what is the rank of 2010?
CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR)
SELECT rank_2010 FROM table_293465_1 WHERE country = "Indonesia"
### Context: CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR) ### Question: When indonesia is the country what is the rank of 2010? ### Answer: SELECT rank_2010 FROM table_293465_1 WHERE country = "Indonesia"
When 5 is the rank of 2011 what is the country?
CREATE TABLE table_293465_1 (country VARCHAR, rank_2011 VARCHAR)
SELECT country FROM table_293465_1 WHERE rank_2011 = 5
### Context: CREATE TABLE table_293465_1 (country VARCHAR, rank_2011 VARCHAR) ### Question: When 5 is the rank of 2011 what is the country? ### Answer: SELECT country FROM table_293465_1 WHERE rank_2011 = 5
When sweden is the country what is the highest production in 2010 (1,000 ton)?
CREATE TABLE table_293465_1 (production_in_2010__1 INTEGER, country VARCHAR)
SELECT MAX(production_in_2010__1), 000 AS _ton_ FROM table_293465_1 WHERE country = "Sweden"
### Context: CREATE TABLE table_293465_1 (production_in_2010__1 INTEGER, country VARCHAR) ### Question: When sweden is the country what is the highest production in 2010 (1,000 ton)? ### Answer: SELECT MAX(production_in_2010__1), 000 AS _ton_ FROM table_293465_1 WHERE country = "Sweden"
Valmir Benavides won pole position at which circuit?
CREATE TABLE table_29361707_2 (circuit VARCHAR, pole_position VARCHAR)
SELECT circuit FROM table_29361707_2 WHERE pole_position = "Valmir Benavides"
### Context: CREATE TABLE table_29361707_2 (circuit VARCHAR, pole_position VARCHAR) ### Question: Valmir Benavides won pole position at which circuit? ### Answer: SELECT circuit FROM table_29361707_2 WHERE pole_position = "Valmir Benavides"
Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team?
CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
SELECT winning_driver FROM table_29361707_2 WHERE pole_position = "Roberval Andrade" AND fastest_lap = "Felipe Giaffone" AND winning_team = "RVR Corinthians Motorsport"
### Context: CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) ### Question: Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team? ### Answer: SELECT winning_driver FROM table_29361707_2 WHERE pole_position = "Roberval Andrade" AND fastest_lap = "Felipe Giaffone" AND winning_team = "RVR Corinthians Motorsport"
What is the fewest number of 2005 subscribers for Vodafone?
CREATE TABLE table_29395291_2 (subscribers__2005___thousands_ INTEGER, provider VARCHAR)
SELECT MIN(subscribers__2005___thousands_) FROM table_29395291_2 WHERE provider = "Vodafone"
### Context: CREATE TABLE table_29395291_2 (subscribers__2005___thousands_ INTEGER, provider VARCHAR) ### Question: What is the fewest number of 2005 subscribers for Vodafone? ### Answer: SELECT MIN(subscribers__2005___thousands_) FROM table_29395291_2 WHERE provider = "Vodafone"
What is the maximum number of 2006 subscribers for Glo Mobile?
CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)
SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Glo Mobile"
### Context: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR) ### Question: What is the maximum number of 2006 subscribers for Glo Mobile? ### Answer: SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Glo Mobile"
What is the maximum number of 2006 subscribers for Mobilis?
CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)
SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Mobilis"
### Context: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR) ### Question: What is the maximum number of 2006 subscribers for Mobilis? ### Answer: SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Mobilis"
How many subscribers, in 2006, does Glo Mobile have?
CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR)
SELECT subscribers__2006___thousands_ FROM table_29395291_2 WHERE provider = "Glo Mobile"
### Context: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR) ### Question: How many subscribers, in 2006, does Glo Mobile have? ### Answer: SELECT subscribers__2006___thousands_ FROM table_29395291_2 WHERE provider = "Glo Mobile"
How many 2006 subscribers are named Vodafone?
CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR)
SELECT COUNT(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Vodafone"
### Context: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR) ### Question: How many 2006 subscribers are named Vodafone? ### Answer: SELECT COUNT(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Vodafone"
Name the number of captains for barcelona
CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR)
SELECT COUNT(captain) FROM table_29398373_2 WHERE team = "Barcelona"
### Context: CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR) ### Question: Name the number of captains for barcelona ### Answer: SELECT COUNT(captain) FROM table_29398373_2 WHERE team = "Barcelona"
Name the chairman for iker casillas
CREATE TABLE table_29398373_2 (chairman VARCHAR, captain VARCHAR)
SELECT chairman FROM table_29398373_2 WHERE captain = "Iker Casillas"
### Context: CREATE TABLE table_29398373_2 (chairman VARCHAR, captain VARCHAR) ### Question: Name the chairman for iker casillas ### Answer: SELECT chairman FROM table_29398373_2 WHERE captain = "Iker Casillas"
Name the team for javier clemente
CREATE TABLE table_29398373_2 (team VARCHAR, head_coach VARCHAR)
SELECT team FROM table_29398373_2 WHERE head_coach = "Javier Clemente"
### Context: CREATE TABLE table_29398373_2 (team VARCHAR, head_coach VARCHAR) ### Question: Name the team for javier clemente ### Answer: SELECT team FROM table_29398373_2 WHERE head_coach = "Javier Clemente"
What is the season # for the production code 3.89?
CREATE TABLE table_29391888_1 (season__number VARCHAR, production_code VARCHAR)
SELECT season__number FROM table_29391888_1 WHERE production_code = "3.89"
### Context: CREATE TABLE table_29391888_1 (season__number VARCHAR, production_code VARCHAR) ### Question: What is the season # for the production code 3.89? ### Answer: SELECT season__number FROM table_29391888_1 WHERE production_code = "3.89"
Who wrote the episode that was directed by Kevin Inch?
CREATE TABLE table_29391888_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_29391888_1 WHERE directed_by = "Kevin Inch"
### Context: CREATE TABLE table_29391888_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who wrote the episode that was directed by Kevin Inch? ### Answer: SELECT written_by FROM table_29391888_1 WHERE directed_by = "Kevin Inch"
What is the original air date for the season# 2?
CREATE TABLE table_29391888_1 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_29391888_1 WHERE season__number = 2
### Context: CREATE TABLE table_29391888_1 (original_air_date VARCHAR, season__number VARCHAR) ### Question: What is the original air date for the season# 2? ### Answer: SELECT original_air_date FROM table_29391888_1 WHERE season__number = 2
What is the production code for the episode whose original air date was May15,2000?
CREATE TABLE table_29391888_1 (production_code VARCHAR, original_air_date VARCHAR)
SELECT production_code FROM table_29391888_1 WHERE original_air_date = "May15,2000"
### Context: CREATE TABLE table_29391888_1 (production_code VARCHAR, original_air_date VARCHAR) ### Question: What is the production code for the episode whose original air date was May15,2000? ### Answer: SELECT production_code FROM table_29391888_1 WHERE original_air_date = "May15,2000"
What is the former school of the player from Detroit, MI?
CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)
SELECT former_school FROM table_29418619_1 WHERE hometown = "Detroit, MI"
### Context: CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR) ### Question: What is the former school of the player from Detroit, MI? ### Answer: SELECT former_school FROM table_29418619_1 WHERE hometown = "Detroit, MI"
What is the hometown of Jarrid Famous?
CREATE TABLE table_29418619_1 (hometown VARCHAR, name VARCHAR)
SELECT hometown FROM table_29418619_1 WHERE name = "Jarrid Famous"
### Context: CREATE TABLE table_29418619_1 (hometown VARCHAR, name VARCHAR) ### Question: What is the hometown of Jarrid Famous? ### Answer: SELECT hometown FROM table_29418619_1 WHERE name = "Jarrid Famous"
What number is the player whose hometown is Tampa, FL?
CREATE TABLE table_29418619_1 (_number VARCHAR, hometown VARCHAR)
SELECT _number FROM table_29418619_1 WHERE hometown = "Tampa, FL"
### Context: CREATE TABLE table_29418619_1 (_number VARCHAR, hometown VARCHAR) ### Question: What number is the player whose hometown is Tampa, FL? ### Answer: SELECT _number FROM table_29418619_1 WHERE hometown = "Tampa, FL"
What year is the player whose number is 31?
CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR)
SELECT year FROM table_29418619_1 WHERE _number = 31
### Context: CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR) ### Question: What year is the player whose number is 31? ### Answer: SELECT year FROM table_29418619_1 WHERE _number = 31
What is the height of Anthony Crater?
CREATE TABLE table_29418619_1 (height VARCHAR, name VARCHAR)
SELECT height FROM table_29418619_1 WHERE name = "Anthony Crater"
### Context: CREATE TABLE table_29418619_1 (height VARCHAR, name VARCHAR) ### Question: What is the height of Anthony Crater? ### Answer: SELECT height FROM table_29418619_1 WHERE name = "Anthony Crater"
What is the former school of the player from North Port, FL?
CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)
SELECT former_school FROM table_29418619_1 WHERE hometown = "North Port, FL"
### Context: CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR) ### Question: What is the former school of the player from North Port, FL? ### Answer: SELECT former_school FROM table_29418619_1 WHERE hometown = "North Port, FL"
how many countries have remittances in 2008 of 9.07?
CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2008 VARCHAR)
SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2008 = "9.07"
### Context: CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2008 VARCHAR) ### Question: how many countries have remittances in 2008 of 9.07? ### Answer: SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2008 = "9.07"
how many remittances in 2010 where the remittances is 19.73?
CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, remittances_2009 VARCHAR)
SELECT COUNT(remittances_2010) FROM table_2941963_1 WHERE remittances_2009 = "19.73"
### Context: CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, remittances_2009 VARCHAR) ### Question: how many remittances in 2010 where the remittances is 19.73? ### Answer: SELECT COUNT(remittances_2010) FROM table_2941963_1 WHERE remittances_2009 = "19.73"
how many remittances in 2010 for nigeria?
CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, country VARCHAR)
SELECT remittances_2010 FROM table_2941963_1 WHERE country = "Nigeria"
### Context: CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, country VARCHAR) ### Question: how many remittances in 2010 for nigeria? ### Answer: SELECT remittances_2010 FROM table_2941963_1 WHERE country = "Nigeria"
how many countiers had 2009 remittances of 6.02?
CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2009 VARCHAR)
SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2009 = "6.02"
### Context: CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2009 VARCHAR) ### Question: how many countiers had 2009 remittances of 6.02? ### Answer: SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2009 = "6.02"
What is the highest year with field reporter Steve Lyons?
CREATE TABLE table_2941848_2 (year INTEGER, s_field_reporter VARCHAR)
SELECT MAX(year) FROM table_2941848_2 WHERE s_field_reporter = "Steve Lyons"
### Context: CREATE TABLE table_2941848_2 (year INTEGER, s_field_reporter VARCHAR) ### Question: What is the highest year with field reporter Steve Lyons? ### Answer: SELECT MAX(year) FROM table_2941848_2 WHERE s_field_reporter = "Steve Lyons"
What is every pregame analyst with Chris Rose as trophy presenter?
CREATE TABLE table_2941848_2 (pregame_analysts VARCHAR, trophy_presentation VARCHAR)
SELECT pregame_analysts FROM table_2941848_2 WHERE trophy_presentation = "Chris Rose"
### Context: CREATE TABLE table_2941848_2 (pregame_analysts VARCHAR, trophy_presentation VARCHAR) ### Question: What is every pregame analyst with Chris Rose as trophy presenter? ### Answer: SELECT pregame_analysts FROM table_2941848_2 WHERE trophy_presentation = "Chris Rose"
Who is every play-by-play announcer when Chris Rose is the trophy presenter?
CREATE TABLE table_2941848_2 (play_by_play_announcer VARCHAR, trophy_presentation VARCHAR)
SELECT play_by_play_announcer FROM table_2941848_2 WHERE trophy_presentation = "Chris Rose"
### Context: CREATE TABLE table_2941848_2 (play_by_play_announcer VARCHAR, trophy_presentation VARCHAR) ### Question: Who is every play-by-play announcer when Chris Rose is the trophy presenter? ### Answer: SELECT play_by_play_announcer FROM table_2941848_2 WHERE trophy_presentation = "Chris Rose"
How many teams came in fourth when Otsuka Pharmaceuticals won?
CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR)
SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = "Otsuka Pharmaceuticals"
### Context: CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR) ### Question: How many teams came in fourth when Otsuka Pharmaceuticals won? ### Answer: SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = "Otsuka Pharmaceuticals"
Who was the runner up the season that Sagawa Express came in fourth?
CREATE TABLE table_29446183_2 (runner_up VARCHAR, fourth_place VARCHAR)
SELECT runner_up FROM table_29446183_2 WHERE fourth_place = "Sagawa Express"
### Context: CREATE TABLE table_29446183_2 (runner_up VARCHAR, fourth_place VARCHAR) ### Question: Who was the runner up the season that Sagawa Express came in fourth? ### Answer: SELECT runner_up FROM table_29446183_2 WHERE fourth_place = "Sagawa Express"
How many seasons did Otsuka Pharmaceuticals come in third?
CREATE TABLE table_29446183_2 (season VARCHAR, third_place VARCHAR)
SELECT COUNT(season) FROM table_29446183_2 WHERE third_place = "Otsuka Pharmaceuticals"
### Context: CREATE TABLE table_29446183_2 (season VARCHAR, third_place VARCHAR) ### Question: How many seasons did Otsuka Pharmaceuticals come in third? ### Answer: SELECT COUNT(season) FROM table_29446183_2 WHERE third_place = "Otsuka Pharmaceuticals"
How many episodes were written by Gregg Mettler?
CREATE TABLE table_29436238_1 (no_in_series VARCHAR, written_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_29436238_1 WHERE written_by = "Gregg Mettler"
### Context: CREATE TABLE table_29436238_1 (no_in_series VARCHAR, written_by VARCHAR) ### Question: How many episodes were written by Gregg Mettler? ### Answer: SELECT COUNT(no_in_series) FROM table_29436238_1 WHERE written_by = "Gregg Mettler"
What date did episode 4 in the season originally air?
CREATE TABLE table_29436238_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_29436238_1 WHERE no_in_season = 4
### Context: CREATE TABLE table_29436238_1 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: What date did episode 4 in the season originally air? ### Answer: SELECT original_air_date FROM table_29436238_1 WHERE no_in_season = 4
Who are all the major users of the Gordon Close-Support Weapon System?
CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR)
SELECT major_users FROM table_29474407_11 WHERE name__designation = "Gordon Close-Support Weapon System"
### Context: CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR) ### Question: Who are all the major users of the Gordon Close-Support Weapon System? ### Answer: SELECT major_users FROM table_29474407_11 WHERE name__designation = "Gordon Close-Support Weapon System"
What country made the Flieger-Doppelpistole 1919?
CREATE TABLE table_29474407_11 (country_of_origin VARCHAR, name__designation VARCHAR)
SELECT country_of_origin FROM table_29474407_11 WHERE name__designation = "Flieger-Doppelpistole 1919"
### Context: CREATE TABLE table_29474407_11 (country_of_origin VARCHAR, name__designation VARCHAR) ### Question: What country made the Flieger-Doppelpistole 1919? ### Answer: SELECT country_of_origin FROM table_29474407_11 WHERE name__designation = "Flieger-Doppelpistole 1919"
How many years of introduction does the Neal Submachine Gun have?
CREATE TABLE table_29474407_11 (year_of_intro VARCHAR, name__designation VARCHAR)
SELECT COUNT(year_of_intro) FROM table_29474407_11 WHERE name__designation = "Neal submachine gun"
### Context: CREATE TABLE table_29474407_11 (year_of_intro VARCHAR, name__designation VARCHAR) ### Question: How many years of introduction does the Neal Submachine Gun have? ### Answer: SELECT COUNT(year_of_intro) FROM table_29474407_11 WHERE name__designation = "Neal submachine gun"
Who are the major users from Australia?
CREATE TABLE table_29474407_11 (major_users VARCHAR, country_of_origin VARCHAR)
SELECT major_users FROM table_29474407_11 WHERE country_of_origin = "Australia"
### Context: CREATE TABLE table_29474407_11 (major_users VARCHAR, country_of_origin VARCHAR) ### Question: Who are the major users from Australia? ### Answer: SELECT major_users FROM table_29474407_11 WHERE country_of_origin = "Australia"
Who are all the major users of the Saturn Machine Pistol?
CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR)
SELECT major_users FROM table_29474407_11 WHERE name__designation = "Saturn machine pistol"
### Context: CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR) ### Question: Who are all the major users of the Saturn Machine Pistol? ### Answer: SELECT major_users FROM table_29474407_11 WHERE name__designation = "Saturn machine pistol"
in how many of the arkansas colomel the county was pope
CREATE TABLE table_29458735_5 (colonel VARCHAR, county VARCHAR)
SELECT COUNT(colonel) FROM table_29458735_5 WHERE county = "Pope"
### Context: CREATE TABLE table_29458735_5 (colonel VARCHAR, county VARCHAR) ### Question: in how many of the arkansas colomel the county was pope ### Answer: SELECT COUNT(colonel) FROM table_29458735_5 WHERE county = "Pope"
what is the name of the coloneo of the 35th regiment
CREATE TABLE table_29458735_5 (colonel VARCHAR, regiment VARCHAR)
SELECT colonel FROM table_29458735_5 WHERE regiment = "35th regiment"
### Context: CREATE TABLE table_29458735_5 (colonel VARCHAR, regiment VARCHAR) ### Question: what is the name of the coloneo of the 35th regiment ### Answer: SELECT colonel FROM table_29458735_5 WHERE regiment = "35th regiment"
which regiment was in the Fulton County
CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR)
SELECT regiment FROM table_29458735_5 WHERE county = "Fulton"
### Context: CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR) ### Question: which regiment was in the Fulton County ### Answer: SELECT regiment FROM table_29458735_5 WHERE county = "Fulton"
what is he name of the county where the 2nd division and the 41st regiment was
CREATE TABLE table_29458735_5 (county VARCHAR, division VARCHAR, regiment VARCHAR)
SELECT county FROM table_29458735_5 WHERE division = "2nd division" AND regiment = "41st regiment"
### Context: CREATE TABLE table_29458735_5 (county VARCHAR, division VARCHAR, regiment VARCHAR) ### Question: what is he name of the county where the 2nd division and the 41st regiment was ### Answer: SELECT county FROM table_29458735_5 WHERE division = "2nd division" AND regiment = "41st regiment"
which regimen was in the arkansas county
CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR)
SELECT regiment FROM table_29458735_5 WHERE county = "Arkansas"
### Context: CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR) ### Question: which regimen was in the arkansas county ### Answer: SELECT regiment FROM table_29458735_5 WHERE county = "Arkansas"
When nicole dubuc duane capizzi is the writer who is the director?
CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR)
SELECT director FROM table_29475589_3 WHERE writer_s_ = "Nicole Dubuc Duane Capizzi"
### Context: CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR) ### Question: When nicole dubuc duane capizzi is the writer who is the director? ### Answer: SELECT director FROM table_29475589_3 WHERE writer_s_ = "Nicole Dubuc Duane Capizzi"
When 22 is the number what is the episode title?
CREATE TABLE table_29475589_3 (episode_title VARCHAR, no VARCHAR)
SELECT episode_title FROM table_29475589_3 WHERE no = 22
### Context: CREATE TABLE table_29475589_3 (episode_title VARCHAR, no VARCHAR) ### Question: When 22 is the number what is the episode title? ### Answer: SELECT episode_title FROM table_29475589_3 WHERE no = 22
When the # is 9 what is the U.S original airdate?
CREATE TABLE table_29475589_5 (us_original_airdate VARCHAR, _number VARCHAR)
SELECT us_original_airdate FROM table_29475589_5 WHERE _number = 9
### Context: CREATE TABLE table_29475589_5 (us_original_airdate VARCHAR, _number VARCHAR) ### Question: When the # is 9 what is the U.S original airdate? ### Answer: SELECT us_original_airdate FROM table_29475589_5 WHERE _number = 9
how many representatives from hanover twp were first elected in 2008
CREATE TABLE table_29486189_4 (representative VARCHAR, first_elected VARCHAR, residence VARCHAR)
SELECT COUNT(representative) FROM table_29486189_4 WHERE first_elected = "2008" AND residence = "Hanover Twp"
### Context: CREATE TABLE table_29486189_4 (representative VARCHAR, first_elected VARCHAR, residence VARCHAR) ### Question: how many representatives from hanover twp were first elected in 2008 ### Answer: SELECT COUNT(representative) FROM table_29486189_4 WHERE first_elected = "2008" AND residence = "Hanover Twp"
when was al landis first elected
CREATE TABLE table_29486189_4 (first_elected VARCHAR, representative VARCHAR)
SELECT first_elected FROM table_29486189_4 WHERE representative = "Al Landis"
### Context: CREATE TABLE table_29486189_4 (first_elected VARCHAR, representative VARCHAR) ### Question: when was al landis first elected ### Answer: SELECT first_elected FROM table_29486189_4 WHERE representative = "Al Landis"
which representative is from willowick
CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)
SELECT representative FROM table_29486189_4 WHERE residence = "Willowick"
### Context: CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR) ### Question: which representative is from willowick ### Answer: SELECT representative FROM table_29486189_4 WHERE residence = "Willowick"
which district does andy thompson represent
CREATE TABLE table_29486189_4 (district VARCHAR, representative VARCHAR)
SELECT COUNT(district) FROM table_29486189_4 WHERE representative = "Andy Thompson"
### Context: CREATE TABLE table_29486189_4 (district VARCHAR, representative VARCHAR) ### Question: which district does andy thompson represent ### Answer: SELECT COUNT(district) FROM table_29486189_4 WHERE representative = "Andy Thompson"
which party is the newark representative from
CREATE TABLE table_29486189_4 (party VARCHAR, residence VARCHAR)
SELECT party FROM table_29486189_4 WHERE residence = "Newark"
### Context: CREATE TABLE table_29486189_4 (party VARCHAR, residence VARCHAR) ### Question: which party is the newark representative from ### Answer: SELECT party FROM table_29486189_4 WHERE residence = "Newark"
who is beavercreek's representative
CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)
SELECT representative FROM table_29486189_4 WHERE residence = "Beavercreek"
### Context: CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR) ### Question: who is beavercreek's representative ### Answer: SELECT representative FROM table_29486189_4 WHERE residence = "Beavercreek"
What was Reid's rolex ranking in the year that her money list rank was 3?
CREATE TABLE table_29506171_2 (rolex_ranking INTEGER, money_list_rank VARCHAR)
SELECT MAX(rolex_ranking) FROM table_29506171_2 WHERE money_list_rank = "3"
### Context: CREATE TABLE table_29506171_2 (rolex_ranking INTEGER, money_list_rank VARCHAR) ### Question: What was Reid's rolex ranking in the year that her money list rank was 3? ### Answer: SELECT MAX(rolex_ranking) FROM table_29506171_2 WHERE money_list_rank = "3"
What was the money list rank for Reid in the year that she had 0 top 10s?
CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s VARCHAR)
SELECT money_list_rank FROM table_29506171_2 WHERE top_10s = 0
### Context: CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s VARCHAR) ### Question: What was the money list rank for Reid in the year that she had 0 top 10s? ### Answer: SELECT money_list_rank FROM table_29506171_2 WHERE top_10s = 0
How many cuts did Reid make in the year when her earnings were n/a?
CREATE TABLE table_29506171_2 (cuts_made INTEGER, earnings___€__ VARCHAR)
SELECT MAX(cuts_made) FROM table_29506171_2 WHERE earnings___€__ = "n/a"
### Context: CREATE TABLE table_29506171_2 (cuts_made INTEGER, earnings___€__ VARCHAR) ### Question: How many cuts did Reid make in the year when her earnings were n/a? ### Answer: SELECT MAX(cuts_made) FROM table_29506171_2 WHERE earnings___€__ = "n/a"
In what year were Reid's earnings €4,050 1?
CREATE TABLE table_29506171_2 (year INTEGER, earnings___€__ VARCHAR)
SELECT MIN(year) FROM table_29506171_2 WHERE earnings___€__ = "4,050 1"
### Context: CREATE TABLE table_29506171_2 (year INTEGER, earnings___€__ VARCHAR) ### Question: In what year were Reid's earnings €4,050 1? ### Answer: SELECT MIN(year) FROM table_29506171_2 WHERE earnings___€__ = "4,050 1"
What is the best finish for the player whose earnings was $421050?
CREATE TABLE table_29504351_2 (best_finish VARCHAR, earnings__$_ VARCHAR)
SELECT best_finish FROM table_29504351_2 WHERE earnings__$_ = 421050
### Context: CREATE TABLE table_29504351_2 (best_finish VARCHAR, earnings__$_ VARCHAR) ### Question: What is the best finish for the player whose earnings was $421050? ### Answer: SELECT best_finish FROM table_29504351_2 WHERE earnings__$_ = 421050
What is the maximum start record for player of Jeff Brehaut?
CREATE TABLE table_29504351_2 (starts INTEGER, player VARCHAR)
SELECT MAX(starts) FROM table_29504351_2 WHERE player = "Jeff Brehaut"
### Context: CREATE TABLE table_29504351_2 (starts INTEGER, player VARCHAR) ### Question: What is the maximum start record for player of Jeff Brehaut? ### Answer: SELECT MAX(starts) FROM table_29504351_2 WHERE player = "Jeff Brehaut"
What is the best finish record for Carl Paulson?
CREATE TABLE table_29504351_2 (best_finish VARCHAR, player VARCHAR)
SELECT best_finish FROM table_29504351_2 WHERE player = "Carl Paulson"
### Context: CREATE TABLE table_29504351_2 (best_finish VARCHAR, player VARCHAR) ### Question: What is the best finish record for Carl Paulson? ### Answer: SELECT best_finish FROM table_29504351_2 WHERE player = "Carl Paulson"