text
stringlengths
150
1.06k
source
dict
### QUESTION What is the event year radek štěpánek was the round and there were less than 3 aces? ### CONTEXT CREATE TABLE table_name_92 (event VARCHAR, round VARCHAR, aces VARCHAR) ### ANSWER SELECT COUNT(event) FROM table_name_92 WHERE round = "radek štěpánek" AND NOT aces < 3</s>
{ "answer": "SELECT COUNT(event) FROM table_name_92 WHERE round = \"radek štěpánek\" AND NOT aces < 3", "context": "CREATE TABLE table_name_92 (event VARCHAR, round VARCHAR, aces VARCHAR)", "question": "What is the event year radek štěpánek was the round and there were less than 3 aces?" }
### QUESTION What is the highest number of players during 1r year with a clay set and more than 4 aces? ### CONTEXT CREATE TABLE table_name_63 (player INTEGER, year VARCHAR, sets VARCHAR, aces VARCHAR) ### ANSWER SELECT MAX(player) FROM table_name_63 WHERE year = "1r" AND sets = "clay" AND NOT aces > 4</s>
{ "answer": "SELECT MAX(player) FROM table_name_63 WHERE year = \"1r\" AND sets = \"clay\" AND NOT aces > 4", "context": "CREATE TABLE table_name_63 (player INTEGER, year VARCHAR, sets VARCHAR, aces VARCHAR)", "question": "What is the highest number of players during 1r year with a clay set and more than 4 aces?" }
### QUESTION Who has a Team classification of la vie claire, a stage of 20, a General classification of greg lemond? ### CONTEXT CREATE TABLE table_name_80 (winner VARCHAR, stage VARCHAR, team_classification VARCHAR, general_classification VARCHAR) ### ANSWER SELECT winner FROM table_name_80 WHERE team_classification = "la vie claire" AND general_classification = "greg lemond" AND stage = "20"</s>
{ "answer": "SELECT winner FROM table_name_80 WHERE team_classification = \"la vie claire\" AND general_classification = \"greg lemond\" AND stage = \"20\"", "context": "CREATE TABLE table_name_80 (winner VARCHAR, stage VARCHAR, team_classification VARCHAR, general_classification VARCHAR)", "question": "Who has a Team classification of la vie claire, a stage of 20, a General classification of greg lemond?" }
### QUESTION What is the classification with a Team classification of la vie claire and a Stage of 12? ### CONTEXT CREATE TABLE table_name_62 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT general_classification FROM table_name_62 WHERE team_classification = "la vie claire" AND stage = "12"</s>
{ "answer": "SELECT general_classification FROM table_name_62 WHERE team_classification = \"la vie claire\" AND stage = \"12\"", "context": "CREATE TABLE table_name_62 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)", "question": "What is the classification with a Team classification of la vie claire and a Stage of 12?" }
### QUESTION What is Ludo Peeters' team classification? ### CONTEXT CREATE TABLE table_name_74 (team_classification VARCHAR, winner VARCHAR) ### ANSWER SELECT team_classification FROM table_name_74 WHERE winner = "ludo peeters"</s>
{ "answer": "SELECT team_classification FROM table_name_74 WHERE winner = \"ludo peeters\"", "context": "CREATE TABLE table_name_74 (team_classification VARCHAR, winner VARCHAR)", "question": "What is Ludo Peeters' team classification?" }
### QUESTION Name the total number of years for talbot-lago t26c and points less than 3 ### CONTEXT CREATE TABLE table_name_52 (year VARCHAR, chassis VARCHAR, points VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_52 WHERE chassis = "talbot-lago t26c" AND points < 3</s>
{ "answer": "SELECT COUNT(year) FROM table_name_52 WHERE chassis = \"talbot-lago t26c\" AND points < 3", "context": "CREATE TABLE table_name_52 (year VARCHAR, chassis VARCHAR, points VARCHAR)", "question": "Name the total number of years for talbot-lago t26c and points less than 3" }
### QUESTION Which stage corresponds to Banesto and Tony Rominger? ### CONTEXT CREATE TABLE table_name_7 (stage VARCHAR, team_classification VARCHAR, points_classification VARCHAR) ### ANSWER SELECT stage FROM table_name_7 WHERE team_classification = "banesto" AND points_classification = "tony rominger"</s>
{ "answer": "SELECT stage FROM table_name_7 WHERE team_classification = \"banesto\" AND points_classification = \"tony rominger\"", "context": "CREATE TABLE table_name_7 (stage VARCHAR, team_classification VARCHAR, points_classification VARCHAR)", "question": "Which stage corresponds to Banesto and Tony Rominger?" }
### QUESTION What Entrepreneurs requested £60,000? ### CONTEXT CREATE TABLE table_name_27 (entrepreneur_s_ VARCHAR, money_requested__£_ VARCHAR) ### ANSWER SELECT entrepreneur_s_ FROM table_name_27 WHERE money_requested__£_ = "60,000"</s>
{ "answer": "SELECT entrepreneur_s_ FROM table_name_27 WHERE money_requested__£_ = \"60,000\"", "context": "CREATE TABLE table_name_27 (entrepreneur_s_ VARCHAR, money_requested__£_ VARCHAR)", "question": "What Entrepreneurs requested £60,000?" }
### QUESTION What was the earliest week the team played the chicago cardinals in front of less than 25,312? ### CONTEXT CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### ANSWER SELECT MIN(week) FROM table_name_12 WHERE opponent = "chicago cardinals" AND attendance < 25 OFFSET 312</s>
{ "answer": "SELECT MIN(week) FROM table_name_12 WHERE opponent = \"chicago cardinals\" AND attendance < 25 OFFSET 312", "context": "CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR)", "question": "What was the earliest week the team played the chicago cardinals in front of less than 25,312?" }
### QUESTION What league has a D position, a round smaller than 11 and is with Dennis Vial? ### CONTEXT CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR) ### ANSWER SELECT college_junior_club_team__league_ FROM table_name_84 WHERE position = "d" AND round < 11 AND player = "dennis vial"</s>
{ "answer": "SELECT college_junior_club_team__league_ FROM table_name_84 WHERE position = \"d\" AND round < 11 AND player = \"dennis vial\"", "context": "CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR)", "question": "What league has a D position, a round smaller than 11 and is with Dennis Vial?" }
### QUESTION Who is the Japanese voice actor of the Battle of the Planets of Keyop? ### CONTEXT CREATE TABLE table_name_87 (japanese_voice_actor VARCHAR, battle_of_the_planets VARCHAR) ### ANSWER SELECT japanese_voice_actor FROM table_name_87 WHERE battle_of_the_planets = "keyop"</s>
{ "answer": "SELECT japanese_voice_actor FROM table_name_87 WHERE battle_of_the_planets = \"keyop\"", "context": "CREATE TABLE table_name_87 (japanese_voice_actor VARCHAR, battle_of_the_planets VARCHAR)", "question": "Who is the Japanese voice actor of the Battle of the Planets of Keyop?" }
### QUESTION In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps? ### CONTEXT CREATE TABLE table_name_72 (season INTEGER, apps VARCHAR, country VARCHAR, team VARCHAR) ### ANSWER SELECT MAX(season) FROM table_name_72 WHERE country = "uzbekistan" AND team = "fc pakhtakor tashkent" AND apps > 6</s>
{ "answer": "SELECT MAX(season) FROM table_name_72 WHERE country = \"uzbekistan\" AND team = \"fc pakhtakor tashkent\" AND apps > 6", "context": "CREATE TABLE table_name_72 (season INTEGER, apps VARCHAR, country VARCHAR, team VARCHAR)", "question": "In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps?" }
### QUESTION Who is the voice actor (harmony gold ova dub) of the character with a voice actor (adv TV/sentai ova dub) Kim Prause? ### CONTEXT CREATE TABLE table_name_10 (voice_actor__harmony_gold_ova_dub_ VARCHAR, voice_actor__adv_tv_sentai_ova_dub_ VARCHAR) ### ANSWER SELECT voice_actor__harmony_gold_ova_dub_ FROM table_name_10 WHERE voice_actor__adv_tv_sentai_ova_dub_ = "kim prause"</s>
{ "answer": "SELECT voice_actor__harmony_gold_ova_dub_ FROM table_name_10 WHERE voice_actor__adv_tv_sentai_ova_dub_ = \"kim prause\"", "context": "CREATE TABLE table_name_10 (voice_actor__harmony_gold_ova_dub_ VARCHAR, voice_actor__adv_tv_sentai_ova_dub_ VARCHAR)", "question": "Who is the voice actor (harmony gold ova dub) of the character with a voice actor (adv TV/sentai ova dub) Kim Prause?" }
### QUESTION What is the name of the person with a courtesy title of sanuki-no-kami/jiju? ### CONTEXT CREATE TABLE table_name_32 (name VARCHAR, courtesy_title VARCHAR) ### ANSWER SELECT name FROM table_name_32 WHERE courtesy_title = "sanuki-no-kami/jiju"</s>
{ "answer": "SELECT name FROM table_name_32 WHERE courtesy_title = \"sanuki-no-kami/jiju\"", "context": "CREATE TABLE table_name_32 (name VARCHAR, courtesy_title VARCHAR)", "question": "What is the name of the person with a courtesy title of sanuki-no-kami/jiju?" }
### QUESTION Name the average number of seasons for Prva HNL of 17 ### CONTEXT CREATE TABLE table_name_65 (number_of_seasons_in_top_division INTEGER, number_of_seasons_in_prva_hnl VARCHAR) ### ANSWER SELECT AVG(number_of_seasons_in_top_division) FROM table_name_65 WHERE number_of_seasons_in_prva_hnl = 17</s>
{ "answer": "SELECT AVG(number_of_seasons_in_top_division) FROM table_name_65 WHERE number_of_seasons_in_prva_hnl = 17", "context": "CREATE TABLE table_name_65 (number_of_seasons_in_top_division INTEGER, number_of_seasons_in_prva_hnl VARCHAR)", "question": "Name the average number of seasons for Prva HNL of 17" }
### QUESTION Name the least number of seasons in top division with position in 2012-13 of 001 1st ### CONTEXT CREATE TABLE table_name_46 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR) ### ANSWER SELECT MIN(number_of_seasons_in_top_division) FROM table_name_46 WHERE position_in_2012_13 = "001 1st"</s>
{ "answer": "SELECT MIN(number_of_seasons_in_top_division) FROM table_name_46 WHERE position_in_2012_13 = \"001 1st\"", "context": "CREATE TABLE table_name_46 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR)", "question": "Name the least number of seasons in top division with position in 2012-13 of 001 1st" }
### QUESTION Who was the opponent when Richmond played as the home team? ### CONTEXT CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team FROM table_name_56 WHERE home_team = "richmond"</s>
{ "answer": "SELECT away_team FROM table_name_56 WHERE home_team = \"richmond\"", "context": "CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR)", "question": "Who was the opponent when Richmond played as the home team?" }
### QUESTION Who was the home captain at Sabina Park? ### CONTEXT CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR) ### ANSWER SELECT home_captain FROM table_name_89 WHERE venue = "sabina park"</s>
{ "answer": "SELECT home_captain FROM table_name_89 WHERE venue = \"sabina park\"", "context": "CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR)", "question": "Who was the home captain at Sabina Park?" }
### QUESTION Which Surname has Throws of r, and a Position of p, and a DOB of 26 april 1989? ### CONTEXT CREATE TABLE table_name_64 (surname VARCHAR, dob VARCHAR, throws VARCHAR, position VARCHAR) ### ANSWER SELECT surname FROM table_name_64 WHERE throws = "r" AND position = "p" AND dob = "26 april 1989"</s>
{ "answer": "SELECT surname FROM table_name_64 WHERE throws = \"r\" AND position = \"p\" AND dob = \"26 april 1989\"", "context": "CREATE TABLE table_name_64 (surname VARCHAR, dob VARCHAR, throws VARCHAR, position VARCHAR)", "question": "Which Surname has Throws of r, and a Position of p, and a DOB of 26 april 1989?" }
### QUESTION Name the genre for release-year of first charted record of 1988 ### CONTEXT CREATE TABLE table_name_98 (genre VARCHAR, release_year_of_first_charted_record VARCHAR) ### ANSWER SELECT genre FROM table_name_98 WHERE release_year_of_first_charted_record = 1988</s>
{ "answer": "SELECT genre FROM table_name_98 WHERE release_year_of_first_charted_record = 1988", "context": "CREATE TABLE table_name_98 (genre VARCHAR, release_year_of_first_charted_record VARCHAR)", "question": "Name the genre for release-year of first charted record of 1988" }
### QUESTION What was Footscray's score when it played as the home team? ### CONTEXT CREATE TABLE table_name_2 (home_team VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_2 WHERE home_team = "footscray"</s>
{ "answer": "SELECT home_team AS score FROM table_name_2 WHERE home_team = \"footscray\"", "context": "CREATE TABLE table_name_2 (home_team VARCHAR)", "question": "What was Footscray's score when it played as the home team?" }
### QUESTION What was the Outcome against Opponent in the Final Carlos Kirmayr? ### CONTEXT CREATE TABLE table_name_41 (outcome VARCHAR, opponent_in_the_final VARCHAR) ### ANSWER SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = "carlos kirmayr"</s>
{ "answer": "SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = \"carlos kirmayr\"", "context": "CREATE TABLE table_name_41 (outcome VARCHAR, opponent_in_the_final VARCHAR)", "question": "What was the Outcome against Opponent in the Final Carlos Kirmayr?" }
### QUESTION Against Opponent in the Final Ivan Lendl, on a Surface of clay, with an Outcome of runner-up, where was the Championship? ### CONTEXT CREATE TABLE table_name_89 (championship VARCHAR, opponent_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) ### ANSWER SELECT championship FROM table_name_89 WHERE outcome = "runner-up" AND surface = "clay" AND opponent_in_the_final = "ivan lendl"</s>
{ "answer": "SELECT championship FROM table_name_89 WHERE outcome = \"runner-up\" AND surface = \"clay\" AND opponent_in_the_final = \"ivan lendl\"", "context": "CREATE TABLE table_name_89 (championship VARCHAR, opponent_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)", "question": "Against Opponent in the Final Ivan Lendl, on a Surface of clay, with an Outcome of runner-up, where was the Championship?" }
### QUESTION Who was the opponent when the loss was Wells (4-7)? ### CONTEXT CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR) ### ANSWER SELECT opponent FROM table_name_35 WHERE loss = "wells (4-7)"</s>
{ "answer": "SELECT opponent FROM table_name_35 WHERE loss = \"wells (4-7)\"", "context": "CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR)", "question": "Who was the opponent when the loss was Wells (4-7)?" }
### QUESTION Which Date has Points smaller than 85 and a Game # of 74? ### CONTEXT CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR) ### ANSWER SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74</s>
{ "answer": "SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74", "context": "CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR)", "question": "Which Date has Points smaller than 85 and a Game # of 74?" }
### QUESTION What is listed for Vistor that has a Game # that is smaller than 67 and has a Home listed as Buffalo? ### CONTEXT CREATE TABLE table_name_20 (visitor VARCHAR, game__number VARCHAR, home VARCHAR) ### ANSWER SELECT visitor FROM table_name_20 WHERE game__number < 67 AND home = "buffalo"</s>
{ "answer": "SELECT visitor FROM table_name_20 WHERE game__number < 67 AND home = \"buffalo\"", "context": "CREATE TABLE table_name_20 (visitor VARCHAR, game__number VARCHAR, home VARCHAR)", "question": "What is listed for Vistor that has a Game # that is smaller than 67 and has a Home listed as Buffalo?" }
### QUESTION Which opponent has a Surface of clay, an Outcome of winner, a Tournament of bogotá, and a Score of 6–0, 6–4? ### CONTEXT CREATE TABLE table_name_51 (opponent VARCHAR, score VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR) ### ANSWER SELECT opponent FROM table_name_51 WHERE surface = "clay" AND outcome = "winner" AND tournament = "bogotá" AND score = "6–0, 6–4"</s>
{ "answer": "SELECT opponent FROM table_name_51 WHERE surface = \"clay\" AND outcome = \"winner\" AND tournament = \"bogotá\" AND score = \"6–0, 6–4\"", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, score VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)", "question": "Which opponent has a Surface of clay, an Outcome of winner, a Tournament of bogotá, and a Score of 6–0, 6–4?" }
### QUESTION Name the home leg for uefa europa league and round of q1 with opponents of motherwell ### CONTEXT CREATE TABLE table_name_82 (home_leg VARCHAR, opponents VARCHAR, competition VARCHAR, round VARCHAR) ### ANSWER SELECT home_leg FROM table_name_82 WHERE competition = "uefa europa league" AND round = "q1" AND opponents = "motherwell"</s>
{ "answer": "SELECT home_leg FROM table_name_82 WHERE competition = \"uefa europa league\" AND round = \"q1\" AND opponents = \"motherwell\"", "context": "CREATE TABLE table_name_82 (home_leg VARCHAR, opponents VARCHAR, competition VARCHAR, round VARCHAR)", "question": "Name the home leg for uefa europa league and round of q1 with opponents of motherwell" }
### QUESTION College of san diego state, and a Pick # smaller than 30 has what lowest overall? ### CONTEXT CREATE TABLE table_name_46 (overall INTEGER, college VARCHAR, pick__number VARCHAR) ### ANSWER SELECT MIN(overall) FROM table_name_46 WHERE college = "san diego state" AND pick__number < 30</s>
{ "answer": "SELECT MIN(overall) FROM table_name_46 WHERE college = \"san diego state\" AND pick__number < 30", "context": "CREATE TABLE table_name_46 (overall INTEGER, college VARCHAR, pick__number VARCHAR)", "question": "College of san diego state, and a Pick # smaller than 30 has what lowest overall?" }
### QUESTION Which First elected is the highest one that has a Party of dem, and a District larger than 24, and a Home city/town of berlin? ### CONTEXT CREATE TABLE table_name_73 (first_elected INTEGER, home_city_town VARCHAR, party VARCHAR, district VARCHAR) ### ANSWER SELECT MAX(first_elected) FROM table_name_73 WHERE party = "dem" AND district > 24 AND home_city_town = "berlin"</s>
{ "answer": "SELECT MAX(first_elected) FROM table_name_73 WHERE party = \"dem\" AND district > 24 AND home_city_town = \"berlin\"", "context": "CREATE TABLE table_name_73 (first_elected INTEGER, home_city_town VARCHAR, party VARCHAR, district VARCHAR)", "question": "Which First elected is the highest one that has a Party of dem, and a District larger than 24, and a Home city/town of berlin?" }
### QUESTION What lane is David Carry in heat 1? ### CONTEXT CREATE TABLE table_name_80 (lane VARCHAR, heat VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(lane) FROM table_name_80 WHERE heat = 1 AND name = "david carry"</s>
{ "answer": "SELECT COUNT(lane) FROM table_name_80 WHERE heat = 1 AND name = \"david carry\"", "context": "CREATE TABLE table_name_80 (lane VARCHAR, heat VARCHAR, name VARCHAR)", "question": "What lane is David Carry in heat 1?" }
### QUESTION Which Away team has Carlton for it's Home team? ### CONTEXT CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team FROM table_name_96 WHERE home_team = "carlton"</s>
{ "answer": "SELECT away_team FROM table_name_96 WHERE home_team = \"carlton\"", "context": "CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)", "question": "Which Away team has Carlton for it's Home team?" }
### QUESTION Before 1981, how many Points did Team Suzuki have with less than 0 Wins? ### CONTEXT CREATE TABLE table_name_96 (points INTEGER, wins VARCHAR, team VARCHAR, year VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_96 WHERE team = "suzuki" AND year < 1981 AND wins < 0</s>
{ "answer": "SELECT SUM(points) FROM table_name_96 WHERE team = \"suzuki\" AND year < 1981 AND wins < 0", "context": "CREATE TABLE table_name_96 (points INTEGER, wins VARCHAR, team VARCHAR, year VARCHAR)", "question": "Before 1981, how many Points did Team Suzuki have with less than 0 Wins?" }
### QUESTION After 1986, how many Wins did Lucky Strike Yamaha Team with less than 6 Points have? ### CONTEXT CREATE TABLE table_name_51 (wins INTEGER, points VARCHAR, year VARCHAR, team VARCHAR) ### ANSWER SELECT MIN(wins) FROM table_name_51 WHERE year > 1986 AND team = "lucky strike yamaha" AND points < 6</s>
{ "answer": "SELECT MIN(wins) FROM table_name_51 WHERE year > 1986 AND team = \"lucky strike yamaha\" AND points < 6", "context": "CREATE TABLE table_name_51 (wins INTEGER, points VARCHAR, year VARCHAR, team VARCHAR)", "question": "After 1986, how many Wins did Lucky Strike Yamaha Team with less than 6 Points have?" }
### QUESTION Which event is a win by an opponent of Nicolas Smith, with the round marked n/a? ### CONTEXT CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR) ### ANSWER SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith"</s>
{ "answer": "SELECT event FROM table_name_24 WHERE res = \"win\" AND round = \"n/a\" AND opponent = \"nicolas smith\"", "context": "CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)", "question": "Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?" }
### QUESTION What was the crowd when the VFL played Windy Hill? ### CONTEXT CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR) ### ANSWER SELECT SUM(crowd) FROM table_name_49 WHERE venue = "windy hill"</s>
{ "answer": "SELECT SUM(crowd) FROM table_name_49 WHERE venue = \"windy hill\"", "context": "CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR)", "question": "What was the crowd when the VFL played Windy Hill?" }
### QUESTION Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5) ### CONTEXT CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR) ### ANSWER SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)"</s>
{ "answer": "SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = \"mtl\" AND terminal = \"terminal 5 (ct5)\"", "context": "CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR)", "question": "Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)" }
### QUESTION Which Home team faced the Away team, Hawthorn? ### CONTEXT CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) ### ANSWER SELECT home_team FROM table_name_9 WHERE away_team = "hawthorn"</s>
{ "answer": "SELECT home_team FROM table_name_9 WHERE away_team = \"hawthorn\"", "context": "CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)", "question": "Which Home team faced the Away team, Hawthorn?" }
### QUESTION What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup? ### CONTEXT CREATE TABLE table_name_9 (division VARCHAR, fa_cup VARCHAR, season VARCHAR) ### ANSWER SELECT COUNT(division) FROM table_name_9 WHERE fa_cup = "round of 16" AND season > 2012</s>
{ "answer": "SELECT COUNT(division) FROM table_name_9 WHERE fa_cup = \"round of 16\" AND season > 2012", "context": "CREATE TABLE table_name_9 (division VARCHAR, fa_cup VARCHAR, season VARCHAR)", "question": "What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup?" }
### QUESTION Where is the Belhaven College SSAC conference location? ### CONTEXT CREATE TABLE table_name_23 (location VARCHAR, current_conference VARCHAR, institution VARCHAR) ### ANSWER SELECT location FROM table_name_23 WHERE current_conference = "ssac" AND institution = "belhaven college"</s>
{ "answer": "SELECT location FROM table_name_23 WHERE current_conference = \"ssac\" AND institution = \"belhaven college\"", "context": "CREATE TABLE table_name_23 (location VARCHAR, current_conference VARCHAR, institution VARCHAR)", "question": "Where is the Belhaven College SSAC conference location?" }
### QUESTION What American Southwest Conference school was founded in 1883? ### CONTEXT CREATE TABLE table_name_87 (institution VARCHAR, founded VARCHAR, current_conference VARCHAR) ### ANSWER SELECT institution FROM table_name_87 WHERE founded > 1883 AND current_conference = "american southwest"</s>
{ "answer": "SELECT institution FROM table_name_87 WHERE founded > 1883 AND current_conference = \"american southwest\"", "context": "CREATE TABLE table_name_87 (institution VARCHAR, founded VARCHAR, current_conference VARCHAR)", "question": "What American Southwest Conference school was founded in 1883?" }
### QUESTION What is the average Pct value when state champions is less than 1, MRC Championships is 10, and co-champions are greater than 4? ### CONTEXT CREATE TABLE table_name_51 (pct INTEGER, co_champions VARCHAR, state_champions VARCHAR, mrc_championships VARCHAR) ### ANSWER SELECT AVG(pct) FROM table_name_51 WHERE state_champions < 1 AND mrc_championships = 10 AND co_champions > 4</s>
{ "answer": "SELECT AVG(pct) FROM table_name_51 WHERE state_champions < 1 AND mrc_championships = 10 AND co_champions > 4", "context": "CREATE TABLE table_name_51 (pct INTEGER, co_champions VARCHAR, state_champions VARCHAR, mrc_championships VARCHAR)", "question": "What is the average Pct value when state champions is less than 1, MRC Championships is 10, and co-champions are greater than 4?" }
### QUESTION How big was the crowd when Geelong was the home team? ### CONTEXT CREATE TABLE table_name_96 (crowd VARCHAR, home_team VARCHAR) ### ANSWER SELECT COUNT(crowd) FROM table_name_96 WHERE home_team = "geelong"</s>
{ "answer": "SELECT COUNT(crowd) FROM table_name_96 WHERE home_team = \"geelong\"", "context": "CREATE TABLE table_name_96 (crowd VARCHAR, home_team VARCHAR)", "question": "How big was the crowd when Geelong was the home team?" }
### QUESTION What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40? ### CONTEXT CREATE TABLE table_name_33 (total VARCHAR, professors VARCHAR, associate_professors VARCHAR, lecturers VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_33 WHERE associate_professors > 4 AND lecturers = 5 AND professors < 40</s>
{ "answer": "SELECT COUNT(total) FROM table_name_33 WHERE associate_professors > 4 AND lecturers = 5 AND professors < 40", "context": "CREATE TABLE table_name_33 (total VARCHAR, professors VARCHAR, associate_professors VARCHAR, lecturers VARCHAR)", "question": "What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40?" }
### QUESTION How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81? ### CONTEXT CREATE TABLE table_name_71 (lecturers VARCHAR, total VARCHAR, associate_professors VARCHAR, assistant_professors VARCHAR, professors VARCHAR) ### ANSWER SELECT COUNT(lecturers) FROM table_name_71 WHERE assistant_professors > 8 AND professors > 14 AND associate_professors < 35 AND total > 81</s>
{ "answer": "SELECT COUNT(lecturers) FROM table_name_71 WHERE assistant_professors > 8 AND professors > 14 AND associate_professors < 35 AND total > 81", "context": "CREATE TABLE table_name_71 (lecturers VARCHAR, total VARCHAR, associate_professors VARCHAR, assistant_professors VARCHAR, professors VARCHAR)", "question": "How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81?" }
### QUESTION Which general service in India is a part of the zee variasi network? ### CONTEXT CREATE TABLE table_name_96 (service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) ### ANSWER SELECT service FROM table_name_96 WHERE origin_of_programming = "india" AND genre = "general" AND network = "zee variasi"</s>
{ "answer": "SELECT service FROM table_name_96 WHERE origin_of_programming = \"india\" AND genre = \"general\" AND network = \"zee variasi\"", "context": "CREATE TABLE table_name_96 (service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)", "question": "Which general service in India is a part of the zee variasi network?" }
### QUESTION Which body tackle has yes for the diving tackle and the sliding tackle classified as a trip? ### CONTEXT CREATE TABLE table_name_56 (body_tackle VARCHAR, diving_tackle VARCHAR, sliding_tackle VARCHAR) ### ANSWER SELECT body_tackle FROM table_name_56 WHERE diving_tackle = "yes" AND sliding_tackle = "classified as a trip"</s>
{ "answer": "SELECT body_tackle FROM table_name_56 WHERE diving_tackle = \"yes\" AND sliding_tackle = \"classified as a trip\"", "context": "CREATE TABLE table_name_56 (body_tackle VARCHAR, diving_tackle VARCHAR, sliding_tackle VARCHAR)", "question": "Which body tackle has yes for the diving tackle and the sliding tackle classified as a trip?" }
### QUESTION Who is the director of the best foreign film? ### CONTEXT CREATE TABLE table_name_14 (director VARCHAR, original_title VARCHAR) ### ANSWER SELECT director FROM table_name_14 WHERE original_title = "best foreign film"</s>
{ "answer": "SELECT director FROM table_name_14 WHERE original_title = \"best foreign film\"", "context": "CREATE TABLE table_name_14 (director VARCHAR, original_title VARCHAR)", "question": "Who is the director of the best foreign film?" }
### QUESTION Votes of 27,391 has which quotient? ### CONTEXT CREATE TABLE table_name_10 (quotient VARCHAR, votes VARCHAR) ### ANSWER SELECT quotient FROM table_name_10 WHERE votes = "27,391"</s>
{ "answer": "SELECT quotient FROM table_name_10 WHERE votes = \"27,391\"", "context": "CREATE TABLE table_name_10 (quotient VARCHAR, votes VARCHAR)", "question": "Votes of 27,391 has which quotient?" }
### QUESTION What is the English title for Ansikte Mot Ansikte? ### CONTEXT CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR) ### ANSWER SELECT english_title FROM table_name_90 WHERE original_title = "ansikte mot ansikte"</s>
{ "answer": "SELECT english_title FROM table_name_90 WHERE original_title = \"ansikte mot ansikte\"", "context": "CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR)", "question": "What is the English title for Ansikte Mot Ansikte?" }
### QUESTION Which Score in the final has an Outcome of winner, and a Date of 3 august 2013? ### CONTEXT CREATE TABLE table_name_31 (score_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) ### ANSWER SELECT score_in_the_final FROM table_name_31 WHERE outcome = "winner" AND date = "3 august 2013"</s>
{ "answer": "SELECT score_in_the_final FROM table_name_31 WHERE outcome = \"winner\" AND date = \"3 august 2013\"", "context": "CREATE TABLE table_name_31 (score_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)", "question": "Which Score in the final has an Outcome of winner, and a Date of 3 august 2013?" }
### QUESTION How many goals have a Lokomotiv Plovdiv club and goals against larger than 58? ### CONTEXT CREATE TABLE table_name_80 (goals_for VARCHAR, club VARCHAR, goals_against VARCHAR) ### ANSWER SELECT COUNT(goals_for) FROM table_name_80 WHERE club = "lokomotiv plovdiv" AND goals_against > 58</s>
{ "answer": "SELECT COUNT(goals_for) FROM table_name_80 WHERE club = \"lokomotiv plovdiv\" AND goals_against > 58", "context": "CREATE TABLE table_name_80 (goals_for VARCHAR, club VARCHAR, goals_against VARCHAR)", "question": "How many goals have a Lokomotiv Plovdiv club and goals against larger than 58?" }
### QUESTION What was marlboro brm's lowest points by using brm p160b? ### CONTEXT CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR) ### ANSWER SELECT MIN(points) FROM table_name_60 WHERE entrant = "marlboro brm" AND chassis = "brm p160b"</s>
{ "answer": "SELECT MIN(points) FROM table_name_60 WHERE entrant = \"marlboro brm\" AND chassis = \"brm p160b\"", "context": "CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR)", "question": "What was marlboro brm's lowest points by using brm p160b?" }
### QUESTION Competition of u.s championships, and a Event of all around has what average year? ### CONTEXT CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_61 WHERE competition = "u.s championships" AND event = "all around"</s>
{ "answer": "SELECT AVG(year) FROM table_name_61 WHERE competition = \"u.s championships\" AND event = \"all around\"", "context": "CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR)", "question": "Competition of u.s championships, and a Event of all around has what average year?" }
### QUESTION WHich Tournament has a Partnering of diego pérez and a Opponents in the final of christer allgardh carl limberger? ### CONTEXT CREATE TABLE table_name_39 (tournament VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR) ### ANSWER SELECT tournament FROM table_name_39 WHERE partnering = "diego pérez" AND opponents_in_the_final = "christer allgardh carl limberger"</s>
{ "answer": "SELECT tournament FROM table_name_39 WHERE partnering = \"diego pérez\" AND opponents_in_the_final = \"christer allgardh carl limberger\"", "context": "CREATE TABLE table_name_39 (tournament VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)", "question": "WHich Tournament has a Partnering of diego pérez and a Opponents in the final of christer allgardh carl limberger?" }
### QUESTION What is the Score of an Opponent\ in the final of jordi arrese àlex corretja? ### CONTEXT CREATE TABLE table_name_25 (score VARCHAR, opponents_in_the_final VARCHAR) ### ANSWER SELECT score FROM table_name_25 WHERE opponents_in_the_final = "jordi arrese àlex corretja"</s>
{ "answer": "SELECT score FROM table_name_25 WHERE opponents_in_the_final = \"jordi arrese àlex corretja\"", "context": "CREATE TABLE table_name_25 (score VARCHAR, opponents_in_the_final VARCHAR)", "question": "What is the Score of an Opponent\\ in the final of jordi arrese àlex corretja?" }
### QUESTION What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon? ### CONTEXT CREATE TABLE table_name_36 (tournament VARCHAR) ### ANSWER SELECT 2007 FROM table_name_36 WHERE 2009 = "1r" AND 2011 = "2r" AND tournament = "wimbledon"</s>
{ "answer": "SELECT 2007 FROM table_name_36 WHERE 2009 = \"1r\" AND 2011 = \"2r\" AND tournament = \"wimbledon\"", "context": "CREATE TABLE table_name_36 (tournament VARCHAR)", "question": "What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon?" }
### QUESTION What is the 2003 value with 1r in 2009 at the Australian Open? ### CONTEXT CREATE TABLE table_name_16 (tournament VARCHAR) ### ANSWER SELECT 2003 FROM table_name_16 WHERE 2009 = "1r" AND tournament = "australian open"</s>
{ "answer": "SELECT 2003 FROM table_name_16 WHERE 2009 = \"1r\" AND tournament = \"australian open\"", "context": "CREATE TABLE table_name_16 (tournament VARCHAR)", "question": "What is the 2003 value with 1r in 2009 at the Australian Open?" }
### QUESTION What bombing happened in Brighton, UK? ### CONTEXT CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR) ### ANSWER SELECT event FROM table_name_98 WHERE location = "brighton, uk"</s>
{ "answer": "SELECT event FROM table_name_98 WHERE location = \"brighton, uk\"", "context": "CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR)", "question": "What bombing happened in Brighton, UK?" }
### QUESTION What is the top goal for the result of 2–3? ### CONTEXT CREATE TABLE table_name_39 (goal INTEGER, result VARCHAR) ### ANSWER SELECT MAX(goal) FROM table_name_39 WHERE result = "2–3"</s>
{ "answer": "SELECT MAX(goal) FROM table_name_39 WHERE result = \"2–3\"", "context": "CREATE TABLE table_name_39 (goal INTEGER, result VARCHAR)", "question": "What is the top goal for the result of 2–3?" }
### QUESTION Which Yards is the highest one that has a Rec smaller than 54, and a Long smaller than 5, and a Player of todd herremans, and an Avg larger than 1? ### CONTEXT CREATE TABLE table_name_51 (yards INTEGER, avg VARCHAR, player VARCHAR, rec VARCHAR, long VARCHAR) ### ANSWER SELECT MAX(yards) FROM table_name_51 WHERE rec < 54 AND long < 5 AND player = "todd herremans" AND avg > 1</s>
{ "answer": "SELECT MAX(yards) FROM table_name_51 WHERE rec < 54 AND long < 5 AND player = \"todd herremans\" AND avg > 1", "context": "CREATE TABLE table_name_51 (yards INTEGER, avg VARCHAR, player VARCHAR, rec VARCHAR, long VARCHAR)", "question": "Which Yards is the highest one that has a Rec smaller than 54, and a Long smaller than 5, and a Player of todd herremans, and an Avg larger than 1?" }
### QUESTION Name the class for 4th position with year before 2006 ### CONTEXT CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR) ### ANSWER SELECT class FROM table_name_67 WHERE pos = "4th" AND year < 2006</s>
{ "answer": "SELECT class FROM table_name_67 WHERE pos = \"4th\" AND year < 2006", "context": "CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)", "question": "Name the class for 4th position with year before 2006" }
### QUESTION Name the total number of laps for 23rd position ### CONTEXT CREATE TABLE table_name_17 (laps VARCHAR, pos VARCHAR) ### ANSWER SELECT COUNT(laps) FROM table_name_17 WHERE pos = "23rd"</s>
{ "answer": "SELECT COUNT(laps) FROM table_name_17 WHERE pos = \"23rd\"", "context": "CREATE TABLE table_name_17 (laps VARCHAR, pos VARCHAR)", "question": "Name the total number of laps for 23rd position" }
### QUESTION How many points does Tom Hammond have if he has more than 12 points? ### CONTEXT CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, extra_points VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_12 WHERE player = "tom hammond" AND extra_points > 12</s>
{ "answer": "SELECT SUM(points) FROM table_name_12 WHERE player = \"tom hammond\" AND extra_points > 12", "context": "CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, extra_points VARCHAR)", "question": "How many points does Tom Hammond have if he has more than 12 points?" }
### QUESTION What province has an election after 2009? ### CONTEXT CREATE TABLE table_name_55 (province VARCHAR, election INTEGER) ### ANSWER SELECT province FROM table_name_55 WHERE election > 2009</s>
{ "answer": "SELECT province FROM table_name_55 WHERE election > 2009", "context": "CREATE TABLE table_name_55 (province VARCHAR, election INTEGER)", "question": "What province has an election after 2009?" }
### QUESTION Players of judith wiesner and alex antonitsch had what match w-l? ### CONTEXT CREATE TABLE table_name_64 (matches_w_l VARCHAR, players VARCHAR) ### ANSWER SELECT matches_w_l FROM table_name_64 WHERE players = "judith wiesner and alex antonitsch"</s>
{ "answer": "SELECT matches_w_l FROM table_name_64 WHERE players = \"judith wiesner and alex antonitsch\"", "context": "CREATE TABLE table_name_64 (matches_w_l VARCHAR, players VARCHAR)", "question": "Players of judith wiesner and alex antonitsch had what match w-l?" }
### QUESTION Matches W-L of 1-2, and a Team of spain had what seeding? ### CONTEXT CREATE TABLE table_name_41 (seeding VARCHAR, matches_w_l VARCHAR, team VARCHAR) ### ANSWER SELECT seeding FROM table_name_41 WHERE matches_w_l = "1-2" AND team = "spain"</s>
{ "answer": "SELECT seeding FROM table_name_41 WHERE matches_w_l = \"1-2\" AND team = \"spain\"", "context": "CREATE TABLE table_name_41 (seeding VARCHAR, matches_w_l VARCHAR, team VARCHAR)", "question": "Matches W-L of 1-2, and a Team of spain had what seeding?" }
### QUESTION Where did Collingwood play ae the away team? ### CONTEXT CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR) ### ANSWER SELECT venue FROM table_name_57 WHERE away_team = "collingwood"</s>
{ "answer": "SELECT venue FROM table_name_57 WHERE away_team = \"collingwood\"", "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)", "question": "Where did Collingwood play ae the away team?" }
### QUESTION Title of the angry brigade involves which lowest year? ### CONTEXT CREATE TABLE table_name_49 (year INTEGER, title VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_49 WHERE title = "the angry brigade"</s>
{ "answer": "SELECT MIN(year) FROM table_name_49 WHERE title = \"the angry brigade\"", "context": "CREATE TABLE table_name_49 (year INTEGER, title VARCHAR)", "question": "Title of the angry brigade involves which lowest year?" }
### QUESTION For the club that had 453 points against, losing bonus of 5 and played of 22, what is the drawn? ### CONTEXT CREATE TABLE table_name_94 (drawn VARCHAR, losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR) ### ANSWER SELECT drawn FROM table_name_94 WHERE played = "22" AND points_against = "453" AND losing_bonus = "5"</s>
{ "answer": "SELECT drawn FROM table_name_94 WHERE played = \"22\" AND points_against = \"453\" AND losing_bonus = \"5\"", "context": "CREATE TABLE table_name_94 (drawn VARCHAR, losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR)", "question": "For the club that had 453 points against, losing bonus of 5 and played of 22, what is the drawn?" }
### QUESTION In 1990-2005 what is the lowest Start with Convs smaller than 2? ### CONTEXT CREATE TABLE table_name_93 (start INTEGER, span VARCHAR, conv VARCHAR) ### ANSWER SELECT MIN(start) FROM table_name_93 WHERE span = "1990-2005" AND conv < 2</s>
{ "answer": "SELECT MIN(start) FROM table_name_93 WHERE span = \"1990-2005\" AND conv < 2", "context": "CREATE TABLE table_name_93 (start INTEGER, span VARCHAR, conv VARCHAR)", "question": "In 1990-2005 what is the lowest Start with Convs smaller than 2?" }
### QUESTION What is the Title, when the Episode # is after 2, and when Part 6 is on January 6, 2008? ### CONTEXT CREATE TABLE table_name_98 (title VARCHAR, episode__number VARCHAR, part_6 VARCHAR) ### ANSWER SELECT title FROM table_name_98 WHERE episode__number > 2 AND part_6 = "january 6, 2008"</s>
{ "answer": "SELECT title FROM table_name_98 WHERE episode__number > 2 AND part_6 = \"january 6, 2008\"", "context": "CREATE TABLE table_name_98 (title VARCHAR, episode__number VARCHAR, part_6 VARCHAR)", "question": "What is the Title, when the Episode # is after 2, and when Part 6 is on January 6, 2008?" }
### QUESTION What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent? ### CONTEXT CREATE TABLE table_name_36 (material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR, count_rectified VARCHAR) ### ANSWER SELECT material_or_non_material FROM table_name_36 WHERE positional_or_automatic = "either" AND count_rectified = "no" AND opponents = "either"</s>
{ "answer": "SELECT material_or_non_material FROM table_name_36 WHERE positional_or_automatic = \"either\" AND count_rectified = \"no\" AND opponents = \"either\"", "context": "CREATE TABLE table_name_36 (material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR, count_rectified VARCHAR)", "question": "What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent?" }
### QUESTION Is it material or non-material when there are 2 suits for either opponent? ### CONTEXT CREATE TABLE table_name_63 (material_or_non_material VARCHAR, suits VARCHAR, opponents VARCHAR) ### ANSWER SELECT material_or_non_material FROM table_name_63 WHERE suits = "2" AND opponents = "either"</s>
{ "answer": "SELECT material_or_non_material FROM table_name_63 WHERE suits = \"2\" AND opponents = \"either\"", "context": "CREATE TABLE table_name_63 (material_or_non_material VARCHAR, suits VARCHAR, opponents VARCHAR)", "question": "Is it material or non-material when there are 2 suits for either opponent?" }
### QUESTION How many points did Happy Valley score before game 14? ### CONTEXT CREATE TABLE table_name_89 (point VARCHAR, team VARCHAR, game VARCHAR) ### ANSWER SELECT COUNT(point) FROM table_name_89 WHERE team = "happy valley" AND game < 14</s>
{ "answer": "SELECT COUNT(point) FROM table_name_89 WHERE team = \"happy valley\" AND game < 14", "context": "CREATE TABLE table_name_89 (point VARCHAR, team VARCHAR, game VARCHAR)", "question": "How many points did Happy Valley score before game 14?" }
### QUESTION Which surface was played during Curitiba tournament? ### CONTEXT CREATE TABLE table_name_46 (surface VARCHAR, tournament VARCHAR) ### ANSWER SELECT surface FROM table_name_46 WHERE tournament = "curitiba"</s>
{ "answer": "SELECT surface FROM table_name_46 WHERE tournament = \"curitiba\"", "context": "CREATE TABLE table_name_46 (surface VARCHAR, tournament VARCHAR)", "question": "Which surface was played during Curitiba tournament?" }
### QUESTION What was the length for GT class at Portland International Raceway? ### CONTEXT CREATE TABLE table_name_22 (length VARCHAR, class VARCHAR, circuit VARCHAR) ### ANSWER SELECT length FROM table_name_22 WHERE class = "gt" AND circuit = "portland international raceway"</s>
{ "answer": "SELECT length FROM table_name_22 WHERE class = \"gt\" AND circuit = \"portland international raceway\"", "context": "CREATE TABLE table_name_22 (length VARCHAR, class VARCHAR, circuit VARCHAR)", "question": "What was the length for GT class at Portland International Raceway?" }
### QUESTION How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68? ### CONTEXT CREATE TABLE table_name_21 (points INTEGER, laps VARCHAR, team VARCHAR, grid VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_21 WHERE team = "minardi team usa" AND grid = 3 AND laps > 68</s>
{ "answer": "SELECT AVG(points) FROM table_name_21 WHERE team = \"minardi team usa\" AND grid = 3 AND laps > 68", "context": "CREATE TABLE table_name_21 (points INTEGER, laps VARCHAR, team VARCHAR, grid VARCHAR)", "question": "How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?" }
### QUESTION What is the sum of losses for Geelong Amateur, with 0 byes? ### CONTEXT CREATE TABLE table_name_95 (losses INTEGER, bellarine_fl VARCHAR, byes VARCHAR) ### ANSWER SELECT SUM(losses) FROM table_name_95 WHERE bellarine_fl = "geelong amateur" AND byes < 0</s>
{ "answer": "SELECT SUM(losses) FROM table_name_95 WHERE bellarine_fl = \"geelong amateur\" AND byes < 0", "context": "CREATE TABLE table_name_95 (losses INTEGER, bellarine_fl VARCHAR, byes VARCHAR)", "question": "What is the sum of losses for Geelong Amateur, with 0 byes?" }
### QUESTION Which Year Ended has a Passenger Load Factor (%) larger than 72.8, and a Revenue (€m) smaller than 906.8? ### CONTEXT CREATE TABLE table_name_80 (year_ended VARCHAR, passenger_load_factor___percentage_ VARCHAR, revenue__€m_ VARCHAR) ### ANSWER SELECT year_ended FROM table_name_80 WHERE passenger_load_factor___percentage_ > 72.8 AND revenue__€m_ < 906.8</s>
{ "answer": "SELECT year_ended FROM table_name_80 WHERE passenger_load_factor___percentage_ > 72.8 AND revenue__€m_ < 906.8", "context": "CREATE TABLE table_name_80 (year_ended VARCHAR, passenger_load_factor___percentage_ VARCHAR, revenue__€m_ VARCHAR)", "question": "Which Year Ended has a Passenger Load Factor (%) larger than 72.8, and a Revenue (€m) smaller than 906.8?" }
### QUESTION What is the Founded year of the school located in Paul Smiths, New York? ### CONTEXT CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR) ### ANSWER SELECT founded FROM table_name_99 WHERE location = "paul smiths, new york"</s>
{ "answer": "SELECT founded FROM table_name_99 WHERE location = \"paul smiths, new york\"", "context": "CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR)", "question": "What is the Founded year of the school located in Paul Smiths, New York?" }
### QUESTION What was fitzroy's away side score? ### CONTEXT CREATE TABLE table_name_59 (away_team VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_59 WHERE away_team = "fitzroy"</s>
{ "answer": "SELECT away_team AS score FROM table_name_59 WHERE away_team = \"fitzroy\"", "context": "CREATE TABLE table_name_59 (away_team VARCHAR)", "question": "What was fitzroy's away side score?" }
### QUESTION The league of 400 (21) has what years listed? ### CONTEXT CREATE TABLE table_name_87 (years VARCHAR, league VARCHAR) ### ANSWER SELECT years FROM table_name_87 WHERE league = "400 (21)"</s>
{ "answer": "SELECT years FROM table_name_87 WHERE league = \"400 (21)\"", "context": "CREATE TABLE table_name_87 (years VARCHAR, league VARCHAR)", "question": "The league of 400 (21) has what years listed?" }
### QUESTION Which area 2006 km² has a city of sopot, and an area 1996 km² smaller than 17.31? ### CONTEXT CREATE TABLE table_name_22 (area_2006_km² INTEGER, city VARCHAR, area_1996_km² VARCHAR) ### ANSWER SELECT MAX(area_2006_km²) FROM table_name_22 WHERE city = "sopot" AND area_1996_km² < 17.31</s>
{ "answer": "SELECT MAX(area_2006_km²) FROM table_name_22 WHERE city = \"sopot\" AND area_1996_km² < 17.31", "context": "CREATE TABLE table_name_22 (area_2006_km² INTEGER, city VARCHAR, area_1996_km² VARCHAR)", "question": "Which area 2006 km² has a city of sopot, and an area 1996 km² smaller than 17.31?" }
### QUESTION What is the ERP for the Rockhampton region? ### CONTEXT CREATE TABLE table_name_27 (erp__analog__digital_ VARCHAR, region_served VARCHAR) ### ANSWER SELECT erp__analog__digital_ FROM table_name_27 WHERE region_served = "rockhampton"</s>
{ "answer": "SELECT erp__analog__digital_ FROM table_name_27 WHERE region_served = \"rockhampton\"", "context": "CREATE TABLE table_name_27 (erp__analog__digital_ VARCHAR, region_served VARCHAR)", "question": "What is the ERP for the Rockhampton region?" }
### QUESTION Which city in the mideast region is the hot of Temple University? ### CONTEXT CREATE TABLE table_name_39 (city VARCHAR, region VARCHAR, host VARCHAR) ### ANSWER SELECT city FROM table_name_39 WHERE region = "mideast" AND host = "temple university"</s>
{ "answer": "SELECT city FROM table_name_39 WHERE region = \"mideast\" AND host = \"temple university\"", "context": "CREATE TABLE table_name_39 (city VARCHAR, region VARCHAR, host VARCHAR)", "question": "Which city in the mideast region is the hot of Temple University?" }
### QUESTION What is the time for Adi Bichman? ### CONTEXT CREATE TABLE table_name_28 (time VARCHAR, name VARCHAR) ### ANSWER SELECT time FROM table_name_28 WHERE name = "adi bichman"</s>
{ "answer": "SELECT time FROM table_name_28 WHERE name = \"adi bichman\"", "context": "CREATE TABLE table_name_28 (time VARCHAR, name VARCHAR)", "question": "What is the time for Adi Bichman?" }
### QUESTION What is the total attendance at games against the New York Mets with a record of 18-18? ### CONTEXT CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, record VARCHAR) ### ANSWER SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = "new york mets" AND record = "18-18"</s>
{ "answer": "SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = \"new york mets\" AND record = \"18-18\"", "context": "CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, record VARCHAR)", "question": "What is the total attendance at games against the New York Mets with a record of 18-18?" }
### QUESTION When did the New England Patriots play as the visiting team? ### CONTEXT CREATE TABLE table_name_23 (date VARCHAR, visiting_team VARCHAR) ### ANSWER SELECT date FROM table_name_23 WHERE visiting_team = "new england patriots"</s>
{ "answer": "SELECT date FROM table_name_23 WHERE visiting_team = \"new england patriots\"", "context": "CREATE TABLE table_name_23 (date VARCHAR, visiting_team VARCHAR)", "question": "When did the New England Patriots play as the visiting team?" }
### QUESTION What was Footscray's score as an away team? ### CONTEXT CREATE TABLE table_name_45 (away_team VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_45 WHERE away_team = "footscray"</s>
{ "answer": "SELECT away_team AS score FROM table_name_45 WHERE away_team = \"footscray\"", "context": "CREATE TABLE table_name_45 (away_team VARCHAR)", "question": "What was Footscray's score as an away team?" }
### QUESTION Which Opponent has a Surface of hardcourt, an Outcome of runner-up, and a Tournament of honolulu? ### CONTEXT CREATE TABLE table_name_51 (opponent VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR) ### ANSWER SELECT opponent FROM table_name_51 WHERE surface = "hardcourt" AND outcome = "runner-up" AND tournament = "honolulu"</s>
{ "answer": "SELECT opponent FROM table_name_51 WHERE surface = \"hardcourt\" AND outcome = \"runner-up\" AND tournament = \"honolulu\"", "context": "CREATE TABLE table_name_51 (opponent VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)", "question": "Which Opponent has a Surface of hardcourt, an Outcome of runner-up, and a Tournament of honolulu?" }
### QUESTION Which Total has a Set 2 of 19–25? ### CONTEXT CREATE TABLE table_name_60 (total VARCHAR, set_2 VARCHAR) ### ANSWER SELECT total FROM table_name_60 WHERE set_2 = "19–25"</s>
{ "answer": "SELECT total FROM table_name_60 WHERE set_2 = \"19–25\"", "context": "CREATE TABLE table_name_60 (total VARCHAR, set_2 VARCHAR)", "question": "Which Total has a Set 2 of 19–25?" }
### QUESTION What is the lowest group number that has a Fraction less than 0.000748, a Half-Life of 55.72 and a Decay Constant larger than 0.012400000000000001? ### CONTEXT CREATE TABLE table_name_99 (group INTEGER, decay_constant__s_−1__ VARCHAR, fraction VARCHAR, half_life__s_ VARCHAR) ### ANSWER SELECT MIN(group) FROM table_name_99 WHERE fraction < 0.000748 AND half_life__s_ = 55.72 AND decay_constant__s_−1__ > 0.012400000000000001</s>
{ "answer": "SELECT MIN(group) FROM table_name_99 WHERE fraction < 0.000748 AND half_life__s_ = 55.72 AND decay_constant__s_−1__ > 0.012400000000000001", "context": "CREATE TABLE table_name_99 (group INTEGER, decay_constant__s_−1__ VARCHAR, fraction VARCHAR, half_life__s_ VARCHAR)", "question": "What is the lowest group number that has a Fraction less than 0.000748, a Half-Life of 55.72 and a Decay Constant larger than 0.012400000000000001?" }
### QUESTION What is the first year of the European Championships competition? ### CONTEXT CREATE TABLE table_name_52 (year INTEGER, competition VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_52 WHERE competition = "european championships"</s>
{ "answer": "SELECT MIN(year) FROM table_name_52 WHERE competition = \"european championships\"", "context": "CREATE TABLE table_name_52 (year INTEGER, competition VARCHAR)", "question": "What is the first year of the European Championships competition?" }
### QUESTION During what years did the tallest building, located at 211 Union Street, have less than 31 floors? ### CONTEXT CREATE TABLE table_name_95 (years_as_tallest VARCHAR, floors VARCHAR, street_address VARCHAR) ### ANSWER SELECT years_as_tallest FROM table_name_95 WHERE floors < 31 AND street_address = "211 union street"</s>
{ "answer": "SELECT years_as_tallest FROM table_name_95 WHERE floors < 31 AND street_address = \"211 union street\"", "context": "CREATE TABLE table_name_95 (years_as_tallest VARCHAR, floors VARCHAR, street_address VARCHAR)", "question": "During what years did the tallest building, located at 211 Union Street, have less than 31 floors?" }
### QUESTION What number did Moño Negro peak at before 1996? ### CONTEXT CREATE TABLE table_name_81 (peak INTEGER, track VARCHAR, year VARCHAR) ### ANSWER SELECT MAX(peak) FROM table_name_81 WHERE track = "moño negro" AND year < 1996</s>
{ "answer": "SELECT MAX(peak) FROM table_name_81 WHERE track = \"moño negro\" AND year < 1996", "context": "CREATE TABLE table_name_81 (peak INTEGER, track VARCHAR, year VARCHAR)", "question": "What number did Moño Negro peak at before 1996?" }
### QUESTION What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0? ### CONTEXT CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_división VARCHAR, top_division_titles VARCHAR) ### ANSWER SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_división = 2013 AND top_division_titles > 0</s>
{ "answer": "SELECT MIN(capacity) FROM table_name_11 WHERE first_season_in_segunda_división = 2013 AND top_division_titles > 0", "context": "CREATE TABLE table_name_11 (capacity INTEGER, first_season_in_segunda_división VARCHAR, top_division_titles VARCHAR)", "question": "What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0?" }
### QUESTION What was the startup year for the Jackpine Mine (ph 2) project with an albian sands operator? ### CONTEXT CREATE TABLE table_name_18 (year_startup VARCHAR, operator VARCHAR, project_name VARCHAR) ### ANSWER SELECT year_startup FROM table_name_18 WHERE operator = "albian sands" AND project_name = "jackpine mine (ph 2)"</s>
{ "answer": "SELECT year_startup FROM table_name_18 WHERE operator = \"albian sands\" AND project_name = \"jackpine mine (ph 2)\"", "context": "CREATE TABLE table_name_18 (year_startup VARCHAR, operator VARCHAR, project_name VARCHAR)", "question": "What was the startup year for the Jackpine Mine (ph 2) project with an albian sands operator?" }
### QUESTION What is the lowest ERP W of the 67829 Facility ID? ### CONTEXT CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR) ### ANSWER SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829</s>
{ "answer": "SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829", "context": "CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR)", "question": "What is the lowest ERP W of the 67829 Facility ID?" }
### QUESTION What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17? ### CONTEXT CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR) ### ANSWER SELECT AVG(off_reb) FROM table_name_29 WHERE ftm_fta = "16-17" AND steals < 8</s>
{ "answer": "SELECT AVG(off_reb) FROM table_name_29 WHERE ftm_fta = \"16-17\" AND steals < 8", "context": "CREATE TABLE table_name_29 (off_reb INTEGER, ftm_fta VARCHAR, steals VARCHAR)", "question": "What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?" }