text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is the record on December 11?
### CONTEXT
CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_77 WHERE date = "december 11"</s> | {
"answer": "SELECT record FROM table_name_77 WHERE date = \"december 11\"",
"context": "CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)",
"question": "What is the record on December 11?"
} |
### QUESTION
What is Result, when Competition is 2010 FIFA World Cup Qualification, and when Date is 10 September 2008?
### CONTEXT
CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_37 WHERE competition = "2010 fifa world cup qualification" AND date = "10 september 2008"</s> | {
"answer": "SELECT result FROM table_name_37 WHERE competition = \"2010 fifa world cup qualification\" AND date = \"10 september 2008\"",
"context": "CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR, date VARCHAR)",
"question": "What is Result, when Competition is 2010 FIFA World Cup Qualification, and when Date is 10 September 2008?"
} |
### QUESTION
What is Venue, when Competition is 2010 FIFA World Cup Qualification, when Result is Won, and when Date is 14 June 2008?
### CONTEXT
CREATE TABLE table_name_25 (venue VARCHAR, date VARCHAR, competition VARCHAR, result VARCHAR)
### ANSWER
SELECT venue FROM table_name_25 WHERE competition = "2010 fifa world cup qualification" AND result = "won" AND date = "14 june 2008"</s> | {
"answer": "SELECT venue FROM table_name_25 WHERE competition = \"2010 fifa world cup qualification\" AND result = \"won\" AND date = \"14 june 2008\"",
"context": "CREATE TABLE table_name_25 (venue VARCHAR, date VARCHAR, competition VARCHAR, result VARCHAR)",
"question": "What is Venue, when Competition is 2010 FIFA World Cup Qualification, when Result is Won, and when Date is 14 June 2008?"
} |
### QUESTION
What were highest points received from someone using a zabel-wsp with a position greater than 7?
### CONTEXT
CREATE TABLE table_name_15 (points INTEGER, equipment VARCHAR, position VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_15 WHERE equipment = "zabel-wsp" AND position > 7</s> | {
"answer": "SELECT MAX(points) FROM table_name_15 WHERE equipment = \"zabel-wsp\" AND position > 7",
"context": "CREATE TABLE table_name_15 (points INTEGER, equipment VARCHAR, position VARCHAR)",
"question": "What were highest points received from someone using a zabel-wsp with a position greater than 7?"
} |
### QUESTION
When did Shirley Fry Irvin win the US Open?
### CONTEXT
CREATE TABLE table_2092557_12 (us_open INTEGER, player VARCHAR)
### ANSWER
SELECT MIN(us_open) FROM table_2092557_12 WHERE player = "Shirley Fry Irvin"</s> | {
"answer": "SELECT MIN(us_open) FROM table_2092557_12 WHERE player = \"Shirley Fry Irvin\"",
"context": "CREATE TABLE table_2092557_12 (us_open INTEGER, player VARCHAR)",
"question": "When did Shirley Fry Irvin win the US Open?"
} |
### QUESTION
What year did Martina Navratilova win Wimbledon?
### CONTEXT
CREATE TABLE table_2092557_12 (wimbledon VARCHAR, player VARCHAR)
### ANSWER
SELECT wimbledon FROM table_2092557_12 WHERE player = "Martina Navratilova"</s> | {
"answer": "SELECT wimbledon FROM table_2092557_12 WHERE player = \"Martina Navratilova\"",
"context": "CREATE TABLE table_2092557_12 (wimbledon VARCHAR, player VARCHAR)",
"question": "What year did Martina Navratilova win Wimbledon?"
} |
### QUESTION
What was the round when nueza silva played against greece?
### CONTEXT
CREATE TABLE table_name_31 (round VARCHAR, against VARCHAR)
### ANSWER
SELECT round FROM table_name_31 WHERE against = "greece"</s> | {
"answer": "SELECT round FROM table_name_31 WHERE against = \"greece\"",
"context": "CREATE TABLE table_name_31 (round VARCHAR, against VARCHAR)",
"question": "What was the round when nueza silva played against greece?"
} |
### QUESTION
Where was the Ivy League conference tournament?
### CONTEXT
CREATE TABLE table_21091982_3 (tournament_venue__city_ VARCHAR, conference VARCHAR)
### ANSWER
SELECT tournament_venue__city_ FROM table_21091982_3 WHERE conference = "Ivy League"</s> | {
"answer": "SELECT tournament_venue__city_ FROM table_21091982_3 WHERE conference = \"Ivy League\"",
"context": "CREATE TABLE table_21091982_3 (tournament_venue__city_ VARCHAR, conference VARCHAR)",
"question": "Where was the Ivy League conference tournament?"
} |
### QUESTION
What manufacturer has a year made of 1923?
### CONTEXT
CREATE TABLE table_name_73 (manufacturer VARCHAR, year_made VARCHAR)
### ANSWER
SELECT manufacturer FROM table_name_73 WHERE year_made = "1923"</s> | {
"answer": "SELECT manufacturer FROM table_name_73 WHERE year_made = \"1923\"",
"context": "CREATE TABLE table_name_73 (manufacturer VARCHAR, year_made VARCHAR)",
"question": "What manufacturer has a year made of 1923?"
} |
### QUESTION
What's the quantity made when the manufacturer was 4-6-2 — oooooo — pacific?
### CONTEXT
CREATE TABLE table_name_7 (quantity_made VARCHAR, manufacturer VARCHAR)
### ANSWER
SELECT quantity_made FROM table_name_7 WHERE manufacturer = "4-6-2 — oooooo — pacific"</s> | {
"answer": "SELECT quantity_made FROM table_name_7 WHERE manufacturer = \"4-6-2 — oooooo — pacific\"",
"context": "CREATE TABLE table_name_7 (quantity_made VARCHAR, manufacturer VARCHAR)",
"question": "What's the quantity made when the manufacturer was 4-6-2 — oooooo — pacific?"
} |
### QUESTION
What is the 100 year for Carbon Dioxide?
### CONTEXT
CREATE TABLE table_21350772_2 (gas_name VARCHAR)
### ANSWER
SELECT 100 AS _yr FROM table_21350772_2 WHERE gas_name = "Carbon dioxide"</s> | {
"answer": "SELECT 100 AS _yr FROM table_21350772_2 WHERE gas_name = \"Carbon dioxide\"",
"context": "CREATE TABLE table_21350772_2 (gas_name VARCHAR)",
"question": "What is the 100 year for Carbon Dioxide?"
} |
### QUESTION
What is the time when the race was in Kenya and Lineth Chepkurui was the athlete?
### CONTEXT
CREATE TABLE table_name_50 (time VARCHAR, nation VARCHAR, athlete VARCHAR)
### ANSWER
SELECT time FROM table_name_50 WHERE nation = "kenya" AND athlete = "lineth chepkurui"</s> | {
"answer": "SELECT time FROM table_name_50 WHERE nation = \"kenya\" AND athlete = \"lineth chepkurui\"",
"context": "CREATE TABLE table_name_50 (time VARCHAR, nation VARCHAR, athlete VARCHAR)",
"question": "What is the time when the race was in Kenya and Lineth Chepkurui was the athlete?"
} |
### QUESTION
Which Maximum episode premiered March 8, 2008?
### CONTEXT
CREATE TABLE table_2140071_8 (episode INTEGER, premier_date VARCHAR)
### ANSWER
SELECT MAX(episode) FROM table_2140071_8 WHERE premier_date = "March 8, 2008"</s> | {
"answer": "SELECT MAX(episode) FROM table_2140071_8 WHERE premier_date = \"March 8, 2008\"",
"context": "CREATE TABLE table_2140071_8 (episode INTEGER, premier_date VARCHAR)",
"question": "Which Maximum episode premiered March 8, 2008?"
} |
### QUESTION
What coach premiered February 16, 2008 later than episode 21.0?
### CONTEXT
CREATE TABLE table_2140071_8 (coach VARCHAR, premier_date VARCHAR, episode VARCHAR)
### ANSWER
SELECT coach FROM table_2140071_8 WHERE premier_date = "February 16, 2008" AND episode > 21.0</s> | {
"answer": "SELECT coach FROM table_2140071_8 WHERE premier_date = \"February 16, 2008\" AND episode > 21.0",
"context": "CREATE TABLE table_2140071_8 (coach VARCHAR, premier_date VARCHAR, episode VARCHAR)",
"question": "What coach premiered February 16, 2008 later than episode 21.0?"
} |
### QUESTION
What was Cici Kelley's minimum season?
### CONTEXT
CREATE TABLE table_2140071_8 (season INTEGER, coach VARCHAR)
### ANSWER
SELECT MIN(season) FROM table_2140071_8 WHERE coach = "Cici Kelley"</s> | {
"answer": "SELECT MIN(season) FROM table_2140071_8 WHERE coach = \"Cici Kelley\"",
"context": "CREATE TABLE table_2140071_8 (season INTEGER, coach VARCHAR)",
"question": "What was Cici Kelley's minimum season?"
} |
### QUESTION
What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)?
### CONTEXT
CREATE TABLE table_214479_8 (y_ VARCHAR, _2011 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)
### ANSWER
SELECT y_ = _2011 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)</s> | {
"answer": "SELECT y_ = _2011 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)",
"context": "CREATE TABLE table_214479_8 (y_ VARCHAR, _2011 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)",
"question": "What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)?"
} |
### QUESTION
what is the y = 2009 when the expression is month = floor ((d + e + 114) / 31)?
### CONTEXT
CREATE TABLE table_214479_8 (y_ VARCHAR, _2009 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)
### ANSWER
SELECT y_ = _2009 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)</s> | {
"answer": "SELECT y_ = _2009 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)",
"context": "CREATE TABLE table_214479_8 (y_ VARCHAR, _2009 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)",
"question": "what is the y = 2009 when the expression is month = floor ((d + e + 114) / 31)?"
} |
### QUESTION
Name the min total pts for team dennis conner
### CONTEXT
CREATE TABLE table_21471897_2 (total_pts INTEGER, team_name VARCHAR)
### ANSWER
SELECT MIN(total_pts) FROM table_21471897_2 WHERE team_name = "Team Dennis Conner"</s> | {
"answer": "SELECT MIN(total_pts) FROM table_21471897_2 WHERE team_name = \"Team Dennis Conner\"",
"context": "CREATE TABLE table_21471897_2 (total_pts INTEGER, team_name VARCHAR)",
"question": "Name the min total pts for team dennis conner"
} |
### QUESTION
What is the land area of the RCM having a density of 21.1?
### CONTEXT
CREATE TABLE table_214920_1 (land_area VARCHAR, density__pop_per_km2_ VARCHAR)
### ANSWER
SELECT land_area FROM table_214920_1 WHERE density__pop_per_km2_ = "21.1"</s> | {
"answer": "SELECT land_area FROM table_214920_1 WHERE density__pop_per_km2_ = \"21.1\"",
"context": "CREATE TABLE table_214920_1 (land_area VARCHAR, density__pop_per_km2_ VARCHAR)",
"question": "What is the land area of the RCM having a density of 21.1?"
} |
### QUESTION
What is the withdrawal rate for the school district with a graduation rate of 89.3%?
### CONTEXT
CREATE TABLE table_21514460_1 (withdrawal_rate__2010_11_ VARCHAR, graduation_rate__2011_12_ VARCHAR)
### ANSWER
SELECT withdrawal_rate__2010_11_ FROM table_21514460_1 WHERE graduation_rate__2011_12_ = "89.3%"</s> | {
"answer": "SELECT withdrawal_rate__2010_11_ FROM table_21514460_1 WHERE graduation_rate__2011_12_ = \"89.3%\"",
"context": "CREATE TABLE table_21514460_1 (withdrawal_rate__2010_11_ VARCHAR, graduation_rate__2011_12_ VARCHAR)",
"question": "What is the withdrawal rate for the school district with a graduation rate of 89.3%?"
} |
### QUESTION
Where is the headquarter located for the Annapolis Valley Regional School Board?
### CONTEXT
CREATE TABLE table_21514460_1 (headquarters VARCHAR, school_district VARCHAR)
### ANSWER
SELECT headquarters FROM table_21514460_1 WHERE school_district = "Annapolis Valley Regional School Board"</s> | {
"answer": "SELECT headquarters FROM table_21514460_1 WHERE school_district = \"Annapolis Valley Regional School Board\"",
"context": "CREATE TABLE table_21514460_1 (headquarters VARCHAR, school_district VARCHAR)",
"question": "Where is the headquarter located for the Annapolis Valley Regional School Board?"
} |
### QUESTION
What was the total number of matches that had an outcome of Winner, a partner of John Lloyd, and a clay surface?
### CONTEXT
CREATE TABLE table_2151643_3 (opponents VARCHAR, surface VARCHAR, outcome VARCHAR, partner VARCHAR)
### ANSWER
SELECT COUNT(opponents) FROM table_2151643_3 WHERE outcome = "Winner" AND partner = "John Lloyd" AND surface = "Clay"</s> | {
"answer": "SELECT COUNT(opponents) FROM table_2151643_3 WHERE outcome = \"Winner\" AND partner = \"John Lloyd\" AND surface = \"Clay\"",
"context": "CREATE TABLE table_2151643_3 (opponents VARCHAR, surface VARCHAR, outcome VARCHAR, partner VARCHAR)",
"question": "What was the total number of matches that had an outcome of Winner, a partner of John Lloyd, and a clay surface?"
} |
### QUESTION
What episode number was directed by Craig Ross, Jr.
### CONTEXT
CREATE TABLE table_21550897_1 (_number VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT _number FROM table_21550897_1 WHERE directed_by = "Craig Ross, Jr."</s> | {
"answer": "SELECT _number FROM table_21550897_1 WHERE directed_by = \"Craig Ross, Jr.\"",
"context": "CREATE TABLE table_21550897_1 (_number VARCHAR, directed_by VARCHAR)",
"question": "What episode number was directed by Craig Ross, Jr."
} |
### QUESTION
Who are all successors when reason for change is died May 12, 1964?
### CONTEXT
CREATE TABLE table_2159506_4 (successor VARCHAR, reason_for_change VARCHAR)
### ANSWER
SELECT successor FROM table_2159506_4 WHERE reason_for_change = "Died May 12, 1964"</s> | {
"answer": "SELECT successor FROM table_2159506_4 WHERE reason_for_change = \"Died May 12, 1964\"",
"context": "CREATE TABLE table_2159506_4 (successor VARCHAR, reason_for_change VARCHAR)",
"question": "Who are all successors when reason for change is died May 12, 1964?"
} |
### QUESTION
At which site was Northwestern an opponent?
### CONTEXT
CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR)
### ANSWER
SELECT site FROM table_name_67 WHERE opponent_number = "northwestern"</s> | {
"answer": "SELECT site FROM table_name_67 WHERE opponent_number = \"northwestern\"",
"context": "CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR)",
"question": "At which site was Northwestern an opponent?"
} |
### QUESTION
Which administrative division had a population of 2011 according to the siak database of 3,672,994?
### CONTEXT
CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR)
### ANSWER
SELECT administrative_division FROM table_21734764_1 WHERE population_2011_siak_database = "3,672,994"</s> | {
"answer": "SELECT administrative_division FROM table_21734764_1 WHERE population_2011_siak_database = \"3,672,994\"",
"context": "CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR)",
"question": "Which administrative division had a population of 2011 according to the siak database of 3,672,994?"
} |
### QUESTION
Who has a reported age of 111 years, 66 days?
### CONTEXT
CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR)
### ANSWER
SELECT name FROM table_name_38 WHERE reported_age = "111 years, 66 days"</s> | {
"answer": "SELECT name FROM table_name_38 WHERE reported_age = \"111 years, 66 days\"",
"context": "CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR)",
"question": "Who has a reported age of 111 years, 66 days?"
} |
### QUESTION
What is the area of cimahi city?
### CONTEXT
CREATE TABLE table_21734764_1 (area__km²__2005 VARCHAR, administrative_division VARCHAR)
### ANSWER
SELECT area__km²__2005 FROM table_21734764_1 WHERE administrative_division = "Cimahi City"</s> | {
"answer": "SELECT area__km²__2005 FROM table_21734764_1 WHERE administrative_division = \"Cimahi City\"",
"context": "CREATE TABLE table_21734764_1 (area__km²__2005 VARCHAR, administrative_division VARCHAR)",
"question": "What is the area of cimahi city?"
} |
### QUESTION
Date for less than 122 countries and a 47% rank?
### CONTEXT
CREATE TABLE table_name_60 (date VARCHAR, countries_surveyed VARCHAR, _percentage_rank VARCHAR)
### ANSWER
SELECT date FROM table_name_60 WHERE countries_surveyed < 122 AND _percentage_rank = "47"</s> | {
"answer": "SELECT date FROM table_name_60 WHERE countries_surveyed < 122 AND _percentage_rank = \"47\"",
"context": "CREATE TABLE table_name_60 (date VARCHAR, countries_surveyed VARCHAR, _percentage_rank VARCHAR)",
"question": "Date for less than 122 countries and a 47% rank?"
} |
### QUESTION
What high assists has the high points of andrew bynum (23)?
### CONTEXT
CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR)
### ANSWER
SELECT high_assists FROM table_name_71 WHERE high_points = "andrew bynum (23)"</s> | {
"answer": "SELECT high_assists FROM table_name_71 WHERE high_points = \"andrew bynum (23)\"",
"context": "CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR)",
"question": "What high assists has the high points of andrew bynum (23)?"
} |
### QUESTION
What day was the total smaller than 19 at Venue of anz stadium?
### CONTEXT
CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_42 WHERE total < 19 AND venue = "anz stadium"</s> | {
"answer": "SELECT date FROM table_name_42 WHERE total < 19 AND venue = \"anz stadium\"",
"context": "CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR, venue VARCHAR)",
"question": "What day was the total smaller than 19 at Venue of anz stadium?"
} |
### QUESTION
Name the average grade for şımarık tarkan
### CONTEXT
CREATE TABLE table_21829580_1 (average_grade VARCHAR, song VARCHAR)
### ANSWER
SELECT average_grade FROM table_21829580_1 WHERE song = "Şımarık Tarkan"</s> | {
"answer": "SELECT average_grade FROM table_21829580_1 WHERE song = \"Şımarık Tarkan\"",
"context": "CREATE TABLE table_21829580_1 (average_grade VARCHAR, song VARCHAR)",
"question": "Name the average grade for şımarık tarkan"
} |
### QUESTION
Which position is team mons who was replaced by Christophe Dessy (caretaker)?
### CONTEXT
CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT position_in_table FROM table_name_91 WHERE team = "mons" AND replaced_by = "christophe dessy (caretaker)"</s> | {
"answer": "SELECT position_in_table FROM table_name_91 WHERE team = \"mons\" AND replaced_by = \"christophe dessy (caretaker)\"",
"context": "CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR)",
"question": "Which position is team mons who was replaced by Christophe Dessy (caretaker)?"
} |
### QUESTION
Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result?
### CONTEXT
CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR)
### ANSWER
SELECT partner FROM table_name_74 WHERE outcome = "runner-up" AND surface = "clay" AND opponents = "marco chiudinelli michael lammer"</s> | {
"answer": "SELECT partner FROM table_name_74 WHERE outcome = \"runner-up\" AND surface = \"clay\" AND opponents = \"marco chiudinelli michael lammer\"",
"context": "CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR)",
"question": "Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result?"
} |
### QUESTION
Name the former codes for merged into panama ( pa , pan , 591 )
### CONTEXT
CREATE TABLE table_222666_1 (former_codes VARCHAR, new_country_names_and_codes VARCHAR)
### ANSWER
SELECT former_codes FROM table_222666_1 WHERE new_country_names_and_codes = "Merged into Panama ( PA , PAN , 591 )"</s> | {
"answer": "SELECT former_codes FROM table_222666_1 WHERE new_country_names_and_codes = \"Merged into Panama ( PA , PAN , 591 )\"",
"context": "CREATE TABLE table_222666_1 (former_codes VARCHAR, new_country_names_and_codes VARCHAR)",
"question": "Name the former codes for merged into panama ( pa , pan , 591 )"
} |
### QUESTION
Who was seat no 6 when seat no 1 and seat no 5 were jacques lachapelle and donald s. dutton
### CONTEXT
CREATE TABLE table_2231241_1 (seat_no_6 VARCHAR, seat_no_1 VARCHAR, seat_no_5 VARCHAR)
### ANSWER
SELECT seat_no_6 FROM table_2231241_1 WHERE seat_no_1 = "Jacques Lachapelle" AND seat_no_5 = "Donald S. Dutton"</s> | {
"answer": "SELECT seat_no_6 FROM table_2231241_1 WHERE seat_no_1 = \"Jacques Lachapelle\" AND seat_no_5 = \"Donald S. Dutton\"",
"context": "CREATE TABLE table_2231241_1 (seat_no_6 VARCHAR, seat_no_1 VARCHAR, seat_no_5 VARCHAR)",
"question": "Who was seat no 6 when seat no 1 and seat no 5 were jacques lachapelle and donald s. dutton"
} |
### QUESTION
How many season did the team lost in round 1 with a GP of 64?
### CONTEXT
CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)
### ANSWER
SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = "lost in round 1"</s> | {
"answer": "SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = \"lost in round 1\"",
"context": "CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)",
"question": "How many season did the team lost in round 1 with a GP of 64?"
} |
### QUESTION
What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi?
### CONTEXT
CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR)
### ANSWER
SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi"</s> | {
"answer": "SELECT COUNT(pick) FROM table_name_98 WHERE position = \"ot\" AND overall > 91 AND round > 21 AND college = \"mississippi\"",
"context": "CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR)",
"question": "What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi?"
} |
### QUESTION
Name the date successor seated for delegate seat established
### CONTEXT
CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)
### ANSWER
SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = "Delegate seat established"</s> | {
"answer": "SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = \"Delegate seat established\"",
"context": "CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)",
"question": "Name the date successor seated for delegate seat established"
} |
### QUESTION
What club did united states player ty harden play for?
### CONTEXT
CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR)
### ANSWER
SELECT club FROM table_name_55 WHERE nationality = "united states" AND player = "ty harden"</s> | {
"answer": "SELECT club FROM table_name_55 WHERE nationality = \"united states\" AND player = \"ty harden\"",
"context": "CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR)",
"question": "What club did united states player ty harden play for?"
} |
### QUESTION
What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )?
### CONTEXT
CREATE TABLE table_224839_3 (state__class_ VARCHAR, reason_for_change VARCHAR, vacator VARCHAR)
### ANSWER
SELECT state__class_ FROM table_224839_3 WHERE reason_for_change = "Resigned November 26, 1798" AND vacator = "John Hunter ( DR )"</s> | {
"answer": "SELECT state__class_ FROM table_224839_3 WHERE reason_for_change = \"Resigned November 26, 1798\" AND vacator = \"John Hunter ( DR )\"",
"context": "CREATE TABLE table_224839_3 (state__class_ VARCHAR, reason_for_change VARCHAR, vacator VARCHAR)",
"question": "What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )?"
} |
### QUESTION
Who is the successor when florida territory at-large is the district?
### CONTEXT
CREATE TABLE table_225100_4 (successor VARCHAR, district VARCHAR)
### ANSWER
SELECT successor FROM table_225100_4 WHERE district = "Florida Territory At-large"</s> | {
"answer": "SELECT successor FROM table_225100_4 WHERE district = \"Florida Territory At-large\"",
"context": "CREATE TABLE table_225100_4 (successor VARCHAR, district VARCHAR)",
"question": "Who is the successor when florida territory at-large is the district?"
} |
### QUESTION
Name the vacator for reason for change died january 12, 1826
### CONTEXT
CREATE TABLE table_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)
### ANSWER
SELECT vacator FROM table_225102_4 WHERE reason_for_change = "Died January 12, 1826"</s> | {
"answer": "SELECT vacator FROM table_225102_4 WHERE reason_for_change = \"Died January 12, 1826\"",
"context": "CREATE TABLE table_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)",
"question": "Name the vacator for reason for change died january 12, 1826"
} |
### QUESTION
which is the maximun serie episode number when the millions of North American spectators is 3.14?
### CONTEXT
CREATE TABLE table_22580855_1 (series_no INTEGER, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT MAX(series_no) FROM table_22580855_1 WHERE us_viewers__millions_ = "3.14"</s> | {
"answer": "SELECT MAX(series_no) FROM table_22580855_1 WHERE us_viewers__millions_ = \"3.14\"",
"context": "CREATE TABLE table_22580855_1 (series_no INTEGER, us_viewers__millions_ VARCHAR)",
"question": "which is the maximun serie episode number when the millions of North American spectators is 3.14?"
} |
### QUESTION
How many writers write the episode whose director is Jonathan Herron?
### CONTEXT
CREATE TABLE table_22580855_1 (written_by VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT COUNT(written_by) FROM table_22580855_1 WHERE directed_by = "Jonathan Herron"</s> | {
"answer": "SELECT COUNT(written_by) FROM table_22580855_1 WHERE directed_by = \"Jonathan Herron\"",
"context": "CREATE TABLE table_22580855_1 (written_by VARCHAR, directed_by VARCHAR)",
"question": "How many writers write the episode whose director is Jonathan Herron?"
} |
### QUESTION
Name the points for 212 respect toward opponents
### CONTEXT
CREATE TABLE table_226619_12 (points VARCHAR, respect_toward_opponents VARCHAR)
### ANSWER
SELECT points FROM table_226619_12 WHERE respect_toward_opponents = 212</s> | {
"answer": "SELECT points FROM table_226619_12 WHERE respect_toward_opponents = 212",
"context": "CREATE TABLE table_226619_12 (points VARCHAR, respect_toward_opponents VARCHAR)",
"question": "Name the points for 212 respect toward opponents"
} |
### QUESTION
Name the nationality for francesco guglielmi
### CONTEXT
CREATE TABLE table_22705586_1 (nationality VARCHAR, name VARCHAR)
### ANSWER
SELECT nationality FROM table_22705586_1 WHERE name = "Francesco Guglielmi"</s> | {
"answer": "SELECT nationality FROM table_22705586_1 WHERE name = \"Francesco Guglielmi\"",
"context": "CREATE TABLE table_22705586_1 (nationality VARCHAR, name VARCHAR)",
"question": "Name the nationality for francesco guglielmi"
} |
### QUESTION
Which Year started is the lowest one that has a Number of cars larger than 7, and a Car # of 100?
### CONTEXT
CREATE TABLE table_name_30 (year_started INTEGER, number_of_cars VARCHAR, car__number VARCHAR)
### ANSWER
SELECT MIN(year_started) FROM table_name_30 WHERE number_of_cars > 7 AND car__number = "100"</s> | {
"answer": "SELECT MIN(year_started) FROM table_name_30 WHERE number_of_cars > 7 AND car__number = \"100\"",
"context": "CREATE TABLE table_name_30 (year_started INTEGER, number_of_cars VARCHAR, car__number VARCHAR)",
"question": "Which Year started is the lowest one that has a Number of cars larger than 7, and a Car # of 100?"
} |
### QUESTION
What is the total number of Round, when Position is "D", and when Player is "Andrew Campbell"?
### CONTEXT
CREATE TABLE table_name_94 (round VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_name_94 WHERE position = "d" AND player = "andrew campbell"</s> | {
"answer": "SELECT COUNT(round) FROM table_name_94 WHERE position = \"d\" AND player = \"andrew campbell\"",
"context": "CREATE TABLE table_name_94 (round VARCHAR, position VARCHAR, player VARCHAR)",
"question": "What is the total number of Round, when Position is \"D\", and when Player is \"Andrew Campbell\"?"
} |
### QUESTION
Who won the regular season when Missouri Valley Conference took place?
### CONTEXT
CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, conference VARCHAR)
### ANSWER
SELECT regular_season_winner FROM table_22779004_1 WHERE conference = "Missouri Valley conference"</s> | {
"answer": "SELECT regular_season_winner FROM table_22779004_1 WHERE conference = \"Missouri Valley conference\"",
"context": "CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, conference VARCHAR)",
"question": "Who won the regular season when Missouri Valley Conference took place?"
} |
### QUESTION
what is the average points when position is more than 5 and played is less than 10?
### CONTEXT
CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, played VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_55 WHERE position > 5 AND played < 10</s> | {
"answer": "SELECT AVG(points) FROM table_name_55 WHERE position > 5 AND played < 10",
"context": "CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, played VARCHAR)",
"question": "what is the average points when position is more than 5 and played is less than 10?"
} |
### QUESTION
What is Place, when Score is 72-72=144, when Country is United States, and when Player is Scott McCarron?
### CONTEXT
CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR)
### ANSWER
SELECT place FROM table_name_14 WHERE score = 72 - 72 = 144 AND country = "united states" AND player = "scott mccarron"</s> | {
"answer": "SELECT place FROM table_name_14 WHERE score = 72 - 72 = 144 AND country = \"united states\" AND player = \"scott mccarron\"",
"context": "CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR)",
"question": "What is Place, when Score is 72-72=144, when Country is United States, and when Player is Scott McCarron?"
} |
### QUESTION
Name the audition city for hyatt regency chicago
### CONTEXT
CREATE TABLE table_22897967_1 (audition_city VARCHAR, callback_venue VARCHAR)
### ANSWER
SELECT audition_city FROM table_22897967_1 WHERE callback_venue = "Hyatt Regency Chicago"</s> | {
"answer": "SELECT audition_city FROM table_22897967_1 WHERE callback_venue = \"Hyatt Regency Chicago\"",
"context": "CREATE TABLE table_22897967_1 (audition_city VARCHAR, callback_venue VARCHAR)",
"question": "Name the audition city for hyatt regency chicago"
} |
### QUESTION
What was the record after the game with the Manchester Wolves on July 30, 2004?
### CONTEXT
CREATE TABLE table_name_18 (record VARCHAR, opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_18 WHERE opponent = "manchester wolves" AND date = "july 30, 2004"</s> | {
"answer": "SELECT record FROM table_name_18 WHERE opponent = \"manchester wolves\" AND date = \"july 30, 2004\"",
"context": "CREATE TABLE table_name_18 (record VARCHAR, opponent VARCHAR, date VARCHAR)",
"question": "What was the record after the game with the Manchester Wolves on July 30, 2004?"
} |
### QUESTION
Name the total number of golden tickets being rosen shingle creek resort
### CONTEXT
CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, callback_venue VARCHAR)
### ANSWER
SELECT COUNT(golden_tickets) FROM table_22897967_1 WHERE callback_venue = "Rosen Shingle Creek Resort"</s> | {
"answer": "SELECT COUNT(golden_tickets) FROM table_22897967_1 WHERE callback_venue = \"Rosen Shingle Creek Resort\"",
"context": "CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, callback_venue VARCHAR)",
"question": "Name the total number of golden tickets being rosen shingle creek resort"
} |
### QUESTION
Does Green Bay have a golf team?
### CONTEXT
CREATE TABLE table_name_66 (golf VARCHAR, school VARCHAR)
### ANSWER
SELECT golf FROM table_name_66 WHERE school = "green bay"</s> | {
"answer": "SELECT golf FROM table_name_66 WHERE school = \"green bay\"",
"context": "CREATE TABLE table_name_66 (golf VARCHAR, school VARCHAR)",
"question": "Does Green Bay have a golf team?"
} |
### QUESTION
Name the k. r. narayanan values for pondicherry
### CONTEXT
CREATE TABLE table_22897453_1 (kr_narayanan__values_ VARCHAR, states VARCHAR)
### ANSWER
SELECT kr_narayanan__values_ FROM table_22897453_1 WHERE states = "Pondicherry"</s> | {
"answer": "SELECT kr_narayanan__values_ FROM table_22897453_1 WHERE states = \"Pondicherry\"",
"context": "CREATE TABLE table_22897453_1 (kr_narayanan__values_ VARCHAR, states VARCHAR)",
"question": "Name the k. r. narayanan values for pondicherry"
} |
### QUESTION
Name the golden ticket for invesco field
### CONTEXT
CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, audition_venue VARCHAR)
### ANSWER
SELECT golden_tickets FROM table_22897967_1 WHERE audition_venue = "Invesco Field"</s> | {
"answer": "SELECT golden_tickets FROM table_22897967_1 WHERE audition_venue = \"Invesco Field\"",
"context": "CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, audition_venue VARCHAR)",
"question": "Name the golden ticket for invesco field"
} |
### QUESTION
What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?
### CONTEXT
CREATE TABLE table_name_68 (win__percentage VARCHAR, conference_titles VARCHAR, win_loss VARCHAR)
### ANSWER
SELECT win__percentage FROM table_name_68 WHERE conference_titles = "0" AND win_loss = "20-10"</s> | {
"answer": "SELECT win__percentage FROM table_name_68 WHERE conference_titles = \"0\" AND win_loss = \"20-10\"",
"context": "CREATE TABLE table_name_68 (win__percentage VARCHAR, conference_titles VARCHAR, win_loss VARCHAR)",
"question": "What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?"
} |
### QUESTION
What is the Place that has a Date of 4 august 2012?
### CONTEXT
CREATE TABLE table_name_13 (place VARCHAR, date VARCHAR)
### ANSWER
SELECT place FROM table_name_13 WHERE date = "4 august 2012"</s> | {
"answer": "SELECT place FROM table_name_13 WHERE date = \"4 august 2012\"",
"context": "CREATE TABLE table_name_13 (place VARCHAR, date VARCHAR)",
"question": "What is the Place that has a Date of 4 august 2012?"
} |
### QUESTION
How many times has a wrestler whose federation was roh, wwe competed in this event?
### CONTEXT
CREATE TABLE table_2305948_1 (other_placings VARCHAR, federation VARCHAR)
### ANSWER
SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = "ROH, WWE"</s> | {
"answer": "SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = \"ROH, WWE\"",
"context": "CREATE TABLE table_2305948_1 (other_placings VARCHAR, federation VARCHAR)",
"question": "How many times has a wrestler whose federation was roh, wwe competed in this event?"
} |
### QUESTION
Name the number of year for 6–3, 6–2 hard surface
### CONTEXT
CREATE TABLE table_23235767_4 (year VARCHAR, score_in_the_final VARCHAR, surface VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_23235767_4 WHERE score_in_the_final = "6–3, 6–2" AND surface = "Hard"</s> | {
"answer": "SELECT COUNT(year) FROM table_23235767_4 WHERE score_in_the_final = \"6–3, 6–2\" AND surface = \"Hard\"",
"context": "CREATE TABLE table_23235767_4 (year VARCHAR, score_in_the_final VARCHAR, surface VARCHAR)",
"question": "Name the number of year for 6–3, 6–2 hard surface"
} |
### QUESTION
Name the championship for clay and corrado barazzutti
### CONTEXT
CREATE TABLE table_23235767_4 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT championship FROM table_23235767_4 WHERE surface = "Clay" AND opponent_in_the_final = "Corrado Barazzutti"</s> | {
"answer": "SELECT championship FROM table_23235767_4 WHERE surface = \"Clay\" AND opponent_in_the_final = \"Corrado Barazzutti\"",
"context": "CREATE TABLE table_23235767_4 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)",
"question": "Name the championship for clay and corrado barazzutti"
} |
### QUESTION
What is every year where opponent in the final is John Mcenroe at Wimbledon?
### CONTEXT
CREATE TABLE table_23235767_1 (year VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)
### ANSWER
SELECT year FROM table_23235767_1 WHERE opponent_in_the_final = "John McEnroe" AND championship = "Wimbledon"</s> | {
"answer": "SELECT year FROM table_23235767_1 WHERE opponent_in_the_final = \"John McEnroe\" AND championship = \"Wimbledon\"",
"context": "CREATE TABLE table_23235767_1 (year VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)",
"question": "What is every year where opponent in the final is John Mcenroe at Wimbledon?"
} |
### QUESTION
What is every score in the final for opponent in final John Mcenroe at US Open?
### CONTEXT
CREATE TABLE table_23235767_1 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_23235767_1 WHERE opponent_in_the_final = "John McEnroe" AND championship = "US Open"</s> | {
"answer": "SELECT score_in_the_final FROM table_23235767_1 WHERE opponent_in_the_final = \"John McEnroe\" AND championship = \"US Open\"",
"context": "CREATE TABLE table_23235767_1 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)",
"question": "What is every score in the final for opponent in final John Mcenroe at US Open?"
} |
### QUESTION
Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number?
### CONTEXT
CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR)
### ANSWER
SELECT works_number FROM table_name_88 WHERE type = "0-4-4 forney locomotive" AND builder = "h. k. porter, inc"</s> | {
"answer": "SELECT works_number FROM table_name_88 WHERE type = \"0-4-4 forney locomotive\" AND builder = \"h. k. porter, inc\"",
"context": "CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR)",
"question": "Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number?"
} |
### QUESTION
When was the game number 3 played?
### CONTEXT
CREATE TABLE table_23286112_6 (date VARCHAR, game VARCHAR)
### ANSWER
SELECT date FROM table_23286112_6 WHERE game = 3</s> | {
"answer": "SELECT date FROM table_23286112_6 WHERE game = 3",
"context": "CREATE TABLE table_23286112_6 (date VARCHAR, game VARCHAR)",
"question": "When was the game number 3 played?"
} |
### QUESTION
Which Record has a Result of win, and a Streak of won 1, and a Game of 47?
### CONTEXT
CREATE TABLE table_name_47 (record VARCHAR, game VARCHAR, result VARCHAR, streak VARCHAR)
### ANSWER
SELECT record FROM table_name_47 WHERE result = "win" AND streak = "won 1" AND game = 47</s> | {
"answer": "SELECT record FROM table_name_47 WHERE result = \"win\" AND streak = \"won 1\" AND game = 47",
"context": "CREATE TABLE table_name_47 (record VARCHAR, game VARCHAR, result VARCHAR, streak VARCHAR)",
"question": "Which Record has a Result of win, and a Streak of won 1, and a Game of 47?"
} |
### QUESTION
How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?
### CONTEXT
CREATE TABLE table_name_62 (opponents INTEGER, opponent VARCHAR, result VARCHAR, nuggets_points VARCHAR)
### ANSWER
SELECT SUM(opponents) FROM table_name_62 WHERE result = "win" AND nuggets_points < 115 AND opponent = "washington"</s> | {
"answer": "SELECT SUM(opponents) FROM table_name_62 WHERE result = \"win\" AND nuggets_points < 115 AND opponent = \"washington\"",
"context": "CREATE TABLE table_name_62 (opponents INTEGER, opponent VARCHAR, result VARCHAR, nuggets_points VARCHAR)",
"question": "How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?"
} |
### QUESTION
What is the broadcast date where Jason's team is Rhod Gilbert and Shappi Khorsandi?
### CONTEXT
CREATE TABLE table_23292220_8 (first_broadcast VARCHAR, jasons_team VARCHAR)
### ANSWER
SELECT first_broadcast FROM table_23292220_8 WHERE jasons_team = "Rhod Gilbert and Shappi Khorsandi"</s> | {
"answer": "SELECT first_broadcast FROM table_23292220_8 WHERE jasons_team = \"Rhod Gilbert and Shappi Khorsandi\"",
"context": "CREATE TABLE table_23292220_8 (first_broadcast VARCHAR, jasons_team VARCHAR)",
"question": "What is the broadcast date where Jason's team is Rhod Gilbert and Shappi Khorsandi?"
} |
### QUESTION
What was the sample size for polling on May 2-7, 2007 for Hillary Clinton?
### CONTEXT
CREATE TABLE table_name_35 (sample_size VARCHAR, date VARCHAR, democrat VARCHAR)
### ANSWER
SELECT sample_size FROM table_name_35 WHERE date = "may 2-7, 2007" AND democrat = "hillary clinton"</s> | {
"answer": "SELECT sample_size FROM table_name_35 WHERE date = \"may 2-7, 2007\" AND democrat = \"hillary clinton\"",
"context": "CREATE TABLE table_name_35 (sample_size VARCHAR, date VARCHAR, democrat VARCHAR)",
"question": "What was the sample size for polling on May 2-7, 2007 for Hillary Clinton?"
} |
### QUESTION
Who was on Jason's team for the 12 June 2009 episode?
### CONTEXT
CREATE TABLE table_23292220_8 (jasons_team VARCHAR, first_broadcast VARCHAR)
### ANSWER
SELECT jasons_team FROM table_23292220_8 WHERE first_broadcast = "12 June 2009"</s> | {
"answer": "SELECT jasons_team FROM table_23292220_8 WHERE first_broadcast = \"12 June 2009\"",
"context": "CREATE TABLE table_23292220_8 (jasons_team VARCHAR, first_broadcast VARCHAR)",
"question": "Who was on Jason's team for the 12 June 2009 episode?"
} |
### QUESTION
Where is the poll source when Hillary clinton was the democrat, john mccain was the republican, and the margin of error was less than 4.5 on May 2-7, 2007?
### CONTEXT
CREATE TABLE table_name_41 (poll_source VARCHAR, date VARCHAR, republican VARCHAR, democrat VARCHAR, margin_of_error VARCHAR)
### ANSWER
SELECT poll_source FROM table_name_41 WHERE democrat = "hillary clinton" AND margin_of_error < 4.5 AND republican = "john mccain" AND date = "may 2-7, 2007"</s> | {
"answer": "SELECT poll_source FROM table_name_41 WHERE democrat = \"hillary clinton\" AND margin_of_error < 4.5 AND republican = \"john mccain\" AND date = \"may 2-7, 2007\"",
"context": "CREATE TABLE table_name_41 (poll_source VARCHAR, date VARCHAR, republican VARCHAR, democrat VARCHAR, margin_of_error VARCHAR)",
"question": "Where is the poll source when Hillary clinton was the democrat, john mccain was the republican, and the margin of error was less than 4.5 on May 2-7, 2007?"
} |
### QUESTION
What is the date that the polls were going on at quinnipiac when john mccain was the republican, barack obama was the democrat and the sample size was bigger than 1427?
### CONTEXT
CREATE TABLE table_name_67 (date VARCHAR, sample_size VARCHAR, democrat VARCHAR, republican VARCHAR, poll_source VARCHAR)
### ANSWER
SELECT date FROM table_name_67 WHERE republican = "john mccain" AND poll_source = "quinnipiac" AND democrat = "barack obama" AND sample_size > 1427</s> | {
"answer": "SELECT date FROM table_name_67 WHERE republican = \"john mccain\" AND poll_source = \"quinnipiac\" AND democrat = \"barack obama\" AND sample_size > 1427",
"context": "CREATE TABLE table_name_67 (date VARCHAR, sample_size VARCHAR, democrat VARCHAR, republican VARCHAR, poll_source VARCHAR)",
"question": "What is the date that the polls were going on at quinnipiac when john mccain was the republican, barack obama was the democrat and the sample size was bigger than 1427?"
} |
### QUESTION
If the height order is 1 and the soundfield type is mixed-order, what are all the channels?
### CONTEXT
CREATE TABLE table_233830_1 (channels VARCHAR, soundfield_type VARCHAR, height_order VARCHAR)
### ANSWER
SELECT channels FROM table_233830_1 WHERE soundfield_type = "mixed-order" AND height_order = 1</s> | {
"answer": "SELECT channels FROM table_233830_1 WHERE soundfield_type = \"mixed-order\" AND height_order = 1",
"context": "CREATE TABLE table_233830_1 (channels VARCHAR, soundfield_type VARCHAR, height_order VARCHAR)",
"question": "If the height order is 1 and the soundfield type is mixed-order, what are all the channels?"
} |
### QUESTION
If the channels is wxyzuv, what is the number of channels?
### CONTEXT
CREATE TABLE table_233830_1 (number_of_channels VARCHAR, channels VARCHAR)
### ANSWER
SELECT number_of_channels FROM table_233830_1 WHERE channels = "WXYZUV"</s> | {
"answer": "SELECT number_of_channels FROM table_233830_1 WHERE channels = \"WXYZUV\"",
"context": "CREATE TABLE table_233830_1 (number_of_channels VARCHAR, channels VARCHAR)",
"question": "If the channels is wxyzuv, what is the number of channels?"
} |
### QUESTION
What is the title of the episode/s written by Michael Gans & Richard Register?
### CONTEXT
CREATE TABLE table_23399481_4 (title VARCHAR, written_by VARCHAR)
### ANSWER
SELECT title FROM table_23399481_4 WHERE written_by = "Michael Gans & Richard Register"</s> | {
"answer": "SELECT title FROM table_23399481_4 WHERE written_by = \"Michael Gans & Richard Register\"",
"context": "CREATE TABLE table_23399481_4 (title VARCHAR, written_by VARCHAR)",
"question": "What is the title of the episode/s written by Michael Gans & Richard Register?"
} |
### QUESTION
What is the total score when 7 is the average ranking?
### CONTEXT
CREATE TABLE table_23465011_5 (total_score INTEGER, average_ranking VARCHAR)
### ANSWER
SELECT MAX(total_score) FROM table_23465011_5 WHERE average_ranking = 7</s> | {
"answer": "SELECT MAX(total_score) FROM table_23465011_5 WHERE average_ranking = 7",
"context": "CREATE TABLE table_23465011_5 (total_score INTEGER, average_ranking VARCHAR)",
"question": "What is the total score when 7 is the average ranking?"
} |
### QUESTION
Name the points won for 1230
### CONTEXT
CREATE TABLE table_23501776_16 (points VARCHAR)
### ANSWER
SELECT points AS won FROM table_23501776_16 WHERE points = 1230</s> | {
"answer": "SELECT points AS won FROM table_23501776_16 WHERE points = 1230",
"context": "CREATE TABLE table_23501776_16 (points VARCHAR)",
"question": "Name the points won for 1230"
} |
### QUESTION
how many times is the name Derek Smith when the round is higher than 3?
### CONTEXT
CREATE TABLE table_name_63 (overall VARCHAR, name VARCHAR, round VARCHAR)
### ANSWER
SELECT COUNT(overall) FROM table_name_63 WHERE name = "derek smith" AND round > 3</s> | {
"answer": "SELECT COUNT(overall) FROM table_name_63 WHERE name = \"derek smith\" AND round > 3",
"context": "CREATE TABLE table_name_63 (overall VARCHAR, name VARCHAR, round VARCHAR)",
"question": "how many times is the name Derek Smith when the round is higher than 3?"
} |
### QUESTION
What country has the order number 711871-711880?
### CONTEXT
CREATE TABLE table_2351952_1 (country VARCHAR, order_number VARCHAR)
### ANSWER
SELECT country FROM table_2351952_1 WHERE order_number = "711871-711880"</s> | {
"answer": "SELECT country FROM table_2351952_1 WHERE order_number = \"711871-711880\"",
"context": "CREATE TABLE table_2351952_1 (country VARCHAR, order_number VARCHAR)",
"question": "What country has the order number 711871-711880?"
} |
### QUESTION
What is Date, when Opponents In The Final, is Maria-Fernanda Alves Stéphanie Dubois?
### CONTEXT
CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR)
### ANSWER
SELECT date FROM table_name_59 WHERE opponents_in_the_final = "maria-fernanda alves stéphanie dubois"</s> | {
"answer": "SELECT date FROM table_name_59 WHERE opponents_in_the_final = \"maria-fernanda alves stéphanie dubois\"",
"context": "CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR)",
"question": "What is Date, when Opponents In The Final, is Maria-Fernanda Alves Stéphanie Dubois?"
} |
### QUESTION
what is the technology when the gel pouring is no and the analysis time is 8 days?
### CONTEXT
CREATE TABLE table_name_88 (technology VARCHAR, gel_pouring VARCHAR, analysis_time VARCHAR)
### ANSWER
SELECT technology FROM table_name_88 WHERE gel_pouring = "no" AND analysis_time = "8 days"</s> | {
"answer": "SELECT technology FROM table_name_88 WHERE gel_pouring = \"no\" AND analysis_time = \"8 days\"",
"context": "CREATE TABLE table_name_88 (technology VARCHAR, gel_pouring VARCHAR, analysis_time VARCHAR)",
"question": "what is the technology when the gel pouring is no and the analysis time is 8 days?"
} |
### QUESTION
How many assists per game in the tournament 2010 fiba world championship?
### CONTEXT
CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, tournament VARCHAR)
### ANSWER
SELECT assists_per_game FROM table_2387461_1 WHERE tournament = "2010 FIBA World Championship"</s> | {
"answer": "SELECT assists_per_game FROM table_2387461_1 WHERE tournament = \"2010 FIBA World Championship\"",
"context": "CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, tournament VARCHAR)",
"question": "How many assists per game in the tournament 2010 fiba world championship?"
} |
### QUESTION
What position did he finish in 1987?
### CONTEXT
CREATE TABLE table_2387790_2 (position VARCHAR, year VARCHAR)
### ANSWER
SELECT position FROM table_2387790_2 WHERE year = 1987</s> | {
"answer": "SELECT position FROM table_2387790_2 WHERE year = 1987",
"context": "CREATE TABLE table_2387790_2 (position VARCHAR, year VARCHAR)",
"question": "What position did he finish in 1987?"
} |
### QUESTION
What team was Bodine in when he had an average finish of 8.3?
### CONTEXT
CREATE TABLE table_2387790_2 (team_s_ VARCHAR, avg_finish VARCHAR)
### ANSWER
SELECT team_s_ FROM table_2387790_2 WHERE avg_finish = "8.3"</s> | {
"answer": "SELECT team_s_ FROM table_2387790_2 WHERE avg_finish = \"8.3\"",
"context": "CREATE TABLE table_2387790_2 (team_s_ VARCHAR, avg_finish VARCHAR)",
"question": "What team was Bodine in when he had an average finish of 8.3?"
} |
### QUESTION
What was the moving that has a free transfer fee, and the nationality of CYP, and winter as the transfer window?
### CONTEXT
CREATE TABLE table_name_12 (moving_to VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR, nat VARCHAR)
### ANSWER
SELECT moving_to FROM table_name_12 WHERE transfer_fee = "free" AND nat = "cyp" AND transfer_window = "winter"</s> | {
"answer": "SELECT moving_to FROM table_name_12 WHERE transfer_fee = \"free\" AND nat = \"cyp\" AND transfer_window = \"winter\"",
"context": "CREATE TABLE table_name_12 (moving_to VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR, nat VARCHAR)",
"question": "What was the moving that has a free transfer fee, and the nationality of CYP, and winter as the transfer window?"
} |
### QUESTION
What was the transfer fee when winter was the transfer window?
### CONTEXT
CREATE TABLE table_name_1 (transfer_fee VARCHAR, transfer_window VARCHAR)
### ANSWER
SELECT transfer_fee FROM table_name_1 WHERE transfer_window = "winter"</s> | {
"answer": "SELECT transfer_fee FROM table_name_1 WHERE transfer_window = \"winter\"",
"context": "CREATE TABLE table_name_1 (transfer_fee VARCHAR, transfer_window VARCHAR)",
"question": "What was the transfer fee when winter was the transfer window?"
} |
### QUESTION
Name the number for service dates for hoosier energy for petersburg
### CONTEXT
CREATE TABLE table_23958917_1 (in_service_dates VARCHAR, owner_s___2009_ VARCHAR, location VARCHAR)
### ANSWER
SELECT COUNT(in_service_dates) FROM table_23958917_1 WHERE owner_s___2009_ = "Hoosier Energy" AND location = "Petersburg"</s> | {
"answer": "SELECT COUNT(in_service_dates) FROM table_23958917_1 WHERE owner_s___2009_ = \"Hoosier Energy\" AND location = \"Petersburg\"",
"context": "CREATE TABLE table_23958917_1 (in_service_dates VARCHAR, owner_s___2009_ VARCHAR, location VARCHAR)",
"question": "Name the number for service dates for hoosier energy for petersburg"
} |
### QUESTION
What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals?
### CONTEXT
CREATE TABLE table_name_65 (rank INTEGER, gold VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(rank) FROM table_name_65 WHERE gold > 1 AND total > 4</s> | {
"answer": "SELECT SUM(rank) FROM table_name_65 WHERE gold > 1 AND total > 4",
"context": "CREATE TABLE table_name_65 (rank INTEGER, gold VARCHAR, total VARCHAR)",
"question": "What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals?"
} |
### QUESTION
List the number of cores for ddr3-1333 with frequencies between 2.66-2.8ghz.
### CONTEXT
CREATE TABLE table_24018112_1 (cores_threads VARCHAR, max_memory_speed VARCHAR, frequency VARCHAR)
### ANSWER
SELECT cores_threads FROM table_24018112_1 WHERE max_memory_speed = "DDR3-1333" AND frequency = "2.66-2.8GHz"</s> | {
"answer": "SELECT cores_threads FROM table_24018112_1 WHERE max_memory_speed = \"DDR3-1333\" AND frequency = \"2.66-2.8GHz\"",
"context": "CREATE TABLE table_24018112_1 (cores_threads VARCHAR, max_memory_speed VARCHAR, frequency VARCHAR)",
"question": "List the number of cores for ddr3-1333 with frequencies between 2.66-2.8ghz."
} |
### QUESTION
What's percentage voted for Busg in the county where Kerry got 37.6%?
### CONTEXT
CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, kerry_percentage VARCHAR)
### ANSWER
SELECT bush_percentage FROM table_2401326_1 WHERE kerry_percentage = "37.6%"</s> | {
"answer": "SELECT bush_percentage FROM table_2401326_1 WHERE kerry_percentage = \"37.6%\"",
"context": "CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, kerry_percentage VARCHAR)",
"question": "What's percentage voted for Busg in the county where Kerry got 37.6%?"
} |
### QUESTION
When steve mcclaren is the replacer what is the manner of departure?
### CONTEXT
CREATE TABLE table_24162080_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT manner_of_departure FROM table_24162080_3 WHERE replaced_by = "Steve McClaren"</s> | {
"answer": "SELECT manner_of_departure FROM table_24162080_3 WHERE replaced_by = \"Steve McClaren\"",
"context": "CREATE TABLE table_24162080_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)",
"question": "When steve mcclaren is the replacer what is the manner of departure?"
} |
### QUESTION
Which city has most number of departing flights?
### CONTEXT
CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR); CREATE TABLE FLIGHTS (SourceAirport VARCHAR)
### ANSWER
SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1</s> | {
"answer": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1",
"context": "CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR); CREATE TABLE FLIGHTS (SourceAirport VARCHAR)",
"question": "Which city has most number of departing flights?"
} |
### QUESTION
Who was the supporting actress in "For Whom the Bell Tolls"?
### CONTEXT
CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, film VARCHAR)
### ANSWER
SELECT supporting_actress FROM table_24225238_1 WHERE film = "For Whom the Bell Tolls"</s> | {
"answer": "SELECT supporting_actress FROM table_24225238_1 WHERE film = \"For Whom the Bell Tolls\"",
"context": "CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, film VARCHAR)",
"question": "Who was the supporting actress in \"For Whom the Bell Tolls\"?"
} |
### QUESTION
What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?
### CONTEXT
CREATE TABLE table_name_99 (w_plyf INTEGER, w_l_percentage VARCHAR, first_yr VARCHAR, g_plyf VARCHAR, g_ VARCHAR, _500 VARCHAR)
### ANSWER
SELECT MAX(w_plyf) FROM table_name_99 WHERE first_yr < 1960 AND g_plyf > 0 AND g_ > _500 < 43 AND w_l_percentage < 0.578</s> | {
"answer": "SELECT MAX(w_plyf) FROM table_name_99 WHERE first_yr < 1960 AND g_plyf > 0 AND g_ > _500 < 43 AND w_l_percentage < 0.578",
"context": "CREATE TABLE table_name_99 (w_plyf INTEGER, w_l_percentage VARCHAR, first_yr VARCHAR, g_plyf VARCHAR, g_ VARCHAR, _500 VARCHAR)",
"question": "What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?"
} |
### QUESTION
How many millions of people in the US watched when Kevin Bray was director?
### CONTEXT
CREATE TABLE table_24319661_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT us_viewers__million_ FROM table_24319661_3 WHERE directed_by = "Kevin Bray"</s> | {
"answer": "SELECT us_viewers__million_ FROM table_24319661_3 WHERE directed_by = \"Kevin Bray\"",
"context": "CREATE TABLE table_24319661_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR)",
"question": "How many millions of people in the US watched when Kevin Bray was director?"
} |
### QUESTION
What is High Points, when Game is less than 82, when Location Attendance is "Quicken Loans Arena 20,562", and when High Rebounds is "Žydrūnas Ilgauskas (13)"?
### CONTEXT
CREATE TABLE table_name_19 (high_points VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT high_points FROM table_name_19 WHERE game < 82 AND location_attendance = "quicken loans arena 20,562" AND high_rebounds = "žydrūnas ilgauskas (13)"</s> | {
"answer": "SELECT high_points FROM table_name_19 WHERE game < 82 AND location_attendance = \"quicken loans arena 20,562\" AND high_rebounds = \"žydrūnas ilgauskas (13)\"",
"context": "CREATE TABLE table_name_19 (high_points VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR)",
"question": "What is High Points, when Game is less than 82, when Location Attendance is \"Quicken Loans Arena 20,562\", and when High Rebounds is \"Žydrūnas Ilgauskas (13)\"?"
} |
### QUESTION
What is the lowest Game, when High Assists is "Maurice Williams (8)"?
### CONTEXT
CREATE TABLE table_name_11 (game INTEGER, high_assists VARCHAR)
### ANSWER
SELECT MIN(game) FROM table_name_11 WHERE high_assists = "maurice williams (8)"</s> | {
"answer": "SELECT MIN(game) FROM table_name_11 WHERE high_assists = \"maurice williams (8)\"",
"context": "CREATE TABLE table_name_11 (game INTEGER, high_assists VARCHAR)",
"question": "What is the lowest Game, when High Assists is \"Maurice Williams (8)\"?"
} |
### QUESTION
What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?
### CONTEXT
CREATE TABLE table_name_40 (date VARCHAR, team VARCHAR, circuit VARCHAR)
### ANSWER
SELECT date FROM table_name_40 WHERE team = "holden racing team" AND circuit = "eastern creek raceway"</s> | {
"answer": "SELECT date FROM table_name_40 WHERE team = \"holden racing team\" AND circuit = \"eastern creek raceway\"",
"context": "CREATE TABLE table_name_40 (date VARCHAR, team VARCHAR, circuit VARCHAR)",
"question": "What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?"
} |
Subsets and Splits