Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
34,800
<question>: What is every time(cet) for the name of Lillehammer 2? <context>: CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, name VARCHAR)
SELECT time__cet_ FROM table_21536557_2 WHERE name = "Lillehammer 2"
34,801
<question>: Who is every name for time(cet) of 09:03? <context>: CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)
SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:03"
34,802
<question>: Which days have a stage of ss11? <context>: CREATE TABLE table_21536557_2 (day VARCHAR, stage VARCHAR)
SELECT day FROM table_21536557_2 WHERE stage = "SS11"
34,803
<question>: What is every time(cet) for a time of 5:04.8? <context>: CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, time VARCHAR)
SELECT time__cet_ FROM table_21536557_2 WHERE time = "5:04.8"
34,804
<question>: How many calibers require the type LB/RN? <context>: CREATE TABLE table_21538523_1 (caliber VARCHAR, type VARCHAR)
SELECT COUNT(caliber) FROM table_21538523_1 WHERE type = "LB/RN"
34,805
<question>: Type FJ/RN/SC is associated with what class? <context>: CREATE TABLE table_21538523_1 (class VARCHAR, type VARCHAR)
SELECT class FROM table_21538523_1 WHERE type = "FJ/RN/SC"
34,806
<question>: What type of glazing will stop a .44 magnum? <context>: CREATE TABLE table_21538523_1 (type VARCHAR, caliber VARCHAR)
SELECT type FROM table_21538523_1 WHERE caliber = ".44 Magnum"
34,807
<question>: What is the fewest shots a glazing can handle? <context>: CREATE TABLE table_21538523_1 (shots INTEGER)
SELECT MIN(shots) FROM table_21538523_1
34,808
<question>: What range does type FJ/PB/SCP work at? <context>: CREATE TABLE table_21538523_1 (range__m_ VARCHAR, type VARCHAR)
SELECT range__m_ FROM table_21538523_1 WHERE type = "FJ/PB/SCP"
34,809
<question>: Name the drivetrain for 2ur-fse <context>: CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR)
SELECT drivetrain FROM table_21530474_1 WHERE engine_code = "2UR-FSE"
34,810
<question>: Name the regions for usf45 <context>: CREATE TABLE table_21530474_1 (region_s_ VARCHAR, chassis_code VARCHAR)
SELECT region_s_ FROM table_21530474_1 WHERE chassis_code = "USF45"
34,811
<question>: Name the model number for usf46 <context>: CREATE TABLE table_21530474_1 (model_no VARCHAR, chassis_code VARCHAR)
SELECT model_no FROM table_21530474_1 WHERE chassis_code = "USF46"
34,812
<question>: Name the drivetrain for 1ur-fse for usf41 <context>: CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR, chassis_code VARCHAR)
SELECT drivetrain FROM table_21530474_1 WHERE engine_code = "1UR-FSE" AND chassis_code = "USF41"
34,813
<question>: For the area which was 9.1 in October 2010, what is the figure for October 2012? <context>: CREATE TABLE table_21531764_1 (october_2012 VARCHAR, october_2010 VARCHAR)
SELECT october_2012 FROM table_21531764_1 WHERE october_2010 = "9.1"
34,814
<question>: Where is the rate 5.7 in October 2010? <context>: CREATE TABLE table_21531764_1 (employment_area VARCHAR, october_2010 VARCHAR)
SELECT employment_area FROM table_21531764_1 WHERE october_2010 = "5.7"
34,815
<question>: Name the original air date for 9.16 viewers <context>: CREATE TABLE table_21550870_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_21550870_1 WHERE us_viewers__million_ = "9.16"
34,816
<question>: Name the total number of production code for episode by steve cohen & andrew dettman <context>: CREATE TABLE table_21550870_1 (production_code VARCHAR, written_by VARCHAR)
SELECT COUNT(production_code) FROM table_21550870_1 WHERE written_by = "Steve Cohen & Andrew Dettman"
34,817
<question>: What is the population in millions for 2011 where the HDI for 2011 is 0.453 (low)? <context>: CREATE TABLE table_2155836_1 (population__millions VARCHAR, _2011_ VARCHAR, hdi__2011_ VARCHAR)
SELECT population__millions, _2011_ FROM table_2155836_1 WHERE hdi__2011_ = "0.453 (low)"
34,818
<question>: What is the population in millions for 2011 where the GDP (nominal) (billions USD) is 4? <context>: CREATE TABLE table_2155836_1 (population__millions VARCHAR, _2011_ VARCHAR, gdp__nominal___billions_usd_ VARCHAR)
SELECT population__millions, _2011_ FROM table_2155836_1 WHERE gdp__nominal___billions_usd_ = "4"
34,819
<question>: What is the HDI for 2011 in Tunisia? <context>: CREATE TABLE table_2155836_1 (hdi__2011_ VARCHAR, country VARCHAR)
SELECT hdi__2011_ FROM table_2155836_1 WHERE country = "Tunisia"
34,820
<question>: What is the GDP (PPP) (USD, per capita) for Algeria? <context>: CREATE TABLE table_2155836_1 (_per_capita_ VARCHAR, gdp__ppp___usd INTEGER, country VARCHAR)
SELECT MIN(gdp__ppp___usd), _per_capita_ FROM table_2155836_1 WHERE country = "Algeria"
34,821
<question>: Name the number of cab size for 4 medium tanker <context>: CREATE TABLE table_2155350_2 (cab_size VARCHAR, category VARCHAR)
SELECT COUNT(cab_size) FROM table_2155350_2 WHERE category = "4 Medium tanker"
34,822
<question>: Name the category for cab size crew and super tanker <context>: CREATE TABLE table_2155350_2 (category VARCHAR, cab_size VARCHAR, sub_category VARCHAR)
SELECT category FROM table_2155350_2 WHERE cab_size = "Crew" AND sub_category = "Super tanker"
34,823
<question>: Name the capacity for single cab size 2 medium tanker <context>: CREATE TABLE table_2155350_2 (capacity__litres_ VARCHAR, cab_size VARCHAR, category VARCHAR)
SELECT capacity__litres_ FROM table_2155350_2 WHERE cab_size = "Single" AND category = "2 Medium tanker"
34,824
<question>: What school is in Brechin? <context>: CREATE TABLE table_21563298_1 (external_link VARCHAR, location VARCHAR)
SELECT external_link FROM table_21563298_1 WHERE location = "Brechin"
34,825
<question>: How many kids go to Brechin High School? <context>: CREATE TABLE table_21563298_1 (roll INTEGER, school VARCHAR)
SELECT MAX(roll) FROM table_21563298_1 WHERE school = "Brechin High school"
34,826
<question>: What year did Negro American League join? <context>: CREATE TABLE table_21564794_3 (began_in_st_louis INTEGER, league VARCHAR)
SELECT MIN(began_in_st_louis) FROM table_21564794_3 WHERE league = "Negro American league"
34,827
<question>: What year did the team who played at the Scottrade Center leave the city? <context>: CREATE TABLE table_21564794_3 (left_st_louis INTEGER, venue VARCHAR)
SELECT MIN(left_st_louis) FROM table_21564794_3 WHERE venue = "Scottrade Center"
34,828
<question>: How may championships were won by the team that started in 1950? <context>: CREATE TABLE table_21564794_3 (championships_in_st_louis VARCHAR, began_in_st_louis VARCHAR)
SELECT championships_in_st_louis FROM table_21564794_3 WHERE began_in_st_louis = 1950
34,829
<question>: How many championships were won for arena football? <context>: CREATE TABLE table_21564794_3 (championships_in_st_louis VARCHAR, sport VARCHAR)
SELECT championships_in_st_louis FROM table_21564794_3 WHERE sport = "Arena Football"
34,830
<question>: When samai amari is the asian rider classification how many asian team classifications are there? <context>: CREATE TABLE table_21573750_2 (asian_team_classification VARCHAR, asian_rider_classification VARCHAR)
SELECT COUNT(asian_team_classification) FROM table_21573750_2 WHERE asian_rider_classification = "Samai Amari"
34,831
<question>: When 4 is the stage who is the general classification? <context>: CREATE TABLE table_21573750_2 (general_classification VARCHAR, stage VARCHAR)
SELECT general_classification FROM table_21573750_2 WHERE stage = 4
34,832
<question>: What is the number in season for the episode written by Chris Mitchell and Erik Wiese? <context>: CREATE TABLE table_2156758_4 (no_in_season VARCHAR, written_by VARCHAR)
SELECT no_in_season FROM table_2156758_4 WHERE written_by = "Chris Mitchell and Erik Wiese"
34,833
<question>: What is the title for episode number in series of 28? <context>: CREATE TABLE table_2156758_4 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_2156758_4 WHERE no_in_series = "28"
34,834
<question>: How many titles were written by Don Shank and Genndy Tartakovsky? <context>: CREATE TABLE table_2156758_4 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_2156758_4 WHERE written_by = "Don Shank and Genndy Tartakovsky"
34,835
<question>: When 3rd, sedgemoor division 1 is the ladies 1st xi what is the mens 3rd xi? <context>: CREATE TABLE table_21576644_2 (mens_3rd_xi VARCHAR, ladies_1st_xi VARCHAR)
SELECT mens_3rd_xi FROM table_21576644_2 WHERE ladies_1st_xi = "3rd, Sedgemoor Division 1"
34,836
<question>: When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi? <context>: CREATE TABLE table_21576644_2 (ladies_1st_xi VARCHAR, mens_2nd_xi VARCHAR)
SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = "10th, South West District 1"
34,837
<question>: When 5th, south western district 2 is the mens 2nd xi what is the season? <context>: CREATE TABLE table_21576644_2 (season VARCHAR, mens_2nd_xi VARCHAR)
SELECT season FROM table_21576644_2 WHERE mens_2nd_xi = "5th, South Western District 2"
34,838
<question>: When 6th, south division 2 is the mens 1st xi what is the mens 2nd xi? <context>: CREATE TABLE table_21576644_2 (mens_2nd_xi VARCHAR, mens_1st_xi VARCHAR)
SELECT mens_2nd_xi FROM table_21576644_2 WHERE mens_1st_xi = "6th, South Division 2"
34,839
<question>: Which stage has kourdali as the name? <context>: CREATE TABLE table_21578303_2 (stage VARCHAR, name VARCHAR)
SELECT stage FROM table_21578303_2 WHERE name = "Kourdali"
34,840
<question>: Which stage has 15:17 as time? <context>: CREATE TABLE table_21578303_2 (stage VARCHAR, time__eet_ VARCHAR)
SELECT stage FROM table_21578303_2 WHERE time__eet_ = "15:17"
34,841
<question>: What is the time when time is 10:46? <context>: CREATE TABLE table_21578303_2 (time VARCHAR, time__eet_ VARCHAR)
SELECT time FROM table_21578303_2 WHERE time__eet_ = "10:46"
34,842
<question>: What is the time when ss12 is stage? <context>: CREATE TABLE table_21578303_2 (time VARCHAR, stage VARCHAR)
SELECT time FROM table_21578303_2 WHERE stage = "SS12"
34,843
<question>: Name the state class for resigned november 3, 1964 <context>: CREATE TABLE table_2159506_3 (state__class_ VARCHAR, reason_for_change VARCHAR)
SELECT state__class_ FROM table_2159506_3 WHERE reason_for_change = "Resigned November 3, 1964"
34,844
<question>: How many champions are shown for the runner-up of stefan edberg? <context>: CREATE TABLE table_21584646_10 (champion VARCHAR, runner_up VARCHAR)
SELECT COUNT(champion) FROM table_21584646_10 WHERE runner_up = "Stefan Edberg"
34,845
<question>: What week was stefan edberg anders järryd was semifinalist and champion is john mcenroe 7–6, 6–3? <context>: CREATE TABLE table_21584646_10 (week_of VARCHAR, semifinalists VARCHAR, champion VARCHAR)
SELECT week_of FROM table_21584646_10 WHERE semifinalists = "Stefan Edberg Anders Järryd" AND champion = "John McEnroe 7–6, 6–3"
34,846
<question>: Who is the runner up for the champion of john mcenroe 6–2, 6–3? <context>: CREATE TABLE table_21584646_10 (runner_up VARCHAR, champion VARCHAR)
SELECT runner_up FROM table_21584646_10 WHERE champion = "John McEnroe 6–2, 6–3"
34,847
<question>: Who were the quarterfinalists for the runner-ups of mike de palmer gary donnelly? <context>: CREATE TABLE table_21584646_10 (quarterfinalists VARCHAR, runner_up VARCHAR)
SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = "Mike De Palmer Gary Donnelly"
34,848
<question>: Who are the quarterfinalists for runner-up jimmy connors? <context>: CREATE TABLE table_21584646_10 (quarterfinalists VARCHAR, runner_up VARCHAR)
SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = "Jimmy Connors"
34,849
<question>: How many weeks are shown for the champion of john mcenroe 6–2, 6–3? <context>: CREATE TABLE table_21584646_10 (week_of VARCHAR, champion VARCHAR)
SELECT COUNT(week_of) FROM table_21584646_10 WHERE champion = "John McEnroe 6–2, 6–3"
34,850
<question>: What is every reason for change for the date of successors installation is March 16, 1960? <context>: CREATE TABLE table_2159571_1 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT reason_for_change FROM table_2159571_1 WHERE date_of_successors_formal_installation = "March 16, 1960"
34,851
<question>: Who is every vacator if date of successors formal installation is August 8, 1960? <context>: CREATE TABLE table_2159571_1 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT vacator FROM table_2159571_1 WHERE date_of_successors_formal_installation = "August 8, 1960"
34,852
<question>: Who is every successor for the Washington 3rd District? <context>: CREATE TABLE table_2159571_2 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_2159571_2 WHERE district = "Washington 3rd"
34,853
<question>: What is every reason for change for the Washington 3rd District? <context>: CREATE TABLE table_2159571_2 (reason_for_change VARCHAR, district VARCHAR)
SELECT reason_for_change FROM table_2159571_2 WHERE district = "Washington 3rd"
34,854
<question>: Who is every vacator with reason for change as resigned December 31, 1959? <context>: CREATE TABLE table_2159571_2 (vacator VARCHAR, reason_for_change VARCHAR)
SELECT vacator FROM table_2159571_2 WHERE reason_for_change = "Resigned December 31, 1959"
34,855
<question>: In what district was the successor seated August 31, 1943? <context>: CREATE TABLE table_2159537_3 (district VARCHAR, date_successor_seated VARCHAR)
SELECT district FROM table_2159537_3 WHERE date_successor_seated = "August 31, 1943"
34,856
<question>: Who was the successor for the reason for change being "died January 16, 1944? <context>: CREATE TABLE table_2159537_3 (successor VARCHAR, reason_for_change VARCHAR)
SELECT successor FROM table_2159537_3 WHERE reason_for_change = "Died January 16, 1944"
34,857
<question>: Who was the successor in New York 11th district? <context>: CREATE TABLE table_2159537_3 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_2159537_3 WHERE district = "New York 11th"
34,858
<question>: On what date was James P. Buchanan (d)'s successor seated? <context>: CREATE TABLE table_2159547_3 (date_successor_seated VARCHAR, vacator VARCHAR)
SELECT date_successor_seated FROM table_2159547_3 WHERE vacator = "James P. Buchanan (D)"
34,859
<question>: How many people vacated to successor Dave E. Satterfield, Jr. (d)? <context>: CREATE TABLE table_2159547_3 (vacator VARCHAR, successor VARCHAR)
SELECT COUNT(vacator) FROM table_2159547_3 WHERE successor = "Dave E. Satterfield, Jr. (D)"
34,860
<question>: Why did Robert L. Bacon (r) vacate? <context>: CREATE TABLE table_2159547_3 (reason_for_change VARCHAR, vacator VARCHAR)
SELECT reason_for_change FROM table_2159547_3 WHERE vacator = "Robert L. Bacon (R)"
34,861
<question>: Makio Inoue dubbed on which character? <context>: CREATE TABLE table_2160215_1 (character VARCHAR, original_japanese VARCHAR)
SELECT character FROM table_2160215_1 WHERE original_japanese = "Makio Inoue"
34,862
<question>: Who was the cast on the English (Manga UK) version if Kō Nishimura acted on the original Japanese? <context>: CREATE TABLE table_2160215_1 (english___manga_uk__ VARCHAR, original_japanese VARCHAR)
SELECT english___manga_uk__ FROM table_2160215_1 WHERE original_japanese = "Kō Nishimura"
34,863
<question>: Who was the original Japanese cast if Sean Barrett acted on the English (Manga UK) version? <context>: CREATE TABLE table_2160215_1 (original_japanese VARCHAR, english___manga_uk__ VARCHAR)
SELECT original_japanese FROM table_2160215_1 WHERE english___manga_uk__ = "Sean Barrett"
34,864
<question>: Name the district for reason for change being died july 4, 1939 <context>: CREATE TABLE table_2160008_4 (district VARCHAR, reason_for_change VARCHAR)
SELECT district FROM table_2160008_4 WHERE reason_for_change = "Died July 4, 1939"
34,865
<question>: Name the number of reason for change on may 11, 1939 <context>: CREATE TABLE table_2160008_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)
SELECT COUNT(reason_for_change) FROM table_2160008_4 WHERE date_successor_seated = "May 11, 1939"
34,866
<question>: What were the time and speed for the rider ranked in 12 on Wed, June 3? <context>: CREATE TABLE table_21607058_1 (wed_3_june VARCHAR, rank VARCHAR)
SELECT wed_3_june FROM table_21607058_1 WHERE rank = 12
34,867
<question>: What is the series number for the Golden Frog? <context>: CREATE TABLE table_2161859_1 (series__number VARCHAR, title VARCHAR)
SELECT series__number FROM table_2161859_1 WHERE title = "The Golden Frog"
34,868
<question>: Who is the artist for strip numbers 3932-4031a? <context>: CREATE TABLE table_2161859_1 (artist VARCHAR, strip_numbers VARCHAR)
SELECT artist FROM table_2161859_1 WHERE strip_numbers = "3932-4031A"
34,869
<question>: who got the first position when Ehime Shimanami got the third position? <context>: CREATE TABLE table_21632864_1 (champions VARCHAR, third_place VARCHAR)
SELECT champions FROM table_21632864_1 WHERE third_place = "Ehime Shimanami"
34,870
<question>: who got the third position when laranja kyoto got the second position? <context>: CREATE TABLE table_21632864_1 (third_place VARCHAR, runners_up VARCHAR)
SELECT third_place FROM table_21632864_1 WHERE runners_up = "Laranja Kyoto"
34,871
<question>: how many persons got the third position whan sanyo electric tokushima got the fourth position? <context>: CREATE TABLE table_21632864_1 (third_place VARCHAR, fourth_place VARCHAR)
SELECT COUNT(third_place) FROM table_21632864_1 WHERE fourth_place = "Sanyo Electric Tokushima"
34,872
<question>: how many persons got the fourth position when the regional was shikoku? <context>: CREATE TABLE table_21632864_1 (fourth_place VARCHAR, regional VARCHAR)
SELECT COUNT(fourth_place) FROM table_21632864_1 WHERE regional = "Shikoku"
34,873
<question>: who got the first place when the Japanese Regional Leagues was in hokushinetsu? <context>: CREATE TABLE table_21632864_1 (champions VARCHAR, regional VARCHAR)
SELECT champions FROM table_21632864_1 WHERE regional = "Hokushinetsu"
34,874
<question>: who got the first position when fujieda city government got the fourth position? <context>: CREATE TABLE table_21632864_1 (champions VARCHAR, fourth_place VARCHAR)
SELECT champions FROM table_21632864_1 WHERE fourth_place = "Fujieda City Government"
34,875
<question>: What are the civilian total when the security force total is 36? <context>: CREATE TABLE table_21636599_2 (civilians VARCHAR, security_forces VARCHAR)
SELECT civilians FROM table_21636599_2 WHERE security_forces = "36"
34,876
<question>: What are the security forces when the civilians are 202? <context>: CREATE TABLE table_21636599_2 (security_forces VARCHAR, civilians VARCHAR)
SELECT security_forces FROM table_21636599_2 WHERE civilians = "202"
34,877
<question>: How many figures are named for security forces in 1998? <context>: CREATE TABLE table_21636599_2 (security_forces VARCHAR, period VARCHAR)
SELECT COUNT(security_forces) FROM table_21636599_2 WHERE period = 1998
34,878
<question>: How many insurgents are there when the total per period is 156? <context>: CREATE TABLE table_21636599_2 (insurgents VARCHAR, total_per_period VARCHAR)
SELECT insurgents FROM table_21636599_2 WHERE total_per_period = 156
34,879
<question>: How many U.S. viewers watched the episode directed by Frank Waldeck? <context>: CREATE TABLE table_21634403_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__millions_ FROM table_21634403_2 WHERE directed_by = "Frank Waldeck"
34,880
<question>: How many tournaments were at sime darby lpga malaysia? <context>: CREATE TABLE table_21649285_2 (no VARCHAR, tournament VARCHAR)
SELECT COUNT(no) FROM table_21649285_2 WHERE tournament = "Sime Darby LPGA Malaysia"
34,881
<question>: Margin of victory on no. 4 was? <context>: CREATE TABLE table_21649285_2 (margin_of_victory VARCHAR, no VARCHAR)
SELECT margin_of_victory FROM table_21649285_2 WHERE no = 4
34,882
<question>: Who was the runner up when the won by 4 strokes? <context>: CREATE TABLE table_21649285_2 (runner_s__up VARCHAR, margin_of_victory VARCHAR)
SELECT runner_s__up FROM table_21649285_2 WHERE margin_of_victory = "4 strokes"
34,883
<question>: Which film title used in nomination has the year (ceremony) 1990 (63rd)? <context>: CREATE TABLE table_21655290_1 (film_title_used_in_nomination VARCHAR, year__ceremony_ VARCHAR)
SELECT film_title_used_in_nomination FROM table_21655290_1 WHERE year__ceremony_ = "1990 (63rd)"
34,884
<question>: Who is the director of kon-tiki original title? <context>: CREATE TABLE table_21655290_1 (director VARCHAR, original_title VARCHAR)
SELECT director FROM table_21655290_1 WHERE original_title = "Kon-Tiki"
34,885
<question>: Which film title used in nomination has vinterkyss as the original title? <context>: CREATE TABLE table_21655290_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT film_title_used_in_nomination FROM table_21655290_1 WHERE original_title = "Vinterkyss"
34,886
<question>: What is the date for the tournament McDonald's wpga championship? <context>: CREATE TABLE table_2167226_3 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_2167226_3 WHERE tournament = "McDonald's WPGA Championship"
34,887
<question>: What is the winning score when 5 strokes is the margin of victory? <context>: CREATE TABLE table_2167226_3 (winning_score VARCHAR, margin_of_victory VARCHAR)
SELECT winning_score FROM table_2167226_3 WHERE margin_of_victory = "5 strokes"
34,888
<question>: What is the to par with the winning score of 74-67-71-73=285? <context>: CREATE TABLE table_2167226_3 (to_par VARCHAR, winning_score VARCHAR)
SELECT to_par FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285
34,889
<question>: What is the date of the winning score 74-67-71-73=285? <context>: CREATE TABLE table_2167226_3 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285
34,890
<question>: How many number in series's are written by Greg Haddrick? <context>: CREATE TABLE table_21666472_1 (no_in_series VARCHAR, written_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_21666472_1 WHERE written_by = "Greg Haddrick"
34,891
<question>: When were the odds of winner 16.66? <context>: CREATE TABLE table_21676617_1 (year VARCHAR, odds_of_winner VARCHAR)
SELECT year FROM table_21676617_1 WHERE odds_of_winner = "16.66"
34,892
<question>: What was the winning time in the year when the odds of the winner were 2.94? <context>: CREATE TABLE table_21676617_1 (winning_time__km_rate_ VARCHAR, odds_of_winner VARCHAR)
SELECT winning_time__km_rate_ FROM table_21676617_1 WHERE odds_of_winner = "2.94"
34,893
<question>: What were Gentleman's odds of winner? <context>: CREATE TABLE table_21676617_1 (odds_of_winner VARCHAR, horse VARCHAR)
SELECT odds_of_winner FROM table_21676617_1 WHERE horse = "Gentleman"
34,894
<question>: How many countries did Utah Bulwark's owner come from? <context>: CREATE TABLE table_21676617_1 (country_of_owner VARCHAR, horse VARCHAR)
SELECT COUNT(country_of_owner) FROM table_21676617_1 WHERE horse = "Utah Bulwark"
34,895
<question>: How many horses are mentioned competing in 1985? <context>: CREATE TABLE table_21676617_1 (horse VARCHAR, year VARCHAR)
SELECT COUNT(horse) FROM table_21676617_1 WHERE year = 1985
34,896
<question>: If the headquarters is Bharatpur, what is the maximum area? <context>: CREATE TABLE table_2168295_1 (area__km²_ INTEGER, headquarters VARCHAR)
SELECT MAX(area__km²_) FROM table_2168295_1 WHERE headquarters = "Bharatpur"
34,897
<question>: If the district is Chittorgarh, what is the area? <context>: CREATE TABLE table_2168295_1 (area__km²_ VARCHAR, district VARCHAR)
SELECT area__km²_ FROM table_2168295_1 WHERE district = "Chittorgarh"
34,898
<question>: If the 2011 population is 3685681, what is the name of the headquarters? <context>: CREATE TABLE table_2168295_1 (headquarters VARCHAR, population__2011_ VARCHAR)
SELECT headquarters FROM table_2168295_1 WHERE population__2011_ = 3685681
34,899
<question>: What is the minimum area id the 2011 population is 3067549? <context>: CREATE TABLE table_2168295_1 (area__km²_ INTEGER, population__2011_ VARCHAR)
SELECT MIN(area__km²_) FROM table_2168295_1 WHERE population__2011_ = 3067549