text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
Which long version was remixed in 1986?
### CONTEXT
CREATE TABLE table_name_51 (remixed_by VARCHAR, year VARCHAR, version VARCHAR)
### ANSWER
SELECT remixed_by FROM table_name_51 WHERE year = 1986 AND version = "long version"</s> | {
"answer": "SELECT remixed_by FROM table_name_51 WHERE year = 1986 AND version = \"long version\"",
"context": "CREATE TABLE table_name_51 (remixed_by VARCHAR, year VARCHAR, version VARCHAR)",
"question": "Which long version was remixed in 1986?"
} |
### QUESTION
What kind of Entrant has a Maserati Straight-6 Engine, built in the year 1958 or early, and has a Maserati 250f Chassis with points less than 4?
### CONTEXT
CREATE TABLE table_name_95 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, engine VARCHAR, year VARCHAR)
### ANSWER
SELECT entrant FROM table_name_95 WHERE engine = "maserati straight-6" AND year < 1958 AND chassis = "maserati 250f" AND points < 4</s> | {
"answer": "SELECT entrant FROM table_name_95 WHERE engine = \"maserati straight-6\" AND year < 1958 AND chassis = \"maserati 250f\" AND points < 4",
"context": "CREATE TABLE table_name_95 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, engine VARCHAR, year VARCHAR)",
"question": "What kind of Entrant has a Maserati Straight-6 Engine, built in the year 1958 or early, and has a Maserati 250f Chassis with points less than 4?"
} |
### QUESTION
When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi?
### CONTEXT
CREATE TABLE table_21576644_2 (ladies_1st_xi VARCHAR, mens_2nd_xi VARCHAR)
### ANSWER
SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = "10th, South West District 1"</s> | {
"answer": "SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = \"10th, South West District 1\"",
"context": "CREATE TABLE table_21576644_2 (ladies_1st_xi VARCHAR, mens_2nd_xi VARCHAR)",
"question": "When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi?"
} |
### QUESTION
Who was the opponent in the game played after Week 4 on October 15, 2000?
### CONTEXT
CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent FROM table_name_37 WHERE week > 4 AND date = "october 15, 2000"</s> | {
"answer": "SELECT opponent FROM table_name_37 WHERE week > 4 AND date = \"october 15, 2000\"",
"context": "CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR, date VARCHAR)",
"question": "Who was the opponent in the game played after Week 4 on October 15, 2000?"
} |
### QUESTION
What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid?
### CONTEXT
CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR, time VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(laps) FROM table_name_39 WHERE time = "collision" AND team = "switzerland" AND grid < 11</s> | {
"answer": "SELECT COUNT(laps) FROM table_name_39 WHERE time = \"collision\" AND team = \"switzerland\" AND grid < 11",
"context": "CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR, time VARCHAR, team VARCHAR)",
"question": "What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid?"
} |
### QUESTION
Name the average bronze with silver more than 0, total of 6 and gold more than 0
### CONTEXT
CREATE TABLE table_name_27 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)
### ANSWER
SELECT AVG(bronze) FROM table_name_27 WHERE silver > 0 AND total = 6 AND gold > 0</s> | {
"answer": "SELECT AVG(bronze) FROM table_name_27 WHERE silver > 0 AND total = 6 AND gold > 0",
"context": "CREATE TABLE table_name_27 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)",
"question": "Name the average bronze with silver more than 0, total of 6 and gold more than 0"
} |
### QUESTION
Which Surface had a Date of june 13, 1983?
### CONTEXT
CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR)
### ANSWER
SELECT surface FROM table_name_14 WHERE date = "june 13, 1983"</s> | {
"answer": "SELECT surface FROM table_name_14 WHERE date = \"june 13, 1983\"",
"context": "CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR)",
"question": "Which Surface had a Date of june 13, 1983?"
} |
### QUESTION
What is the Date at memorial stadium • minneapolis, mn with an Attendance of 20,000, and a Result of w52-0?
### CONTEXT
CREATE TABLE table_name_7 (date VARCHAR, result VARCHAR, site VARCHAR, attendance VARCHAR)
### ANSWER
SELECT date FROM table_name_7 WHERE site = "memorial stadium • minneapolis, mn" AND attendance = "20,000" AND result = "w52-0"</s> | {
"answer": "SELECT date FROM table_name_7 WHERE site = \"memorial stadium • minneapolis, mn\" AND attendance = \"20,000\" AND result = \"w52-0\"",
"context": "CREATE TABLE table_name_7 (date VARCHAR, result VARCHAR, site VARCHAR, attendance VARCHAR)",
"question": "What is the Date at memorial stadium • minneapolis, mn with an Attendance of 20,000, and a Result of w52-0?"
} |
### QUESTION
What is the Opponent name at memorial stadium • minneapolis, mn on 10/20/1928?
### CONTEXT
CREATE TABLE table_name_25 (opponent_number VARCHAR, site VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent_number FROM table_name_25 WHERE site = "memorial stadium • minneapolis, mn" AND date = "10/20/1928"</s> | {
"answer": "SELECT opponent_number FROM table_name_25 WHERE site = \"memorial stadium • minneapolis, mn\" AND date = \"10/20/1928\"",
"context": "CREATE TABLE table_name_25 (opponent_number VARCHAR, site VARCHAR, date VARCHAR)",
"question": "What is the Opponent name at memorial stadium • minneapolis, mn on 10/20/1928?"
} |
### QUESTION
What set 2 has 15:33 as the time?
### CONTEXT
CREATE TABLE table_name_14 (set_2 VARCHAR, time VARCHAR)
### ANSWER
SELECT set_2 FROM table_name_14 WHERE time = "15:33"</s> | {
"answer": "SELECT set_2 FROM table_name_14 WHERE time = \"15:33\"",
"context": "CREATE TABLE table_name_14 (set_2 VARCHAR, time VARCHAR)",
"question": "What set 2 has 15:33 as the time?"
} |
### QUESTION
What is the Attendance number when the Opponent was purdue?
### CONTEXT
CREATE TABLE table_name_15 (attendance VARCHAR, opponent_number VARCHAR)
### ANSWER
SELECT attendance FROM table_name_15 WHERE opponent_number = "purdue"</s> | {
"answer": "SELECT attendance FROM table_name_15 WHERE opponent_number = \"purdue\"",
"context": "CREATE TABLE table_name_15 (attendance VARCHAR, opponent_number VARCHAR)",
"question": "What is the Attendance number when the Opponent was purdue?"
} |
### QUESTION
Who was the Winner at Campbelltown Sports Stadium?
### CONTEXT
CREATE TABLE table_name_74 (winner VARCHAR, venue VARCHAR)
### ANSWER
SELECT winner FROM table_name_74 WHERE venue = "campbelltown sports stadium"</s> | {
"answer": "SELECT winner FROM table_name_74 WHERE venue = \"campbelltown sports stadium\"",
"context": "CREATE TABLE table_name_74 (winner VARCHAR, venue VARCHAR)",
"question": "Who was the Winner at Campbelltown Sports Stadium?"
} |
### QUESTION
What was the second leg score from the group stage on matchday 5?
### CONTEXT
CREATE TABLE table_name_35 (second_leg VARCHAR, phase VARCHAR, round VARCHAR)
### ANSWER
SELECT second_leg FROM table_name_35 WHERE phase = "group stage" AND round = "matchday 5"</s> | {
"answer": "SELECT second_leg FROM table_name_35 WHERE phase = \"group stage\" AND round = \"matchday 5\"",
"context": "CREATE TABLE table_name_35 (second_leg VARCHAR, phase VARCHAR, round VARCHAR)",
"question": "What was the second leg score from the group stage on matchday 5?"
} |
### QUESTION
What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?
### CONTEXT
CREATE TABLE table_name_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR, nationality VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = "toronto maple leafs" AND nationality = "united states"</s> | {
"answer": "SELECT college_junior_club_team FROM table_name_12 WHERE nhl_team = \"toronto maple leafs\" AND nationality = \"united states\"",
"context": "CREATE TABLE table_name_12 (college_junior_club_team VARCHAR, nhl_team VARCHAR, nationality VARCHAR)",
"question": "What College/junior/club had a player of United States nationality drafted by the Toronto Maple Leafs?"
} |
### QUESTION
What is the smallest Weight, when Spike is less than 330, when Block is 315, and when Height is greater than 187?
### CONTEXT
CREATE TABLE table_name_78 (weight INTEGER, height VARCHAR, spike VARCHAR, block VARCHAR)
### ANSWER
SELECT MIN(weight) FROM table_name_78 WHERE spike < 330 AND block = 315 AND height > 187</s> | {
"answer": "SELECT MIN(weight) FROM table_name_78 WHERE spike < 330 AND block = 315 AND height > 187",
"context": "CREATE TABLE table_name_78 (weight INTEGER, height VARCHAR, spike VARCHAR, block VARCHAR)",
"question": "What is the smallest Weight, when Spike is less than 330, when Block is 315, and when Height is greater than 187?"
} |
### QUESTION
Venue of thessaloniki (without participation) had what score?
### CONTEXT
CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)
### ANSWER
SELECT score FROM table_name_99 WHERE venue = "thessaloniki (without participation)"</s> | {
"answer": "SELECT score FROM table_name_99 WHERE venue = \"thessaloniki (without participation)\"",
"context": "CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)",
"question": "Venue of thessaloniki (without participation) had what score?"
} |
### QUESTION
Which Eruptions have a Location of pacific ring of fire, and a Volcanic Explosivity Index of 6, and a Country of peru?
### CONTEXT
CREATE TABLE table_name_51 (eruptions VARCHAR, country VARCHAR, location VARCHAR, volcanic_explosivity_index VARCHAR)
### ANSWER
SELECT eruptions FROM table_name_51 WHERE location = "pacific ring of fire" AND volcanic_explosivity_index = "6" AND country = "peru"</s> | {
"answer": "SELECT eruptions FROM table_name_51 WHERE location = \"pacific ring of fire\" AND volcanic_explosivity_index = \"6\" AND country = \"peru\"",
"context": "CREATE TABLE table_name_51 (eruptions VARCHAR, country VARCHAR, location VARCHAR, volcanic_explosivity_index VARCHAR)",
"question": "Which Eruptions have a Location of pacific ring of fire, and a Volcanic Explosivity Index of 6, and a Country of peru?"
} |
### QUESTION
How many years have a Location of pacific ring of fire, and Eruptions of pinatubo?
### CONTEXT
CREATE TABLE table_name_22 (year INTEGER, location VARCHAR, eruptions VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_22 WHERE location = "pacific ring of fire" AND eruptions = "pinatubo"</s> | {
"answer": "SELECT SUM(year) FROM table_name_22 WHERE location = \"pacific ring of fire\" AND eruptions = \"pinatubo\"",
"context": "CREATE TABLE table_name_22 (year INTEGER, location VARCHAR, eruptions VARCHAR)",
"question": "How many years have a Location of pacific ring of fire, and Eruptions of pinatubo?"
} |
### QUESTION
Which chassis used by the entrant Automobiles Gonfaronnaises Sportives scored 0 points?
### CONTEXT
CREATE TABLE table_name_65 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)
### ANSWER
SELECT chassis FROM table_name_65 WHERE points = 0 AND entrant = "automobiles gonfaronnaises sportives"</s> | {
"answer": "SELECT chassis FROM table_name_65 WHERE points = 0 AND entrant = \"automobiles gonfaronnaises sportives\"",
"context": "CREATE TABLE table_name_65 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)",
"question": "Which chassis used by the entrant Automobiles Gonfaronnaises Sportives scored 0 points?"
} |
### QUESTION
What is the Score for the Game less than 21, and of antonio davis (12)had the High rebounds?
### CONTEXT
CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR, high_rebounds VARCHAR)
### ANSWER
SELECT score FROM table_name_87 WHERE game < 21 AND high_rebounds = "antonio davis (12)"</s> | {
"answer": "SELECT score FROM table_name_87 WHERE game < 21 AND high_rebounds = \"antonio davis (12)\"",
"context": "CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR, high_rebounds VARCHAR)",
"question": "What is the Score for the Game less than 21, and of antonio davis (12)had the High rebounds?"
} |
### QUESTION
Which District has a First elected of 1858, and a Result of retired republican gain, and an Incumbent of william millward?
### CONTEXT
CREATE TABLE table_name_2 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)
### ANSWER
SELECT district FROM table_name_2 WHERE first_elected = 1858 AND result = "retired republican gain" AND incumbent = "william millward"</s> | {
"answer": "SELECT district FROM table_name_2 WHERE first_elected = 1858 AND result = \"retired republican gain\" AND incumbent = \"william millward\"",
"context": "CREATE TABLE table_name_2 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)",
"question": "Which District has a First elected of 1858, and a Result of retired republican gain, and an Incumbent of william millward?"
} |
### QUESTION
How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?
### CONTEXT
CREATE TABLE table_name_98 (year INTEGER, points VARCHAR, engine VARCHAR, entrant VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_98 WHERE engine = "bmw str-4 t/c" AND entrant = "barclay nordica arrows bmw" AND points < 1</s> | {
"answer": "SELECT SUM(year) FROM table_name_98 WHERE engine = \"bmw str-4 t/c\" AND entrant = \"barclay nordica arrows bmw\" AND points < 1",
"context": "CREATE TABLE table_name_98 (year INTEGER, points VARCHAR, engine VARCHAR, entrant VARCHAR)",
"question": "How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?"
} |
### QUESTION
Which text has traditional characters of 心如猨猴?
### CONTEXT
CREATE TABLE table_name_47 (text VARCHAR, traditional_characters VARCHAR)
### ANSWER
SELECT text FROM table_name_47 WHERE traditional_characters = "心如猨猴"</s> | {
"answer": "SELECT text FROM table_name_47 WHERE traditional_characters = \"心如猨猴\"",
"context": "CREATE TABLE table_name_47 (text VARCHAR, traditional_characters VARCHAR)",
"question": "Which text has traditional characters of 心如猨猴?"
} |
### QUESTION
Which country has Weerawila Airport?
### CONTEXT
CREATE TABLE table_name_76 (country VARCHAR, airport VARCHAR)
### ANSWER
SELECT country FROM table_name_76 WHERE airport = "weerawila airport"</s> | {
"answer": "SELECT country FROM table_name_76 WHERE airport = \"weerawila airport\"",
"context": "CREATE TABLE table_name_76 (country VARCHAR, airport VARCHAR)",
"question": "Which country has Weerawila Airport?"
} |
### QUESTION
What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?
### CONTEXT
CREATE TABLE table_name_69 (year INTEGER, position VARCHAR, performance VARCHAR, competition VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_69 WHERE performance = "long jump" AND competition = "world indoor championships" AND position = "5th"</s> | {
"answer": "SELECT MIN(year) FROM table_name_69 WHERE performance = \"long jump\" AND competition = \"world indoor championships\" AND position = \"5th\"",
"context": "CREATE TABLE table_name_69 (year INTEGER, position VARCHAR, performance VARCHAR, competition VARCHAR)",
"question": "What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?"
} |
### QUESTION
What is the sum of Bronze when the rank is more than 11 and gold is less than 0?
### CONTEXT
CREATE TABLE table_name_47 (bronze INTEGER, rank VARCHAR, gold VARCHAR)
### ANSWER
SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0</s> | {
"answer": "SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0",
"context": "CREATE TABLE table_name_47 (bronze INTEGER, rank VARCHAR, gold VARCHAR)",
"question": "What is the sum of Bronze when the rank is more than 11 and gold is less than 0?"
} |
### QUESTION
How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis?
### CONTEXT
CREATE TABLE table_name_10 (year VARCHAR, chassis VARCHAR, engine VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_10 WHERE engine = "audi 3.6l turbo v8" AND rank = "1st" AND chassis = "audi r8r"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_10 WHERE engine = \"audi 3.6l turbo v8\" AND rank = \"1st\" AND chassis = \"audi r8r\"",
"context": "CREATE TABLE table_name_10 (year VARCHAR, chassis VARCHAR, engine VARCHAR, rank VARCHAR)",
"question": "How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis?"
} |
### QUESTION
What is the average year Rich Beem had a to par less than 17?
### CONTEXT
CREATE TABLE table_name_20 (year_won INTEGER, player VARCHAR, to_par VARCHAR)
### ANSWER
SELECT AVG(year_won) FROM table_name_20 WHERE player = "rich beem" AND to_par < 17</s> | {
"answer": "SELECT AVG(year_won) FROM table_name_20 WHERE player = \"rich beem\" AND to_par < 17",
"context": "CREATE TABLE table_name_20 (year_won INTEGER, player VARCHAR, to_par VARCHAR)",
"question": "What is the average year Rich Beem had a to par less than 17?"
} |
### QUESTION
What frame size has pcm 4 ch/16 bit/48khz as audio coding and dvcam as the format name and 4:1:1 as the color sampling?
### CONTEXT
CREATE TABLE table_name_44 (frame_size VARCHAR, color_sampling VARCHAR, audio_coding VARCHAR, format_name VARCHAR)
### ANSWER
SELECT frame_size FROM table_name_44 WHERE audio_coding = "pcm 4 ch/16 bit/48khz" AND format_name = "dvcam" AND color_sampling = "4:1:1"</s> | {
"answer": "SELECT frame_size FROM table_name_44 WHERE audio_coding = \"pcm 4 ch/16 bit/48khz\" AND format_name = \"dvcam\" AND color_sampling = \"4:1:1\"",
"context": "CREATE TABLE table_name_44 (frame_size VARCHAR, color_sampling VARCHAR, audio_coding VARCHAR, format_name VARCHAR)",
"question": "What frame size has pcm 4 ch/16 bit/48khz as audio coding and dvcam as the format name and 4:1:1 as the color sampling?"
} |
### QUESTION
What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7?
### CONTEXT
CREATE TABLE table_name_2 (total VARCHAR, to_par VARCHAR, year_won VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_2 WHERE year_won < 2002 AND player = "bob tway" AND to_par > 7</s> | {
"answer": "SELECT COUNT(total) FROM table_name_2 WHERE year_won < 2002 AND player = \"bob tway\" AND to_par > 7",
"context": "CREATE TABLE table_name_2 (total VARCHAR, to_par VARCHAR, year_won VARCHAR, player VARCHAR)",
"question": "What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7?"
} |
### QUESTION
What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145?
### CONTEXT
CREATE TABLE table_name_72 (to_par VARCHAR, total VARCHAR, player VARCHAR, country VARCHAR, year_won VARCHAR)
### ANSWER
SELECT COUNT(to_par) FROM table_name_72 WHERE country = "united states" AND year_won > 1986 AND player = "paul azinger" AND total > 145</s> | {
"answer": "SELECT COUNT(to_par) FROM table_name_72 WHERE country = \"united states\" AND year_won > 1986 AND player = \"paul azinger\" AND total > 145",
"context": "CREATE TABLE table_name_72 (to_par VARCHAR, total VARCHAR, player VARCHAR, country VARCHAR, year_won VARCHAR)",
"question": "What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145?"
} |
### QUESTION
What is the highest Year, when Rank is less than 28, and when Accolade is "The 100 greatest metal albums of the decade"?
### CONTEXT
CREATE TABLE table_name_59 (year INTEGER, rank VARCHAR, accolade VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_59 WHERE rank < 28 AND accolade = "the 100 greatest metal albums of the decade"</s> | {
"answer": "SELECT MAX(year) FROM table_name_59 WHERE rank < 28 AND accolade = \"the 100 greatest metal albums of the decade\"",
"context": "CREATE TABLE table_name_59 (year INTEGER, rank VARCHAR, accolade VARCHAR)",
"question": "What is the highest Year, when Rank is less than 28, and when Accolade is \"The 100 greatest metal albums of the decade\"?"
} |
### QUESTION
What's the school name in Balclutha that has a Decile of 7 and a roll larger than 186?
### CONTEXT
CREATE TABLE table_name_91 (name VARCHAR, roll VARCHAR, area VARCHAR, decile VARCHAR)
### ANSWER
SELECT name FROM table_name_91 WHERE area = "balclutha" AND decile < 7 AND roll > 186</s> | {
"answer": "SELECT name FROM table_name_91 WHERE area = \"balclutha\" AND decile < 7 AND roll > 186",
"context": "CREATE TABLE table_name_91 (name VARCHAR, roll VARCHAR, area VARCHAR, decile VARCHAR)",
"question": "What's the school name in Balclutha that has a Decile of 7 and a roll larger than 186?"
} |
### QUESTION
with name meridian condominiums what is number of floors?
### CONTEXT
CREATE TABLE table_name_19 (floors INTEGER, name VARCHAR)
### ANSWER
SELECT AVG(floors) FROM table_name_19 WHERE name = "meridian condominiums"</s> | {
"answer": "SELECT AVG(floors) FROM table_name_19 WHERE name = \"meridian condominiums\"",
"context": "CREATE TABLE table_name_19 (floors INTEGER, name VARCHAR)",
"question": "with name meridian condominiums what is number of floors?"
} |
### QUESTION
What game has 28 points, and tampa bay lightning as the opponent?
### CONTEXT
CREATE TABLE table_name_50 (game VARCHAR, points VARCHAR, opponent VARCHAR)
### ANSWER
SELECT game FROM table_name_50 WHERE points = 28 AND opponent = "tampa bay lightning"</s> | {
"answer": "SELECT game FROM table_name_50 WHERE points = 28 AND opponent = \"tampa bay lightning\"",
"context": "CREATE TABLE table_name_50 (game VARCHAR, points VARCHAR, opponent VARCHAR)",
"question": "What game has 28 points, and tampa bay lightning as the opponent?"
} |
### QUESTION
What is the average Prize fund ( US$ ), when OWGR pts is greater than 20, and when Dates is Nov 6-9?
### CONTEXT
CREATE TABLE table_name_56 (prize_fund___us INTEGER, owgr_pts VARCHAR, dates VARCHAR)
### ANSWER
SELECT AVG(prize_fund___us) AS $__ FROM table_name_56 WHERE owgr_pts > 20 AND dates = "nov 6-9"</s> | {
"answer": "SELECT AVG(prize_fund___us) AS $__ FROM table_name_56 WHERE owgr_pts > 20 AND dates = \"nov 6-9\"",
"context": "CREATE TABLE table_name_56 (prize_fund___us INTEGER, owgr_pts VARCHAR, dates VARCHAR)",
"question": "What is the average Prize fund ( US$ ), when OWGR pts is greater than 20, and when Dates is Nov 6-9?"
} |
### QUESTION
Record of 42–16–8, and a March larger than 5 has what average points?
### CONTEXT
CREATE TABLE table_name_95 (points INTEGER, record VARCHAR, march VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_95 WHERE record = "42–16–8" AND march > 5</s> | {
"answer": "SELECT AVG(points) FROM table_name_95 WHERE record = \"42–16–8\" AND march > 5",
"context": "CREATE TABLE table_name_95 (points INTEGER, record VARCHAR, march VARCHAR)",
"question": "Record of 42–16–8, and a March larger than 5 has what average points?"
} |
### QUESTION
Name the average points for dallara 3087 lola t88/50 and year before 1988
### CONTEXT
CREATE TABLE table_name_63 (points INTEGER, chassis VARCHAR, year VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_63 WHERE chassis = "dallara 3087 lola t88/50" AND year < 1988</s> | {
"answer": "SELECT AVG(points) FROM table_name_63 WHERE chassis = \"dallara 3087 lola t88/50\" AND year < 1988",
"context": "CREATE TABLE table_name_63 (points INTEGER, chassis VARCHAR, year VARCHAR)",
"question": "Name the average points for dallara 3087 lola t88/50 and year before 1988"
} |
### QUESTION
Who is the manager 1 with Puma as the kit manufacturer and Puma as the shirt sponsor?
### CONTEXT
CREATE TABLE table_name_29 (manager_1 VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
### ANSWER
SELECT manager_1 FROM table_name_29 WHERE kit_manufacturer = "puma" AND shirt_sponsor = "puma"</s> | {
"answer": "SELECT manager_1 FROM table_name_29 WHERE kit_manufacturer = \"puma\" AND shirt_sponsor = \"puma\"",
"context": "CREATE TABLE table_name_29 (manager_1 VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)",
"question": "Who is the manager 1 with Puma as the kit manufacturer and Puma as the shirt sponsor?"
} |
### QUESTION
WHich Coat of Cash" Wearing Celebrity has a Episode Number larger than 1 and with amy macdonald ( mr rock & roll )?
### CONTEXT
CREATE TABLE table_name_92 (episode_number VARCHAR, musical_guest__song_performed_ VARCHAR)
### ANSWER
SELECT "coat_of_cash" AS _wearing_celebrity FROM table_name_92 WHERE episode_number > 1 AND musical_guest__song_performed_ = "amy macdonald ( mr rock & roll )"</s> | {
"answer": "SELECT \"coat_of_cash\" AS _wearing_celebrity FROM table_name_92 WHERE episode_number > 1 AND musical_guest__song_performed_ = \"amy macdonald ( mr rock & roll )\"",
"context": "CREATE TABLE table_name_92 (episode_number VARCHAR, musical_guest__song_performed_ VARCHAR)",
"question": "WHich Coat of Cash\" Wearing Celebrity has a Episode Number larger than 1 and with amy macdonald ( mr rock & roll )?"
} |
### QUESTION
Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?
### CONTEXT
CREATE TABLE table_name_95 (rec INTEGER, opponent VARCHAR, average VARCHAR, s_touchdown VARCHAR)
### ANSWER
SELECT SUM(rec) FROM table_name_95 WHERE average < 32 AND s_touchdown < 3 AND opponent = "oregon state"</s> | {
"answer": "SELECT SUM(rec) FROM table_name_95 WHERE average < 32 AND s_touchdown < 3 AND opponent = \"oregon state\"",
"context": "CREATE TABLE table_name_95 (rec INTEGER, opponent VARCHAR, average VARCHAR, s_touchdown VARCHAR)",
"question": "Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?"
} |
### QUESTION
What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16?
### CONTEXT
CREATE TABLE table_name_84 (total_viewers VARCHAR, share VARCHAR, bbc_one_weekly_ranking VARCHAR)
### ANSWER
SELECT COUNT(total_viewers) FROM table_name_84 WHERE share = "18.8%" AND bbc_one_weekly_ranking < 16</s> | {
"answer": "SELECT COUNT(total_viewers) FROM table_name_84 WHERE share = \"18.8%\" AND bbc_one_weekly_ranking < 16",
"context": "CREATE TABLE table_name_84 (total_viewers VARCHAR, share VARCHAR, bbc_one_weekly_ranking VARCHAR)",
"question": "What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16?"
} |
### QUESTION
Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966?
### CONTEXT
CREATE TABLE table_name_95 (opponent VARCHAR, year VARCHAR, yards VARCHAR, average VARCHAR)
### ANSWER
SELECT opponent FROM table_name_95 WHERE yards < 197 AND average < 32 AND year = 1966</s> | {
"answer": "SELECT opponent FROM table_name_95 WHERE yards < 197 AND average < 32 AND year = 1966",
"context": "CREATE TABLE table_name_95 (opponent VARCHAR, year VARCHAR, yards VARCHAR, average VARCHAR)",
"question": "Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966?"
} |
### QUESTION
How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7?
### CONTEXT
CREATE TABLE table_name_57 (s_touchdown VARCHAR, average VARCHAR, rec VARCHAR, opponent VARCHAR)
### ANSWER
SELECT COUNT(s_touchdown) FROM table_name_57 WHERE rec = 10 AND opponent = "oregon state" AND average < 19.7</s> | {
"answer": "SELECT COUNT(s_touchdown) FROM table_name_57 WHERE rec = 10 AND opponent = \"oregon state\" AND average < 19.7",
"context": "CREATE TABLE table_name_57 (s_touchdown VARCHAR, average VARCHAR, rec VARCHAR, opponent VARCHAR)",
"question": "How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7?"
} |
### QUESTION
How many points did Nigel Connell have?
### CONTEXT
CREATE TABLE table_name_44 (points VARCHAR, performer VARCHAR)
### ANSWER
SELECT points FROM table_name_44 WHERE performer = "nigel connell"</s> | {
"answer": "SELECT points FROM table_name_44 WHERE performer = \"nigel connell\"",
"context": "CREATE TABLE table_name_44 (points VARCHAR, performer VARCHAR)",
"question": "How many points did Nigel Connell have?"
} |
### QUESTION
Who was the runner-up for the event that ended with a winning score of –15 (66-67-70-70=273)?
### CONTEXT
CREATE TABLE table_name_27 (runner_s__up VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_27 WHERE winning_score = –15(66 - 67 - 70 - 70 = 273)</s> | {
"answer": "SELECT runner_s__up FROM table_name_27 WHERE winning_score = –15(66 - 67 - 70 - 70 = 273)",
"context": "CREATE TABLE table_name_27 (runner_s__up VARCHAR, winning_score VARCHAR)",
"question": "Who was the runner-up for the event that ended with a winning score of –15 (66-67-70-70=273)?"
} |
### QUESTION
What is the name of the anti-ship missile that had a turbojet propulsion that was launched by a surface, sub after 1985?
### CONTEXT
CREATE TABLE table_name_96 (name VARCHAR, launched_by VARCHAR, propulsion VARCHAR, year VARCHAR)
### ANSWER
SELECT name FROM table_name_96 WHERE propulsion = "turbojet" AND year > 1985 AND launched_by = "surface, sub"</s> | {
"answer": "SELECT name FROM table_name_96 WHERE propulsion = \"turbojet\" AND year > 1985 AND launched_by = \"surface, sub\"",
"context": "CREATE TABLE table_name_96 (name VARCHAR, launched_by VARCHAR, propulsion VARCHAR, year VARCHAR)",
"question": "What is the name of the anti-ship missile that had a turbojet propulsion that was launched by a surface, sub after 1985?"
} |
### QUESTION
What is the sum of Silver with a Bronze that is larger than 0 with a Gold smaller than 0?
### CONTEXT
CREATE TABLE table_name_26 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
### ANSWER
SELECT SUM(silver) FROM table_name_26 WHERE bronze > 0 AND gold < 0</s> | {
"answer": "SELECT SUM(silver) FROM table_name_26 WHERE bronze > 0 AND gold < 0",
"context": "CREATE TABLE table_name_26 (silver INTEGER, bronze VARCHAR, gold VARCHAR)",
"question": "What is the sum of Silver with a Bronze that is larger than 0 with a Gold smaller than 0?"
} |
### QUESTION
What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4?
### CONTEXT
CREATE TABLE table_name_67 (make_and_model VARCHAR, quantity VARCHAR, bicycle_capacity† VARCHAR, fuel_propulsion VARCHAR, floor_type VARCHAR)
### ANSWER
SELECT make_and_model FROM table_name_67 WHERE fuel_propulsion = "diesel" AND floor_type = "high" AND bicycle_capacity† < 3 AND quantity = 4</s> | {
"answer": "SELECT make_and_model FROM table_name_67 WHERE fuel_propulsion = \"diesel\" AND floor_type = \"high\" AND bicycle_capacity† < 3 AND quantity = 4",
"context": "CREATE TABLE table_name_67 (make_and_model VARCHAR, quantity VARCHAR, bicycle_capacity† VARCHAR, fuel_propulsion VARCHAR, floor_type VARCHAR)",
"question": "What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4?"
} |
### QUESTION
What is the Date when the label was alfa records, and a Catalog of alca-487?
### CONTEXT
CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR)
### ANSWER
SELECT date FROM table_name_61 WHERE label = "alfa records" AND catalog = "alca-487"</s> | {
"answer": "SELECT date FROM table_name_61 WHERE label = \"alfa records\" AND catalog = \"alca-487\"",
"context": "CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR)",
"question": "What is the Date when the label was alfa records, and a Catalog of alca-487?"
} |
### QUESTION
Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)?
### CONTEXT
CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332)</s> | {
"answer": "SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332)",
"context": "CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR)",
"question": "Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)?"
} |
### QUESTION
What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?
### CONTEXT
CREATE TABLE table_name_8 (goals INTEGER, division VARCHAR, team VARCHAR, country VARCHAR)
### ANSWER
SELECT SUM(goals) FROM table_name_8 WHERE team = "partizan" AND country = "serbia" AND division > 1</s> | {
"answer": "SELECT SUM(goals) FROM table_name_8 WHERE team = \"partizan\" AND country = \"serbia\" AND division > 1",
"context": "CREATE TABLE table_name_8 (goals INTEGER, division VARCHAR, team VARCHAR, country VARCHAR)",
"question": "What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?"
} |
### QUESTION
What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?
### CONTEXT
CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR)
### ANSWER
SELECT catalog FROM table_name_1 WHERE format = "ed remaster cd" AND label = "village records" AND date = "march 13, 2002"</s> | {
"answer": "SELECT catalog FROM table_name_1 WHERE format = \"ed remaster cd\" AND label = \"village records\" AND date = \"march 13, 2002\"",
"context": "CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR)",
"question": "What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?"
} |
### QUESTION
How many tickets were sold/available when the gross revenue (2011) was $5,948,390?
### CONTEXT
CREATE TABLE table_name_4 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)
### ANSWER
SELECT tickets_sold___available FROM table_name_4 WHERE gross_revenue__2011_ = "$5,948,390"</s> | {
"answer": "SELECT tickets_sold___available FROM table_name_4 WHERE gross_revenue__2011_ = \"$5,948,390\"",
"context": "CREATE TABLE table_name_4 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)",
"question": "How many tickets were sold/available when the gross revenue (2011) was $5,948,390?"
} |
### QUESTION
How many legs were lost for Trina Gulliver with more than 3 played?
### CONTEXT
CREATE TABLE table_name_11 (legs_lost VARCHAR, player VARCHAR, played VARCHAR)
### ANSWER
SELECT COUNT(legs_lost) FROM table_name_11 WHERE player = "trina gulliver" AND played > 3</s> | {
"answer": "SELECT COUNT(legs_lost) FROM table_name_11 WHERE player = \"trina gulliver\" AND played > 3",
"context": "CREATE TABLE table_name_11 (legs_lost VARCHAR, player VARCHAR, played VARCHAR)",
"question": "How many legs were lost for Trina Gulliver with more than 3 played?"
} |
### QUESTION
Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?
### CONTEXT
CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR)
### ANSWER
SELECT AVG(yards) FROM table_name_2 WHERE game_time = "2nd quarter (0:00)" AND date = "november 8, 1971"</s> | {
"answer": "SELECT AVG(yards) FROM table_name_2 WHERE game_time = \"2nd quarter (0:00)\" AND date = \"november 8, 1971\"",
"context": "CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR)",
"question": "Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?"
} |
### QUESTION
Who was the Driver, when the Chassis was Bugatti T51, and when the Entrant was Automobiles Ettore Bugatti?
### CONTEXT
CREATE TABLE table_name_87 (driver VARCHAR, chassis VARCHAR, entrant VARCHAR)
### ANSWER
SELECT driver FROM table_name_87 WHERE chassis = "bugatti t51" AND entrant = "automobiles ettore bugatti"</s> | {
"answer": "SELECT driver FROM table_name_87 WHERE chassis = \"bugatti t51\" AND entrant = \"automobiles ettore bugatti\"",
"context": "CREATE TABLE table_name_87 (driver VARCHAR, chassis VARCHAR, entrant VARCHAR)",
"question": "Who was the Driver, when the Chassis was Bugatti T51, and when the Entrant was Automobiles Ettore Bugatti?"
} |
### QUESTION
Result of missed*, and a Game time of 2nd quarter (0:00), and a Kicker of mason crosby involves what date?
### CONTEXT
CREATE TABLE table_name_3 (date VARCHAR, kicker VARCHAR, result VARCHAR, game_time VARCHAR)
### ANSWER
SELECT date FROM table_name_3 WHERE result = "missed*" AND game_time = "2nd quarter (0:00)" AND kicker = "mason crosby"</s> | {
"answer": "SELECT date FROM table_name_3 WHERE result = \"missed*\" AND game_time = \"2nd quarter (0:00)\" AND kicker = \"mason crosby\"",
"context": "CREATE TABLE table_name_3 (date VARCHAR, kicker VARCHAR, result VARCHAR, game_time VARCHAR)",
"question": "Result of missed*, and a Game time of 2nd quarter (0:00), and a Kicker of mason crosby involves what date?"
} |
### QUESTION
What is the lowest value of a team with revenue less than 374 and a debt of 84%?
### CONTEXT
CREATE TABLE table_name_26 (value__ INTEGER, revenue__$m_ VARCHAR, debt_as__percentageof_value VARCHAR)
### ANSWER
SELECT MIN(value__) AS $m_ FROM table_name_26 WHERE revenue__$m_ < 374 AND debt_as__percentageof_value = "84"</s> | {
"answer": "SELECT MIN(value__) AS $m_ FROM table_name_26 WHERE revenue__$m_ < 374 AND debt_as__percentageof_value = \"84\"",
"context": "CREATE TABLE table_name_26 (value__ INTEGER, revenue__$m_ VARCHAR, debt_as__percentageof_value VARCHAR)",
"question": "What is the lowest value of a team with revenue less than 374 and a debt of 84%?"
} |
### QUESTION
What's the FCC info with a Frequency MHz thats smaller than 91.9 and has a CIty of license of Dansville, NY?
### CONTEXT
CREATE TABLE table_name_8 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
### ANSWER
SELECT fcc_info FROM table_name_8 WHERE frequency_mhz < 91.9 AND city_of_license = "dansville, ny"</s> | {
"answer": "SELECT fcc_info FROM table_name_8 WHERE frequency_mhz < 91.9 AND city_of_license = \"dansville, ny\"",
"context": "CREATE TABLE table_name_8 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)",
"question": "What's the FCC info with a Frequency MHz thats smaller than 91.9 and has a CIty of license of Dansville, NY?"
} |
### QUESTION
What is Regulator, when Conduct of Litigation is Yes, and when Probate Activities is Yes?
### CONTEXT
CREATE TABLE table_name_13 (regulator VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)
### ANSWER
SELECT regulator FROM table_name_13 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes"</s> | {
"answer": "SELECT regulator FROM table_name_13 WHERE conduct_of_litigation = \"yes\" AND probate_activities = \"yes\"",
"context": "CREATE TABLE table_name_13 (regulator VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)",
"question": "What is Regulator, when Conduct of Litigation is Yes, and when Probate Activities is Yes?"
} |
### QUESTION
What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?
### CONTEXT
CREATE TABLE table_name_85 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
### ANSWER
SELECT fcc_info FROM table_name_85 WHERE frequency_mhz < 100.3 AND city_of_license = "lowville, ny"</s> | {
"answer": "SELECT fcc_info FROM table_name_85 WHERE frequency_mhz < 100.3 AND city_of_license = \"lowville, ny\"",
"context": "CREATE TABLE table_name_85 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)",
"question": "What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?"
} |
### QUESTION
What is Administration of Oaths, when Rights of Audience is Yes, and when Reserved Instruments is Yes?
### CONTEXT
CREATE TABLE table_name_43 (administration_of_oaths VARCHAR, rights_of_audience VARCHAR, reserved_instruments VARCHAR)
### ANSWER
SELECT administration_of_oaths FROM table_name_43 WHERE rights_of_audience = "yes" AND reserved_instruments = "yes"</s> | {
"answer": "SELECT administration_of_oaths FROM table_name_43 WHERE rights_of_audience = \"yes\" AND reserved_instruments = \"yes\"",
"context": "CREATE TABLE table_name_43 (administration_of_oaths VARCHAR, rights_of_audience VARCHAR, reserved_instruments VARCHAR)",
"question": "What is Administration of Oaths, when Rights of Audience is Yes, and when Reserved Instruments is Yes?"
} |
### QUESTION
What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?
### CONTEXT
CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)
### ANSWER
SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes"</s> | {
"answer": "SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = \"yes\" AND probate_activities = \"yes\"",
"context": "CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)",
"question": "What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?"
} |
### QUESTION
What is Probate Activities, when Reserved Instruments is No, and when Regulator is Chartered Institute of Legal Executives?
### CONTEXT
CREATE TABLE table_name_6 (probate_activities VARCHAR, reserved_instruments VARCHAR, regulator VARCHAR)
### ANSWER
SELECT probate_activities FROM table_name_6 WHERE reserved_instruments = "no" AND regulator = "chartered institute of legal executives"</s> | {
"answer": "SELECT probate_activities FROM table_name_6 WHERE reserved_instruments = \"no\" AND regulator = \"chartered institute of legal executives\"",
"context": "CREATE TABLE table_name_6 (probate_activities VARCHAR, reserved_instruments VARCHAR, regulator VARCHAR)",
"question": "What is Probate Activities, when Reserved Instruments is No, and when Regulator is Chartered Institute of Legal Executives?"
} |
### QUESTION
What's the sum of ERP W with a Frequency MHz that larger than 97.7?
### CONTEXT
CREATE TABLE table_name_2 (erp_w VARCHAR, frequency_mhz INTEGER)
### ANSWER
SELECT COUNT(erp_w) FROM table_name_2 WHERE frequency_mhz > 97.7</s> | {
"answer": "SELECT COUNT(erp_w) FROM table_name_2 WHERE frequency_mhz > 97.7",
"context": "CREATE TABLE table_name_2 (erp_w VARCHAR, frequency_mhz INTEGER)",
"question": "What's the sum of ERP W with a Frequency MHz that larger than 97.7?"
} |
### QUESTION
Which Best Film has a Best Supporting Actress of shamaine buencamino for niño?
### CONTEXT
CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR)
### ANSWER
SELECT best_film FROM table_name_42 WHERE best_supporting_actress = "shamaine buencamino for niño"</s> | {
"answer": "SELECT best_film FROM table_name_42 WHERE best_supporting_actress = \"shamaine buencamino for niño\"",
"context": "CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR)",
"question": "Which Best Film has a Best Supporting Actress of shamaine buencamino for niño?"
} |
### QUESTION
What is Probate Activities, when Notarial Activities is No, when Conduct of Litigation is Yes, and when Regulator is Association of Law Costs Draftsmen?
### CONTEXT
CREATE TABLE table_name_16 (probate_activities VARCHAR, regulator VARCHAR, notarial_activities VARCHAR, conduct_of_litigation VARCHAR)
### ANSWER
SELECT probate_activities FROM table_name_16 WHERE notarial_activities = "no" AND conduct_of_litigation = "yes" AND regulator = "association of law costs draftsmen"</s> | {
"answer": "SELECT probate_activities FROM table_name_16 WHERE notarial_activities = \"no\" AND conduct_of_litigation = \"yes\" AND regulator = \"association of law costs draftsmen\"",
"context": "CREATE TABLE table_name_16 (probate_activities VARCHAR, regulator VARCHAR, notarial_activities VARCHAR, conduct_of_litigation VARCHAR)",
"question": "What is Probate Activities, when Notarial Activities is No, when Conduct of Litigation is Yes, and when Regulator is Association of Law Costs Draftsmen?"
} |
### QUESTION
What is the total number of Year of Intro(s), when Country of Origin is Soviet Union, when Type is Reusable, when Primary Cartridge is 40mm, and when Name/ Designation is RPG-29?
### CONTEXT
CREATE TABLE table_name_87 (year_of_intro VARCHAR, name__designation VARCHAR, primary_cartridge VARCHAR, country_of_origin VARCHAR, type VARCHAR)
### ANSWER
SELECT COUNT(year_of_intro) FROM table_name_87 WHERE country_of_origin = "soviet union" AND type = "reusable" AND primary_cartridge = "40mm" AND name__designation = "rpg-29"</s> | {
"answer": "SELECT COUNT(year_of_intro) FROM table_name_87 WHERE country_of_origin = \"soviet union\" AND type = \"reusable\" AND primary_cartridge = \"40mm\" AND name__designation = \"rpg-29\"",
"context": "CREATE TABLE table_name_87 (year_of_intro VARCHAR, name__designation VARCHAR, primary_cartridge VARCHAR, country_of_origin VARCHAR, type VARCHAR)",
"question": "What is the total number of Year of Intro(s), when Country of Origin is Soviet Union, when Type is Reusable, when Primary Cartridge is 40mm, and when Name/ Designation is RPG-29?"
} |
### QUESTION
What country has a Transfer fee of —, and a Transfer window of summer, and the Status of loaned out, and a Name of gonzález?
### CONTEXT
CREATE TABLE table_name_39 (country VARCHAR, name VARCHAR, status VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR)
### ANSWER
SELECT country FROM table_name_39 WHERE transfer_fee = "—" AND transfer_window = "summer" AND status = "loaned out" AND name = "gonzález"</s> | {
"answer": "SELECT country FROM table_name_39 WHERE transfer_fee = \"—\" AND transfer_window = \"summer\" AND status = \"loaned out\" AND name = \"gonzález\"",
"context": "CREATE TABLE table_name_39 (country VARCHAR, name VARCHAR, status VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR)",
"question": "What country has a Transfer fee of —, and a Transfer window of summer, and the Status of loaned out, and a Name of gonzález?"
} |
### QUESTION
What draw average has a televote less than 633 and Vilma Voroblevaitė as artist and the place is greater than 14?
### CONTEXT
CREATE TABLE table_name_68 (draw INTEGER, place VARCHAR, televote VARCHAR, artist VARCHAR)
### ANSWER
SELECT AVG(draw) FROM table_name_68 WHERE televote < 633 AND artist = "vilma voroblevaitė" AND place > 14</s> | {
"answer": "SELECT AVG(draw) FROM table_name_68 WHERE televote < 633 AND artist = \"vilma voroblevaitė\" AND place > 14",
"context": "CREATE TABLE table_name_68 (draw INTEGER, place VARCHAR, televote VARCHAR, artist VARCHAR)",
"question": "What draw average has a televote less than 633 and Vilma Voroblevaitė as artist and the place is greater than 14?"
} |
### QUESTION
What is the maximum fps HDRx with a height larger than 1080 with a compression at 24 fps of 6:1 with a compression at maximum fps of at least 7:1?
### CONTEXT
CREATE TABLE table_name_47 (maximum_fps VARCHAR, least_compression_at_maximum_fps VARCHAR, height VARCHAR, least_compression_at_24_fps VARCHAR)
### ANSWER
SELECT maximum_fps AS HDRx FROM table_name_47 WHERE height > 1080 AND least_compression_at_24_fps = "6:1" AND least_compression_at_maximum_fps = "7:1"</s> | {
"answer": "SELECT maximum_fps AS HDRx FROM table_name_47 WHERE height > 1080 AND least_compression_at_24_fps = \"6:1\" AND least_compression_at_maximum_fps = \"7:1\"",
"context": "CREATE TABLE table_name_47 (maximum_fps VARCHAR, least_compression_at_maximum_fps VARCHAR, height VARCHAR, least_compression_at_24_fps VARCHAR)",
"question": "What is the maximum fps HDRx with a height larger than 1080 with a compression at 24 fps of 6:1 with a compression at maximum fps of at least 7:1?"
} |
### QUESTION
Which band serves darwin for commercial purpose?
### CONTEXT
CREATE TABLE table_name_61 (band VARCHAR, area_served VARCHAR, purpose VARCHAR)
### ANSWER
SELECT band FROM table_name_61 WHERE area_served = "darwin" AND purpose = "commercial"</s> | {
"answer": "SELECT band FROM table_name_61 WHERE area_served = \"darwin\" AND purpose = \"commercial\"",
"context": "CREATE TABLE table_name_61 (band VARCHAR, area_served VARCHAR, purpose VARCHAR)",
"question": "Which band serves darwin for commercial purpose?"
} |
### QUESTION
What is Combined, when Super G is less than 10, and when Overall is less than 4?
### CONTEXT
CREATE TABLE table_name_46 (combined VARCHAR, super_g VARCHAR, overall VARCHAR)
### ANSWER
SELECT combined FROM table_name_46 WHERE super_g < 10 AND overall < 4</s> | {
"answer": "SELECT combined FROM table_name_46 WHERE super_g < 10 AND overall < 4",
"context": "CREATE TABLE table_name_46 (combined VARCHAR, super_g VARCHAR, overall VARCHAR)",
"question": "What is Combined, when Super G is less than 10, and when Overall is less than 4?"
} |
### QUESTION
What is the average 2006 value for wheat with a 2005 value greater than 7340?
### CONTEXT
CREATE TABLE table_name_47 (production_year VARCHAR)
### ANSWER
SELECT AVG(2006) FROM table_name_47 WHERE production_year = "wheat" AND 2005 > 7340</s> | {
"answer": "SELECT AVG(2006) FROM table_name_47 WHERE production_year = \"wheat\" AND 2005 > 7340",
"context": "CREATE TABLE table_name_47 (production_year VARCHAR)",
"question": "What is the average 2006 value for wheat with a 2005 value greater than 7340?"
} |
### QUESTION
With an outlet of Colorado River and a % instate of a038 84.8% what is in-state area?
### CONTEXT
CREATE TABLE table_name_30 (in_state_area VARCHAR, outlet VARCHAR, _percentage_in_state VARCHAR)
### ANSWER
SELECT in_state_area FROM table_name_30 WHERE outlet = "colorado river" AND _percentage_in_state = "a038 84.8%"</s> | {
"answer": "SELECT in_state_area FROM table_name_30 WHERE outlet = \"colorado river\" AND _percentage_in_state = \"a038 84.8%\"",
"context": "CREATE TABLE table_name_30 (in_state_area VARCHAR, outlet VARCHAR, _percentage_in_state VARCHAR)",
"question": "With an outlet of Colorado River and a % instate of a038 84.8% what is in-state area?"
} |
### QUESTION
What was the transfer fee for the player ending in 2011 and moving from Thrasyvoulos?
### CONTEXT
CREATE TABLE table_name_97 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)
### ANSWER
SELECT transfer_fee FROM table_name_97 WHERE ends = 2011 AND moving_from = "thrasyvoulos"</s> | {
"answer": "SELECT transfer_fee FROM table_name_97 WHERE ends = 2011 AND moving_from = \"thrasyvoulos\"",
"context": "CREATE TABLE table_name_97 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)",
"question": "What was the transfer fee for the player ending in 2011 and moving from Thrasyvoulos?"
} |
### QUESTION
What is the highest rank of Venezuela, which has more than 9 bronze medals?
### CONTEXT
CREATE TABLE table_name_54 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_54 WHERE nation = "venezuela" AND bronze > 9</s> | {
"answer": "SELECT MIN(rank) FROM table_name_54 WHERE nation = \"venezuela\" AND bronze > 9",
"context": "CREATE TABLE table_name_54 (rank INTEGER, nation VARCHAR, bronze VARCHAR)",
"question": "What is the highest rank of Venezuela, which has more than 9 bronze medals?"
} |
### QUESTION
What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?
### CONTEXT
CREATE TABLE table_name_69 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0</s> | {
"answer": "SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0",
"context": "CREATE TABLE table_name_69 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)",
"question": "What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?"
} |
### QUESTION
On what date was the Transitions Championship?
### CONTEXT
CREATE TABLE table_name_46 (date VARCHAR, tournament VARCHAR)
### ANSWER
SELECT date FROM table_name_46 WHERE tournament = "transitions championship"</s> | {
"answer": "SELECT date FROM table_name_46 WHERE tournament = \"transitions championship\"",
"context": "CREATE TABLE table_name_46 (date VARCHAR, tournament VARCHAR)",
"question": "On what date was the Transitions Championship?"
} |
### QUESTION
What nationality has a position of left wing, and a round greater than 4, with mattia baldi as the player?
### CONTEXT
CREATE TABLE table_name_75 (nationality VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR)
### ANSWER
SELECT nationality FROM table_name_75 WHERE position = "left wing" AND round > 4 AND player = "mattia baldi"</s> | {
"answer": "SELECT nationality FROM table_name_75 WHERE position = \"left wing\" AND round > 4 AND player = \"mattia baldi\"",
"context": "CREATE TABLE table_name_75 (nationality VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR)",
"question": "What nationality has a position of left wing, and a round greater than 4, with mattia baldi as the player?"
} |
### QUESTION
What is the highest Division when the playoffs were the quarter finals, with a Regular Season of 5th?
### CONTEXT
CREATE TABLE table_name_25 (division INTEGER, playoffs VARCHAR, regular_season VARCHAR)
### ANSWER
SELECT MAX(division) FROM table_name_25 WHERE playoffs = "quarter finals" AND regular_season = "5th"</s> | {
"answer": "SELECT MAX(division) FROM table_name_25 WHERE playoffs = \"quarter finals\" AND regular_season = \"5th\"",
"context": "CREATE TABLE table_name_25 (division INTEGER, playoffs VARCHAR, regular_season VARCHAR)",
"question": "What is the highest Division when the playoffs were the quarter finals, with a Regular Season of 5th?"
} |
### QUESTION
Which Result has a Goal larger than 6, and a Score of 1–0, and a Competition of friendly, and a Date of may 31, 1998?
### CONTEXT
CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR, competition VARCHAR, goal VARCHAR, score VARCHAR)
### ANSWER
SELECT result FROM table_name_1 WHERE goal > 6 AND score = "1–0" AND competition = "friendly" AND date = "may 31, 1998"</s> | {
"answer": "SELECT result FROM table_name_1 WHERE goal > 6 AND score = \"1–0\" AND competition = \"friendly\" AND date = \"may 31, 1998\"",
"context": "CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR, competition VARCHAR, goal VARCHAR, score VARCHAR)",
"question": "Which Result has a Goal larger than 6, and a Score of 1–0, and a Competition of friendly, and a Date of may 31, 1998?"
} |
### QUESTION
What is the highest points value for the 500cc class in years after 1962 with 0 wins?
### CONTEXT
CREATE TABLE table_name_71 (points INTEGER, wins VARCHAR, class VARCHAR, year VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_71 WHERE class = "500cc" AND year > 1962 AND wins < 0</s> | {
"answer": "SELECT MAX(points) FROM table_name_71 WHERE class = \"500cc\" AND year > 1962 AND wins < 0",
"context": "CREATE TABLE table_name_71 (points INTEGER, wins VARCHAR, class VARCHAR, year VARCHAR)",
"question": "What is the highest points value for the 500cc class in years after 1962 with 0 wins?"
} |
### QUESTION
Before 2008, if the Manufacturer is dodge and the start is under 9, what's the highest finish time?
### CONTEXT
CREATE TABLE table_name_17 (finish INTEGER, year VARCHAR, manufacturer VARCHAR, start VARCHAR)
### ANSWER
SELECT MAX(finish) FROM table_name_17 WHERE manufacturer = "dodge" AND start < 9 AND year < 2008</s> | {
"answer": "SELECT MAX(finish) FROM table_name_17 WHERE manufacturer = \"dodge\" AND start < 9 AND year < 2008",
"context": "CREATE TABLE table_name_17 (finish INTEGER, year VARCHAR, manufacturer VARCHAR, start VARCHAR)",
"question": "Before 2008, if the Manufacturer is dodge and the start is under 9, what's the highest finish time?"
} |
### QUESTION
What is the average Total, when Gold is 0, and when Nation is Iran?
### CONTEXT
CREATE TABLE table_name_71 (total INTEGER, gold VARCHAR, nation VARCHAR)
### ANSWER
SELECT AVG(total) FROM table_name_71 WHERE gold = 0 AND nation = "iran"</s> | {
"answer": "SELECT AVG(total) FROM table_name_71 WHERE gold = 0 AND nation = \"iran\"",
"context": "CREATE TABLE table_name_71 (total INTEGER, gold VARCHAR, nation VARCHAR)",
"question": "What is the average Total, when Gold is 0, and when Nation is Iran?"
} |
### QUESTION
What is the content of the Television service of Vesti?
### CONTEXT
CREATE TABLE table_name_58 (content VARCHAR, television_service VARCHAR)
### ANSWER
SELECT content FROM table_name_58 WHERE television_service = "vesti"</s> | {
"answer": "SELECT content FROM table_name_58 WHERE television_service = \"vesti\"",
"context": "CREATE TABLE table_name_58 (content VARCHAR, television_service VARCHAR)",
"question": "What is the content of the Television service of Vesti?"
} |
### QUESTION
What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474?
### CONTEXT
CREATE TABLE table_name_73 (average VARCHAR, attendance VARCHAR, sellouts VARCHAR, season VARCHAR)
### ANSWER
SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = "2011-12" AND attendance < 162 OFFSET 474</s> | {
"answer": "SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = \"2011-12\" AND attendance < 162 OFFSET 474",
"context": "CREATE TABLE table_name_73 (average VARCHAR, attendance VARCHAR, sellouts VARCHAR, season VARCHAR)",
"question": "What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474?"
} |
### QUESTION
What kind of Modern equivalent has a Post-1009 province of gyeongsang -do, and a Administrative district of jinju -mok, and a Province of Silla of gangju?
### CONTEXT
CREATE TABLE table_name_88 (modern_equivalent VARCHAR, province_of_silla VARCHAR, post_1009_province VARCHAR, administrative_district VARCHAR)
### ANSWER
SELECT modern_equivalent FROM table_name_88 WHERE post_1009_province = "gyeongsang -do" AND administrative_district = "jinju -mok" AND province_of_silla = "gangju"</s> | {
"answer": "SELECT modern_equivalent FROM table_name_88 WHERE post_1009_province = \"gyeongsang -do\" AND administrative_district = \"jinju -mok\" AND province_of_silla = \"gangju\"",
"context": "CREATE TABLE table_name_88 (modern_equivalent VARCHAR, province_of_silla VARCHAR, post_1009_province VARCHAR, administrative_district VARCHAR)",
"question": "What kind of Modern equivalent has a Post-1009 province of gyeongsang -do, and a Administrative district of jinju -mok, and a Province of Silla of gangju?"
} |
### QUESTION
How many games against for team guarani with under 3 draws?
### CONTEXT
CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR)
### ANSWER
SELECT SUM(against) FROM table_name_84 WHERE team = "guarani" AND drawn < 3</s> | {
"answer": "SELECT SUM(against) FROM table_name_84 WHERE team = \"guarani\" AND drawn < 3",
"context": "CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR)",
"question": "How many games against for team guarani with under 3 draws?"
} |
### QUESTION
What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill?
### CONTEXT
CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)
### ANSWER
SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = "june 30, 2005"</s> | {
"answer": "SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = \"june 30, 2005\"",
"context": "CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)",
"question": "What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill?"
} |
### QUESTION
WHich Province of Silla has a Modern equivalent of south jeolla, and a Administrative district of seungju?
### CONTEXT
CREATE TABLE table_name_33 (province_of_silla VARCHAR, modern_equivalent VARCHAR, administrative_district VARCHAR)
### ANSWER
SELECT province_of_silla FROM table_name_33 WHERE modern_equivalent = "south jeolla" AND administrative_district = "seungju"</s> | {
"answer": "SELECT province_of_silla FROM table_name_33 WHERE modern_equivalent = \"south jeolla\" AND administrative_district = \"seungju\"",
"context": "CREATE TABLE table_name_33 (province_of_silla VARCHAR, modern_equivalent VARCHAR, administrative_district VARCHAR)",
"question": "WHich Province of Silla has a Modern equivalent of south jeolla, and a Administrative district of seungju?"
} |
### QUESTION
What team has 4 points and a Chassis of march 82/83c?
### CONTEXT
CREATE TABLE table_name_71 (team VARCHAR, points VARCHAR, chassis VARCHAR)
### ANSWER
SELECT team FROM table_name_71 WHERE points = 4 AND chassis = "march 82/83c"</s> | {
"answer": "SELECT team FROM table_name_71 WHERE points = 4 AND chassis = \"march 82/83c\"",
"context": "CREATE TABLE table_name_71 (team VARCHAR, points VARCHAR, chassis VARCHAR)",
"question": "What team has 4 points and a Chassis of march 82/83c?"
} |
### QUESTION
Who is the opponent in the final of the tournament on May 22, 2006?
### CONTEXT
CREATE TABLE table_name_88 (opponent_in_final VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent_in_final FROM table_name_88 WHERE date = "may 22, 2006"</s> | {
"answer": "SELECT opponent_in_final FROM table_name_88 WHERE date = \"may 22, 2006\"",
"context": "CREATE TABLE table_name_88 (opponent_in_final VARCHAR, date VARCHAR)",
"question": "Who is the opponent in the final of the tournament on May 22, 2006?"
} |
### QUESTION
Name the least average with wickets more than 265 and career of 1888/89-1913/14 and matches more than 51
### CONTEXT
CREATE TABLE table_name_38 (average INTEGER, matches VARCHAR, wickets VARCHAR, career VARCHAR)
### ANSWER
SELECT MIN(average) FROM table_name_38 WHERE wickets > 265 AND career = "1888/89-1913/14" AND matches > 51</s> | {
"answer": "SELECT MIN(average) FROM table_name_38 WHERE wickets > 265 AND career = \"1888/89-1913/14\" AND matches > 51",
"context": "CREATE TABLE table_name_38 (average INTEGER, matches VARCHAR, wickets VARCHAR, career VARCHAR)",
"question": "Name the least average with wickets more than 265 and career of 1888/89-1913/14 and matches more than 51"
} |
### QUESTION
What place was Dave Stockton when he had a to par of +1?
### CONTEXT
CREATE TABLE table_name_10 (place VARCHAR, to_par VARCHAR, player VARCHAR)
### ANSWER
SELECT place FROM table_name_10 WHERE to_par = "+1" AND player = "dave stockton"</s> | {
"answer": "SELECT place FROM table_name_10 WHERE to_par = \"+1\" AND player = \"dave stockton\"",
"context": "CREATE TABLE table_name_10 (place VARCHAR, to_par VARCHAR, player VARCHAR)",
"question": "What place was Dave Stockton when he had a to par of +1?"
} |
### QUESTION
Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476
### CONTEXT
CREATE TABLE table_name_73 (matches VARCHAR, runs VARCHAR, wickets VARCHAR, career VARCHAR)
### ANSWER
SELECT COUNT(matches) FROM table_name_73 WHERE wickets < 537 AND career = "1898/99-1919/20" AND runs > 4476</s> | {
"answer": "SELECT COUNT(matches) FROM table_name_73 WHERE wickets < 537 AND career = \"1898/99-1919/20\" AND runs > 4476",
"context": "CREATE TABLE table_name_73 (matches VARCHAR, runs VARCHAR, wickets VARCHAR, career VARCHAR)",
"question": "Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476"
} |
### QUESTION
What is the to par of the player with a t4 place and a score of 75-69-74-72=290?
### CONTEXT
CREATE TABLE table_name_46 (to_par VARCHAR, place VARCHAR, score VARCHAR)
### ANSWER
SELECT to_par FROM table_name_46 WHERE place = "t4" AND score = 75 - 69 - 74 - 72 = 290</s> | {
"answer": "SELECT to_par FROM table_name_46 WHERE place = \"t4\" AND score = 75 - 69 - 74 - 72 = 290",
"context": "CREATE TABLE table_name_46 (to_par VARCHAR, place VARCHAR, score VARCHAR)",
"question": "What is the to par of the player with a t4 place and a score of 75-69-74-72=290?"
} |
### QUESTION
What type of engine did the Fuel Injection entrant use?
### CONTEXT
CREATE TABLE table_name_4 (engine VARCHAR, entrant VARCHAR)
### ANSWER
SELECT engine FROM table_name_4 WHERE entrant = "fuel injection"</s> | {
"answer": "SELECT engine FROM table_name_4 WHERE entrant = \"fuel injection\"",
"context": "CREATE TABLE table_name_4 (engine VARCHAR, entrant VARCHAR)",
"question": "What type of engine did the Fuel Injection entrant use?"
} |
### QUESTION
Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008?
### CONTEXT
CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, notes VARCHAR)
### ANSWER
SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = "short film" AND title = "wallace & gromit: a close shave"</s> | {
"answer": "SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = \"short film\" AND title = \"wallace & gromit: a close shave\"",
"context": "CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, notes VARCHAR)",
"question": "Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.