Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
40,800
<question>: which tournament was the champion pat cash 4–6, 6–4, 6–3? <context>: 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"
40,801
<question>: Which tournament was on the week of 24 october and champion is matt doyle 1–6, 6–1, 6–2? <context>: 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"
40,802
<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? <context>: 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"
40,803
<question>: which train number departs pune at 13:00 <context>: CREATE TABLE table_29301050_1 (train_number VARCHAR, departure_pune VARCHAR)
SELECT train_number FROM table_29301050_1 WHERE departure_pune = "13:00"
40,804
<question>: which train number arrives in lonavla at 17:45 <context>: CREATE TABLE table_29301050_1 (train_number VARCHAR, arrival_lonavla VARCHAR)
SELECT train_number FROM table_29301050_1 WHERE arrival_lonavla = "17:45"
40,805
<question>: which train name arrives in lonavla at 17:45 <context>: CREATE TABLE table_29301050_1 (train_name VARCHAR, arrival_lonavla VARCHAR)
SELECT train_name FROM table_29301050_1 WHERE arrival_lonavla = "17:45"
40,806
<question>: how many trains run daily to lonavla and arrive at 12:25 <context>: 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"
40,807
<question>: how many trains have the number 99808 <context>: CREATE TABLE table_29301050_1 (train_name VARCHAR, train_number VARCHAR)
SELECT COUNT(train_name) FROM table_29301050_1 WHERE train_number = 99808
40,808
<question>: what time does the train that arrives in lonavla at 22:22 depart pune <context>: CREATE TABLE table_29301050_1 (departure_pune VARCHAR, arrival_lonavla VARCHAR)
SELECT departure_pune FROM table_29301050_1 WHERE arrival_lonavla = "22:22"
40,809
<question>: Who became the champion for the 1984 Grand Prix where Marty Davis was the runner-up? <context>: CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_29295463_9 WHERE runner_up = "Marty Davis"
40,810
<question>: Who were the quarter-finalists in the event where the champion was Terry Moor 3-6, 7-6, 6-2? <context>: 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"
40,811
<question>: Who was the champion in the tournament where Scott Davis Chris Dunk was the runner up? <context>: CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_29295463_9 WHERE runner_up = "Scott Davis Chris Dunk"
40,812
<question>: Who were the semifinalists in the tournament where Mats Wilander 7-6, 6-3 was declared the champion? <context>: CREATE TABLE table_29295463_9 (semifinalists VARCHAR, champion VARCHAR)
SELECT semifinalists FROM table_29295463_9 WHERE champion = "Mats Wilander 7-6, 6-3"
40,813
<question>: How many years saw 3 hurricanes wherein the strongest storm was level three? <context>: 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"
40,814
<question>: What is the largest overall number of major hurricanes? <context>: CREATE TABLE table_2930244_3 (number_of_major_hurricanes INTEGER)
SELECT MAX(number_of_major_hurricanes) FROM table_2930244_3
40,815
<question>: When the death is none what is the number of major hurricanes? <context>: 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"
40,816
<question>: What is the lowest overall number of hurricanes? <context>: CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER)
SELECT MIN(number_of_hurricanes) FROM table_2930244_3
40,817
<question>: What country offered a prize of 66400 US dollars? <context>: CREATE TABLE table_29302711_13 (country VARCHAR, prize_money__usd_ VARCHAR)
SELECT country FROM table_29302711_13 WHERE prize_money__usd_ = 66400
40,818
<question>: What country does the player named Mark Cox play for? <context>: CREATE TABLE table_29302711_13 (country VARCHAR, name VARCHAR)
SELECT country FROM table_29302711_13 WHERE name = "Mark Cox"
40,819
<question>: How many deaths did the eyar with exactly 6 hurricanes have? <context>: CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR)
SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6
40,820
<question>: What is the maximum number of tropical storms in the year that had exactly 34 deaths? <context>: 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"
40,821
<question>: How many deaths did the year with 10 hurricanes and exactly 1 major hurricane have? <context>: 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
40,822
<question>: Name the number of episodes that jim barnes wrote for 1.82 million viewers <context>: 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"
40,823
<question>: Name the least number for production code 3x6266 <context>: CREATE TABLE table_29329432_1 (no INTEGER, production_code VARCHAR)
SELECT MIN(no) FROM table_29329432_1 WHERE production_code = "3X6266"
40,824
<question>: How many characters does Maurice Dean Wint play in the movie Cube? <context>: CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR)
SELECT COUNT(status) FROM table_2933761_1 WHERE played_by = "Maurice Dean Wint"
40,825
<question>: What is Joan Leaven's occupation? <context>: CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR)
SELECT occupation FROM table_2933761_1 WHERE name = "Joan Leaven"
40,826
<question>: What gender is Quentin? <context>: CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR)
SELECT gender FROM table_2933761_1 WHERE name = "Quentin"
40,827
<question>: Who played the mathematics student? <context>: CREATE TABLE table_2933761_1 (played_by VARCHAR, occupation VARCHAR)
SELECT played_by FROM table_2933761_1 WHERE occupation = "Mathematics Student"
40,828
<question>: How many prisons is Joan Leaven connected with? <context>: CREATE TABLE table_2933761_1 (prison_connection VARCHAR, name VARCHAR)
SELECT COUNT(prison_connection) FROM table_2933761_1 WHERE name = "Joan Leaven"
40,829
<question>: What is aggressive rider Richie Porte's team classifaction? <context>: CREATE TABLE table_29332810_14 (team_classification VARCHAR, aggressive_rider VARCHAR)
SELECT team_classification FROM table_29332810_14 WHERE aggressive_rider = "Richie Porte"
40,830
<question>: Thomas de Gendt performed on what stage as aggressive rider? <context>: CREATE TABLE table_29332810_14 (stage INTEGER, aggressive_rider VARCHAR)
SELECT MAX(stage) FROM table_29332810_14 WHERE aggressive_rider = "Thomas De Gendt"
40,831
<question>: Where Luke Durbridge is the aggressive rider who is listed as the young rider classification? <context>: 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"
40,832
<question>: Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider? <context>: 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"
40,833
<question>: Who is the sprint classification where Francisco Ventoso wins? <context>: CREATE TABLE table_29332810_14 (sprint_classification VARCHAR, winner VARCHAR)
SELECT sprint_classification FROM table_29332810_14 WHERE winner = "Francisco Ventoso"
40,834
<question>: In the week of what was the runner-up Pat Du Pré? <context>: CREATE TABLE table_29302781_12 (week_of VARCHAR, runner_up VARCHAR)
SELECT week_of FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
40,835
<question>: Who were the semifinalists when the runner-up was Peter Feigl? <context>: CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Peter Feigl"
40,836
<question>: Who were the semifinalists when the runner-up was Pat Du Pré? <context>: CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
40,837
<question>: Who were the semifinalists in the week of 13 November when the runner-up was Pat Du Pré? <context>: 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é"
40,838
<question>: What are the quarterfinalists when the runner up is andrew pattison? <context>: CREATE TABLE table_29302816_8 (quarterfinalists VARCHAR, runner_up VARCHAR)
SELECT quarterfinalists FROM table_29302816_8 WHERE runner_up = "Andrew Pattison"
40,839
<question>: When indonesia is the country what is the rank of 2010? <context>: CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR)
SELECT rank_2010 FROM table_293465_1 WHERE country = "Indonesia"
40,840
<question>: When 5 is the rank of 2011 what is the country? <context>: CREATE TABLE table_293465_1 (country VARCHAR, rank_2011 VARCHAR)
SELECT country FROM table_293465_1 WHERE rank_2011 = 5
40,841
<question>: When sweden is the country what is the highest production in 2010 (1,000 ton)? <context>: 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"
40,842
<question>: Valmir Benavides won pole position at which circuit? <context>: CREATE TABLE table_29361707_2 (circuit VARCHAR, pole_position VARCHAR)
SELECT circuit FROM table_29361707_2 WHERE pole_position = "Valmir Benavides"
40,843
<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? <context>: 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"
40,844
<question>: What is the fewest number of 2005 subscribers for Vodafone? <context>: CREATE TABLE table_29395291_2 (subscribers__2005___thousands_ INTEGER, provider VARCHAR)
SELECT MIN(subscribers__2005___thousands_) FROM table_29395291_2 WHERE provider = "Vodafone"
40,845
<question>: What is the maximum number of 2006 subscribers for Glo Mobile? <context>: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)
SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Glo Mobile"
40,846
<question>: What is the maximum number of 2006 subscribers for Mobilis? <context>: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)
SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Mobilis"
40,847
<question>: How many subscribers, in 2006, does Glo Mobile have? <context>: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR)
SELECT subscribers__2006___thousands_ FROM table_29395291_2 WHERE provider = "Glo Mobile"
40,848
<question>: How many 2006 subscribers are named Vodafone? <context>: CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ VARCHAR, provider VARCHAR)
SELECT COUNT(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Vodafone"
40,849
<question>: Name the number of captains for barcelona <context>: CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR)
SELECT COUNT(captain) FROM table_29398373_2 WHERE team = "Barcelona"
40,850
<question>: Name the chairman for iker casillas <context>: CREATE TABLE table_29398373_2 (chairman VARCHAR, captain VARCHAR)
SELECT chairman FROM table_29398373_2 WHERE captain = "Iker Casillas"
40,851
<question>: Name the team for javier clemente <context>: CREATE TABLE table_29398373_2 (team VARCHAR, head_coach VARCHAR)
SELECT team FROM table_29398373_2 WHERE head_coach = "Javier Clemente"
40,852
<question>: What is the season # for the production code 3.89? <context>: CREATE TABLE table_29391888_1 (season__number VARCHAR, production_code VARCHAR)
SELECT season__number FROM table_29391888_1 WHERE production_code = "3.89"
40,853
<question>: Who wrote the episode that was directed by Kevin Inch? <context>: CREATE TABLE table_29391888_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_29391888_1 WHERE directed_by = "Kevin Inch"
40,854
<question>: What is the original air date for the season# 2? <context>: CREATE TABLE table_29391888_1 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_29391888_1 WHERE season__number = 2
40,855
<question>: What is the production code for the episode whose original air date was May15,2000? <context>: 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"
40,856
<question>: What is the former school of the player from Detroit, MI? <context>: CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)
SELECT former_school FROM table_29418619_1 WHERE hometown = "Detroit, MI"
40,857
<question>: What is the hometown of Jarrid Famous? <context>: CREATE TABLE table_29418619_1 (hometown VARCHAR, name VARCHAR)
SELECT hometown FROM table_29418619_1 WHERE name = "Jarrid Famous"
40,858
<question>: What number is the player whose hometown is Tampa, FL? <context>: CREATE TABLE table_29418619_1 (_number VARCHAR, hometown VARCHAR)
SELECT _number FROM table_29418619_1 WHERE hometown = "Tampa, FL"
40,859
<question>: What year is the player whose number is 31? <context>: CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR)
SELECT year FROM table_29418619_1 WHERE _number = 31
40,860
<question>: What is the height of Anthony Crater? <context>: CREATE TABLE table_29418619_1 (height VARCHAR, name VARCHAR)
SELECT height FROM table_29418619_1 WHERE name = "Anthony Crater"
40,861
<question>: What is the former school of the player from North Port, FL? <context>: CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)
SELECT former_school FROM table_29418619_1 WHERE hometown = "North Port, FL"
40,862
<question>: how many countries have remittances in 2008 of 9.07? <context>: CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2008 VARCHAR)
SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2008 = "9.07"
40,863
<question>: how many remittances in 2010 where the remittances is 19.73? <context>: CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, remittances_2009 VARCHAR)
SELECT COUNT(remittances_2010) FROM table_2941963_1 WHERE remittances_2009 = "19.73"
40,864
<question>: how many remittances in 2010 for nigeria? <context>: CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, country VARCHAR)
SELECT remittances_2010 FROM table_2941963_1 WHERE country = "Nigeria"
40,865
<question>: how many countiers had 2009 remittances of 6.02? <context>: CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2009 VARCHAR)
SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2009 = "6.02"
40,866
<question>: What is the highest year with field reporter Steve Lyons? <context>: CREATE TABLE table_2941848_2 (year INTEGER, s_field_reporter VARCHAR)
SELECT MAX(year) FROM table_2941848_2 WHERE s_field_reporter = "Steve Lyons"
40,867
<question>: What is every pregame analyst with Chris Rose as trophy presenter? <context>: CREATE TABLE table_2941848_2 (pregame_analysts VARCHAR, trophy_presentation VARCHAR)
SELECT pregame_analysts FROM table_2941848_2 WHERE trophy_presentation = "Chris Rose"
40,868
<question>: Who is every play-by-play announcer when Chris Rose is the trophy presenter? <context>: 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"
40,869
<question>: How many teams came in fourth when Otsuka Pharmaceuticals won? <context>: CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR)
SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = "Otsuka Pharmaceuticals"
40,870
<question>: Who was the runner up the season that Sagawa Express came in fourth? <context>: CREATE TABLE table_29446183_2 (runner_up VARCHAR, fourth_place VARCHAR)
SELECT runner_up FROM table_29446183_2 WHERE fourth_place = "Sagawa Express"
40,871
<question>: How many seasons did Otsuka Pharmaceuticals come in third? <context>: CREATE TABLE table_29446183_2 (season VARCHAR, third_place VARCHAR)
SELECT COUNT(season) FROM table_29446183_2 WHERE third_place = "Otsuka Pharmaceuticals"
40,872
<question>: How many episodes were written by Gregg Mettler? <context>: 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"
40,873
<question>: What date did episode 4 in the season originally air? <context>: 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
40,874
<question>: Who are all the major users of the Gordon Close-Support Weapon System? <context>: 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"
40,875
<question>: What country made the Flieger-Doppelpistole 1919? <context>: 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"
40,876
<question>: How many years of introduction does the Neal Submachine Gun have? <context>: 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"
40,877
<question>: Who are the major users from Australia? <context>: CREATE TABLE table_29474407_11 (major_users VARCHAR, country_of_origin VARCHAR)
SELECT major_users FROM table_29474407_11 WHERE country_of_origin = "Australia"
40,878
<question>: Who are all the major users of the Saturn Machine Pistol? <context>: CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR)
SELECT major_users FROM table_29474407_11 WHERE name__designation = "Saturn machine pistol"
40,879
<question>: in how many of the arkansas colomel the county was pope <context>: CREATE TABLE table_29458735_5 (colonel VARCHAR, county VARCHAR)
SELECT COUNT(colonel) FROM table_29458735_5 WHERE county = "Pope"
40,880
<question>: what is the name of the coloneo of the 35th regiment <context>: CREATE TABLE table_29458735_5 (colonel VARCHAR, regiment VARCHAR)
SELECT colonel FROM table_29458735_5 WHERE regiment = "35th regiment"
40,881
<question>: which regiment was in the Fulton County <context>: CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR)
SELECT regiment FROM table_29458735_5 WHERE county = "Fulton"
40,882
<question>: what is he name of the county where the 2nd division and the 41st regiment was <context>: 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"
40,883
<question>: which regimen was in the arkansas county <context>: CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR)
SELECT regiment FROM table_29458735_5 WHERE county = "Arkansas"
40,884
<question>: When nicole dubuc duane capizzi is the writer who is the director? <context>: CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR)
SELECT director FROM table_29475589_3 WHERE writer_s_ = "Nicole Dubuc Duane Capizzi"
40,885
<question>: When 22 is the number what is the episode title? <context>: CREATE TABLE table_29475589_3 (episode_title VARCHAR, no VARCHAR)
SELECT episode_title FROM table_29475589_3 WHERE no = 22
40,886
<question>: When the # is 9 what is the U.S original airdate? <context>: CREATE TABLE table_29475589_5 (us_original_airdate VARCHAR, _number VARCHAR)
SELECT us_original_airdate FROM table_29475589_5 WHERE _number = 9
40,887
<question>: how many representatives from hanover twp were first elected in 2008 <context>: 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"
40,888
<question>: when was al landis first elected <context>: CREATE TABLE table_29486189_4 (first_elected VARCHAR, representative VARCHAR)
SELECT first_elected FROM table_29486189_4 WHERE representative = "Al Landis"
40,889
<question>: which representative is from willowick <context>: CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)
SELECT representative FROM table_29486189_4 WHERE residence = "Willowick"
40,890
<question>: which district does andy thompson represent <context>: CREATE TABLE table_29486189_4 (district VARCHAR, representative VARCHAR)
SELECT COUNT(district) FROM table_29486189_4 WHERE representative = "Andy Thompson"
40,891
<question>: which party is the newark representative from <context>: CREATE TABLE table_29486189_4 (party VARCHAR, residence VARCHAR)
SELECT party FROM table_29486189_4 WHERE residence = "Newark"
40,892
<question>: who is beavercreek's representative <context>: CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)
SELECT representative FROM table_29486189_4 WHERE residence = "Beavercreek"
40,893
<question>: What was Reid's rolex ranking in the year that her money list rank was 3? <context>: 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"
40,894
<question>: What was the money list rank for Reid in the year that she had 0 top 10s? <context>: CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s VARCHAR)
SELECT money_list_rank FROM table_29506171_2 WHERE top_10s = 0
40,895
<question>: How many cuts did Reid make in the year when her earnings were n/a? <context>: CREATE TABLE table_29506171_2 (cuts_made INTEGER, earnings___€__ VARCHAR)
SELECT MAX(cuts_made) FROM table_29506171_2 WHERE earnings___€__ = "n/a"
40,896
<question>: In what year were Reid's earnings €4,050 1? <context>: CREATE TABLE table_29506171_2 (year INTEGER, earnings___€__ VARCHAR)
SELECT MIN(year) FROM table_29506171_2 WHERE earnings___€__ = "4,050 1"
40,897
<question>: What is the best finish for the player whose earnings was $421050? <context>: CREATE TABLE table_29504351_2 (best_finish VARCHAR, earnings__$_ VARCHAR)
SELECT best_finish FROM table_29504351_2 WHERE earnings__$_ = 421050
40,898
<question>: What is the maximum start record for player of Jeff Brehaut? <context>: CREATE TABLE table_29504351_2 (starts INTEGER, player VARCHAR)
SELECT MAX(starts) FROM table_29504351_2 WHERE player = "Jeff Brehaut"
40,899
<question>: What is the best finish record for Carl Paulson? <context>: CREATE TABLE table_29504351_2 (best_finish VARCHAR, player VARCHAR)
SELECT best_finish FROM table_29504351_2 WHERE player = "Carl Paulson"