combined_text
stringlengths
106
1.05k
###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"###context:CREATE TABLE table_29296103_10 (tournament 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"###context:CREATE TABLE table_29296103_10 (tournament VARCHAR, week_of 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"###context:CR...
###question:which train number departs pune at 13:00###answer: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 arrives in lonavla at 17:45###answer: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 name arrives in lonavla at 17:45###answer: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: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"###context:CREATE TABLE table_29301050_1 (train_number VARCHAR, frequency VARCHAR, arrival_lonavla VARCHAR)
###question:how many trains have the number 99808###answer: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: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"###context:CREATE TABLE table_29301050_1 (departure_pune VARCHAR, arrival_lonavla 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"###context:CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up 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"###context:CREATE TABLE table_29295463_9 (quarterfinalists VARCHAR, champion 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"###context:CREATE TABLE table_29295463_9 (champion VARCHAR, runner_up 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"###context:CREATE TABLE table_29295463_9 (semifinalists VARCHAR, champion 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"###context:CREATE TABLE table_2930244_2 (year VARCHAR, number_of_hurricanes VARCHAR, strongest_storm VARCHAR)
###question:What is the largest overall number of major hurricanes?###answer:SELECT MAX(number_of_major_hurricanes) FROM table_2930244_3###context:CREATE TABLE table_2930244_3 (number_of_major_hurricanes INTEGER)
###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"###context:CREATE TABLE table_2930244_3 (number_of_major_hurricanes VARCHAR, deaths VARCHAR)
###question:What is the lowest overall number of hurricanes?###answer:SELECT MIN(number_of_hurricanes) FROM table_2930244_3###context:CREATE TABLE table_2930244_3 (number_of_hurricanes INTEGER)
###question:What country offered a prize of 66400 US dollars?###answer: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 does the player named Mark Cox play for?###answer:SELECT country FROM table_29302711_13 WHERE name = "Mark Cox"###context:CREATE TABLE table_29302711_13 (country VARCHAR, name 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###context:CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes 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"###context:CREATE TABLE table_2930244_4 (number_of_tropical_storms INTEGER, deaths 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###context:CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR, number_of_major_hurricanes ...
###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"###context:CREATE TABLE table_29329432_1 (no VARCHAR, written_by VARCHAR, us_viewers__million_ VARCHAR)
###question:Name the least number for production code 3x6266###answer:SELECT MIN(no) FROM table_29329432_1 WHERE production_code = "3X6266"###context:CREATE TABLE table_29329432_1 (no INTEGER, production_code 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"###context:CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR)
###question:What is Joan Leaven's occupation?###answer:SELECT occupation FROM table_2933761_1 WHERE name = "Joan Leaven"###context:CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR)
###question:What gender is Quentin?###answer:SELECT gender FROM table_2933761_1 WHERE name = "Quentin"###context:CREATE TABLE table_2933761_1 (gender VARCHAR, name VARCHAR)
###question:Who played the mathematics student?###answer:SELECT played_by FROM table_2933761_1 WHERE occupation = "Mathematics Student"###context:CREATE TABLE table_2933761_1 (played_by VARCHAR, occupation VARCHAR)
###question:How many prisons is Joan Leaven connected with?###answer:SELECT COUNT(prison_connection) FROM table_2933761_1 WHERE name = "Joan Leaven"###context:CREATE TABLE table_2933761_1 (prison_connection VARCHAR, name VARCHAR)
###question:What is aggressive rider Richie Porte's team classifaction?###answer: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:Thomas de Gendt performed on what stage as aggressive rider?###answer: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: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"###context:CREATE TABLE table_29332810_14 (young_rider_classification VARCHAR, aggressive_rider 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"###context:CREATE TABLE table_29332810_14 (general_cl...
###question:Who is the sprint classification where Francisco Ventoso wins?###answer:SELECT sprint_classification FROM table_29332810_14 WHERE winner = "Francisco Ventoso"###context:CREATE TABLE table_29332810_14 (sprint_classification VARCHAR, winner 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é"###context:CREATE TABLE table_29302781_12 (week_of 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"###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é"###context:CREATE TABLE table_29302781_12 (semifinalists 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é"###context:CREATE TABLE table_29302781_12 (semifinalists VARCHAR, week_of 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"###context:CREATE TABLE table_29302816_8 (quarterfinalists VARCHAR, runner_up VARCHAR)
###question:When indonesia is the country what is the rank of 2010?###answer:SELECT rank_2010 FROM table_293465_1 WHERE country = "Indonesia"###context:CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR)
###question:When 5 is the rank of 2011 what is the country?###answer:SELECT country FROM table_293465_1 WHERE rank_2011 = 5###context:CREATE TABLE table_293465_1 (country VARCHAR, rank_2011 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"###context:CREATE TABLE table_293465_1 (production_in_2010__1 INTEGER, country VARCHAR)
###question:Valmir Benavides won pole position at which circuit?###answer:SELECT circuit FROM table_29361707_2 WHERE pole_position = "Valmir Benavides"###context:CREATE TABLE table_29361707_2 (circuit VARCHAR, pole_position 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...
###question:What is the fewest number of 2005 subscribers for Vodafone?###answer: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 maximum number of 2006 subscribers for Glo Mobile?###answer: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 Mobilis?###answer: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:How many subscribers, in 2006, does Glo Mobile have?###answer: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 2006 subscribers are named Vodafone?###answer: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:Name the number of captains for barcelona###answer:SELECT COUNT(captain) FROM table_29398373_2 WHERE team = "Barcelona"###context:CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR)
###question:Name the chairman for iker casillas###answer:SELECT chairman FROM table_29398373_2 WHERE captain = "Iker Casillas"###context:CREATE TABLE table_29398373_2 (chairman VARCHAR, captain VARCHAR)
###question:Name the team for javier clemente###answer:SELECT team FROM table_29398373_2 WHERE head_coach = "Javier Clemente"###context:CREATE TABLE table_29398373_2 (team VARCHAR, head_coach 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"###context:CREATE TABLE table_29391888_1 (season__number VARCHAR, production_code 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"###context:CREATE TABLE table_29391888_1 (written_by VARCHAR, directed_by 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###context:CREATE TABLE table_29391888_1 (original_air_date VARCHAR, season__number 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"###context:CREATE TABLE table_29391888_1 (production_code VARCHAR, original_air_date 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"###context:CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)
###question:What is the hometown of Jarrid Famous?###answer:SELECT hometown FROM table_29418619_1 WHERE name = "Jarrid Famous"###context:CREATE TABLE table_29418619_1 (hometown VARCHAR, name VARCHAR)
###question:What number is the player whose hometown is Tampa, FL?###answer:SELECT _number FROM table_29418619_1 WHERE hometown = "Tampa, FL"###context:CREATE TABLE table_29418619_1 (_number VARCHAR, hometown VARCHAR)
###question:What year is the player whose number is 31?###answer:SELECT year FROM table_29418619_1 WHERE _number = 31###context:CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR)
###question:What is the height of Anthony Crater? ###answer:SELECT height FROM table_29418619_1 WHERE name = "Anthony Crater"###context:CREATE TABLE table_29418619_1 (height VARCHAR, name 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"###context:CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown 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"###context:CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2008 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"###context:CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, remittances_2009 VARCHAR)
###question:how many remittances in 2010 for nigeria?###answer:SELECT remittances_2010 FROM table_2941963_1 WHERE country = "Nigeria"###context:CREATE TABLE table_2941963_1 (remittances_2010 VARCHAR, country VARCHAR)
###question:how many countiers had 2009 remittances of 6.02?###answer:SELECT COUNT(country) FROM table_2941963_1 WHERE remittances_2009 = "6.02"###context:CREATE TABLE table_2941963_1 (country VARCHAR, remittances_2009 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"###context:CREATE TABLE table_2941848_2 (year INTEGER, s_field_reporter 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"###context:CREATE TABLE table_2941848_2 (pregame_analysts 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"###context:CREATE TABLE table_2941848_2 (play_by_play_announcer VARCHAR, trophy_presentation 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"###context:CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner 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"###context:CREATE TABLE table_29446183_2 (runner_up VARCHAR, fourth_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"###context:CREATE TABLE table_29446183_2 (season VARCHAR, third_place 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"###context:CREATE TABLE table_29436238_1 (no_in_series VARCHAR, written_by 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###context:CREATE TABLE table_29436238_1 (original_air_date VARCHAR, no_in_season 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"###context:CREATE TABLE table_29474407_11 (major_users 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"###context:CREATE TABLE table_29474407_11 (country_of_origin 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"###context:CREATE TABLE table_29474407_11 (year_of_intro VARCHAR, name__designation VARCHAR)
###question:Who are the major users from Australia?###answer: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 all the major users of the Saturn Machine Pistol?###answer: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:in how many of the arkansas colomel the county was pope###answer:SELECT COUNT(colonel) FROM table_29458735_5 WHERE county = "Pope"###context:CREATE TABLE table_29458735_5 (colonel VARCHAR, county VARCHAR)
###question:what is the name of the coloneo of the 35th regiment ###answer:SELECT colonel FROM table_29458735_5 WHERE regiment = "35th regiment"###context:CREATE TABLE table_29458735_5 (colonel VARCHAR, regiment VARCHAR)
###question:which regiment was in the Fulton County###answer:SELECT regiment FROM table_29458735_5 WHERE county = "Fulton"###context:CREATE TABLE table_29458735_5 (regiment VARCHAR, county 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"###context:CREATE TABLE table_29458735_5 (county VARCHAR, division VARCHAR, regiment VARCHAR)
###question:which regimen was in the arkansas county###answer:SELECT regiment FROM table_29458735_5 WHERE county = "Arkansas"###context:CREATE TABLE table_29458735_5 (regiment VARCHAR, county 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"###context:CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR)
###question:When 22 is the number what is the episode title?###answer:SELECT episode_title FROM table_29475589_3 WHERE no = 22###context:CREATE TABLE table_29475589_3 (episode_title VARCHAR, no 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###context:CREATE TABLE table_29475589_5 (us_original_airdate VARCHAR, _number 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"###context:CREATE TABLE table_29486189_4 (representative VARCHAR, first_elected VARCHAR, residence VARCHAR)
###question:when was al landis first elected###answer:SELECT first_elected FROM table_29486189_4 WHERE representative = "Al Landis"###context:CREATE TABLE table_29486189_4 (first_elected VARCHAR, representative VARCHAR)
###question:which representative is from willowick###answer:SELECT representative FROM table_29486189_4 WHERE residence = "Willowick"###context:CREATE TABLE table_29486189_4 (representative VARCHAR, residence VARCHAR)
###question:which district does andy thompson represent###answer:SELECT COUNT(district) FROM table_29486189_4 WHERE representative = "Andy Thompson"###context:CREATE TABLE table_29486189_4 (district VARCHAR, representative VARCHAR)
###question:which party is the newark representative from###answer:SELECT party FROM table_29486189_4 WHERE residence = "Newark"###context:CREATE TABLE table_29486189_4 (party VARCHAR, residence VARCHAR)
###question:who is beavercreek's representative###answer:SELECT representative FROM table_29486189_4 WHERE residence = "Beavercreek"###context:CREATE TABLE table_29486189_4 (representative VARCHAR, residence 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"###context:CREATE TABLE table_29506171_2 (rolex_ranking INTEGER, money_list_rank 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###context:CREATE TABLE table_29506171_2 (money_list_rank VARCHAR, top_10s 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"###context:CREATE TABLE table_29506171_2 (cuts_made 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"###context:CREATE TABLE table_29506171_2 (year INTEGER, 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###context:CREATE TABLE table_29504351_2 (best_finish VARCHAR, earnings__$_ 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"###context:CREATE TABLE table_29504351_2 (starts INTEGER, player VARCHAR)
###question:What is the best finish record for Carl Paulson?###answer:SELECT best_finish FROM table_29504351_2 WHERE player = "Carl Paulson"###context:CREATE TABLE table_29504351_2 (best_finish VARCHAR, player VARCHAR)