text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?
### CONTEXT
CREATE TABLE table_name_48 (swing_to_gain INTEGER, constituency VARCHAR)
### ANSWER
SELECT SUM(swing_to_gain) FROM table_name_48 WHERE constituency = "caithness, sutherland and easter ross" | {
"answer": "SELECT SUM(swing_to_gain) FROM table_name_48 WHERE constituency = \"caithness, sutherland and easter ross\"",
"context": "CREATE TABLE table_name_48 (swing_to_gain INTEGER, constituency VARCHAR)",
"question": "Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?"
} |
### QUESTION
What's the Time/Retired of Laps of 75?
### CONTEXT
CREATE TABLE table_name_59 (time_retired VARCHAR, laps VARCHAR)
### ANSWER
SELECT time_retired FROM table_name_59 WHERE laps = 75 | {
"answer": "SELECT time_retired FROM table_name_59 WHERE laps = 75",
"context": "CREATE TABLE table_name_59 (time_retired VARCHAR, laps VARCHAR)",
"question": "What's the Time/Retired of Laps of 75?"
} |
### QUESTION
what is the minimum attendance with score 8.16 (64) – 8.12 (60)
### CONTEXT
CREATE TABLE table_10566855_1 (attendance INTEGER, score VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_10566855_1 WHERE score = "8.16 (64) – 8.12 (60)" | {
"answer": "SELECT MIN(attendance) FROM table_10566855_1 WHERE score = \"8.16 (64) – 8.12 (60)\"",
"context": "CREATE TABLE table_10566855_1 (attendance INTEGER, score VARCHAR)",
"question": "what is the minimum attendance with score 8.16 (64) – 8.12 (60)"
} |
### QUESTION
What is the score for the away team of north melbourne?
### CONTEXT
CREATE TABLE table_name_79 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_79 WHERE away_team = "north melbourne" | {
"answer": "SELECT away_team AS score FROM table_name_79 WHERE away_team = \"north melbourne\"",
"context": "CREATE TABLE table_name_79 (away_team VARCHAR)",
"question": "What is the score for the away team of north melbourne?"
} |
### QUESTION
Which home team plays at victoria park?
### CONTEXT
CREATE TABLE table_name_46 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team FROM table_name_46 WHERE venue = "victoria park" | {
"answer": "SELECT home_team FROM table_name_46 WHERE venue = \"victoria park\"",
"context": "CREATE TABLE table_name_46 (home_team VARCHAR, venue VARCHAR)",
"question": "Which home team plays at victoria park?"
} |
### QUESTION
what is the competition for the event team all-round in the year before 1913?
### CONTEXT
CREATE TABLE table_name_38 (competition VARCHAR, event VARCHAR, year VARCHAR)
### ANSWER
SELECT competition FROM table_name_38 WHERE event = "team all-round" AND year < 1913 | {
"answer": "SELECT competition FROM table_name_38 WHERE event = \"team all-round\" AND year < 1913",
"context": "CREATE TABLE table_name_38 (competition VARCHAR, event VARCHAR, year VARCHAR)",
"question": "what is the competition for the event team all-round in the year before 1913?"
} |
### QUESTION
What is the Mens Nickname for the member location of Jacksonville, florida?
### CONTEXT
CREATE TABLE table_10577579_2 (mens_nickname VARCHAR, location VARCHAR)
### ANSWER
SELECT mens_nickname FROM table_10577579_2 WHERE location = "Jacksonville, Florida" | {
"answer": "SELECT mens_nickname FROM table_10577579_2 WHERE location = \"Jacksonville, Florida\"",
"context": "CREATE TABLE table_10577579_2 (mens_nickname VARCHAR, location VARCHAR)",
"question": "What is the Mens Nickname for the member location of Jacksonville, florida?"
} |
### QUESTION
What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish?
### CONTEXT
CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT date_of_vacancy FROM table_10592536_8 WHERE date_of_appointment = "28 November 2007" AND replaced_by = "Alex McLeish" | {
"answer": "SELECT date_of_vacancy FROM table_10592536_8 WHERE date_of_appointment = \"28 November 2007\" AND replaced_by = \"Alex McLeish\"",
"context": "CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, replaced_by VARCHAR)",
"question": "What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish?"
} |
### QUESTION
What is the date of vacancy when the team is manchester city and replaced by is mark hughes?
### CONTEXT
CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, team VARCHAR, replaced_by VARCHAR)
### ANSWER
SELECT date_of_vacancy FROM table_10592536_8 WHERE team = "Manchester City" AND replaced_by = "Mark Hughes" | {
"answer": "SELECT date_of_vacancy FROM table_10592536_8 WHERE team = \"Manchester City\" AND replaced_by = \"Mark Hughes\"",
"context": "CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, team VARCHAR, replaced_by VARCHAR)",
"question": "What is the date of vacancy when the team is manchester city and replaced by is mark hughes?"
} |
### QUESTION
What is the average attendance when Brewers are the opponent with a score of 6–3?
### CONTEXT
CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_68 WHERE opponent = "brewers" AND score = "6–3" | {
"answer": "SELECT AVG(attendance) FROM table_name_68 WHERE opponent = \"brewers\" AND score = \"6–3\"",
"context": "CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR)",
"question": "What is the average attendance when Brewers are the opponent with a score of 6–3?"
} |
### QUESTION
What is the most number of cuts made that had more than 7 events played and more than 2 top-25s?
### CONTEXT
CREATE TABLE table_name_18 (cuts_made INTEGER, events VARCHAR, top_25 VARCHAR)
### ANSWER
SELECT MAX(cuts_made) FROM table_name_18 WHERE events = 7 AND top_25 > 2 | {
"answer": "SELECT MAX(cuts_made) FROM table_name_18 WHERE events = 7 AND top_25 > 2",
"context": "CREATE TABLE table_name_18 (cuts_made INTEGER, events VARCHAR, top_25 VARCHAR)",
"question": "What is the most number of cuts made that had more than 7 events played and more than 2 top-25s?"
} |
### QUESTION
Which general election had a pq majority and a 44.75% of the popular vote?
### CONTEXT
CREATE TABLE table_106367_2 (general_election VARCHAR, result VARCHAR, _percentage_of_popular_vote VARCHAR)
### ANSWER
SELECT general_election FROM table_106367_2 WHERE result = "PQ majority" AND _percentage_of_popular_vote = "44.75%" | {
"answer": "SELECT general_election FROM table_106367_2 WHERE result = \"PQ majority\" AND _percentage_of_popular_vote = \"44.75%\"",
"context": "CREATE TABLE table_106367_2 (general_election VARCHAR, result VARCHAR, _percentage_of_popular_vote VARCHAR)",
"question": "Which general election had a pq majority and a 44.75% of the popular vote?"
} |
### QUESTION
What location was fábio maldonado the opponent at?
### CONTEXT
CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT location FROM table_name_26 WHERE opponent = "fábio maldonado" | {
"answer": "SELECT location FROM table_name_26 WHERE opponent = \"fábio maldonado\"",
"context": "CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)",
"question": "What location was fábio maldonado the opponent at?"
} |
### QUESTION
Who directed the episode where u.s. viewers (million) is 12.90?
### CONTEXT
CREATE TABLE table_10701133_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
### ANSWER
SELECT directed_by FROM table_10701133_1 WHERE us_viewers__million_ = "12.90" | {
"answer": "SELECT directed_by FROM table_10701133_1 WHERE us_viewers__million_ = \"12.90\"",
"context": "CREATE TABLE table_10701133_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)",
"question": "Who directed the episode where u.s. viewers (million) is 12.90?"
} |
### QUESTION
What tournament is listed as A in 1972 and 2R in 1975?
### CONTEXT
CREATE TABLE table_name_69 (tournament VARCHAR)
### ANSWER
SELECT tournament FROM table_name_69 WHERE 1972 = "a" AND 1975 = "2r" | {
"answer": "SELECT tournament FROM table_name_69 WHERE 1972 = \"a\" AND 1975 = \"2r\"",
"context": "CREATE TABLE table_name_69 (tournament VARCHAR)",
"question": "What tournament is listed as A in 1972 and 2R in 1975?"
} |
### QUESTION
What DVD season/name for region 2 was released August 22, 2010?
### CONTEXT
CREATE TABLE table_1067134_1 (dvd_name VARCHAR, region_2 VARCHAR)
### ANSWER
SELECT dvd_name FROM table_1067134_1 WHERE region_2 = "August 22, 2010" | {
"answer": "SELECT dvd_name FROM table_1067134_1 WHERE region_2 = \"August 22, 2010\"",
"context": "CREATE TABLE table_1067134_1 (dvd_name VARCHAR, region_2 VARCHAR)",
"question": "What DVD season/name for region 2 was released August 22, 2010?"
} |
### QUESTION
What was the score in the final, that Víctor Pecci was the opponent and winner after 1984?
### CONTEXT
CREATE TABLE table_name_92 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_92 WHERE date > 1984 AND outcome = "winner" AND opponent_in_the_final = "víctor pecci" | {
"answer": "SELECT score_in_the_final FROM table_name_92 WHERE date > 1984 AND outcome = \"winner\" AND opponent_in_the_final = \"víctor pecci\"",
"context": "CREATE TABLE table_name_92 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR)",
"question": "What was the score in the final, that Víctor Pecci was the opponent and winner after 1984?"
} |
### QUESTION
How many pre-race analysis occur when Allen Bestwick does the lap-by-lap?
### CONTEXT
CREATE TABLE table_10716893_3 (pre_race_analyst VARCHAR, lap_by_lap VARCHAR)
### ANSWER
SELECT COUNT(pre_race_analyst) FROM table_10716893_3 WHERE lap_by_lap = "Allen Bestwick" | {
"answer": "SELECT COUNT(pre_race_analyst) FROM table_10716893_3 WHERE lap_by_lap = \"Allen Bestwick\"",
"context": "CREATE TABLE table_10716893_3 (pre_race_analyst VARCHAR, lap_by_lap VARCHAR)",
"question": "How many pre-race analysis occur when Allen Bestwick does the lap-by-lap?"
} |
### QUESTION
WHAT WAS THE SCORE IN THE FINAL PLAYED AGAINST JOSE CHECA-CALVO IN THE SANT CUGAT TOURNAMENT ?
### CONTEXT
CREATE TABLE table_name_80 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT score FROM table_name_80 WHERE tournament = "sant cugat" AND opponent_in_the_final = "jose checa-calvo" | {
"answer": "SELECT score FROM table_name_80 WHERE tournament = \"sant cugat\" AND opponent_in_the_final = \"jose checa-calvo\"",
"context": "CREATE TABLE table_name_80 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)",
"question": "WHAT WAS THE SCORE IN THE FINAL PLAYED AGAINST JOSE CHECA-CALVO IN THE SANT CUGAT TOURNAMENT ?"
} |
### QUESTION
When did the 113 episode air?
### CONTEXT
CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR)
### ANSWER
SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113 | {
"answer": "SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113",
"context": "CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR)",
"question": "When did the 113 episode air?"
} |
### QUESTION
What is the number in the season that Marlene Meyer wrote and 20.49 million people watched?
### CONTEXT
CREATE TABLE table_10718984_2 (no_in_season INTEGER, written_by VARCHAR, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT MAX(no_in_season) FROM table_10718984_2 WHERE written_by = "Marlene Meyer" AND us_viewers__millions_ = "20.49" | {
"answer": "SELECT MAX(no_in_season) FROM table_10718984_2 WHERE written_by = \"Marlene Meyer\" AND us_viewers__millions_ = \"20.49\"",
"context": "CREATE TABLE table_10718984_2 (no_in_season INTEGER, written_by VARCHAR, us_viewers__millions_ VARCHAR)",
"question": "What is the number in the season that Marlene Meyer wrote and 20.49 million people watched?"
} |
### QUESTION
When did the no. 23 show originally air?
### CONTEXT
CREATE TABLE table_10718984_2 (original_air_date VARCHAR, no_in_season VARCHAR)
### ANSWER
SELECT original_air_date FROM table_10718984_2 WHERE no_in_season = 23 | {
"answer": "SELECT original_air_date FROM table_10718984_2 WHERE no_in_season = 23",
"context": "CREATE TABLE table_10718984_2 (original_air_date VARCHAR, no_in_season VARCHAR)",
"question": "When did the no. 23 show originally air?"
} |
### QUESTION
Name the transfer fee for transfer status for fra
### CONTEXT
CREATE TABLE table_name_24 (transfer_fee VARCHAR, status VARCHAR, country VARCHAR)
### ANSWER
SELECT transfer_fee FROM table_name_24 WHERE status = "transfer" AND country = "fra" | {
"answer": "SELECT transfer_fee FROM table_name_24 WHERE status = \"transfer\" AND country = \"fra\"",
"context": "CREATE TABLE table_name_24 (transfer_fee VARCHAR, status VARCHAR, country VARCHAR)",
"question": "Name the transfer fee for transfer status for fra"
} |
### QUESTION
Which team has a Reg GP of 0, a pick number under 136 with a player named Regan Darby?
### CONTEXT
CREATE TABLE table_name_85 (team__league_ VARCHAR, player VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT team__league_ FROM table_name_85 WHERE reg_gp = 0 AND pick__number < 136 AND player = "regan darby" | {
"answer": "SELECT team__league_ FROM table_name_85 WHERE reg_gp = 0 AND pick__number < 136 AND player = \"regan darby\"",
"context": "CREATE TABLE table_name_85 (team__league_ VARCHAR, player VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)",
"question": "Which team has a Reg GP of 0, a pick number under 136 with a player named Regan Darby?"
} |
### QUESTION
How many directors were there for the film Course Completed?
### CONTEXT
CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
### ANSWER
SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = "Course Completed" | {
"answer": "SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = \"Course Completed\"",
"context": "CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)",
"question": "How many directors were there for the film Course Completed?"
} |
### QUESTION
How many villages had 21.7% of slovenes in 1991?
### CONTEXT
CREATE TABLE table_10797463_1 (village__german_ VARCHAR, percent_of_slovenes_1991 VARCHAR)
### ANSWER
SELECT COUNT(village__german_) FROM table_10797463_1 WHERE percent_of_slovenes_1991 = "21.7%" | {
"answer": "SELECT COUNT(village__german_) FROM table_10797463_1 WHERE percent_of_slovenes_1991 = \"21.7%\"",
"context": "CREATE TABLE table_10797463_1 (village__german_ VARCHAR, percent_of_slovenes_1991 VARCHAR)",
"question": "How many villages had 21.7% of slovenes in 1991?"
} |
### QUESTION
For games on December 20, how many points did the scoring leaders get?
### CONTEXT
CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)
### ANSWER
SELECT high_points FROM table_10812293_4 WHERE date = "December 20" | {
"answer": "SELECT high_points FROM table_10812293_4 WHERE date = \"December 20\"",
"context": "CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)",
"question": "For games on December 20, how many points did the scoring leaders get?"
} |
### QUESTION
What is the number of played games a club with more than 71 points and less than 8 losses has?
### CONTEXT
CREATE TABLE table_name_50 (played INTEGER, points VARCHAR, losses VARCHAR)
### ANSWER
SELECT SUM(played) FROM table_name_50 WHERE points > 71 AND losses < 8 | {
"answer": "SELECT SUM(played) FROM table_name_50 WHERE points > 71 AND losses < 8",
"context": "CREATE TABLE table_name_50 (played INTEGER, points VARCHAR, losses VARCHAR)",
"question": "What is the number of played games a club with more than 71 points and less than 8 losses has?"
} |
### QUESTION
What is the lowest goal difference a club with 61 goals against and less than 11 draws has?
### CONTEXT
CREATE TABLE table_name_94 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)
### ANSWER
SELECT MIN(goal_difference) FROM table_name_94 WHERE goals_against = 61 AND draws < 11 | {
"answer": "SELECT MIN(goal_difference) FROM table_name_94 WHERE goals_against = 61 AND draws < 11",
"context": "CREATE TABLE table_name_94 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)",
"question": "What is the lowest goal difference a club with 61 goals against and less than 11 draws has?"
} |
### QUESTION
Which average Crowd has a Home team of essendon?
### CONTEXT
CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR)
### ANSWER
SELECT AVG(crowd) FROM table_name_59 WHERE home_team = "essendon" | {
"answer": "SELECT AVG(crowd) FROM table_name_59 WHERE home_team = \"essendon\"",
"context": "CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR)",
"question": "Which average Crowd has a Home team of essendon?"
} |
### QUESTION
Which player has a College of arizona?
### CONTEXT
CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR)
### ANSWER
SELECT player FROM table_name_83 WHERE college = "arizona" | {
"answer": "SELECT player FROM table_name_83 WHERE college = \"arizona\"",
"context": "CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR)",
"question": "Which player has a College of arizona?"
} |
### QUESTION
What's the latest episode in a season where the U.S. viewers totaled 14.37 million?
### CONTEXT
CREATE TABLE table_10842344_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT MAX(no_in_season) FROM table_10842344_1 WHERE us_viewers__millions_ = "14.37" | {
"answer": "SELECT MAX(no_in_season) FROM table_10842344_1 WHERE us_viewers__millions_ = \"14.37\"",
"context": "CREATE TABLE table_10842344_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)",
"question": "What's the latest episode in a season where the U.S. viewers totaled 14.37 million?"
} |
### QUESTION
Name the sum of Long for yards less than 197 and players of matt nagy
### CONTEXT
CREATE TABLE table_name_12 (long INTEGER, yards VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(long) FROM table_name_12 WHERE yards < 197 AND player = "matt nagy" | {
"answer": "SELECT SUM(long) FROM table_name_12 WHERE yards < 197 AND player = \"matt nagy\"",
"context": "CREATE TABLE table_name_12 (long INTEGER, yards VARCHAR, player VARCHAR)",
"question": "Name the sum of Long for yards less than 197 and players of matt nagy"
} |
### QUESTION
What is the highest crowd with north melbourne as away team?
### CONTEXT
CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR)
### ANSWER
SELECT MAX(crowd) FROM table_name_10 WHERE away_team = "north melbourne" | {
"answer": "SELECT MAX(crowd) FROM table_name_10 WHERE away_team = \"north melbourne\"",
"context": "CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR)",
"question": "What is the highest crowd with north melbourne as away team?"
} |
### QUESTION
How many regions have a capital of matanzas and a 2005 population under 670427?
### CONTEXT
CREATE TABLE table_name_85 (area__km²_ VARCHAR, capital VARCHAR, population__2005_ VARCHAR)
### ANSWER
SELECT COUNT(area__km²_) FROM table_name_85 WHERE capital = "matanzas" AND population__2005_ < 670427 | {
"answer": "SELECT COUNT(area__km²_) FROM table_name_85 WHERE capital = \"matanzas\" AND population__2005_ < 670427",
"context": "CREATE TABLE table_name_85 (area__km²_ VARCHAR, capital VARCHAR, population__2005_ VARCHAR)",
"question": "How many regions have a capital of matanzas and a 2005 population under 670427?"
} |
### QUESTION
What is the production code of the episode written by José Molina that aired on October 12, 2004?
### CONTEXT
CREATE TABLE table_10935548_1 (production_code VARCHAR, written_by VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT production_code FROM table_10935548_1 WHERE written_by = "José Molina" AND original_air_date = "October 12, 2004" | {
"answer": "SELECT production_code FROM table_10935548_1 WHERE written_by = \"José Molina\" AND original_air_date = \"October 12, 2004\"",
"context": "CREATE TABLE table_10935548_1 (production_code VARCHAR, written_by VARCHAR, original_air_date VARCHAR)",
"question": "What is the production code of the episode written by José Molina that aired on October 12, 2004?"
} |
### QUESTION
How many floors does the building on 800 Boylston Street have?
### CONTEXT
CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR)
### ANSWER
SELECT MAX(floors) FROM table_name_52 WHERE street_address = "800 boylston street" | {
"answer": "SELECT MAX(floors) FROM table_name_52 WHERE street_address = \"800 boylston street\"",
"context": "CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR)",
"question": "How many floors does the building on 800 Boylston Street have?"
} |
### QUESTION
What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8?
### CONTEXT
CREATE TABLE table_name_1 (number_of_jews__wjc_ INTEGER, rank___wjc__ VARCHAR, rank__arda_ VARCHAR)
### ANSWER
SELECT MAX(number_of_jews__wjc_) FROM table_name_1 WHERE rank___wjc__ = 6 AND rank__arda_ > 8 | {
"answer": "SELECT MAX(number_of_jews__wjc_) FROM table_name_1 WHERE rank___wjc__ = 6 AND rank__arda_ > 8",
"context": "CREATE TABLE table_name_1 (number_of_jews__wjc_ INTEGER, rank___wjc__ VARCHAR, rank__arda_ VARCHAR)",
"question": "What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8?"
} |
### QUESTION
How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?
### CONTEXT
CREATE TABLE table_name_73 (number_of_jews__wjc_ INTEGER, metro_area VARCHAR, rank__arda_ VARCHAR)
### ANSWER
SELECT SUM(number_of_jews__wjc_) FROM table_name_73 WHERE metro_area = "los angeles" AND rank__arda_ > 2 | {
"answer": "SELECT SUM(number_of_jews__wjc_) FROM table_name_73 WHERE metro_area = \"los angeles\" AND rank__arda_ > 2",
"context": "CREATE TABLE table_name_73 (number_of_jews__wjc_ INTEGER, metro_area VARCHAR, rank__arda_ VARCHAR)",
"question": "How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?"
} |
### QUESTION
What is number of the train that originated in Secunderabad Junction?
### CONTEXT
CREATE TABLE table_name_87 (train_no VARCHAR, origin VARCHAR)
### ANSWER
SELECT train_no FROM table_name_87 WHERE origin = "secunderabad junction" | {
"answer": "SELECT train_no FROM table_name_87 WHERE origin = \"secunderabad junction\"",
"context": "CREATE TABLE table_name_87 (train_no VARCHAR, origin VARCHAR)",
"question": "What is number of the train that originated in Secunderabad Junction?"
} |
### QUESTION
What Transfer window that has a Transfer fee of free, with a Moving to of derby county?
### CONTEXT
CREATE TABLE table_name_54 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)
### ANSWER
SELECT transfer_window FROM table_name_54 WHERE transfer_fee = "free" AND moving_to = "derby county" | {
"answer": "SELECT transfer_window FROM table_name_54 WHERE transfer_fee = \"free\" AND moving_to = \"derby county\"",
"context": "CREATE TABLE table_name_54 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)",
"question": "What Transfer window that has a Transfer fee of free, with a Moving to of derby county?"
} |
### QUESTION
What was the crowd size for the away team footscray?
### CONTEXT
CREATE TABLE table_name_59 (crowd VARCHAR, away_team VARCHAR)
### ANSWER
SELECT crowd FROM table_name_59 WHERE away_team = "footscray" | {
"answer": "SELECT crowd FROM table_name_59 WHERE away_team = \"footscray\"",
"context": "CREATE TABLE table_name_59 (crowd VARCHAR, away_team VARCHAR)",
"question": "What was the crowd size for the away team footscray?"
} |
### QUESTION
What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected
### CONTEXT
CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
### ANSWER
SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = "Unaffected" AND platelet_count = "Unaffected" | {
"answer": "SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = \"Unaffected\" AND platelet_count = \"Unaffected\"",
"context": "CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)",
"question": "What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected"
} |
### QUESTION
What is the least amount of bronze Andorra, who has more than 6 total medals, has?
### CONTEXT
CREATE TABLE table_name_86 (bronze INTEGER, nation VARCHAR, total VARCHAR)
### ANSWER
SELECT MIN(bronze) FROM table_name_86 WHERE nation = "andorra" AND total > 6 | {
"answer": "SELECT MIN(bronze) FROM table_name_86 WHERE nation = \"andorra\" AND total > 6",
"context": "CREATE TABLE table_name_86 (bronze INTEGER, nation VARCHAR, total VARCHAR)",
"question": "What is the least amount of bronze Andorra, who has more than 6 total medals, has?"
} |
### QUESTION
Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?
### CONTEXT
CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_11056278_3 WHERE race_name = "Tenneco Automotive Grand Prix of Detroit" | {
"answer": "SELECT fastest_lap FROM table_11056278_3 WHERE race_name = \"Tenneco Automotive Grand Prix of Detroit\"",
"context": "CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR)",
"question": "Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?"
} |
### QUESTION
What was the total crowd size for the him team footscray?
### CONTEXT
CREATE TABLE table_name_95 (crowd VARCHAR, home_team VARCHAR)
### ANSWER
SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = "footscray" | {
"answer": "SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = \"footscray\"",
"context": "CREATE TABLE table_name_95 (crowd VARCHAR, home_team VARCHAR)",
"question": "What was the total crowd size for the him team footscray?"
} |
### QUESTION
Which teams were in the central division and located in livonia?
### CONTEXT
CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR)
### ANSWER
SELECT team FROM table_11094950_1 WHERE division = "Central" AND location = "Livonia" | {
"answer": "SELECT team FROM table_11094950_1 WHERE division = \"Central\" AND location = \"Livonia\"",
"context": "CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR)",
"question": "Which teams were in the central division and located in livonia?"
} |
### QUESTION
What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons?
### CONTEXT
CREATE TABLE table_name_72 (quantity INTEGER, manufacturer VARCHAR, gwr_nos VARCHAR)
### ANSWER
SELECT MIN(quantity) FROM table_name_72 WHERE manufacturer = "peckett and sons" AND gwr_nos = "696, 779, 93 5" | {
"answer": "SELECT MIN(quantity) FROM table_name_72 WHERE manufacturer = \"peckett and sons\" AND gwr_nos = \"696, 779, 93 5\"",
"context": "CREATE TABLE table_name_72 (quantity INTEGER, manufacturer VARCHAR, gwr_nos VARCHAR)",
"question": "What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons?"
} |
### QUESTION
What was the titles of the episodes written by ken lazebnik?
### CONTEXT
CREATE TABLE table_11111116_7 (title VARCHAR, written_by VARCHAR)
### ANSWER
SELECT title FROM table_11111116_7 WHERE written_by = "Ken LaZebnik" | {
"answer": "SELECT title FROM table_11111116_7 WHERE written_by = \"Ken LaZebnik\"",
"context": "CREATE TABLE table_11111116_7 (title VARCHAR, written_by VARCHAR)",
"question": "What was the titles of the episodes written by ken lazebnik?"
} |
### QUESTION
What is the Home team score at junction oval?
### CONTEXT
CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team FROM table_name_19 WHERE venue = "junction oval" | {
"answer": "SELECT home_team FROM table_name_19 WHERE venue = \"junction oval\"",
"context": "CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR)",
"question": "What is the Home team score at junction oval?"
} |
### QUESTION
Which city had the charleston area convention center as its callback location
### CONTEXT
CREATE TABLE table_11129123_1 (audition_city VARCHAR, callback_venue VARCHAR)
### ANSWER
SELECT audition_city FROM table_11129123_1 WHERE callback_venue = "Charleston Area Convention Center" | {
"answer": "SELECT audition_city FROM table_11129123_1 WHERE callback_venue = \"Charleston Area Convention Center\"",
"context": "CREATE TABLE table_11129123_1 (audition_city VARCHAR, callback_venue VARCHAR)",
"question": "Which city had the charleston area convention center as its callback location"
} |
### QUESTION
What is the date of appointment for outgoing manager Campbell Money
### CONTEXT
CREATE TABLE table_11206916_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
### ANSWER
SELECT date_of_appointment FROM table_11206916_2 WHERE outgoing_manager = "Campbell Money" | {
"answer": "SELECT date_of_appointment FROM table_11206916_2 WHERE outgoing_manager = \"Campbell Money\"",
"context": "CREATE TABLE table_11206916_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)",
"question": "What is the date of appointment for outgoing manager Campbell Money"
} |
### QUESTION
who is the champion where semi-finalist #2 is na and location is morrisville, nc
### CONTEXT
CREATE TABLE table_11214772_1 (champion VARCHAR, semi_finalist__number2 VARCHAR, location VARCHAR)
### ANSWER
SELECT champion FROM table_11214772_1 WHERE semi_finalist__number2 = "NA" AND location = "Morrisville, NC" | {
"answer": "SELECT champion FROM table_11214772_1 WHERE semi_finalist__number2 = \"NA\" AND location = \"Morrisville, NC\"",
"context": "CREATE TABLE table_11214772_1 (champion VARCHAR, semi_finalist__number2 VARCHAR, location VARCHAR)",
"question": " who is the champion where semi-finalist #2 is na and location is morrisville, nc"
} |
### QUESTION
What is the difference with a loss smaller than 5 and points lower than 32?
### CONTEXT
CREATE TABLE table_name_50 (diff VARCHAR, lost VARCHAR, points VARCHAR)
### ANSWER
SELECT COUNT(diff) FROM table_name_50 WHERE lost < 5 AND points < 32 | {
"answer": "SELECT COUNT(diff) FROM table_name_50 WHERE lost < 5 AND points < 32",
"context": "CREATE TABLE table_name_50 (diff VARCHAR, lost VARCHAR, points VARCHAR)",
"question": "What is the difference with a loss smaller than 5 and points lower than 32?"
} |
### QUESTION
What is the home team score when they played at Victoria Park?
### CONTEXT
CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_7 WHERE venue = "victoria park" | {
"answer": "SELECT home_team AS score FROM table_name_7 WHERE venue = \"victoria park\"",
"context": "CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)",
"question": "What is the home team score when they played at Victoria Park?"
} |
### QUESTION
what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927
### CONTEXT
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_residence VARCHAR)
### ANSWER
SELECT numer_of_jamaicans_granted_british_citizenship FROM table_11214212_1 WHERE naturalisation_by_residence = 927 | {
"answer": "SELECT numer_of_jamaicans_granted_british_citizenship FROM table_11214212_1 WHERE naturalisation_by_residence = 927",
"context": "CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_residence VARCHAR)",
"question": "what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927"
} |
### QUESTION
where title is beginning callanetics , what is the total of format ?
### CONTEXT
CREATE TABLE table_11222744_2 (format VARCHAR, title VARCHAR)
### ANSWER
SELECT COUNT(format) FROM table_11222744_2 WHERE title = "Beginning Callanetics" | {
"answer": "SELECT COUNT(format) FROM table_11222744_2 WHERE title = \"Beginning Callanetics\"",
"context": "CREATE TABLE table_11222744_2 (format VARCHAR, title VARCHAR)",
"question": "where title is beginning callanetics , what is the total of format ?"
} |
### QUESTION
What genre is revolving doors of vengeance 酒店風雲?
### CONTEXT
CREATE TABLE table_name_30 (genre VARCHAR, english_title__chinese_title_ VARCHAR)
### ANSWER
SELECT genre FROM table_name_30 WHERE english_title__chinese_title_ = "revolving doors of vengeance 酒店風雲" | {
"answer": "SELECT genre FROM table_name_30 WHERE english_title__chinese_title_ = \"revolving doors of vengeance 酒店風雲\"",
"context": "CREATE TABLE table_name_30 (genre VARCHAR, english_title__chinese_title_ VARCHAR)",
"question": "What genre is revolving doors of vengeance 酒店風雲?"
} |
### QUESTION
What is the english title of the modern drama, episode 20, that airs on 26 sep- 21 oct?
### CONTEXT
CREATE TABLE table_name_82 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR, genre VARCHAR, number_of_episodes VARCHAR)
### ANSWER
SELECT english_title__chinese_title_ FROM table_name_82 WHERE genre = "modern drama" AND number_of_episodes = 20 AND airing_date = "26 sep- 21 oct" | {
"answer": "SELECT english_title__chinese_title_ FROM table_name_82 WHERE genre = \"modern drama\" AND number_of_episodes = 20 AND airing_date = \"26 sep- 21 oct\"",
"context": "CREATE TABLE table_name_82 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR, genre VARCHAR, number_of_episodes VARCHAR)",
"question": "What is the english title of the modern drama, episode 20, that airs on 26 sep- 21 oct?"
} |
### QUESTION
What Catalogue is Dated 14 november 2003, with the Format compact disc?
### CONTEXT
CREATE TABLE table_name_47 (catalogue VARCHAR, date VARCHAR, format VARCHAR)
### ANSWER
SELECT catalogue FROM table_name_47 WHERE date = "14 november 2003" AND format = "compact disc" | {
"answer": "SELECT catalogue FROM table_name_47 WHERE date = \"14 november 2003\" AND format = \"compact disc\"",
"context": "CREATE TABLE table_name_47 (catalogue VARCHAR, date VARCHAR, format VARCHAR)",
"question": "What Catalogue is Dated 14 november 2003, with the Format compact disc?"
} |
### QUESTION
What was the compression ration when the engine was Wasp Jr. T1B2?
### CONTEXT
CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR)
### ANSWER
SELECT compression_ratio FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2" | {
"answer": "SELECT compression_ratio FROM table_1123802_1 WHERE engine = \"Wasp Jr. T1B2\"",
"context": "CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR)",
"question": "What was the compression ration when the engine was Wasp Jr. T1B2?"
} |
### QUESTION
What Label was Catalogued tojp 60121-22?
### CONTEXT
CREATE TABLE table_name_83 (label VARCHAR, catalogue VARCHAR)
### ANSWER
SELECT label FROM table_name_83 WHERE catalogue = "tojp 60121-22" | {
"answer": "SELECT label FROM table_name_83 WHERE catalogue = \"tojp 60121-22\"",
"context": "CREATE TABLE table_name_83 (label VARCHAR, catalogue VARCHAR)",
"question": "What Label was Catalogued tojp 60121-22?"
} |
### QUESTION
How many seasons did the canterbury bulldogs (8) win?
### CONTEXT
CREATE TABLE table_11236195_5 (season VARCHAR, winningteam VARCHAR)
### ANSWER
SELECT COUNT(season) FROM table_11236195_5 WHERE winningteam = "Canterbury Bulldogs (8)" | {
"answer": "SELECT COUNT(season) FROM table_11236195_5 WHERE winningteam = \"Canterbury Bulldogs (8)\"",
"context": "CREATE TABLE table_11236195_5 (season VARCHAR, winningteam VARCHAR)",
"question": "How many seasons did the canterbury bulldogs (8) win?"
} |
### QUESTION
What episode had the last appearances of the late wife of mac taylor?
### CONTEXT
CREATE TABLE table_11240028_3 (last_appearance VARCHAR, relationship VARCHAR)
### ANSWER
SELECT last_appearance FROM table_11240028_3 WHERE relationship = "Late wife of Mac Taylor" | {
"answer": "SELECT last_appearance FROM table_11240028_3 WHERE relationship = \"Late wife of Mac Taylor\"",
"context": "CREATE TABLE table_11240028_3 (last_appearance VARCHAR, relationship VARCHAR)",
"question": "What episode had the last appearances of the late wife of mac taylor?"
} |
### QUESTION
What episode was the last appearance of the character, rikki sandoval?
### CONTEXT
CREATE TABLE table_11240028_3 (last_appearance VARCHAR, character VARCHAR)
### ANSWER
SELECT last_appearance FROM table_11240028_3 WHERE character = "Rikki Sandoval" | {
"answer": "SELECT last_appearance FROM table_11240028_3 WHERE character = \"Rikki Sandoval\"",
"context": "CREATE TABLE table_11240028_3 (last_appearance VARCHAR, character VARCHAR)",
"question": "What episode was the last appearance of the character, rikki sandoval?"
} |
### QUESTION
What was the duration of Robert Joy's portrayal?
### CONTEXT
CREATE TABLE table_11240028_1 (duration VARCHAR, portrayed_by VARCHAR)
### ANSWER
SELECT COUNT(duration) FROM table_11240028_1 WHERE portrayed_by = "Robert Joy" | {
"answer": "SELECT COUNT(duration) FROM table_11240028_1 WHERE portrayed_by = \"Robert Joy\"",
"context": "CREATE TABLE table_11240028_1 (duration VARCHAR, portrayed_by VARCHAR)",
"question": "What was the duration of Robert Joy's portrayal?"
} |
### QUESTION
WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?
### CONTEXT
CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR)
### ANSWER
SELECT carbon_dioxide_emissions_per_year__10_6_tons___2006_ FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = "1.4" | {
"answer": "SELECT carbon_dioxide_emissions_per_year__10_6_tons___2006_ FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = \"1.4\"",
"context": "CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR)",
"question": "WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?"
} |
### QUESTION
Who has a religion of ☪ and more than 1853 votes?
### CONTEXT
CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR)
### ANSWER
SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = "☪" | {
"answer": "SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = \"☪\"",
"context": "CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR)",
"question": "Who has a religion of ☪ and more than 1853 votes?"
} |
### QUESTION
Which track has a title : Just a little bit
### CONTEXT
CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR)
### ANSWER
SELECT MIN(track) FROM table_name_64 WHERE song_title = "just a little bit" | {
"answer": "SELECT MIN(track) FROM table_name_64 WHERE song_title = \"just a little bit\"",
"context": "CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR)",
"question": "Which track has a title : Just a little bit"
} |
### QUESTION
What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring?
### CONTEXT
CREATE TABLE table_name_88 (league INTEGER, fa_cup VARCHAR, name VARCHAR)
### ANSWER
SELECT MIN(league) AS Cup FROM table_name_88 WHERE league > 1 AND name = "brian deane" AND fa_cup < 1 | {
"answer": "SELECT MIN(league) AS Cup FROM table_name_88 WHERE league > 1 AND name = \"brian deane\" AND fa_cup < 1",
"context": "CREATE TABLE table_name_88 (league INTEGER, fa_cup VARCHAR, name VARCHAR)",
"question": "What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring?"
} |
### QUESTION
What method resulted in a win and a time of 4:36?
### CONTEXT
CREATE TABLE table_name_44 (method VARCHAR, res VARCHAR, time VARCHAR)
### ANSWER
SELECT method FROM table_name_44 WHERE res = "win" AND time = "4:36" | {
"answer": "SELECT method FROM table_name_44 WHERE res = \"win\" AND time = \"4:36\"",
"context": "CREATE TABLE table_name_44 (method VARCHAR, res VARCHAR, time VARCHAR)",
"question": "What method resulted in a win and a time of 4:36?"
} |
### QUESTION
What venue does the soccer team Pennsylvania Stoners play in?
### CONTEXT
CREATE TABLE table_name_55 (venue VARCHAR, sport VARCHAR, club VARCHAR)
### ANSWER
SELECT venue FROM table_name_55 WHERE sport = "soccer" AND club = "pennsylvania stoners" | {
"answer": "SELECT venue FROM table_name_55 WHERE sport = \"soccer\" AND club = \"pennsylvania stoners\"",
"context": "CREATE TABLE table_name_55 (venue VARCHAR, sport VARCHAR, club VARCHAR)",
"question": "What venue does the soccer team Pennsylvania Stoners play in?"
} |
### QUESTION
What is the batting team with the batting partnets of thilina kandamby and rangana herath?
### CONTEXT
CREATE TABLE table_11303072_5 (batting_team VARCHAR, batting_partners VARCHAR)
### ANSWER
SELECT batting_team FROM table_11303072_5 WHERE batting_partners = "Thilina Kandamby and Rangana Herath" | {
"answer": "SELECT batting_team FROM table_11303072_5 WHERE batting_partners = \"Thilina Kandamby and Rangana Herath\"",
"context": "CREATE TABLE table_11303072_5 (batting_team VARCHAR, batting_partners VARCHAR)",
"question": "What is the batting team with the batting partnets of thilina kandamby and rangana herath?"
} |
### QUESTION
I want the greatest attendance when the opponent is the chicago bears
### CONTEXT
CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR)
### ANSWER
SELECT MAX(attendance) FROM table_name_64 WHERE opponent = "chicago bears" | {
"answer": "SELECT MAX(attendance) FROM table_name_64 WHERE opponent = \"chicago bears\"",
"context": "CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR)",
"question": "I want the greatest attendance when the opponent is the chicago bears"
} |
### QUESTION
What's the total number of copies sold for the single that sold 206,030 in the first week?
### CONTEXT
CREATE TABLE table_name_43 (copies_sold VARCHAR, first_week_sales VARCHAR)
### ANSWER
SELECT COUNT(copies_sold) FROM table_name_43 WHERE first_week_sales = 206 OFFSET 030 | {
"answer": "SELECT COUNT(copies_sold) FROM table_name_43 WHERE first_week_sales = 206 OFFSET 030",
"context": "CREATE TABLE table_name_43 (copies_sold VARCHAR, first_week_sales VARCHAR)",
"question": "What's the total number of copies sold for the single that sold 206,030 in the first week?"
} |
### QUESTION
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs
### CONTEXT
CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR)
### ANSWER
SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = "BGS" AND u15_1st_iv = "ACGS" AND open_1st_viii = "ACGS" | {
"answer": "SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = \"BGS\" AND u15_1st_iv = \"ACGS\" AND open_1st_viii = \"ACGS\"",
"context": "CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR)",
"question": "how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs"
} |
### QUESTION
What is the location of the school named Brisbane Girls' Grammar School?
### CONTEXT
CREATE TABLE table_11318462_29 (location VARCHAR, school VARCHAR)
### ANSWER
SELECT location FROM table_11318462_29 WHERE school = "Brisbane Girls' Grammar school" | {
"answer": "SELECT location FROM table_11318462_29 WHERE school = \"Brisbane Girls' Grammar school\"",
"context": "CREATE TABLE table_11318462_29 (location VARCHAR, school VARCHAR)",
"question": "What is the location of the school named Brisbane Girls' Grammar School?"
} |
### QUESTION
What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?
### CONTEXT
CREATE TABLE table_1132568_3 (rd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR)
### ANSWER
SELECT rd FROM table_1132568_3 WHERE fastest_lap = "Michael Schumacher" AND constructor = "Ferrari" AND pole_position = "Michael Schumacher" | {
"answer": "SELECT rd FROM table_1132568_3 WHERE fastest_lap = \"Michael Schumacher\" AND constructor = \"Ferrari\" AND pole_position = \"Michael Schumacher\"",
"context": "CREATE TABLE table_1132568_3 (rd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR)",
"question": "What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?"
} |
### QUESTION
Name the lowest rank for red chillies entertainment for 2013
### CONTEXT
CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = "red chillies entertainment" | {
"answer": "SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = \"red chillies entertainment\"",
"context": "CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)",
"question": "Name the lowest rank for red chillies entertainment for 2013"
} |
### QUESTION
What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage.
### CONTEXT
CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR)
### ANSWER
SELECT issue_price FROM table_name_46 WHERE artist = "john mardon" AND year = 2000 AND mintage = "included in steam buggy" | {
"answer": "SELECT issue_price FROM table_name_46 WHERE artist = \"john mardon\" AND year = 2000 AND mintage = \"included in steam buggy\"",
"context": "CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR)",
"question": "What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage."
} |
### QUESTION
What artist had a mintage of 41,828 before year 2002?
### CONTEXT
CREATE TABLE table_name_81 (artist VARCHAR, year VARCHAR, mintage VARCHAR)
### ANSWER
SELECT artist FROM table_name_81 WHERE year < 2002 AND mintage = "41,828" | {
"answer": "SELECT artist FROM table_name_81 WHERE year < 2002 AND mintage = \"41,828\"",
"context": "CREATE TABLE table_name_81 (artist VARCHAR, year VARCHAR, mintage VARCHAR)",
"question": "What artist had a mintage of 41,828 before year 2002?"
} |
### QUESTION
I want the control trailers for 1931 with builder of grcw
### CONTEXT
CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR)
### ANSWER
SELECT Control AS trailers FROM table_name_45 WHERE year = "1931" AND builder = "grcw" | {
"answer": "SELECT Control AS trailers FROM table_name_45 WHERE year = \"1931\" AND builder = \"grcw\"",
"context": "CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR)",
"question": "I want the control trailers for 1931 with builder of grcw"
} |
### QUESTION
What is the number of group b winner for francavilla?
### CONTEXT
CREATE TABLE table_1137142_1 (group_b_winner VARCHAR, group_c_winner VARCHAR)
### ANSWER
SELECT COUNT(group_b_winner) FROM table_1137142_1 WHERE group_c_winner = "Francavilla" | {
"answer": "SELECT COUNT(group_b_winner) FROM table_1137142_1 WHERE group_c_winner = \"Francavilla\"",
"context": "CREATE TABLE table_1137142_1 (group_b_winner VARCHAR, group_c_winner VARCHAR)",
"question": "What is the number of group b winner for francavilla?"
} |
### QUESTION
The 2002 African Cup of Nations was held on what date?
### CONTEXT
CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR)
### ANSWER
SELECT date FROM table_name_20 WHERE competition = "2002 african cup of nations" | {
"answer": "SELECT date FROM table_name_20 WHERE competition = \"2002 african cup of nations\"",
"context": "CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR)",
"question": "The 2002 African Cup of Nations was held on what date?"
} |
### QUESTION
who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos
### CONTEXT
CREATE TABLE table_1137704_2 (winning_constructor VARCHAR, fastest_lap VARCHAR, location VARCHAR)
### ANSWER
SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = "Riccardo Patrese" AND location = "Interlagos" | {
"answer": "SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = \"Riccardo Patrese\" AND location = \"Interlagos\"",
"context": "CREATE TABLE table_1137704_2 (winning_constructor VARCHAR, fastest_lap VARCHAR, location VARCHAR)",
"question": "who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos"
} |
### QUESTION
what are all the report where winning constructor is williams - renault and grand prix is south african grand prix
### CONTEXT
CREATE TABLE table_1137704_2 (report VARCHAR, winning_constructor VARCHAR, grand_prix VARCHAR)
### ANSWER
SELECT report FROM table_1137704_2 WHERE winning_constructor = "Williams - Renault" AND grand_prix = "South African grand_prix" | {
"answer": "SELECT report FROM table_1137704_2 WHERE winning_constructor = \"Williams - Renault\" AND grand_prix = \"South African grand_prix\"",
"context": "CREATE TABLE table_1137704_2 (report VARCHAR, winning_constructor VARCHAR, grand_prix VARCHAR)",
"question": "what are all the report where winning constructor is williams - renault and grand prix is south african grand prix"
} |
### QUESTION
what of the total number of date where grand prix is portuguese grand prix
### CONTEXT
CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR)
### ANSWER
SELECT COUNT(date) FROM table_1137704_2 WHERE grand_prix = "Portuguese grand_prix" | {
"answer": "SELECT COUNT(date) FROM table_1137704_2 WHERE grand_prix = \"Portuguese grand_prix\"",
"context": "CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR)",
"question": "what of the total number of date where grand prix is portuguese grand prix"
} |
### QUESTION
Which rd. occurred on 22 October?
### CONTEXT
CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR)
### ANSWER
SELECT MIN(rd) FROM table_1137718_2 WHERE date = "22 October" | {
"answer": "SELECT MIN(rd) FROM table_1137718_2 WHERE date = \"22 October\"",
"context": "CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR)",
"question": "Which rd. occurred on 22 October?"
} |
### QUESTION
Which rd. took place at Hockenheimring?
### CONTEXT
CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR)
### ANSWER
SELECT MIN(rd) FROM table_1137718_2 WHERE location = "Hockenheimring" | {
"answer": "SELECT MIN(rd) FROM table_1137718_2 WHERE location = \"Hockenheimring\"",
"context": "CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR)",
"question": "Which rd. took place at Hockenheimring?"
} |
### QUESTION
What is the Japanese orthography for the English name National Farmers Academy?
### CONTEXT
CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR)
### ANSWER
SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Farmers Academy" | {
"answer": "SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = \"National Farmers Academy\"",
"context": "CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR)",
"question": "What is the Japanese orthography for the English name National Farmers Academy?"
} |
### QUESTION
what is the venue when the home team is melbourne?
### CONTEXT
CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)
### ANSWER
SELECT venue FROM table_name_67 WHERE home_team = "melbourne" | {
"answer": "SELECT venue FROM table_name_67 WHERE home_team = \"melbourne\"",
"context": "CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)",
"question": "what is the venue when the home team is melbourne?"
} |
### QUESTION
What is the make of the car that won the brazilian grand prix?
### CONTEXT
CREATE TABLE table_1139087_2 (constructor VARCHAR, grand_prix VARCHAR)
### ANSWER
SELECT constructor FROM table_1139087_2 WHERE grand_prix = "Brazilian grand_prix" | {
"answer": "SELECT constructor FROM table_1139087_2 WHERE grand_prix = \"Brazilian grand_prix\"",
"context": "CREATE TABLE table_1139087_2 (constructor VARCHAR, grand_prix VARCHAR)",
"question": "What is the make of the car that won the brazilian grand prix?"
} |
### QUESTION
what's the grand finalist where winners is collingwood
### CONTEXT
CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR)
### ANSWER
SELECT grand_finalist FROM table_1139835_3 WHERE winners = "Collingwood" | {
"answer": "SELECT grand_finalist FROM table_1139835_3 WHERE winners = \"Collingwood\"",
"context": "CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR)",
"question": " what's the grand finalist where winners is collingwood"
} |
### QUESTION
Who was the winner in the competition in which Lyn took third place and Lillestrøm was the runner-up?
### CONTEXT
CREATE TABLE table_name_44 (winners VARCHAR, runners_up VARCHAR, third VARCHAR)
### ANSWER
SELECT winners FROM table_name_44 WHERE runners_up = "lillestrøm" AND third = "lyn" | {
"answer": "SELECT winners FROM table_name_44 WHERE runners_up = \"lillestrøm\" AND third = \"lyn\"",
"context": "CREATE TABLE table_name_44 (winners VARCHAR, runners_up VARCHAR, third VARCHAR)",
"question": "Who was the winner in the competition in which Lyn took third place and Lillestrøm was the runner-up?"
} |
### QUESTION
What date was the Italian Grand Prix?
### CONTEXT
CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR)
### ANSWER
SELECT date FROM table_name_12 WHERE race = "italian grand prix" | {
"answer": "SELECT date FROM table_name_12 WHERE race = \"italian grand prix\"",
"context": "CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR)",
"question": "What date was the Italian Grand Prix?"
} |
### QUESTION
what's the pole position with location being hockenheimring
### CONTEXT
CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR)
### ANSWER
SELECT pole_position FROM table_1140074_2 WHERE location = "Hockenheimring" | {
"answer": "SELECT pole_position FROM table_1140074_2 WHERE location = \"Hockenheimring\"",
"context": "CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR)",
"question": "what's the pole position with location being hockenheimring"
} |
### QUESTION
What is the fastest lap with pole position of gilles villeneuve?
### CONTEXT
CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, pole_position VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = "Gilles Villeneuve" | {
"answer": "SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = \"Gilles Villeneuve\"",
"context": "CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, pole_position VARCHAR)",
"question": "What is the fastest lap with pole position of gilles villeneuve?"
} |
### QUESTION
How many events for orville moody, ranking below 3?
### CONTEXT
CREATE TABLE table_name_67 (events INTEGER, rank VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(events) FROM table_name_67 WHERE rank > 3 AND player = "orville moody" | {
"answer": "SELECT SUM(events) FROM table_name_67 WHERE rank > 3 AND player = \"orville moody\"",
"context": "CREATE TABLE table_name_67 (events INTEGER, rank VARCHAR, player VARCHAR)",
"question": "How many events for orville moody, ranking below 3?"
} |
### QUESTION
What is the score of the Home team of geelong?
### CONTEXT
CREATE TABLE table_name_74 (home_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_74 WHERE home_team = "geelong" | {
"answer": "SELECT home_team AS score FROM table_name_74 WHERE home_team = \"geelong\"",
"context": "CREATE TABLE table_name_74 (home_team VARCHAR)",
"question": "What is the score of the Home team of geelong?"
} |
### QUESTION
What digital reaction has hot 100 reaction of 2 (+1)?
### CONTEXT
CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)
### ANSWER
SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = "2 (+1)" | {
"answer": "SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = \"2 (+1)\"",
"context": "CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)",
"question": "What digital reaction has hot 100 reaction of 2 (+1)?"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.