text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is the earliest year of Valdimir Poelnikov, who has a final position-tour bigger than 72, a final position-vuelta less than 77, and a final position-giro less than 57?
### CONTEXT
CREATE TABLE table_name_67 (year INTEGER, rider VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_67 WHERE final_position___tour > 72 AND final_position___vuelta < 77 AND final_position___giro < 57 AND rider = "valdimir poelnikov"</s> | {
"answer": "SELECT MIN(year) FROM table_name_67 WHERE final_position___tour > 72 AND final_position___vuelta < 77 AND final_position___giro < 57 AND rider = \"valdimir poelnikov\"",
"context": "CREATE TABLE table_name_67 (year INTEGER, rider VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)",
"question": "What is the earliest year of Valdimir Poelnikov, who has a final position-tour bigger than 72, a final position-vuelta less than 77, and a final position-giro less than 57?"
} |
### QUESTION
What year was the rider with a final position-tour of 88 and less than 11 final position-giros?
### CONTEXT
CREATE TABLE table_name_29 (year INTEGER, final_position___tour VARCHAR, final_position___giro VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_29 WHERE final_position___tour = 88 AND final_position___giro < 11</s> | {
"answer": "SELECT SUM(year) FROM table_name_29 WHERE final_position___tour = 88 AND final_position___giro < 11",
"context": "CREATE TABLE table_name_29 (year INTEGER, final_position___tour VARCHAR, final_position___giro VARCHAR)",
"question": "What year was the rider with a final position-tour of 88 and less than 11 final position-giros?"
} |
### QUESTION
What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?
### CONTEXT
CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR)
### ANSWER
SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85</s> | {
"answer": "SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85",
"context": "CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR)",
"question": "What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?"
} |
### QUESTION
What was the highest attendance when the opponent was the Indians and the record was 13-4?
### CONTEXT
CREATE TABLE table_name_99 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
### ANSWER
SELECT MAX(attendance) FROM table_name_99 WHERE opponent = "indians" AND record = "13-4"</s> | {
"answer": "SELECT MAX(attendance) FROM table_name_99 WHERE opponent = \"indians\" AND record = \"13-4\"",
"context": "CREATE TABLE table_name_99 (attendance INTEGER, opponent VARCHAR, record VARCHAR)",
"question": "What was the highest attendance when the opponent was the Indians and the record was 13-4?"
} |
### QUESTION
What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?
### CONTEXT
CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)
### ANSWER
SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8</s> | {
"answer": "SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = \"alessandria\" AND density__inhabitants_km_2__ < 461.8",
"context": "CREATE TABLE table_name_37 (population INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR, city VARCHAR)",
"question": "What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?"
} |
### QUESTION
What is the Entered service date of the T413?
### CONTEXT
CREATE TABLE table_name_32 (entered_service VARCHAR, delivered_as VARCHAR)
### ANSWER
SELECT entered_service FROM table_name_32 WHERE delivered_as = "t413"</s> | {
"answer": "SELECT entered_service FROM table_name_32 WHERE delivered_as = \"t413\"",
"context": "CREATE TABLE table_name_32 (entered_service VARCHAR, delivered_as VARCHAR)",
"question": "What is the Entered service date of the T413?"
} |
### QUESTION
What album has the title I Need A Life with the label of warp records / paper bag records?
### CONTEXT
CREATE TABLE table_name_18 (album VARCHAR, label VARCHAR, title VARCHAR)
### ANSWER
SELECT album FROM table_name_18 WHERE label = "warp records / paper bag records" AND title = "i need a life"</s> | {
"answer": "SELECT album FROM table_name_18 WHERE label = \"warp records / paper bag records\" AND title = \"i need a life\"",
"context": "CREATE TABLE table_name_18 (album VARCHAR, label VARCHAR, title VARCHAR)",
"question": "What album has the title I Need A Life with the label of warp records / paper bag records?"
} |
### QUESTION
Record of 11-10-3 is what sum of game #?
### CONTEXT
CREATE TABLE table_name_57 (game__number INTEGER, record VARCHAR)
### ANSWER
SELECT SUM(game__number) FROM table_name_57 WHERE record = "11-10-3"</s> | {
"answer": "SELECT SUM(game__number) FROM table_name_57 WHERE record = \"11-10-3\"",
"context": "CREATE TABLE table_name_57 (game__number INTEGER, record VARCHAR)",
"question": "Record of 11-10-3 is what sum of game #?"
} |
### QUESTION
With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?
### CONTEXT
CREATE TABLE table_name_51 (high_estimate INTEGER, low_estimate VARCHAR, type VARCHAR, location VARCHAR)
### ANSWER
SELECT SUM(high_estimate) FROM table_name_51 WHERE type = "mass suicide" AND location = "france" AND low_estimate > 16</s> | {
"answer": "SELECT SUM(high_estimate) FROM table_name_51 WHERE type = \"mass suicide\" AND location = \"france\" AND low_estimate > 16",
"context": "CREATE TABLE table_name_51 (high_estimate INTEGER, low_estimate VARCHAR, type VARCHAR, location VARCHAR)",
"question": "With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?"
} |
### QUESTION
Who was the director of Battalion Wars 2 which was released on GCN after 2004?
### CONTEXT
CREATE TABLE table_name_72 (director VARCHAR, title VARCHAR, platform_s_ VARCHAR, year VARCHAR)
### ANSWER
SELECT director FROM table_name_72 WHERE platform_s_ = "gcn" AND year > 2004 AND title = "battalion wars 2"</s> | {
"answer": "SELECT director FROM table_name_72 WHERE platform_s_ = \"gcn\" AND year > 2004 AND title = \"battalion wars 2\"",
"context": "CREATE TABLE table_name_72 (director VARCHAR, title VARCHAR, platform_s_ VARCHAR, year VARCHAR)",
"question": "Who was the director of Battalion Wars 2 which was released on GCN after 2004?"
} |
### QUESTION
What year was Metroid Prime Hunters 5 released?
### CONTEXT
CREATE TABLE table_name_7 (year INTEGER, title VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_7 WHERE title = "metroid prime hunters 5"</s> | {
"answer": "SELECT SUM(year) FROM table_name_7 WHERE title = \"metroid prime hunters 5\"",
"context": "CREATE TABLE table_name_7 (year INTEGER, title VARCHAR)",
"question": "What year was Metroid Prime Hunters 5 released?"
} |
### QUESTION
What 3ds game did Naohiko Aoyama direct?
### CONTEXT
CREATE TABLE table_name_72 (title VARCHAR, platform_s_ VARCHAR, director VARCHAR)
### ANSWER
SELECT title FROM table_name_72 WHERE platform_s_ = "3ds" AND director = "naohiko aoyama"</s> | {
"answer": "SELECT title FROM table_name_72 WHERE platform_s_ = \"3ds\" AND director = \"naohiko aoyama\"",
"context": "CREATE TABLE table_name_72 (title VARCHAR, platform_s_ VARCHAR, director VARCHAR)",
"question": "What 3ds game did Naohiko Aoyama direct?"
} |
### QUESTION
What is the Catalog number in the Region of France?
### CONTEXT
CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR)
### ANSWER
SELECT catalog FROM table_name_42 WHERE region = "france"</s> | {
"answer": "SELECT catalog FROM table_name_42 WHERE region = \"france\"",
"context": "CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR)",
"question": "What is the Catalog number in the Region of France?"
} |
### QUESTION
What is the cardinal direction of Wednesday p.m. in English?
### CONTEXT
CREATE TABLE table_name_90 (cardinal_direction VARCHAR, english VARCHAR)
### ANSWER
SELECT cardinal_direction FROM table_name_90 WHERE english = "wednesday p.m."</s> | {
"answer": "SELECT cardinal_direction FROM table_name_90 WHERE english = \"wednesday p.m.\"",
"context": "CREATE TABLE table_name_90 (cardinal_direction VARCHAR, english VARCHAR)",
"question": "What is the cardinal direction of Wednesday p.m. in English?"
} |
### QUESTION
How many seasons did Charles C. Farrell coach?
### CONTEXT
CREATE TABLE table_name_56 (seasons VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(seasons) FROM table_name_56 WHERE name = "charles c. farrell"</s> | {
"answer": "SELECT COUNT(seasons) FROM table_name_56 WHERE name = \"charles c. farrell\"",
"context": "CREATE TABLE table_name_56 (seasons VARCHAR, name VARCHAR)",
"question": "How many seasons did Charles C. Farrell coach?"
} |
### QUESTION
How many new entries are there for a second phase that has 4 winners from previous rounds?
### CONTEXT
CREATE TABLE table_name_71 (new_entries_this_round VARCHAR, phase VARCHAR, winners_from_previous_round VARCHAR)
### ANSWER
SELECT new_entries_this_round FROM table_name_71 WHERE phase = "second phase" AND winners_from_previous_round = "4"</s> | {
"answer": "SELECT new_entries_this_round FROM table_name_71 WHERE phase = \"second phase\" AND winners_from_previous_round = \"4\"",
"context": "CREATE TABLE table_name_71 (new_entries_this_round VARCHAR, phase VARCHAR, winners_from_previous_round VARCHAR)",
"question": "How many new entries are there for a second phase that has 4 winners from previous rounds?"
} |
### QUESTION
Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981?
### CONTEXT
CREATE TABLE table_name_19 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
### ANSWER
SELECT winning_score FROM table_name_19 WHERE margin_of_victory = "1 stroke" AND date = "21 jun 1981"</s> | {
"answer": "SELECT winning_score FROM table_name_19 WHERE margin_of_victory = \"1 stroke\" AND date = \"21 jun 1981\"",
"context": "CREATE TABLE table_name_19 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR)",
"question": "Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981?"
} |
### QUESTION
How many points drew 2 with a losing bonus of 5?
### CONTEXT
CREATE TABLE table_name_12 (points_for VARCHAR, drawn VARCHAR, losing_bonus VARCHAR)
### ANSWER
SELECT points_for FROM table_name_12 WHERE drawn = "2" AND losing_bonus = "5"</s> | {
"answer": "SELECT points_for FROM table_name_12 WHERE drawn = \"2\" AND losing_bonus = \"5\"",
"context": "CREATE TABLE table_name_12 (points_for VARCHAR, drawn VARCHAR, losing_bonus VARCHAR)",
"question": "How many points drew 2 with a losing bonus of 5?"
} |
### QUESTION
What segment A is associated with a Segment D of manual motorcycle transmissions?
### CONTEXT
CREATE TABLE table_name_76 (segment_a VARCHAR, segment_d VARCHAR)
### ANSWER
SELECT segment_a FROM table_name_76 WHERE segment_d = "manual motorcycle transmissions"</s> | {
"answer": "SELECT segment_a FROM table_name_76 WHERE segment_d = \"manual motorcycle transmissions\"",
"context": "CREATE TABLE table_name_76 (segment_a VARCHAR, segment_d VARCHAR)",
"question": "What segment A is associated with a Segment D of manual motorcycle transmissions?"
} |
### QUESTION
What was the outcome from the 2009 match in the final against Chong Wei Feng?
### CONTEXT
CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_final VARCHAR)
### ANSWER
SELECT outcome FROM table_name_44 WHERE year = 2009 AND opponent_in_final = "chong wei feng"</s> | {
"answer": "SELECT outcome FROM table_name_44 WHERE year = 2009 AND opponent_in_final = \"chong wei feng\"",
"context": "CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_final VARCHAR)",
"question": "What was the outcome from the 2009 match in the final against Chong Wei Feng?"
} |
### QUESTION
Which races have points greater than 123, fernando alonso as the driver and a percentage of possible points of 74.44%?
### CONTEXT
CREATE TABLE table_name_77 (races VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, driver VARCHAR)
### ANSWER
SELECT races FROM table_name_77 WHERE points > 123 AND driver = "fernando alonso" AND percentage_of_possible_points = "74.44%"</s> | {
"answer": "SELECT races FROM table_name_77 WHERE points > 123 AND driver = \"fernando alonso\" AND percentage_of_possible_points = \"74.44%\"",
"context": "CREATE TABLE table_name_77 (races VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, driver VARCHAR)",
"question": "Which races have points greater than 123, fernando alonso as the driver and a percentage of possible points of 74.44%?"
} |
### QUESTION
How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?
### CONTEXT
CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR)
### ANSWER
SELECT SUM(season) FROM table_name_31 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "64.12%" AND points < 109</s> | {
"answer": "SELECT SUM(season) FROM table_name_31 WHERE driver = \"fernando alonso\" AND percentage_of_possible_points = \"64.12%\" AND points < 109",
"context": "CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR)",
"question": "How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?"
} |
### QUESTION
Which album is the royal g's club mix version, which is remixed by royal garden sound, from?
### CONTEXT
CREATE TABLE table_name_20 (album VARCHAR, remixed_by VARCHAR, version VARCHAR)
### ANSWER
SELECT album FROM table_name_20 WHERE remixed_by = "royal garden sound" AND version = "royal g's club mix"</s> | {
"answer": "SELECT album FROM table_name_20 WHERE remixed_by = \"royal garden sound\" AND version = \"royal g's club mix\"",
"context": "CREATE TABLE table_name_20 (album VARCHAR, remixed_by VARCHAR, version VARCHAR)",
"question": "Which album is the royal g's club mix version, which is remixed by royal garden sound, from?"
} |
### QUESTION
How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent?
### CONTEXT
CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)
### ANSWER
SELECT attendance FROM table_name_78 WHERE game_site = "griffith stadium" AND opponent = "philadelphia eagles"</s> | {
"answer": "SELECT attendance FROM table_name_78 WHERE game_site = \"griffith stadium\" AND opponent = \"philadelphia eagles\"",
"context": "CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)",
"question": "How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent?"
} |
### QUESTION
Name the 2012 for us open
### CONTEXT
CREATE TABLE table_name_55 (tournament VARCHAR)
### ANSWER
SELECT 2012 FROM table_name_55 WHERE tournament = "us open"</s> | {
"answer": "SELECT 2012 FROM table_name_55 WHERE tournament = \"us open\"",
"context": "CREATE TABLE table_name_55 (tournament VARCHAR)",
"question": "Name the 2012 for us open"
} |
### QUESTION
Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?
### CONTEXT
CREATE TABLE table_name_34 (best INTEGER, qual_2 VARCHAR, team VARCHAR, name VARCHAR)
### ANSWER
SELECT MIN(best) FROM table_name_34 WHERE team = "n/h/l racing" AND name = "graham rahal" AND qual_2 > 59.384</s> | {
"answer": "SELECT MIN(best) FROM table_name_34 WHERE team = \"n/h/l racing\" AND name = \"graham rahal\" AND qual_2 > 59.384",
"context": "CREATE TABLE table_name_34 (best INTEGER, qual_2 VARCHAR, team VARCHAR, name VARCHAR)",
"question": "Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?"
} |
### QUESTION
What is the molecular target of bacterium?
### CONTEXT
CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_α VARCHAR)
### ANSWER
SELECT molecular_target FROM table_name_10 WHERE marine_organism_α = "bacterium"</s> | {
"answer": "SELECT molecular_target FROM table_name_10 WHERE marine_organism_α = \"bacterium\"",
"context": "CREATE TABLE table_name_10 (molecular_target VARCHAR, marine_organism_α VARCHAR)",
"question": "What is the molecular target of bacterium?"
} |
### QUESTION
For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ?
### CONTEXT
CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team VARCHAR)
### ANSWER
SELECT tie_no FROM table_name_5 WHERE attendance = "2 january 1999" AND home_team = "plymouth argyle"</s> | {
"answer": "SELECT tie_no FROM table_name_5 WHERE attendance = \"2 january 1999\" AND home_team = \"plymouth argyle\"",
"context": "CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team VARCHAR)",
"question": "For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ?"
} |
### QUESTION
What is the local mission that has ambassador as the local position, and a mission of suriname?
### CONTEXT
CREATE TABLE table_name_13 (Local VARCHAR, local_position VARCHAR, mission VARCHAR)
### ANSWER
SELECT Local AS mission FROM table_name_13 WHERE local_position = "ambassador" AND mission = "suriname"</s> | {
"answer": "SELECT Local AS mission FROM table_name_13 WHERE local_position = \"ambassador\" AND mission = \"suriname\"",
"context": "CREATE TABLE table_name_13 (Local VARCHAR, local_position VARCHAR, mission VARCHAR)",
"question": "What is the local mission that has ambassador as the local position, and a mission of suriname?"
} |
### QUESTION
What is the local mission that has none as a local location, high commissioner as a local position, fiji as a resident county, and a mission of tonga?
### CONTEXT
CREATE TABLE table_name_41 (Local VARCHAR, mission VARCHAR, resident_country VARCHAR, local_location VARCHAR, local_position VARCHAR)
### ANSWER
SELECT Local AS mission FROM table_name_41 WHERE local_location = "none" AND local_position = "high commissioner" AND resident_country = "fiji" AND mission = "tonga"</s> | {
"answer": "SELECT Local AS mission FROM table_name_41 WHERE local_location = \"none\" AND local_position = \"high commissioner\" AND resident_country = \"fiji\" AND mission = \"tonga\"",
"context": "CREATE TABLE table_name_41 (Local VARCHAR, mission VARCHAR, resident_country VARCHAR, local_location VARCHAR, local_position VARCHAR)",
"question": "What is the local mission that has none as a local location, high commissioner as a local position, fiji as a resident county, and a mission of tonga?"
} |
### QUESTION
What venue hsoted the european cross country championships with a notes of junior men individual 6.595km?
### CONTEXT
CREATE TABLE table_name_20 (venue VARCHAR, competition VARCHAR, notes VARCHAR)
### ANSWER
SELECT venue FROM table_name_20 WHERE competition = "european cross country championships" AND notes = "junior men individual 6.595km"</s> | {
"answer": "SELECT venue FROM table_name_20 WHERE competition = \"european cross country championships\" AND notes = \"junior men individual 6.595km\"",
"context": "CREATE TABLE table_name_20 (venue VARCHAR, competition VARCHAR, notes VARCHAR)",
"question": "What venue hsoted the european cross country championships with a notes of junior men individual 6.595km?"
} |
### QUESTION
What position did the person finish in with a notes of junior men individual 5.64km?
### CONTEXT
CREATE TABLE table_name_95 (position VARCHAR, notes VARCHAR)
### ANSWER
SELECT position FROM table_name_95 WHERE notes = "junior men individual 5.64km"</s> | {
"answer": "SELECT position FROM table_name_95 WHERE notes = \"junior men individual 5.64km\"",
"context": "CREATE TABLE table_name_95 (position VARCHAR, notes VARCHAR)",
"question": "What position did the person finish in with a notes of junior men individual 5.64km?"
} |
### QUESTION
Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia?
### CONTEXT
CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR)
### ANSWER
SELECT MAX(total) FROM table_name_29 WHERE gold = 1 AND nation = "czechoslovakia"</s> | {
"answer": "SELECT MAX(total) FROM table_name_29 WHERE gold = 1 AND nation = \"czechoslovakia\"",
"context": "CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR)",
"question": "Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia?"
} |
### QUESTION
What is the total number of weeks with a game at the Milwaukee County Stadium attended by 47,897?
### CONTEXT
CREATE TABLE table_name_79 (week VARCHAR, venue VARCHAR, attendance VARCHAR)
### ANSWER
SELECT COUNT(week) FROM table_name_79 WHERE venue = "milwaukee county stadium" AND attendance = 47 OFFSET 897</s> | {
"answer": "SELECT COUNT(week) FROM table_name_79 WHERE venue = \"milwaukee county stadium\" AND attendance = 47 OFFSET 897",
"context": "CREATE TABLE table_name_79 (week VARCHAR, venue VARCHAR, attendance VARCHAR)",
"question": "What is the total number of weeks with a game at the Milwaukee County Stadium attended by 47,897?"
} |
### QUESTION
What is the alignment that predicts an alignment of the linuxbinary link?
### CONTEXT
CREATE TABLE table_name_27 (_ VARCHAR, alignment_alignment VARCHAR, link VARCHAR)
### ANSWER
SELECT alignment_alignment AS :_predicts_an_alignment_, _ FROM table_name_27 WHERE link = "linuxbinary"</s> | {
"answer": "SELECT alignment_alignment AS :_predicts_an_alignment_, _ FROM table_name_27 WHERE link = \"linuxbinary\"",
"context": "CREATE TABLE table_name_27 (_ VARCHAR, alignment_alignment VARCHAR, link VARCHAR)",
"question": "What is the alignment that predicts an alignment of the linuxbinary link?"
} |
### QUESTION
What is the maximum capacity of the San Agustin Gym?
### CONTEXT
CREATE TABLE table_name_91 (maximum_seating_capacity VARCHAR, arena_venue VARCHAR)
### ANSWER
SELECT maximum_seating_capacity FROM table_name_91 WHERE arena_venue = "san agustin gym"</s> | {
"answer": "SELECT maximum_seating_capacity FROM table_name_91 WHERE arena_venue = \"san agustin gym\"",
"context": "CREATE TABLE table_name_91 (maximum_seating_capacity VARCHAR, arena_venue VARCHAR)",
"question": "What is the maximum capacity of the San Agustin Gym?"
} |
### QUESTION
Where is the Holy Cross of Davao College campus located?
### CONTEXT
CREATE TABLE table_name_42 (province_region VARCHAR, home_campus VARCHAR)
### ANSWER
SELECT province_region FROM table_name_42 WHERE home_campus = "holy cross of davao college"</s> | {
"answer": "SELECT province_region FROM table_name_42 WHERE home_campus = \"holy cross of davao college\"",
"context": "CREATE TABLE table_name_42 (province_region VARCHAR, home_campus VARCHAR)",
"question": "Where is the Holy Cross of Davao College campus located?"
} |
### QUESTION
What is the highest total with a t12 finish?
### CONTEXT
CREATE TABLE table_name_61 (total INTEGER, finish VARCHAR)
### ANSWER
SELECT MAX(total) FROM table_name_61 WHERE finish = "t12"</s> | {
"answer": "SELECT MAX(total) FROM table_name_61 WHERE finish = \"t12\"",
"context": "CREATE TABLE table_name_61 (total INTEGER, finish VARCHAR)",
"question": "What is the highest total with a t12 finish?"
} |
### QUESTION
Which 2008 has a 2009 of A, and a Tournament of cincinnati masters?
### CONTEXT
CREATE TABLE table_name_39 (tournament VARCHAR)
### ANSWER
SELECT 2008 FROM table_name_39 WHERE 2009 = "a" AND tournament = "cincinnati masters"</s> | {
"answer": "SELECT 2008 FROM table_name_39 WHERE 2009 = \"a\" AND tournament = \"cincinnati masters\"",
"context": "CREATE TABLE table_name_39 (tournament VARCHAR)",
"question": "Which 2008 has a 2009 of A, and a Tournament of cincinnati masters?"
} |
### QUESTION
What is the mean round number for center position when the pick number is less than 23?
### CONTEXT
CREATE TABLE table_name_39 (round INTEGER, position VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT AVG(round) FROM table_name_39 WHERE position = "center" AND pick__number < 23</s> | {
"answer": "SELECT AVG(round) FROM table_name_39 WHERE position = \"center\" AND pick__number < 23",
"context": "CREATE TABLE table_name_39 (round INTEGER, position VARCHAR, pick__number VARCHAR)",
"question": "What is the mean round number for center position when the pick number is less than 23?"
} |
### QUESTION
What are the average points for the Project Indy team that has the Ford xb engine?
### CONTEXT
CREATE TABLE table_name_42 (points INTEGER, engine VARCHAR, team VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_42 WHERE engine = "ford xb" AND team = "project indy"</s> | {
"answer": "SELECT AVG(points) FROM table_name_42 WHERE engine = \"ford xb\" AND team = \"project indy\"",
"context": "CREATE TABLE table_name_42 (points INTEGER, engine VARCHAR, team VARCHAR)",
"question": "What are the average points for the Project Indy team that has the Ford xb engine?"
} |
### QUESTION
How much Area (km 2) has a Common of collegno, and a Population smaller than 50137?
### CONTEXT
CREATE TABLE table_name_60 (area__km_2__ VARCHAR, common_of VARCHAR, population VARCHAR)
### ANSWER
SELECT COUNT(area__km_2__) FROM table_name_60 WHERE common_of = "collegno" AND population < 50137</s> | {
"answer": "SELECT COUNT(area__km_2__) FROM table_name_60 WHERE common_of = \"collegno\" AND population < 50137",
"context": "CREATE TABLE table_name_60 (area__km_2__ VARCHAR, common_of VARCHAR, population VARCHAR)",
"question": "How much Area (km 2) has a Common of collegno, and a Population smaller than 50137?"
} |
### QUESTION
Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?
### CONTEXT
CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)
### ANSWER
SELECT MAX(population) FROM table_name_19 WHERE altitude__mslm_ < 229 AND area__km_2__ > 32.7</s> | {
"answer": "SELECT MAX(population) FROM table_name_19 WHERE altitude__mslm_ < 229 AND area__km_2__ > 32.7",
"context": "CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)",
"question": "Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?"
} |
### QUESTION
What is the total number for grid with a Suzuki GSX-R1000 K7 for +13.283?
### CONTEXT
CREATE TABLE table_name_35 (grid VARCHAR, bike VARCHAR, time VARCHAR)
### ANSWER
SELECT COUNT(grid) FROM table_name_35 WHERE bike = "suzuki gsx-r1000 k7" AND time = "+13.283"</s> | {
"answer": "SELECT COUNT(grid) FROM table_name_35 WHERE bike = \"suzuki gsx-r1000 k7\" AND time = \"+13.283\"",
"context": "CREATE TABLE table_name_35 (grid VARCHAR, bike VARCHAR, time VARCHAR)",
"question": "What is the total number for grid with a Suzuki GSX-R1000 K7 for +13.283?"
} |
### QUESTION
What was the name for the race in the Miramas circuit?
### CONTEXT
CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR)
### ANSWER
SELECT name FROM table_name_31 WHERE circuit = "miramas"</s> | {
"answer": "SELECT name FROM table_name_31 WHERE circuit = \"miramas\"",
"context": "CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR)",
"question": "What was the name for the race in the Miramas circuit?"
} |
### QUESTION
In what year did Aslan receive a Lifetime Achievement Award and Snow Patrol perform?
### CONTEXT
CREATE TABLE table_name_56 (year VARCHAR, band VARCHAR, lifetime_achievement_award VARCHAR)
### ANSWER
SELECT year FROM table_name_56 WHERE band = "snow patrol" AND lifetime_achievement_award = "aslan"</s> | {
"answer": "SELECT year FROM table_name_56 WHERE band = \"snow patrol\" AND lifetime_achievement_award = \"aslan\"",
"context": "CREATE TABLE table_name_56 (year VARCHAR, band VARCHAR, lifetime_achievement_award VARCHAR)",
"question": "In what year did Aslan receive a Lifetime Achievement Award and Snow Patrol perform?"
} |
### QUESTION
What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?
### CONTEXT
CREATE TABLE table_name_27 (bronze INTEGER, event VARCHAR, total VARCHAR)
### ANSWER
SELECT MAX(bronze) FROM table_name_27 WHERE event = "1972 heidelberg" AND total < 5</s> | {
"answer": "SELECT MAX(bronze) FROM table_name_27 WHERE event = \"1972 heidelberg\" AND total < 5",
"context": "CREATE TABLE table_name_27 (bronze INTEGER, event VARCHAR, total VARCHAR)",
"question": "What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?"
} |
### QUESTION
What is the Total with the Event 2004 Athens and Gold less than 20?
### CONTEXT
CREATE TABLE table_name_21 (total INTEGER, event VARCHAR, gold VARCHAR)
### ANSWER
SELECT SUM(total) FROM table_name_21 WHERE event = "2004 athens" AND gold < 20</s> | {
"answer": "SELECT SUM(total) FROM table_name_21 WHERE event = \"2004 athens\" AND gold < 20",
"context": "CREATE TABLE table_name_21 (total INTEGER, event VARCHAR, gold VARCHAR)",
"question": "What is the Total with the Event 2004 Athens and Gold less than 20?"
} |
### QUESTION
What are the colours of the team with benedikt guðmundsson as head coach?
### CONTEXT
CREATE TABLE table_name_26 (colours VARCHAR, head_coach VARCHAR)
### ANSWER
SELECT colours FROM table_name_26 WHERE head_coach = "benedikt guðmundsson"</s> | {
"answer": "SELECT colours FROM table_name_26 WHERE head_coach = \"benedikt guðmundsson\"",
"context": "CREATE TABLE table_name_26 (colours VARCHAR, head_coach VARCHAR)",
"question": "What are the colours of the team with benedikt guðmundsson as head coach?"
} |
### QUESTION
When has a Surface of clay, and an Opponent in the final of andrés gómez javier sánchez?
### CONTEXT
CREATE TABLE table_name_98 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT date FROM table_name_98 WHERE surface = "clay" AND opponent_in_the_final = "andrés gómez javier sánchez"</s> | {
"answer": "SELECT date FROM table_name_98 WHERE surface = \"clay\" AND opponent_in_the_final = \"andrés gómez javier sánchez\"",
"context": "CREATE TABLE table_name_98 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)",
"question": "When has a Surface of clay, and an Opponent in the final of andrés gómez javier sánchez?"
} |
### QUESTION
Which Tournament is in 1993 with a Score in the final of 6–2, 2–6, 7–5?
### CONTEXT
CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR)
### ANSWER
SELECT tournament FROM table_name_13 WHERE date = 1993 AND score_in_the_final = "6–2, 2–6, 7–5"</s> | {
"answer": "SELECT tournament FROM table_name_13 WHERE date = 1993 AND score_in_the_final = \"6–2, 2–6, 7–5\"",
"context": "CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR)",
"question": "Which Tournament is in 1993 with a Score in the final of 6–2, 2–6, 7–5?"
} |
### QUESTION
Dakota Mission of t, and a Deloria & Boas of tʽ, and a Ullrich of tȟ had what white hat?
### CONTEXT
CREATE TABLE table_name_98 (white_hat VARCHAR, ullrich VARCHAR, dakota_mission VARCHAR, deloria_ VARCHAR, _boas VARCHAR)
### ANSWER
SELECT white_hat FROM table_name_98 WHERE dakota_mission = "t" AND deloria_ & _boas = "tʽ" AND ullrich = "tȟ"</s> | {
"answer": "SELECT white_hat FROM table_name_98 WHERE dakota_mission = \"t\" AND deloria_ & _boas = \"tʽ\" AND ullrich = \"tȟ\"",
"context": "CREATE TABLE table_name_98 (white_hat VARCHAR, ullrich VARCHAR, dakota_mission VARCHAR, deloria_ VARCHAR, _boas VARCHAR)",
"question": "Dakota Mission of t, and a Deloria & Boas of tʽ, and a Ullrich of tȟ had what white hat?"
} |
### QUESTION
Name the total number of years for chassis of maserati 250f and points less than 0
### CONTEXT
CREATE TABLE table_name_85 (year VARCHAR, chassis VARCHAR, points VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_85 WHERE chassis = "maserati 250f" AND points < 0</s> | {
"answer": "SELECT COUNT(year) FROM table_name_85 WHERE chassis = \"maserati 250f\" AND points < 0",
"context": "CREATE TABLE table_name_85 (year VARCHAR, chassis VARCHAR, points VARCHAR)",
"question": "Name the total number of years for chassis of maserati 250f and points less than 0"
} |
### QUESTION
Which Record has a Game larger than 15, and Points smaller than 31, and a November of 7?
### CONTEXT
CREATE TABLE table_name_36 (record VARCHAR, november VARCHAR, game VARCHAR, points VARCHAR)
### ANSWER
SELECT record FROM table_name_36 WHERE game > 15 AND points < 31 AND november = 7</s> | {
"answer": "SELECT record FROM table_name_36 WHERE game > 15 AND points < 31 AND november = 7",
"context": "CREATE TABLE table_name_36 (record VARCHAR, november VARCHAR, game VARCHAR, points VARCHAR)",
"question": "Which Record has a Game larger than 15, and Points smaller than 31, and a November of 7?"
} |
### QUESTION
How many years did the team place 2nd in Antwerp, Belgium?
### CONTEXT
CREATE TABLE table_name_21 (year VARCHAR, venue VARCHAR, result VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_21 WHERE venue = "antwerp, belgium" AND result = "2nd"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_21 WHERE venue = \"antwerp, belgium\" AND result = \"2nd\"",
"context": "CREATE TABLE table_name_21 (year VARCHAR, venue VARCHAR, result VARCHAR)",
"question": "How many years did the team place 2nd in Antwerp, Belgium?"
} |
### QUESTION
What competition had a final round in the finals and the final position winners?
### CONTEXT
CREATE TABLE table_name_66 (competition VARCHAR, final_position VARCHAR, final_round VARCHAR)
### ANSWER
SELECT competition FROM table_name_66 WHERE final_position = "winners" AND final_round = "finals"</s> | {
"answer": "SELECT competition FROM table_name_66 WHERE final_position = \"winners\" AND final_round = \"finals\"",
"context": "CREATE TABLE table_name_66 (competition VARCHAR, final_position VARCHAR, final_round VARCHAR)",
"question": "What competition had a final round in the finals and the final position winners?"
} |
### QUESTION
On what date did the first match occur for the competition that ended with a final position of winners and the final round in the finals?
### CONTEXT
CREATE TABLE table_name_35 (first_match VARCHAR, final_position VARCHAR, final_round VARCHAR)
### ANSWER
SELECT first_match FROM table_name_35 WHERE final_position = "winners" AND final_round = "finals"</s> | {
"answer": "SELECT first_match FROM table_name_35 WHERE final_position = \"winners\" AND final_round = \"finals\"",
"context": "CREATE TABLE table_name_35 (first_match VARCHAR, final_position VARCHAR, final_round VARCHAR)",
"question": "On what date did the first match occur for the competition that ended with a final position of winners and the final round in the finals?"
} |
### QUESTION
Which Player had a Date of 31 jan. 2008, and a Transfer fee of £3.87m?
### CONTEXT
CREATE TABLE table_name_44 (player VARCHAR, date VARCHAR, transfer_fee VARCHAR)
### ANSWER
SELECT player FROM table_name_44 WHERE date = "31 jan. 2008" AND transfer_fee = "£3.87m"</s> | {
"answer": "SELECT player FROM table_name_44 WHERE date = \"31 jan. 2008\" AND transfer_fee = \"£3.87m\"",
"context": "CREATE TABLE table_name_44 (player VARCHAR, date VARCHAR, transfer_fee VARCHAR)",
"question": "Which Player had a Date of 31 jan. 2008, and a Transfer fee of £3.87m?"
} |
### QUESTION
What was the record on April 8?
### CONTEXT
CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_53 WHERE date = "april 8"</s> | {
"answer": "SELECT record FROM table_name_53 WHERE date = \"april 8\"",
"context": "CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR)",
"question": "What was the record on April 8?"
} |
### QUESTION
When the frequency is 103.7 MHz and the ERP W is more than 10, what is the call sign?
### CONTEXT
CREATE TABLE table_name_77 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_77 WHERE erp_w > 10 AND frequency_mhz = 103.7</s> | {
"answer": "SELECT call_sign FROM table_name_77 WHERE erp_w > 10 AND frequency_mhz = 103.7",
"context": "CREATE TABLE table_name_77 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)",
"question": "When the frequency is 103.7 MHz and the ERP W is more than 10, what is the call sign?"
} |
### QUESTION
Year of 2006-07 had what studio host?
### CONTEXT
CREATE TABLE table_name_10 (studio_host VARCHAR, year VARCHAR)
### ANSWER
SELECT studio_host FROM table_name_10 WHERE year = "2006-07"</s> | {
"answer": "SELECT studio_host FROM table_name_10 WHERE year = \"2006-07\"",
"context": "CREATE TABLE table_name_10 (studio_host VARCHAR, year VARCHAR)",
"question": "Year of 2006-07 had what studio host?"
} |
### QUESTION
Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host?
### CONTEXT
CREATE TABLE table_name_1 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR)
### ANSWER
SELECT studio_host FROM table_name_1 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" AND year = "2005-06"</s> | {
"answer": "SELECT studio_host FROM table_name_1 WHERE play_by_play = \"sean grande\" AND flagship_station = \"wrko\" AND year = \"2005-06\"",
"context": "CREATE TABLE table_name_1 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR)",
"question": "Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host?"
} |
### QUESTION
Studio host of john ryder, and a Year of 2007-08 had what play by play?
### CONTEXT
CREATE TABLE table_name_38 (play_by_play VARCHAR, studio_host VARCHAR, year VARCHAR)
### ANSWER
SELECT play_by_play FROM table_name_38 WHERE studio_host = "john ryder" AND year = "2007-08"</s> | {
"answer": "SELECT play_by_play FROM table_name_38 WHERE studio_host = \"john ryder\" AND year = \"2007-08\"",
"context": "CREATE TABLE table_name_38 (play_by_play VARCHAR, studio_host VARCHAR, year VARCHAR)",
"question": "Studio host of john ryder, and a Year of 2007-08 had what play by play?"
} |
### QUESTION
Name the player with score of 73-69-74-71=287
### CONTEXT
CREATE TABLE table_name_12 (player VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_12 WHERE score = 73 - 69 - 74 - 71 = 287</s> | {
"answer": "SELECT player FROM table_name_12 WHERE score = 73 - 69 - 74 - 71 = 287",
"context": "CREATE TABLE table_name_12 (player VARCHAR, score VARCHAR)",
"question": "Name the player with score of 73-69-74-71=287"
} |
### QUESTION
Games started of 4 is in what hometown?
### CONTEXT
CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR)
### ANSWER
SELECT hometown FROM table_name_79 WHERE games_started = "4"</s> | {
"answer": "SELECT hometown FROM table_name_79 WHERE games_started = \"4\"",
"context": "CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR)",
"question": "Games started of 4 is in what hometown?"
} |
### QUESTION
Name the date for chris evert opponent and carpet surface
### CONTEXT
CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR, surface VARCHAR)
### ANSWER
SELECT date FROM table_name_98 WHERE opponent = "chris evert" AND surface = "carpet"</s> | {
"answer": "SELECT date FROM table_name_98 WHERE opponent = \"chris evert\" AND surface = \"carpet\"",
"context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR, surface VARCHAR)",
"question": "Name the date for chris evert opponent and carpet surface"
} |
### QUESTION
Position of fullback has what highest weight?
### CONTEXT
CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR)
### ANSWER
SELECT MAX(weight) FROM table_name_33 WHERE position = "fullback"</s> | {
"answer": "SELECT MAX(weight) FROM table_name_33 WHERE position = \"fullback\"",
"context": "CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR)",
"question": "Position of fullback has what highest weight?"
} |
### QUESTION
What was arrows racing team's highest points after 1982?
### CONTEXT
CREATE TABLE table_name_51 (points INTEGER, entrant VARCHAR, year VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_51 WHERE entrant = "arrows racing team" AND year > 1982</s> | {
"answer": "SELECT MAX(points) FROM table_name_51 WHERE entrant = \"arrows racing team\" AND year > 1982",
"context": "CREATE TABLE table_name_51 (points INTEGER, entrant VARCHAR, year VARCHAR)",
"question": "What was arrows racing team's highest points after 1982?"
} |
### QUESTION
Which party has a first elected of 1966, qld as the state, and donald milner cameron as the member?
### CONTEXT
CREATE TABLE table_name_25 (party VARCHAR, member VARCHAR, first_elected VARCHAR, state VARCHAR)
### ANSWER
SELECT party FROM table_name_25 WHERE first_elected = "1966" AND state = "qld" AND member = "donald milner cameron"</s> | {
"answer": "SELECT party FROM table_name_25 WHERE first_elected = \"1966\" AND state = \"qld\" AND member = \"donald milner cameron\"",
"context": "CREATE TABLE table_name_25 (party VARCHAR, member VARCHAR, first_elected VARCHAR, state VARCHAR)",
"question": "Which party has a first elected of 1966, qld as the state, and donald milner cameron as the member?"
} |
### QUESTION
Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand?
### CONTEXT
CREATE TABLE table_name_70 (member VARCHAR, electorate VARCHAR, state VARCHAR, first_elected VARCHAR, party VARCHAR)
### ANSWER
SELECT member FROM table_name_70 WHERE first_elected = "1972" AND party = "alp" AND state = "vic" AND electorate = "gellibrand"</s> | {
"answer": "SELECT member FROM table_name_70 WHERE first_elected = \"1972\" AND party = \"alp\" AND state = \"vic\" AND electorate = \"gellibrand\"",
"context": "CREATE TABLE table_name_70 (member VARCHAR, electorate VARCHAR, state VARCHAR, first_elected VARCHAR, party VARCHAR)",
"question": "Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand?"
} |
### QUESTION
Name the date for motogp winner of casey stoner and grand prix of valencian grand prix
### CONTEXT
CREATE TABLE table_name_15 (date VARCHAR, motogp_winner VARCHAR, grand_prix VARCHAR)
### ANSWER
SELECT date FROM table_name_15 WHERE motogp_winner = "casey stoner" AND grand_prix = "valencian grand prix"</s> | {
"answer": "SELECT date FROM table_name_15 WHERE motogp_winner = \"casey stoner\" AND grand_prix = \"valencian grand prix\"",
"context": "CREATE TABLE table_name_15 (date VARCHAR, motogp_winner VARCHAR, grand_prix VARCHAR)",
"question": "Name the date for motogp winner of casey stoner and grand prix of valencian grand prix"
} |
### QUESTION
Name the grand prix for casey stoner and circuit of losail
### CONTEXT
CREATE TABLE table_name_55 (grand_prix VARCHAR, motogp_winner VARCHAR, circuit VARCHAR)
### ANSWER
SELECT grand_prix FROM table_name_55 WHERE motogp_winner = "casey stoner" AND circuit = "losail"</s> | {
"answer": "SELECT grand_prix FROM table_name_55 WHERE motogp_winner = \"casey stoner\" AND circuit = \"losail\"",
"context": "CREATE TABLE table_name_55 (grand_prix VARCHAR, motogp_winner VARCHAR, circuit VARCHAR)",
"question": "Name the grand prix for casey stoner and circuit of losail"
} |
### QUESTION
Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8
### CONTEXT
CREATE TABLE table_name_27 (rank INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_27 WHERE bronze = 2 AND gold > 0 AND nation = "ynys môn/anglesey" AND total > 8</s> | {
"answer": "SELECT MIN(rank) FROM table_name_27 WHERE bronze = 2 AND gold > 0 AND nation = \"ynys môn/anglesey\" AND total > 8",
"context": "CREATE TABLE table_name_27 (rank INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)",
"question": "Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8"
} |
### QUESTION
Name the total number of total with silver of 6, bronze more than 5 and gold less than 4
### CONTEXT
CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4</s> | {
"answer": "SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4",
"context": "CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)",
"question": "Name the total number of total with silver of 6, bronze more than 5 and gold less than 4"
} |
### QUESTION
What was the starting date for the Minister for agriculture, fisheries and forestry that is in order number 25??
### CONTEXT
CREATE TABLE table_name_47 (term_start VARCHAR, title VARCHAR, order VARCHAR)
### ANSWER
SELECT term_start FROM table_name_47 WHERE title = "minister for agriculture, fisheries and forestry" AND order = "25"</s> | {
"answer": "SELECT term_start FROM table_name_47 WHERE title = \"minister for agriculture, fisheries and forestry\" AND order = \"25\"",
"context": "CREATE TABLE table_name_47 (term_start VARCHAR, title VARCHAR, order VARCHAR)",
"question": "What was the starting date for the Minister for agriculture, fisheries and forestry that is in order number 25??"
} |
### QUESTION
What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8?
### CONTEXT
CREATE TABLE table_name_17 (game INTEGER, october VARCHAR, opponent VARCHAR, record VARCHAR)
### ANSWER
SELECT AVG(game) FROM table_name_17 WHERE opponent = "@ florida panthers" AND record = "0-1-2" AND october > 8</s> | {
"answer": "SELECT AVG(game) FROM table_name_17 WHERE opponent = \"@ florida panthers\" AND record = \"0-1-2\" AND october > 8",
"context": "CREATE TABLE table_name_17 (game INTEGER, october VARCHAR, opponent VARCHAR, record VARCHAR)",
"question": "What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8?"
} |
### QUESTION
What is the highest number of votes for McCain in a county that voted 1.6% for other, 40.5% for McCain, and fewer than 256,299 votes for Obama?
### CONTEXT
CREATE TABLE table_name_47 (mccain_number INTEGER, obama_number VARCHAR, others_percentage VARCHAR, mccain_percentage VARCHAR)
### ANSWER
SELECT MAX(mccain_number) FROM table_name_47 WHERE others_percentage = "1.6%" AND mccain_percentage = "40.5%" AND obama_number < 256 OFFSET 299</s> | {
"answer": "SELECT MAX(mccain_number) FROM table_name_47 WHERE others_percentage = \"1.6%\" AND mccain_percentage = \"40.5%\" AND obama_number < 256 OFFSET 299",
"context": "CREATE TABLE table_name_47 (mccain_number INTEGER, obama_number VARCHAR, others_percentage VARCHAR, mccain_percentage VARCHAR)",
"question": "What is the highest number of votes for McCain in a county that voted 1.6% for other, 40.5% for McCain, and fewer than 256,299 votes for Obama?"
} |
### QUESTION
What was the Attendance on 31 January 1987?
### CONTEXT
CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_name_44 WHERE date = "31 january 1987"</s> | {
"answer": "SELECT COUNT(attendance) FROM table_name_44 WHERE date = \"31 january 1987\"",
"context": "CREATE TABLE table_name_44 (attendance VARCHAR, date VARCHAR)",
"question": "What was the Attendance on 31 January 1987?"
} |
### QUESTION
What was the location and attendance with a score of w 89–86 (ot)?
### CONTEXT
CREATE TABLE table_name_62 (location_attendance VARCHAR, score VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_62 WHERE score = "w 89–86 (ot)"</s> | {
"answer": "SELECT location_attendance FROM table_name_62 WHERE score = \"w 89–86 (ot)\"",
"context": "CREATE TABLE table_name_62 (location_attendance VARCHAR, score VARCHAR)",
"question": "What was the location and attendance with a score of w 89–86 (ot)?"
} |
### QUESTION
What is the name of the player for the 2010-2011 season, from a Free Agency and is Number 14?
### CONTEXT
CREATE TABLE table_name_13 (name VARCHAR, number VARCHAR, season VARCHAR, acquisition_via VARCHAR)
### ANSWER
SELECT name FROM table_name_13 WHERE season = "2010-2011" AND acquisition_via = "free agency" AND number = "14"</s> | {
"answer": "SELECT name FROM table_name_13 WHERE season = \"2010-2011\" AND acquisition_via = \"free agency\" AND number = \"14\"",
"context": "CREATE TABLE table_name_13 (name VARCHAR, number VARCHAR, season VARCHAR, acquisition_via VARCHAR)",
"question": "What is the name of the player for the 2010-2011 season, from a Free Agency and is Number 14?"
} |
### QUESTION
size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number?
### CONTEXT
CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)
### ANSWER
SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = "28:27" AND just__cents_ > 62.96</s> | {
"answer": "SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = \"28:27\" AND just__cents_ > 62.96",
"context": "CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)",
"question": "size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number?"
} |
### QUESTION
What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?
### CONTEXT
CREATE TABLE table_name_64 (games_played INTEGER, points VARCHAR, draws VARCHAR, loses VARCHAR)
### ANSWER
SELECT MAX(games_played) FROM table_name_64 WHERE draws = 3 AND loses = 5 AND points < 39</s> | {
"answer": "SELECT MAX(games_played) FROM table_name_64 WHERE draws = 3 AND loses = 5 AND points < 39",
"context": "CREATE TABLE table_name_64 (games_played INTEGER, points VARCHAR, draws VARCHAR, loses VARCHAR)",
"question": "What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?"
} |
### QUESTION
What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile?
### CONTEXT
CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR)
### ANSWER
SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = "4:2:2 or 4:2:0" AND name = "4:2:2 profile"</s> | {
"answer": "SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = \"4:2:2 or 4:2:0\" AND name = \"4:2:2 profile\"",
"context": "CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR)",
"question": "What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile?"
} |
### QUESTION
How many league cups associated with under 10 championships and a total of under 3?
### CONTEXT
CREATE TABLE table_name_36 (league_cup INTEGER, championship VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(league_cup) FROM table_name_36 WHERE championship < 10 AND total < 3</s> | {
"answer": "SELECT SUM(league_cup) FROM table_name_36 WHERE championship < 10 AND total < 3",
"context": "CREATE TABLE table_name_36 (league_cup INTEGER, championship VARCHAR, total VARCHAR)",
"question": "How many league cups associated with under 10 championships and a total of under 3?"
} |
### QUESTION
When did slađana pejić, who was evicted on day 29, enter the house?
### CONTEXT
CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR)
### ANSWER
SELECT entered_the_house FROM table_name_82 WHERE evicted = "day 29" AND name = "slađana pejić"</s> | {
"answer": "SELECT entered_the_house FROM table_name_82 WHERE evicted = \"day 29\" AND name = \"slađana pejić\"",
"context": "CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR)",
"question": "When did slađana pejić, who was evicted on day 29, enter the house?"
} |
### QUESTION
How many laps are associated with a grid greater than 8, under 11 points, and will power?
### CONTEXT
CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR)
### ANSWER
SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = "will power"</s> | {
"answer": "SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = \"will power\"",
"context": "CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR)",
"question": "How many laps are associated with a grid greater than 8, under 11 points, and will power?"
} |
### QUESTION
What is the home team of the UEFA cup in the 2000-2001 season with a second round?
### CONTEXT
CREATE TABLE table_name_93 (home VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR)
### ANSWER
SELECT home FROM table_name_93 WHERE competition = "uefa cup" AND season = "2000-2001" AND round = "second round"</s> | {
"answer": "SELECT home FROM table_name_93 WHERE competition = \"uefa cup\" AND season = \"2000-2001\" AND round = \"second round\"",
"context": "CREATE TABLE table_name_93 (home VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR)",
"question": "What is the home team of the UEFA cup in the 2000-2001 season with a second round?"
} |
### QUESTION
Name the total number of total for rank of 7 and bronze less than 1
### CONTEXT
CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_68 WHERE rank = "7" AND bronze < 1</s> | {
"answer": "SELECT COUNT(total) FROM table_name_68 WHERE rank = \"7\" AND bronze < 1",
"context": "CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR)",
"question": "Name the total number of total for rank of 7 and bronze less than 1"
} |
### QUESTION
How many bronze numbers had a total of more than 4 when the rank is less than four, germany is involved, and there's less than 5 silver?
### CONTEXT
CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR, nation VARCHAR, total VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(bronze) FROM table_name_67 WHERE total > 4 AND rank < 4 AND nation = "germany" AND silver < 5</s> | {
"answer": "SELECT COUNT(bronze) FROM table_name_67 WHERE total > 4 AND rank < 4 AND nation = \"germany\" AND silver < 5",
"context": "CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR, nation VARCHAR, total VARCHAR, rank VARCHAR)",
"question": "How many bronze numbers had a total of more than 4 when the rank is less than four, germany is involved, and there's less than 5 silver?"
} |
### QUESTION
Which Place has Phil Mickelson as the Player?
### CONTEXT
CREATE TABLE table_name_67 (place VARCHAR, player VARCHAR)
### ANSWER
SELECT place FROM table_name_67 WHERE player = "phil mickelson"</s> | {
"answer": "SELECT place FROM table_name_67 WHERE player = \"phil mickelson\"",
"context": "CREATE TABLE table_name_67 (place VARCHAR, player VARCHAR)",
"question": "Which Place has Phil Mickelson as the Player?"
} |
### QUESTION
What is the average Height when the weight is less than 91 and the position is d, and a Birthdate of july 4, 1975?
### CONTEXT
CREATE TABLE table_name_66 (height__cm_ INTEGER, birthdate VARCHAR, weight__kg_ VARCHAR, position VARCHAR)
### ANSWER
SELECT AVG(height__cm_) FROM table_name_66 WHERE weight__kg_ < 91 AND position = "d" AND birthdate = "july 4, 1975"</s> | {
"answer": "SELECT AVG(height__cm_) FROM table_name_66 WHERE weight__kg_ < 91 AND position = \"d\" AND birthdate = \"july 4, 1975\"",
"context": "CREATE TABLE table_name_66 (height__cm_ INTEGER, birthdate VARCHAR, weight__kg_ VARCHAR, position VARCHAR)",
"question": "What is the average Height when the weight is less than 91 and the position is d, and a Birthdate of july 4, 1975?"
} |
### QUESTION
What is the Birthdate for the person with a height less than 191, and weight of 84 kg?
### CONTEXT
CREATE TABLE table_name_23 (birthdate VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)
### ANSWER
SELECT birthdate FROM table_name_23 WHERE height__cm_ < 191 AND weight__kg_ = 84</s> | {
"answer": "SELECT birthdate FROM table_name_23 WHERE height__cm_ < 191 AND weight__kg_ = 84",
"context": "CREATE TABLE table_name_23 (birthdate VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)",
"question": "What is the Birthdate for the person with a height less than 191, and weight of 84 kg?"
} |
### QUESTION
Which gender has a Decile of 8, an Area of taradale, and Years of 1–13?
### CONTEXT
CREATE TABLE table_name_90 (gender VARCHAR, years VARCHAR, decile VARCHAR, area VARCHAR)
### ANSWER
SELECT gender FROM table_name_90 WHERE decile = 8 AND area = "taradale" AND years = "1–13"</s> | {
"answer": "SELECT gender FROM table_name_90 WHERE decile = 8 AND area = \"taradale\" AND years = \"1–13\"",
"context": "CREATE TABLE table_name_90 (gender VARCHAR, years VARCHAR, decile VARCHAR, area VARCHAR)",
"question": "Which gender has a Decile of 8, an Area of taradale, and Years of 1–13?"
} |
### QUESTION
What is the Score of the game against the boston celtics?
### CONTEXT
CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)
### ANSWER
SELECT score FROM table_name_58 WHERE opponent = "boston celtics"</s> | {
"answer": "SELECT score FROM table_name_58 WHERE opponent = \"boston celtics\"",
"context": "CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)",
"question": "What is the Score of the game against the boston celtics?"
} |
### QUESTION
What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin?
### CONTEXT
CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR)
### ANSWER
SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = "gevrey-chambertin" AND grand_cru = "latricières-chambertin"</s> | {
"answer": "SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = \"gevrey-chambertin\" AND grand_cru = \"latricières-chambertin\"",
"context": "CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR)",
"question": "What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin?"
} |
### QUESTION
What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin?
### CONTEXT
CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR)
### ANSWER
SELECT grand_cru FROM table_name_33 WHERE wine_style = "red wine" AND village = "gevrey-chambertin"</s> | {
"answer": "SELECT grand_cru FROM table_name_33 WHERE wine_style = \"red wine\" AND village = \"gevrey-chambertin\"",
"context": "CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR)",
"question": "What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin?"
} |
### QUESTION
Name the score for the mariners opponent on may 10
### CONTEXT
CREATE TABLE table_name_20 (score VARCHAR, opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_20 WHERE opponent = "mariners" AND date = "may 10"</s> | {
"answer": "SELECT score FROM table_name_20 WHERE opponent = \"mariners\" AND date = \"may 10\"",
"context": "CREATE TABLE table_name_20 (score VARCHAR, opponent VARCHAR, date VARCHAR)",
"question": "Name the score for the mariners opponent on may 10"
} |
### QUESTION
What is Choreographer(s), when Chosen is Mary Murphy, and when Style is Contemporary?
### CONTEXT
CREATE TABLE table_name_36 (choreographer_s_ VARCHAR, chosen_by VARCHAR, style VARCHAR)
### ANSWER
SELECT choreographer_s_ FROM table_name_36 WHERE chosen_by = "mary murphy" AND style = "contemporary"</s> | {
"answer": "SELECT choreographer_s_ FROM table_name_36 WHERE chosen_by = \"mary murphy\" AND style = \"contemporary\"",
"context": "CREATE TABLE table_name_36 (choreographer_s_ VARCHAR, chosen_by VARCHAR, style VARCHAR)",
"question": "What is Choreographer(s), when Chosen is Mary Murphy, and when Style is Contemporary?"
} |
### QUESTION
Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1
### CONTEXT
CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1</s> | {
"answer": "SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1",
"context": "CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)",
"question": "Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1"
} |
### QUESTION
What is the lowest Top-10 when the Top-25 is 6, and a Tournament of u.s. open, and a Cut made larger than 9?
### CONTEXT
CREATE TABLE table_name_44 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR, tournament VARCHAR)
### ANSWER
SELECT MIN(top_10) FROM table_name_44 WHERE top_25 = 6 AND tournament = "u.s. open" AND cuts_made > 9</s> | {
"answer": "SELECT MIN(top_10) FROM table_name_44 WHERE top_25 = 6 AND tournament = \"u.s. open\" AND cuts_made > 9",
"context": "CREATE TABLE table_name_44 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR, tournament VARCHAR)",
"question": "What is the lowest Top-10 when the Top-25 is 6, and a Tournament of u.s. open, and a Cut made larger than 9?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.