text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
Who is the Director that has a Film title of nick carter in prague?
### CONTEXT
CREATE TABLE table_name_66 (director VARCHAR, film_title_used_in_nomination VARCHAR)
### ANSWER
SELECT director FROM table_name_66 WHERE film_title_used_in_nomination = "nick carter in prague"</s> | {
"answer": "SELECT director FROM table_name_66 WHERE film_title_used_in_nomination = \"nick carter in prague\"",
"context": "CREATE TABLE table_name_66 (director VARCHAR, film_title_used_in_nomination VARCHAR)",
"question": "Who is the Director that has a Film title of nick carter in prague?"
} |
### QUESTION
What is the Film title used in nomination of Mig Og Charly?
### CONTEXT
CREATE TABLE table_name_10 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)
### ANSWER
SELECT film_title_used_in_nomination FROM table_name_10 WHERE original_name = "mig og charly"</s> | {
"answer": "SELECT film_title_used_in_nomination FROM table_name_10 WHERE original_name = \"mig og charly\"",
"context": "CREATE TABLE table_name_10 (film_title_used_in_nomination VARCHAR, original_name VARCHAR)",
"question": "What is the Film title used in nomination of Mig Og Charly?"
} |
### QUESTION
What is the Original name of empire of passion?
### CONTEXT
CREATE TABLE table_name_17 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)
### ANSWER
SELECT original_name FROM table_name_17 WHERE film_title_used_in_nomination = "empire of passion"</s> | {
"answer": "SELECT original_name FROM table_name_17 WHERE film_title_used_in_nomination = \"empire of passion\"",
"context": "CREATE TABLE table_name_17 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)",
"question": "What is the Original name of empire of passion?"
} |
### QUESTION
What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?
### CONTEXT
CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT winning_score FROM table_name_69 WHERE margin_of_victory = "2 strokes" AND runner_s__up = "pat bradley"</s> | {
"answer": "SELECT winning_score FROM table_name_69 WHERE margin_of_victory = \"2 strokes\" AND runner_s__up = \"pat bradley\"",
"context": "CREATE TABLE table_name_69 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)",
"question": "What was the winning score when the margin of victory was 2 strokes and the runner-up was Pat Bradley?"
} |
### QUESTION
What is the Race 1 result of Round 2?
### CONTEXT
CREATE TABLE table_name_25 (race_1 VARCHAR, round VARCHAR)
### ANSWER
SELECT race_1 FROM table_name_25 WHERE round = "round 2"</s> | {
"answer": "SELECT race_1 FROM table_name_25 WHERE round = \"round 2\"",
"context": "CREATE TABLE table_name_25 (race_1 VARCHAR, round VARCHAR)",
"question": "What is the Race 1 result of Round 2?"
} |
### QUESTION
Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota?
### CONTEXT
CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR)
### ANSWER
SELECT week FROM table_name_40 WHERE home_team = "detroit" AND divisional_record = "(3-0)" AND overall_record = "(5-1)" AND away_team = "minnesota"</s> | {
"answer": "SELECT week FROM table_name_40 WHERE home_team = \"detroit\" AND divisional_record = \"(3-0)\" AND overall_record = \"(5-1)\" AND away_team = \"minnesota\"",
"context": "CREATE TABLE table_name_40 (week VARCHAR, away_team VARCHAR, overall_record VARCHAR, home_team VARCHAR, divisional_record VARCHAR)",
"question": "Can you tell me the Week that has the Home Team of detroit, and the Divisional Record of (3-0), and the Overall Record of (5-1), and the Away Team of minnesota?"
} |
### QUESTION
When the Winning is 71-71-70-69=281, what is the To par?
### CONTEXT
CREATE TABLE table_name_7 (to_par VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT to_par FROM table_name_7 WHERE winning_score = 71 - 71 - 70 - 69 = 281</s> | {
"answer": "SELECT to_par FROM table_name_7 WHERE winning_score = 71 - 71 - 70 - 69 = 281",
"context": "CREATE TABLE table_name_7 (to_par VARCHAR, winning_score VARCHAR)",
"question": "When the Winning is 71-71-70-69=281, what is the To par?"
} |
### QUESTION
What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles?
### CONTEXT
### ANSWER
SELECT AVG(_2nd_place) FROM table_name_16 WHERE years_active = "2000" AND titles > 0</s> | {
"answer": "SELECT AVG(_2nd_place) FROM table_name_16 WHERE years_active = \"2000\" AND titles > 0",
"context": "",
"question": "What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles?"
} |
### QUESTION
Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?
### CONTEXT
CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
### ANSWER
SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = "washington redskins"</s> | {
"answer": "SELECT attendance FROM table_name_39 WHERE week < 16 AND opponent = \"washington redskins\"",
"context": "CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)",
"question": "Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?"
} |
### QUESTION
What Country had a Score of 71-67=138?
### CONTEXT
CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
### ANSWER
SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138</s> | {
"answer": "SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138",
"context": "CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)",
"question": "What Country had a Score of 71-67=138?"
} |
### QUESTION
How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?
### CONTEXT
CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR)
### ANSWER
SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19</s> | {
"answer": "SELECT SUM(innings) FROM table_name_35 WHERE average < 6.33 AND sr < 71.43 AND balls_faced > 36 AND runs_scored < 19",
"context": "CREATE TABLE table_name_35 (innings INTEGER, runs_scored VARCHAR, balls_faced VARCHAR, average VARCHAR, sr VARCHAR)",
"question": "How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?"
} |
### QUESTION
What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?
### CONTEXT
CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR)
### ANSWER
SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5</s> | {
"answer": "SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5",
"context": "CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR)",
"question": "What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?"
} |
### QUESTION
Which Season has a Final Place of 8th and 8 Podiums?
### CONTEXT
CREATE TABLE table_name_79 (season VARCHAR, final_placing VARCHAR, podiums VARCHAR)
### ANSWER
SELECT season FROM table_name_79 WHERE final_placing = "8th" AND podiums = "8"</s> | {
"answer": "SELECT season FROM table_name_79 WHERE final_placing = \"8th\" AND podiums = \"8\"",
"context": "CREATE TABLE table_name_79 (season VARCHAR, final_placing VARCHAR, podiums VARCHAR)",
"question": "Which Season has a Final Place of 8th and 8 Podiums?"
} |
### QUESTION
What is the total frequency have a Status of owned by cumulus media, and a Format of news?
### CONTEXT
CREATE TABLE table_name_66 (frequency INTEGER, status VARCHAR, format VARCHAR)
### ANSWER
SELECT SUM(frequency) FROM table_name_66 WHERE status = "owned by cumulus media" AND format = "news"</s> | {
"answer": "SELECT SUM(frequency) FROM table_name_66 WHERE status = \"owned by cumulus media\" AND format = \"news\"",
"context": "CREATE TABLE table_name_66 (frequency INTEGER, status VARCHAR, format VARCHAR)",
"question": "What is the total frequency have a Status of owned by cumulus media, and a Format of news?"
} |
### QUESTION
What is the content when the package/option is qualsiasi and sky primafila 14 is the television service?
### CONTEXT
CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR)
### ANSWER
SELECT content FROM table_name_13 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 14"</s> | {
"answer": "SELECT content FROM table_name_13 WHERE package_option = \"qualsiasi\" AND television_service = \"sky primafila 14\"",
"context": "CREATE TABLE table_name_13 (content VARCHAR, package_option VARCHAR, television_service VARCHAR)",
"question": "What is the content when the package/option is qualsiasi and sky primafila 14 is the television service?"
} |
### QUESTION
What is the HDTV that has television service of tv 8 mont blanc and content is general television?
### CONTEXT
CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR)
### ANSWER
SELECT hdtv FROM table_name_26 WHERE content = "general television" AND television_service = "tv 8 mont blanc"</s> | {
"answer": "SELECT hdtv FROM table_name_26 WHERE content = \"general television\" AND television_service = \"tv 8 mont blanc\"",
"context": "CREATE TABLE table_name_26 (hdtv VARCHAR, content VARCHAR, television_service VARCHAR)",
"question": "What is the HDTV that has television service of tv 8 mont blanc and content is general television?"
} |
### QUESTION
which entrant after 1987 had 12 points and a benetton b188 chassis?
### CONTEXT
CREATE TABLE table_name_22 (entrant VARCHAR, points VARCHAR, year VARCHAR, chassis VARCHAR)
### ANSWER
SELECT entrant FROM table_name_22 WHERE year > 1987 AND chassis = "benetton b188" AND points = 12</s> | {
"answer": "SELECT entrant FROM table_name_22 WHERE year > 1987 AND chassis = \"benetton b188\" AND points = 12",
"context": "CREATE TABLE table_name_22 (entrant VARCHAR, points VARCHAR, year VARCHAR, chassis VARCHAR)",
"question": "which entrant after 1987 had 12 points and a benetton b188 chassis?"
} |
### QUESTION
With a Primary military speciality of astral assault tactics, what is the Secondary military speciality?
### CONTEXT
CREATE TABLE table_name_58 (secondary_military_speciality VARCHAR, primary_military_speciality VARCHAR)
### ANSWER
SELECT secondary_military_speciality FROM table_name_58 WHERE primary_military_speciality = "astral assault tactics"</s> | {
"answer": "SELECT secondary_military_speciality FROM table_name_58 WHERE primary_military_speciality = \"astral assault tactics\"",
"context": "CREATE TABLE table_name_58 (secondary_military_speciality VARCHAR, primary_military_speciality VARCHAR)",
"question": "With a Primary military speciality of astral assault tactics, what is the Secondary military speciality?"
} |
### QUESTION
What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11?
### CONTEXT
CREATE TABLE table_name_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHAR, height__cm_ VARCHAR)
### ANSWER
SELECT birthplace FROM table_name_79 WHERE position = "d" AND height__cm_ = 190 AND jersey_number = 11</s> | {
"answer": "SELECT birthplace FROM table_name_79 WHERE position = \"d\" AND height__cm_ = 190 AND jersey_number = 11",
"context": "CREATE TABLE table_name_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHAR, height__cm_ VARCHAR)",
"question": "What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11?"
} |
### QUESTION
What's the least amount of points that Walter Wolf Racing had after 1974?
### CONTEXT
CREATE TABLE table_name_3 (points INTEGER, year VARCHAR, entrant VARCHAR)
### ANSWER
SELECT MIN(points) FROM table_name_3 WHERE year > 1974 AND entrant = "walter wolf racing"</s> | {
"answer": "SELECT MIN(points) FROM table_name_3 WHERE year > 1974 AND entrant = \"walter wolf racing\"",
"context": "CREATE TABLE table_name_3 (points INTEGER, year VARCHAR, entrant VARCHAR)",
"question": "What's the least amount of points that Walter Wolf Racing had after 1974?"
} |
### QUESTION
What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?
### CONTEXT
CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, competition VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_68 WHERE position = "6th" AND competition = "commonwealth games"</s> | {
"answer": "SELECT SUM(year) FROM table_name_68 WHERE position = \"6th\" AND competition = \"commonwealth games\"",
"context": "CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, competition VARCHAR)",
"question": "What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?"
} |
### QUESTION
What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?
### CONTEXT
CREATE TABLE table_name_60 (points INTEGER, engine VARCHAR, year VARCHAR, entrant VARCHAR)
### ANSWER
SELECT SUM(points) FROM table_name_60 WHERE year < 1971 AND entrant = "scuderia ferrari" AND engine = "ferrari v12"</s> | {
"answer": "SELECT SUM(points) FROM table_name_60 WHERE year < 1971 AND entrant = \"scuderia ferrari\" AND engine = \"ferrari v12\"",
"context": "CREATE TABLE table_name_60 (points INTEGER, engine VARCHAR, year VARCHAR, entrant VARCHAR)",
"question": "What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?"
} |
### QUESTION
What is the lightest Weight (kg), when the Jersey # is greater than 22, when the Position is F, and when the Birthdate is March 19, 1980?
### CONTEXT
CREATE TABLE table_name_62 (weight__kg_ INTEGER, birthdate VARCHAR, jersey__number VARCHAR, position VARCHAR)
### ANSWER
SELECT MIN(weight__kg_) FROM table_name_62 WHERE jersey__number > 22 AND position = "f" AND birthdate = "march 19, 1980"</s> | {
"answer": "SELECT MIN(weight__kg_) FROM table_name_62 WHERE jersey__number > 22 AND position = \"f\" AND birthdate = \"march 19, 1980\"",
"context": "CREATE TABLE table_name_62 (weight__kg_ INTEGER, birthdate VARCHAR, jersey__number VARCHAR, position VARCHAR)",
"question": "What is the lightest Weight (kg), when the Jersey # is greater than 22, when the Position is F, and when the Birthdate is March 19, 1980?"
} |
### QUESTION
What is the Birthplace, when the Jersey # is less than 18, when the Height (cm) is higher than 185, and when the Birthdate is March 3, 1980?
### CONTEXT
CREATE TABLE table_name_24 (birthplace VARCHAR, birthdate VARCHAR, jersey__number VARCHAR, height__cm_ VARCHAR)
### ANSWER
SELECT birthplace FROM table_name_24 WHERE jersey__number < 18 AND height__cm_ > 185 AND birthdate = "march 3, 1980"</s> | {
"answer": "SELECT birthplace FROM table_name_24 WHERE jersey__number < 18 AND height__cm_ > 185 AND birthdate = \"march 3, 1980\"",
"context": "CREATE TABLE table_name_24 (birthplace VARCHAR, birthdate VARCHAR, jersey__number VARCHAR, height__cm_ VARCHAR)",
"question": "What is the Birthplace, when the Jersey # is less than 18, when the Height (cm) is higher than 185, and when the Birthdate is March 3, 1980?"
} |
### QUESTION
What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks?
### CONTEXT
CREATE TABLE table_name_53 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR)
### ANSWER
SELECT golden_point_s__scorer FROM table_name_53 WHERE away = "sydney roosters" AND home = "cronulla sharks"</s> | {
"answer": "SELECT golden_point_s__scorer FROM table_name_53 WHERE away = \"sydney roosters\" AND home = \"cronulla sharks\"",
"context": "CREATE TABLE table_name_53 (golden_point_s__scorer VARCHAR, away VARCHAR, home VARCHAR)",
"question": "What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks?"
} |
### QUESTION
What was 2009, when 2001 was, "not masters series"?
### CONTEXT
CREATE TABLE table_name_5 (Id VARCHAR)
### ANSWER
SELECT 2009 FROM table_name_5 WHERE 2001 = "not masters series"</s> | {
"answer": "SELECT 2009 FROM table_name_5 WHERE 2001 = \"not masters series\"",
"context": "CREATE TABLE table_name_5 (Id VARCHAR)",
"question": "What was 2009, when 2001 was, \"not masters series\"?"
} |
### QUESTION
The rider mike di meglio had a total of how many grids?
### CONTEXT
CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR)
### ANSWER
SELECT COUNT(grid) FROM table_name_71 WHERE rider = "mike di meglio"</s> | {
"answer": "SELECT COUNT(grid) FROM table_name_71 WHERE rider = \"mike di meglio\"",
"context": "CREATE TABLE table_name_71 (grid VARCHAR, rider VARCHAR)",
"question": "The rider mike di meglio had a total of how many grids?"
} |
### QUESTION
Who's the Republican ticket with a Socialist ticket of frank r. crosswaith?
### CONTEXT
CREATE TABLE table_name_61 (republican_ticket VARCHAR, socialist_ticket VARCHAR)
### ANSWER
SELECT republican_ticket FROM table_name_61 WHERE socialist_ticket = "frank r. crosswaith"</s> | {
"answer": "SELECT republican_ticket FROM table_name_61 WHERE socialist_ticket = \"frank r. crosswaith\"",
"context": "CREATE TABLE table_name_61 (republican_ticket VARCHAR, socialist_ticket VARCHAR)",
"question": "Who's the Republican ticket with a Socialist ticket of frank r. crosswaith?"
} |
### QUESTION
What is the largest roll with Years 1–8, a Name of dorie school, and a Decile larger than 9?
### CONTEXT
CREATE TABLE table_name_49 (roll INTEGER, decile VARCHAR, years VARCHAR, name VARCHAR)
### ANSWER
SELECT MAX(roll) FROM table_name_49 WHERE years = "1–8" AND name = "dorie school" AND decile > 9</s> | {
"answer": "SELECT MAX(roll) FROM table_name_49 WHERE years = \"1–8\" AND name = \"dorie school\" AND decile > 9",
"context": "CREATE TABLE table_name_49 (roll INTEGER, decile VARCHAR, years VARCHAR, name VARCHAR)",
"question": "What is the largest roll with Years 1–8, a Name of dorie school, and a Decile larger than 9?"
} |
### QUESTION
what year was the opponent caroline garcia?
### CONTEXT
CREATE TABLE table_name_22 (year INTEGER, opponent VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_22 WHERE opponent = "caroline garcia"</s> | {
"answer": "SELECT SUM(year) FROM table_name_22 WHERE opponent = \"caroline garcia\"",
"context": "CREATE TABLE table_name_22 (year INTEGER, opponent VARCHAR)",
"question": "what year was the opponent caroline garcia?"
} |
### QUESTION
what's the earliest year that the wimbledon opponent was zheng jie?
### CONTEXT
CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_50 WHERE event = "wimbledon" AND opponent = "zheng jie"</s> | {
"answer": "SELECT MIN(year) FROM table_name_50 WHERE event = \"wimbledon\" AND opponent = \"zheng jie\"",
"context": "CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR)",
"question": "what's the earliest year that the wimbledon opponent was zheng jie?"
} |
### QUESTION
What season did the player who had the number 26 play on who came from far eastern?
### CONTEXT
CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR)
### ANSWER
SELECT season FROM table_name_26 WHERE school_club_team = "far eastern" AND number = 26</s> | {
"answer": "SELECT season FROM table_name_26 WHERE school_club_team = \"far eastern\" AND number = 26",
"context": "CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR)",
"question": "What season did the player who had the number 26 play on who came from far eastern?"
} |
### QUESTION
What was the prize when the show was aired on Ant1, was presented by Andreas Mikroutsikos, and was launched on March 10, 2003?
### CONTEXT
CREATE TABLE table_name_19 (the_prize VARCHAR, launch_date VARCHAR, tv_channel VARCHAR, the_presenter VARCHAR)
### ANSWER
SELECT the_prize FROM table_name_19 WHERE tv_channel = "ant1" AND the_presenter = "andreas mikroutsikos" AND launch_date = "march 10, 2003"</s> | {
"answer": "SELECT the_prize FROM table_name_19 WHERE tv_channel = \"ant1\" AND the_presenter = \"andreas mikroutsikos\" AND launch_date = \"march 10, 2003\"",
"context": "CREATE TABLE table_name_19 (the_prize VARCHAR, launch_date VARCHAR, tv_channel VARCHAR, the_presenter VARCHAR)",
"question": "What was the prize when the show was aired on Ant1, was presented by Andreas Mikroutsikos, and was launched on March 10, 2003?"
} |
### QUESTION
When was construction completed that was listed on 09/21/1984 and a Deleted of 11/04/1999?
### CONTEXT
CREATE TABLE table_name_9 (construction_completed VARCHAR, listed VARCHAR, deleted VARCHAR)
### ANSWER
SELECT construction_completed FROM table_name_9 WHERE listed = "09/21/1984" AND deleted = "11/04/1999"</s> | {
"answer": "SELECT construction_completed FROM table_name_9 WHERE listed = \"09/21/1984\" AND deleted = \"11/04/1999\"",
"context": "CREATE TABLE table_name_9 (construction_completed VARCHAR, listed VARCHAR, deleted VARCHAR)",
"question": "When was construction completed that was listed on 09/21/1984 and a Deleted of 11/04/1999?"
} |
### QUESTION
How many transfer fees did Afonso Alves have after 2008?
### CONTEXT
CREATE TABLE table_name_13 (transfer_fee___ VARCHAR, player VARCHAR, year VARCHAR)
### ANSWER
SELECT COUNT(transfer_fee___) AS €_million_ FROM table_name_13 WHERE player = "afonso alves" AND year > 2008</s> | {
"answer": "SELECT COUNT(transfer_fee___) AS €_million_ FROM table_name_13 WHERE player = \"afonso alves\" AND year > 2008",
"context": "CREATE TABLE table_name_13 (transfer_fee___ VARCHAR, player VARCHAR, year VARCHAR)",
"question": "How many transfer fees did Afonso Alves have after 2008?"
} |
### QUESTION
Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes?
### CONTEXT
CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = "3 strokes" AND winning_score = –13(68 - 70 - 66 - 71 = 275)</s> | {
"answer": "SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = \"3 strokes\" AND winning_score = –13(68 - 70 - 66 - 71 = 275)",
"context": "CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)",
"question": "Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes?"
} |
### QUESTION
When the Winning score was –9 (69-72-68-70=279), what was the Margin of victory?
### CONTEXT
CREATE TABLE table_name_66 (margin_of_victory VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT margin_of_victory FROM table_name_66 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)</s> | {
"answer": "SELECT margin_of_victory FROM table_name_66 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)",
"context": "CREATE TABLE table_name_66 (margin_of_victory VARCHAR, winning_score VARCHAR)",
"question": "When the Winning score was –9 (69-72-68-70=279), what was the Margin of victory?"
} |
### QUESTION
What height has a floor count less than 25?
### CONTEXT
CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER)
### ANSWER
SELECT height FROM table_name_2 WHERE floor_count < 25</s> | {
"answer": "SELECT height FROM table_name_2 WHERE floor_count < 25",
"context": "CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER)",
"question": "What height has a floor count less than 25?"
} |
### QUESTION
What year were there less than 1.5 points and an Entrant of escuderia bandeirantes, and a maserati straight-4 engine?
### CONTEXT
CREATE TABLE table_name_90 (year VARCHAR, engine VARCHAR, points VARCHAR, entrant VARCHAR)
### ANSWER
SELECT year FROM table_name_90 WHERE points < 1.5 AND entrant = "escuderia bandeirantes" AND engine = "maserati straight-4"</s> | {
"answer": "SELECT year FROM table_name_90 WHERE points < 1.5 AND entrant = \"escuderia bandeirantes\" AND engine = \"maserati straight-4\"",
"context": "CREATE TABLE table_name_90 (year VARCHAR, engine VARCHAR, points VARCHAR, entrant VARCHAR)",
"question": "What year were there less than 1.5 points and an Entrant of escuderia bandeirantes, and a maserati straight-4 engine?"
} |
### QUESTION
What is the losses for the 5 matches?
### CONTEXT
CREATE TABLE table_name_40 (losses VARCHAR, matches VARCHAR)
### ANSWER
SELECT losses FROM table_name_40 WHERE matches = "5"</s> | {
"answer": "SELECT losses FROM table_name_40 WHERE matches = \"5\"",
"context": "CREATE TABLE table_name_40 (losses VARCHAR, matches VARCHAR)",
"question": "What is the losses for the 5 matches?"
} |
### QUESTION
What is the number for the Moroccan population when the name is Sebt Saiss and the 2004 population is more than 11212?
### CONTEXT
CREATE TABLE table_name_30 (moroccan_population VARCHAR, name VARCHAR, population__2004_ VARCHAR)
### ANSWER
SELECT COUNT(moroccan_population) FROM table_name_30 WHERE name = "sebt saiss" AND population__2004_ > 11212</s> | {
"answer": "SELECT COUNT(moroccan_population) FROM table_name_30 WHERE name = \"sebt saiss\" AND population__2004_ > 11212",
"context": "CREATE TABLE table_name_30 (moroccan_population VARCHAR, name VARCHAR, population__2004_ VARCHAR)",
"question": "What is the number for the Moroccan population when the name is Sebt Saiss and the 2004 population is more than 11212?"
} |
### QUESTION
Who were the Brazil scorers for the World Cup Competition with a 1-2 score?
### CONTEXT
CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)
### ANSWER
SELECT brazil_scorers FROM table_name_18 WHERE competition = "world cup" AND score = "1-2"</s> | {
"answer": "SELECT brazil_scorers FROM table_name_18 WHERE competition = \"world cup\" AND score = \"1-2\"",
"context": "CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)",
"question": "Who were the Brazil scorers for the World Cup Competition with a 1-2 score?"
} |
### QUESTION
What was the original title of the film directed by Lene Grønlykke and Sven Grønlykke?
### CONTEXT
CREATE TABLE table_name_72 (original_title VARCHAR, director VARCHAR)
### ANSWER
SELECT original_title FROM table_name_72 WHERE director = "lene grønlykke and sven grønlykke"</s> | {
"answer": "SELECT original_title FROM table_name_72 WHERE director = \"lene grønlykke and sven grønlykke\"",
"context": "CREATE TABLE table_name_72 (original_title VARCHAR, director VARCHAR)",
"question": "What was the original title of the film directed by Lene Grønlykke and Sven Grønlykke?"
} |
### QUESTION
What is the film title used in nomination for the film from South Korea?
### CONTEXT
CREATE TABLE table_name_26 (film_title_used_in_nomination VARCHAR, country VARCHAR)
### ANSWER
SELECT film_title_used_in_nomination FROM table_name_26 WHERE country = "south korea"</s> | {
"answer": "SELECT film_title_used_in_nomination FROM table_name_26 WHERE country = \"south korea\"",
"context": "CREATE TABLE table_name_26 (film_title_used_in_nomination VARCHAR, country VARCHAR)",
"question": "What is the film title used in nomination for the film from South Korea?"
} |
### QUESTION
What was the film title used in nomination for the film directed by Gheorghe Vitanidis?
### CONTEXT
CREATE TABLE table_name_89 (film_title_used_in_nomination VARCHAR, director VARCHAR)
### ANSWER
SELECT film_title_used_in_nomination FROM table_name_89 WHERE director = "gheorghe vitanidis"</s> | {
"answer": "SELECT film_title_used_in_nomination FROM table_name_89 WHERE director = \"gheorghe vitanidis\"",
"context": "CREATE TABLE table_name_89 (film_title_used_in_nomination VARCHAR, director VARCHAR)",
"question": "What was the film title used in nomination for the film directed by Gheorghe Vitanidis?"
} |
### QUESTION
What is the smallest number of seats with INC as an election winner and BJP incumbent?
### CONTEXT
CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR)
### ANSWER
SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = "inc" AND incumbent = "bjp"</s> | {
"answer": "SELECT MIN(seats__acs_) FROM table_name_57 WHERE election_winner = \"inc\" AND incumbent = \"bjp\"",
"context": "CREATE TABLE table_name_57 (seats__acs_ INTEGER, election_winner VARCHAR, incumbent VARCHAR)",
"question": "What is the smallest number of seats with INC as an election winner and BJP incumbent?"
} |
### QUESTION
What is the win-loss when 2008 has a value of Q1 at Australian Open?
### CONTEXT
CREATE TABLE table_name_65 (career_win_loss VARCHAR, tournament VARCHAR)
### ANSWER
SELECT career_win_loss FROM table_name_65 WHERE 2008 = "q1" AND tournament = "australian open"</s> | {
"answer": "SELECT career_win_loss FROM table_name_65 WHERE 2008 = \"q1\" AND tournament = \"australian open\"",
"context": "CREATE TABLE table_name_65 (career_win_loss VARCHAR, tournament VARCHAR)",
"question": "What is the win-loss when 2008 has a value of Q1 at Australian Open?"
} |
### QUESTION
what is the tournament when the performance in 2012 is 3r and 2011 is qf?
### CONTEXT
CREATE TABLE table_name_77 (tournament VARCHAR)
### ANSWER
SELECT tournament FROM table_name_77 WHERE 2012 = "3r" AND 2011 = "qf"</s> | {
"answer": "SELECT tournament FROM table_name_77 WHERE 2012 = \"3r\" AND 2011 = \"qf\"",
"context": "CREATE TABLE table_name_77 (tournament VARCHAR)",
"question": "what is the tournament when the performance in 2012 is 3r and 2011 is qf?"
} |
### QUESTION
What is the year when Spirit Tom's Racing had more than 3 points?
### CONTEXT
CREATE TABLE table_name_70 (year INTEGER, entrant VARCHAR, points VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_70 WHERE entrant = "spirit tom's racing" AND points > 3</s> | {
"answer": "SELECT SUM(year) FROM table_name_70 WHERE entrant = \"spirit tom's racing\" AND points > 3",
"context": "CREATE TABLE table_name_70 (year INTEGER, entrant VARCHAR, points VARCHAR)",
"question": "What is the year when Spirit Tom's Racing had more than 3 points?"
} |
### QUESTION
Name the average week for attendance of 75,111
### CONTEXT
CREATE TABLE table_name_17 (week INTEGER, attendance VARCHAR)
### ANSWER
SELECT AVG(week) FROM table_name_17 WHERE attendance = 75 OFFSET 111</s> | {
"answer": "SELECT AVG(week) FROM table_name_17 WHERE attendance = 75 OFFSET 111",
"context": "CREATE TABLE table_name_17 (week INTEGER, attendance VARCHAR)",
"question": "Name the average week for attendance of 75,111"
} |
### QUESTION
For the Entrant of Sasol Jordan, add up all the points with a Year larger than 1993.
### CONTEXT
CREATE TABLE table_name_53 (points INTEGER, year VARCHAR, entrant VARCHAR)
### ANSWER
SELECT SUM(points) FROM table_name_53 WHERE year > 1993 AND entrant = "sasol jordan"</s> | {
"answer": "SELECT SUM(points) FROM table_name_53 WHERE year > 1993 AND entrant = \"sasol jordan\"",
"context": "CREATE TABLE table_name_53 (points INTEGER, year VARCHAR, entrant VARCHAR)",
"question": "For the Entrant of Sasol Jordan, add up all the points with a Year larger than 1993."
} |
### QUESTION
Give the most points that features jordan 194 in the Chassis column.
### CONTEXT
CREATE TABLE table_name_64 (points INTEGER, chassis VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_64 WHERE chassis = "jordan 194"</s> | {
"answer": "SELECT MAX(points) FROM table_name_64 WHERE chassis = \"jordan 194\"",
"context": "CREATE TABLE table_name_64 (points INTEGER, chassis VARCHAR)",
"question": "Give the most points that features jordan 194 in the Chassis column."
} |
### QUESTION
In the 2012 (85th) Ceremony, what was the Original title of the film not nominated?
### CONTEXT
CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)
### ANSWER
SELECT original_title FROM table_name_66 WHERE result = "not nominated" AND year__ceremony_ = "2012 (85th)"</s> | {
"answer": "SELECT original_title FROM table_name_66 WHERE result = \"not nominated\" AND year__ceremony_ = \"2012 (85th)\"",
"context": "CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)",
"question": "In the 2012 (85th) Ceremony, what was the Original title of the film not nominated?"
} |
### QUESTION
What day did the Diamondbacks go 2-7?
### CONTEXT
CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_92 WHERE opponent = "diamondbacks" AND score = "2-7"</s> | {
"answer": "SELECT date FROM table_name_92 WHERE opponent = \"diamondbacks\" AND score = \"2-7\"",
"context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)",
"question": "What day did the Diamondbacks go 2-7?"
} |
### QUESTION
What is the total number of picks for PBA team san miguel beermen who picked rommel daep?
### CONTEXT
CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep"</s> | {
"answer": "SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = \"san miguel beermen\" AND player = \"rommel daep\"",
"context": "CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR)",
"question": "What is the total number of picks for PBA team san miguel beermen who picked rommel daep?"
} |
### QUESTION
What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007?
### CONTEXT
CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR)
### ANSWER
SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = "seoul samsung thunders" AND champions = "jeonju kcc egis"</s> | {
"answer": "SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = \"seoul samsung thunders\" AND champions = \"jeonju kcc egis\"",
"context": "CREATE TABLE table_name_39 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR)",
"question": "What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007?"
} |
### QUESTION
What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth?
### CONTEXT
CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_93 WHERE winning_team = "europe" AND usa_captain = "kathy whitworth"</s> | {
"answer": "SELECT MAX(year) FROM table_name_93 WHERE winning_team = \"europe\" AND usa_captain = \"kathy whitworth\"",
"context": "CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR)",
"question": "What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth?"
} |
### QUESTION
What Division III has Bishop Brady in Division V and Hanover in Division IV?
### CONTEXT
CREATE TABLE table_name_97 (division_iII VARCHAR, division_v VARCHAR, division_iV VARCHAR, hanover VARCHAR)
### ANSWER
SELECT division_iII FROM table_name_97 WHERE division_v = "bishop brady" AND division_iV = hanover</s> | {
"answer": "SELECT division_iII FROM table_name_97 WHERE division_v = \"bishop brady\" AND division_iV = hanover",
"context": "CREATE TABLE table_name_97 (division_iII VARCHAR, division_v VARCHAR, division_iV VARCHAR, hanover VARCHAR)",
"question": "What Division III has Bishop Brady in Division V and Hanover in Division IV?"
} |
### QUESTION
Name the total number of points for beta team march 1975 and chassis of march 751
### CONTEXT
CREATE TABLE table_name_86 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_86 WHERE entrant = "beta team march" AND year = 1975 AND chassis = "march 751"</s> | {
"answer": "SELECT COUNT(points) FROM table_name_86 WHERE entrant = \"beta team march\" AND year = 1975 AND chassis = \"march 751\"",
"context": "CREATE TABLE table_name_86 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR)",
"question": "Name the total number of points for beta team march 1975 and chassis of march 751"
} |
### QUESTION
What score in the final has hard as the surface, and june 13, 2011 as the date?
### CONTEXT
CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011"</s> | {
"answer": "SELECT score_in_the_final FROM table_name_57 WHERE surface = \"hard\" AND date = \"june 13, 2011\"",
"context": "CREATE TABLE table_name_57 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)",
"question": "What score in the final has hard as the surface, and june 13, 2011 as the date?"
} |
### QUESTION
Which type of surface do Amer Delic Robert Kendrick's opponents have?
### CONTEXT
CREATE TABLE table_name_53 (surface VARCHAR, opponents VARCHAR)
### ANSWER
SELECT surface FROM table_name_53 WHERE opponents = "amer delic robert kendrick"</s> | {
"answer": "SELECT surface FROM table_name_53 WHERE opponents = \"amer delic robert kendrick\"",
"context": "CREATE TABLE table_name_53 (surface VARCHAR, opponents VARCHAR)",
"question": "Which type of surface do Amer Delic Robert Kendrick's opponents have?"
} |
### QUESTION
What is Diego Junqueira Gabriel Trujillo-Soler's opponent's score?
### CONTEXT
CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR)
### ANSWER
SELECT score FROM table_name_35 WHERE opponents = "diego junqueira gabriel trujillo-soler"</s> | {
"answer": "SELECT score FROM table_name_35 WHERE opponents = \"diego junqueira gabriel trujillo-soler\"",
"context": "CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR)",
"question": "What is Diego Junqueira Gabriel Trujillo-Soler's opponent's score?"
} |
### QUESTION
Which surface do opponents of Thomas Oger Nicolas Tourte have?
### CONTEXT
CREATE TABLE table_name_18 (surface VARCHAR, opponents VARCHAR)
### ANSWER
SELECT surface FROM table_name_18 WHERE opponents = "thomas oger nicolas tourte"</s> | {
"answer": "SELECT surface FROM table_name_18 WHERE opponents = \"thomas oger nicolas tourte\"",
"context": "CREATE TABLE table_name_18 (surface VARCHAR, opponents VARCHAR)",
"question": "Which surface do opponents of Thomas Oger Nicolas Tourte have?"
} |
### QUESTION
What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman?
### CONTEXT
CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_18 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "alvin and the chipmunks meet the wolfman"</s> | {
"answer": "SELECT MIN(year) FROM table_name_18 WHERE role = \"alvin seville simon seville david 'dave' seville\" AND title = \"alvin and the chipmunks meet the wolfman\"",
"context": "CREATE TABLE table_name_18 (year INTEGER, role VARCHAR, title VARCHAR)",
"question": "What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman?"
} |
### QUESTION
What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?
### CONTEXT
CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR)
### ANSWER
SELECT AVG(year) FROM table_name_30 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "the chipmunk adventure"</s> | {
"answer": "SELECT AVG(year) FROM table_name_30 WHERE role = \"alvin seville simon seville david 'dave' seville\" AND title = \"the chipmunk adventure\"",
"context": "CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR)",
"question": "What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?"
} |
### QUESTION
What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00?
### CONTEXT
CREATE TABLE table_name_14 (result VARCHAR, h___a VARCHAR, kick_off VARCHAR)
### ANSWER
SELECT result FROM table_name_14 WHERE h___a = "a" AND kick_off = "1992-10-31 16:00"</s> | {
"answer": "SELECT result FROM table_name_14 WHERE h___a = \"a\" AND kick_off = \"1992-10-31 16:00\"",
"context": "CREATE TABLE table_name_14 (result VARCHAR, h___a VARCHAR, kick_off VARCHAR)",
"question": "What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00?"
} |
### QUESTION
Which Attendance has a Game score less than 3, and a Score of 2 – 5?
### CONTEXT
CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = "2 – 5"</s> | {
"answer": "SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = \"2 – 5\"",
"context": "CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)",
"question": "Which Attendance has a Game score less than 3, and a Score of 2 – 5?"
} |
### QUESTION
Which Presentation of Credentials is listed for the Appointed by Benjamin Harrison?
### CONTEXT
CREATE TABLE table_name_55 (presentation_of_credentials VARCHAR, appointed_by VARCHAR)
### ANSWER
SELECT presentation_of_credentials FROM table_name_55 WHERE appointed_by = "benjamin harrison"</s> | {
"answer": "SELECT presentation_of_credentials FROM table_name_55 WHERE appointed_by = \"benjamin harrison\"",
"context": "CREATE TABLE table_name_55 (presentation_of_credentials VARCHAR, appointed_by VARCHAR)",
"question": "Which Presentation of Credentials is listed for the Appointed by Benjamin Harrison?"
} |
### QUESTION
What is the Termination of Mission with a Title of Ambassador Extraordinary and Plenipotentiary with a Representative of Reynold E. Carlson?
### CONTEXT
CREATE TABLE table_name_37 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)
### ANSWER
SELECT termination_of_mission FROM table_name_37 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "reynold e. carlson"</s> | {
"answer": "SELECT termination_of_mission FROM table_name_37 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"reynold e. carlson\"",
"context": "CREATE TABLE table_name_37 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)",
"question": "What is the Termination of Mission with a Title of Ambassador Extraordinary and Plenipotentiary with a Representative of Reynold E. Carlson?"
} |
### QUESTION
What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name?
### CONTEXT
CREATE TABLE table_name_86 (avg_g INTEGER, effic VARCHAR, name VARCHAR)
### ANSWER
SELECT MIN(avg_g) FROM table_name_86 WHERE effic > 34.36 AND name = "wesley carroll"</s> | {
"answer": "SELECT MIN(avg_g) FROM table_name_86 WHERE effic > 34.36 AND name = \"wesley carroll\"",
"context": "CREATE TABLE table_name_86 (avg_g INTEGER, effic VARCHAR, name VARCHAR)",
"question": "What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name?"
} |
### QUESTION
What course are they running on stage 1?
### CONTEXT
CREATE TABLE table_name_5 (course VARCHAR, stage VARCHAR)
### ANSWER
SELECT course FROM table_name_5 WHERE stage = "1"</s> | {
"answer": "SELECT course FROM table_name_5 WHERE stage = \"1\"",
"context": "CREATE TABLE table_name_5 (course VARCHAR, stage VARCHAR)",
"question": "What course are they running on stage 1?"
} |
### QUESTION
What Year has an (Aramac) of 832 and a Population (Total) less than 3,762?
### CONTEXT
CREATE TABLE table_name_42 (year INTEGER, _aramac_ VARCHAR, population__total_ VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_42 WHERE _aramac_ = 832 AND population__total_ < 3 OFFSET 762</s> | {
"answer": "SELECT SUM(year) FROM table_name_42 WHERE _aramac_ = 832 AND population__total_ < 3 OFFSET 762",
"context": "CREATE TABLE table_name_42 (year INTEGER, _aramac_ VARCHAR, population__total_ VARCHAR)",
"question": "What Year has an (Aramac) of 832 and a Population (Total) less than 3,762?"
} |
### QUESTION
Which year's genre was jazz under the columbia label when it was nominated for the title Trio jeepy?
### CONTEXT
CREATE TABLE table_name_37 (year VARCHAR, title VARCHAR, result VARCHAR, genre VARCHAR, label VARCHAR)
### ANSWER
SELECT year FROM table_name_37 WHERE genre = "jazz" AND label = "columbia" AND result = "nominated" AND title = "trio jeepy"</s> | {
"answer": "SELECT year FROM table_name_37 WHERE genre = \"jazz\" AND label = \"columbia\" AND result = \"nominated\" AND title = \"trio jeepy\"",
"context": "CREATE TABLE table_name_37 (year VARCHAR, title VARCHAR, result VARCHAR, genre VARCHAR, label VARCHAR)",
"question": "Which year's genre was jazz under the columbia label when it was nominated for the title Trio jeepy?"
} |
### QUESTION
What company focuses on Engine Overhaul for their principal activity?
### CONTEXT
CREATE TABLE table_name_7 (company VARCHAR, principal_activities VARCHAR)
### ANSWER
SELECT company FROM table_name_7 WHERE principal_activities = "engine overhaul"</s> | {
"answer": "SELECT company FROM table_name_7 WHERE principal_activities = \"engine overhaul\"",
"context": "CREATE TABLE table_name_7 (company VARCHAR, principal_activities VARCHAR)",
"question": "What company focuses on Engine Overhaul for their principal activity?"
} |
### QUESTION
When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?
### CONTEXT
CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR, game VARCHAR, team VARCHAR)
### ANSWER
SELECT date FROM table_name_86 WHERE game > 4 AND team = "san antonio" AND record = "4-3"</s> | {
"answer": "SELECT date FROM table_name_86 WHERE game > 4 AND team = \"san antonio\" AND record = \"4-3\"",
"context": "CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR, game VARCHAR, team VARCHAR)",
"question": "When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?"
} |
### QUESTION
Who was the winner from the United States the year Kimberly Kim was runner-up?
### CONTEXT
CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR)
### ANSWER
SELECT winner FROM table_name_59 WHERE runner_up = "kimberly kim" AND country = "united states"</s> | {
"answer": "SELECT winner FROM table_name_59 WHERE runner_up = \"kimberly kim\" AND country = \"united states\"",
"context": "CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR)",
"question": "Who was the winner from the United States the year Kimberly Kim was runner-up?"
} |
### QUESTION
Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20?
### CONTEXT
CREATE TABLE table_name_67 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR)
### ANSWER
SELECT opponent FROM table_name_67 WHERE type = "tko" AND round = "2 (6)" AND date = "2006-09-20"</s> | {
"answer": "SELECT opponent FROM table_name_67 WHERE type = \"tko\" AND round = \"2 (6)\" AND date = \"2006-09-20\"",
"context": "CREATE TABLE table_name_67 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR)",
"question": "Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20?"
} |
### QUESTION
What is the lowest Perigee with a Launch date of 1970-08-26?
### CONTEXT
CREATE TABLE table_name_30 (perigee__km_ INTEGER, launch_date VARCHAR)
### ANSWER
SELECT MIN(perigee__km_) FROM table_name_30 WHERE launch_date = "1970-08-26"</s> | {
"answer": "SELECT MIN(perigee__km_) FROM table_name_30 WHERE launch_date = \"1970-08-26\"",
"context": "CREATE TABLE table_name_30 (perigee__km_ INTEGER, launch_date VARCHAR)",
"question": "What is the lowest Perigee with a Launch date of 1970-08-26?"
} |
### QUESTION
What is the Score when the opponent in the final is alicia pillay on a hard surface?
### CONTEXT
CREATE TABLE table_name_73 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT score FROM table_name_73 WHERE surface = "hard" AND opponent_in_the_final = "alicia pillay"</s> | {
"answer": "SELECT score FROM table_name_73 WHERE surface = \"hard\" AND opponent_in_the_final = \"alicia pillay\"",
"context": "CREATE TABLE table_name_73 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)",
"question": "What is the Score when the opponent in the final is alicia pillay on a hard surface?"
} |
### QUESTION
What is the data limit for a T-Mobile internet basic plan?
### CONTEXT
CREATE TABLE table_name_18 (data_limit__gb VARCHAR, company VARCHAR, plan_name VARCHAR)
### ANSWER
SELECT data_limit__gb FROM table_name_18 WHERE company = "t-mobile" AND plan_name = "internet basic"</s> | {
"answer": "SELECT data_limit__gb FROM table_name_18 WHERE company = \"t-mobile\" AND plan_name = \"internet basic\"",
"context": "CREATE TABLE table_name_18 (data_limit__gb VARCHAR, company VARCHAR, plan_name VARCHAR)",
"question": "What is the data limit for a T-Mobile internet basic plan?"
} |
### QUESTION
What is the Opponent in the final with an outcome of winner on 14-may-2007?
### CONTEXT
CREATE TABLE table_name_92 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent_in_the_final FROM table_name_92 WHERE outcome = "winner" AND date = "14-may-2007"</s> | {
"answer": "SELECT opponent_in_the_final FROM table_name_92 WHERE outcome = \"winner\" AND date = \"14-may-2007\"",
"context": "CREATE TABLE table_name_92 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)",
"question": "What is the Opponent in the final with an outcome of winner on 14-may-2007?"
} |
### QUESTION
What is the maximum download speed for the Internet premium 3G plan?
### CONTEXT
CREATE TABLE table_name_5 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)
### ANSWER
SELECT maximum_download_speed__kbps FROM table_name_5 WHERE technology = "3g" AND plan_name = "internet premium"</s> | {
"answer": "SELECT maximum_download_speed__kbps FROM table_name_5 WHERE technology = \"3g\" AND plan_name = \"internet premium\"",
"context": "CREATE TABLE table_name_5 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)",
"question": "What is the maximum download speed for the Internet premium 3G plan?"
} |
### QUESTION
What is the to par for Gene Littler?
### CONTEXT
CREATE TABLE table_name_42 (to_par VARCHAR, player VARCHAR)
### ANSWER
SELECT to_par FROM table_name_42 WHERE player = "gene littler"</s> | {
"answer": "SELECT to_par FROM table_name_42 WHERE player = \"gene littler\"",
"context": "CREATE TABLE table_name_42 (to_par VARCHAR, player VARCHAR)",
"question": "What is the to par for Gene Littler?"
} |
### QUESTION
What is the set 5 if the Date is jun 7, and a Set 4 is 21-25?
### CONTEXT
CREATE TABLE table_name_65 (set_5 VARCHAR, date VARCHAR, set_4 VARCHAR)
### ANSWER
SELECT set_5 FROM table_name_65 WHERE date = "jun 7" AND set_4 = "21-25"</s> | {
"answer": "SELECT set_5 FROM table_name_65 WHERE date = \"jun 7\" AND set_4 = \"21-25\"",
"context": "CREATE TABLE table_name_65 (set_5 VARCHAR, date VARCHAR, set_4 VARCHAR)",
"question": "What is the set 5 if the Date is jun 7, and a Set 4 is 21-25?"
} |
### QUESTION
What nation has a sport of weightlifting and a pinyin of kùkè qúndǎo?
### CONTEXT
CREATE TABLE table_name_24 (nation VARCHAR, sport VARCHAR, pinyin VARCHAR)
### ANSWER
SELECT nation FROM table_name_24 WHERE sport = "weightlifting" AND pinyin = "kùkè qúndǎo"</s> | {
"answer": "SELECT nation FROM table_name_24 WHERE sport = \"weightlifting\" AND pinyin = \"kùkè qúndǎo\"",
"context": "CREATE TABLE table_name_24 (nation VARCHAR, sport VARCHAR, pinyin VARCHAR)",
"question": "What nation has a sport of weightlifting and a pinyin of kùkè qúndǎo?"
} |
### QUESTION
What day did Glentoran play at Windsor Park, Belfast?
### CONTEXT
CREATE TABLE table_name_34 (date VARCHAR, team VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_34 WHERE team = "glentoran" AND venue = "windsor park, belfast"</s> | {
"answer": "SELECT date FROM table_name_34 WHERE team = \"glentoran\" AND venue = \"windsor park, belfast\"",
"context": "CREATE TABLE table_name_34 (date VARCHAR, team VARCHAR, venue VARCHAR)",
"question": "What day did Glentoran play at Windsor Park, Belfast?"
} |
### QUESTION
In what round was the first outside linebacker picked?
### CONTEXT
CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_72 WHERE position = "outside linebacker"</s> | {
"answer": "SELECT MIN(round) FROM table_name_72 WHERE position = \"outside linebacker\"",
"context": "CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)",
"question": "In what round was the first outside linebacker picked?"
} |
### QUESTION
Who was the Home Captain and the Result for AUS by 4 wkts?
### CONTEXT
CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR)
### ANSWER
SELECT home_captain FROM table_name_25 WHERE result = "aus by 4 wkts"</s> | {
"answer": "SELECT home_captain FROM table_name_25 WHERE result = \"aus by 4 wkts\"",
"context": "CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR)",
"question": "Who was the Home Captain and the Result for AUS by 4 wkts?"
} |
### QUESTION
What was the highest match when the away opponent was Dalian Shide Siwu?
### CONTEXT
CREATE TABLE table_name_53 (match INTEGER, opponent_team VARCHAR, home_away VARCHAR)
### ANSWER
SELECT MAX(match) FROM table_name_53 WHERE opponent_team = "dalian shide siwu" AND home_away = "away"</s> | {
"answer": "SELECT MAX(match) FROM table_name_53 WHERE opponent_team = \"dalian shide siwu\" AND home_away = \"away\"",
"context": "CREATE TABLE table_name_53 (match INTEGER, opponent_team VARCHAR, home_away VARCHAR)",
"question": "What was the highest match when the away opponent was Dalian Shide Siwu?"
} |
### QUESTION
Name the least revenue for chelsea of england with rank less than 7
### CONTEXT
CREATE TABLE table_name_73 (revenue__ INTEGER, rank VARCHAR, country VARCHAR, team VARCHAR)
### ANSWER
SELECT MIN(revenue__) AS $m_ FROM table_name_73 WHERE country = "england" AND team = "chelsea" AND rank < 7</s> | {
"answer": "SELECT MIN(revenue__) AS $m_ FROM table_name_73 WHERE country = \"england\" AND team = \"chelsea\" AND rank < 7",
"context": "CREATE TABLE table_name_73 (revenue__ INTEGER, rank VARCHAR, country VARCHAR, team VARCHAR)",
"question": "Name the least revenue for chelsea of england with rank less than 7"
} |
### QUESTION
What is the Venue with a Result that is win, and a Score that is 5-0?
### CONTEXT
CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR, score VARCHAR)
### ANSWER
SELECT venue FROM table_name_35 WHERE result = "win" AND score = "5-0"</s> | {
"answer": "SELECT venue FROM table_name_35 WHERE result = \"win\" AND score = \"5-0\"",
"context": "CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR, score VARCHAR)",
"question": "What is the Venue with a Result that is win, and a Score that is 5-0?"
} |
### QUESTION
What is the Competition with a Result of win with a Score that is 1-0?
### CONTEXT
CREATE TABLE table_name_91 (competition VARCHAR, result VARCHAR, score VARCHAR)
### ANSWER
SELECT competition FROM table_name_91 WHERE result = "win" AND score = "1-0"</s> | {
"answer": "SELECT competition FROM table_name_91 WHERE result = \"win\" AND score = \"1-0\"",
"context": "CREATE TABLE table_name_91 (competition VARCHAR, result VARCHAR, score VARCHAR)",
"question": "What is the Competition with a Result of win with a Score that is 1-0?"
} |
### QUESTION
What date has a Decision of osgood, and a Score of 3 – 4?
### CONTEXT
CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_63 WHERE decision = "osgood" AND score = "3 – 4"</s> | {
"answer": "SELECT date FROM table_name_63 WHERE decision = \"osgood\" AND score = \"3 – 4\"",
"context": "CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)",
"question": "What date has a Decision of osgood, and a Score of 3 – 4?"
} |
### QUESTION
What was the cargo value in 2005 with a ship size of all product carriers?
### CONTEXT
CREATE TABLE table_name_31 (ship_size VARCHAR)
### ANSWER
SELECT 2005 FROM table_name_31 WHERE ship_size = "all product carriers"</s> | {
"answer": "SELECT 2005 FROM table_name_31 WHERE ship_size = \"all product carriers\"",
"context": "CREATE TABLE table_name_31 (ship_size VARCHAR)",
"question": "What was the cargo value in 2005 with a ship size of all product carriers?"
} |
### QUESTION
What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?
### CONTEXT
CREATE TABLE table_name_66 (games VARCHAR, goals INTEGER, name VARCHAR)
### ANSWER
SELECT AVG(goals) / games FROM table_name_66 WHERE name = "rummenigge, karl-heinz" AND goals < 162</s> | {
"answer": "SELECT AVG(goals) / games FROM table_name_66 WHERE name = \"rummenigge, karl-heinz\" AND goals < 162",
"context": "CREATE TABLE table_name_66 (games VARCHAR, goals INTEGER, name VARCHAR)",
"question": "What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?"
} |
### QUESTION
What is the sum of Games for Allofs, Klaus, with Goals less than 177?
### CONTEXT
CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR)
### ANSWER
SELECT SUM(games) FROM table_name_53 WHERE name = "allofs, klaus" AND goals < 177</s> | {
"answer": "SELECT SUM(games) FROM table_name_53 WHERE name = \"allofs, klaus\" AND goals < 177",
"context": "CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR)",
"question": "What is the sum of Games for Allofs, Klaus, with Goals less than 177?"
} |
### QUESTION
When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?
### CONTEXT
CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_title VARCHAR)
### ANSWER
SELECT initial_release_date FROM table_name_41 WHERE publisher = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"</s> | {
"answer": "SELECT initial_release_date FROM table_name_41 WHERE publisher = \"banpresto\" AND japanese_title = \"ranma ½: netsuretsu kakutouhen\"",
"context": "CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_title VARCHAR)",
"question": "When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?"
} |
### QUESTION
What genre is the Banpresto game tittled Ranma ½: netsuretsu kakutouhen?
### CONTEXT
CREATE TABLE table_name_34 (genre VARCHAR, developer VARCHAR, japanese_title VARCHAR)
### ANSWER
SELECT genre FROM table_name_34 WHERE developer = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"</s> | {
"answer": "SELECT genre FROM table_name_34 WHERE developer = \"banpresto\" AND japanese_title = \"ranma ½: netsuretsu kakutouhen\"",
"context": "CREATE TABLE table_name_34 (genre VARCHAR, developer VARCHAR, japanese_title VARCHAR)",
"question": "What genre is the Banpresto game tittled Ranma ½: netsuretsu kakutouhen?"
} |
### QUESTION
Who is the director of Cannibal vegetarian, which is the film title used in nomination?
### CONTEXT
CREATE TABLE table_name_92 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
### ANSWER
SELECT director_s_ FROM table_name_92 WHERE film_title_used_in_nomination = "cannibal vegetarian"</s> | {
"answer": "SELECT director_s_ FROM table_name_92 WHERE film_title_used_in_nomination = \"cannibal vegetarian\"",
"context": "CREATE TABLE table_name_92 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)",
"question": "Who is the director of Cannibal vegetarian, which is the film title used in nomination?"
} |
### QUESTION
When was the earliest first game with 11 played and 12 games lost?
### CONTEXT
CREATE TABLE table_name_60 (first_game INTEGER, played VARCHAR, lost VARCHAR)
### ANSWER
SELECT MIN(first_game) FROM table_name_60 WHERE played > 11 AND lost = 12</s> | {
"answer": "SELECT MIN(first_game) FROM table_name_60 WHERE played > 11 AND lost = 12",
"context": "CREATE TABLE table_name_60 (first_game INTEGER, played VARCHAR, lost VARCHAR)",
"question": "When was the earliest first game with 11 played and 12 games lost?"
} |
Subsets and Splits