combined_text
stringlengths
106
1.05k
###question:What was the date for game 6?###answer:SELECT date FROM table_name_66 WHERE game = 6###context:CREATE TABLE table_name_66 (date VARCHAR, game VARCHAR)
###question:Who was the visitor for the April 17 game?###answer:SELECT visitor FROM table_name_93 WHERE date = "april 17"###context:CREATE TABLE table_name_93 (visitor VARCHAR, date VARCHAR)
###question:Which chassis did fondmetal f1 spa use after 1990?###answer:SELECT chassis FROM table_name_32 WHERE year > 1990 AND entrant = "fondmetal f1 spa"###context:CREATE TABLE table_name_32 (chassis VARCHAR, year VARCHAR, entrant VARCHAR)
###question:What points did the ilmor v10 engine get after 1992?###answer:SELECT SUM(points) FROM table_name_11 WHERE engine = "ilmor v10" AND year > 1992###context:CREATE TABLE table_name_11 (points INTEGER, engine VARCHAR, year VARCHAR)
###question:Name the place for tim clark###answer:SELECT place FROM table_name_65 WHERE player = "tim clark"###context:CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)
###question:Name the place for south africa and retief goosen###answer:SELECT place FROM table_name_98 WHERE country = "south africa" AND player = "retief goosen"###context:CREATE TABLE table_name_98 (place VARCHAR, country VARCHAR, player VARCHAR)
###question:Name the To par for t10 place and score of 72-71=143###answer:SELECT to_par FROM table_name_88 WHERE place = "t10" AND score = 72 - 71 = 143###context:CREATE TABLE table_name_88 (to_par VARCHAR, place VARCHAR, score VARCHAR)
###question:Which Opponent has a Method of submission?###answer:SELECT opponent FROM table_name_97 WHERE method = "submission"###context:CREATE TABLE table_name_97 (opponent VARCHAR, method VARCHAR)
###question:Which Res has an Event of UFC 122?###answer:SELECT res FROM table_name_40 WHERE event = "ufc 122"###context:CREATE TABLE table_name_40 (res VARCHAR, event VARCHAR)
###question:What was the record after the game against the St. Louis Cardinals?###answer:SELECT record FROM table_name_15 WHERE opponent = "st. louis cardinals"###context:CREATE TABLE table_name_15 (record VARCHAR, opponent VARCHAR)
###question:How many attendance numbers are associated with the site of Veterans Stadium before week 1?###answer:SELECT COUNT(attendance) FROM table_name_59 WHERE game_site = "veterans stadium" AND week < 1###context:CREATE TABLE table_name_59 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)
###question:What is the future stem for the word that has an imperfect stem of hartzen?###answer:SELECT future_stem FROM table_name_66 WHERE imperfect_stem = "hartzen"###context:CREATE TABLE table_name_66 (future_stem VARCHAR, imperfect_stem VARCHAR)
###question:What is the imperfect stem for the word that has a future stem of ikusiko?###answer:SELECT imperfect_stem FROM table_name_93 WHERE future_stem = "ikusiko"###context:CREATE TABLE table_name_93 (imperfect_stem VARCHAR, future_stem VARCHAR)
###question:What is the short stem for the word that has a perfect stem of poztu?###answer:SELECT short_stem FROM table_name_56 WHERE perfect_stem = "poztu"###context:CREATE TABLE table_name_56 (short_stem VARCHAR, perfect_stem VARCHAR)
###question:What is the imperfect stem of the word that means 'take away, remove'?###answer:SELECT imperfect_stem FROM table_name_74 WHERE meaning = "'take away, remove'"###context:CREATE TABLE table_name_74 (imperfect_stem VARCHAR, meaning VARCHAR)
###question:What is the perfect stem for the word that has a future stem of emango?###answer:SELECT perfect_stem FROM table_name_79 WHERE future_stem = "emango"###context:CREATE TABLE table_name_79 (perfect_stem VARCHAR, future_stem VARCHAR)
###question:Who was the opponent of the runner-up after 2012?###answer:SELECT opponents FROM table_name_51 WHERE year > 2012 AND outcome = "runner-up"###context:CREATE TABLE table_name_51 (opponents VARCHAR, year VARCHAR, outcome VARCHAR)
###question:Who was the partner of the winner after 2012?###answer:SELECT partner FROM table_name_12 WHERE year > 2012 AND outcome = "winner"###context:CREATE TABLE table_name_12 (partner VARCHAR, year VARCHAR, outcome VARCHAR)
###question:Name the outcome for 6 march 2000###answer:SELECT outcome FROM table_name_76 WHERE date = "6 march 2000"###context:CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)
###question:Name the date when the surface was clay and the score was 6–1, 6–2 and runner-up###answer:SELECT date FROM table_name_6 WHERE surface = "clay" AND score = "6–1, 6–2" AND outcome = "runner-up"###context:CREATE TABLE table_name_6 (date VARCHAR, outcome VARCHAR, surface VARCHAR, score VARCHAR)
###question:Name the score for 26 may 1997###answer:SELECT score FROM table_name_4 WHERE date = "26 may 1997"###context:CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)
###question:Name the tournament for outcome of winner and clay surface with opponent of aranza salut###answer:SELECT tournament FROM table_name_61 WHERE outcome = "winner" AND surface = "clay" AND opponent = "aranza salut"###context:CREATE TABLE table_name_61 (tournament VARCHAR, opponent VARCHAR, outcome VARCHAR, surf...
###question:Who did the Blue Jays lose to on July 16?###answer:SELECT loss FROM table_name_15 WHERE date = "july 16"###context:CREATE TABLE table_name_15 (loss VARCHAR, date VARCHAR)
###question:Who had the men's win in the 1992/93 season?###answer:SELECT winner AS Men FROM table_name_92 WHERE season = "1992/93"###context:CREATE TABLE table_name_92 (winner VARCHAR, season VARCHAR)
###question:Who had the women's win when Norway was the winner overall in season 2001/02?###answer:SELECT winner AS Women FROM table_name_68 WHERE winner = "norway" AND season = "2001/02"###context:CREATE TABLE table_name_68 (winner VARCHAR, season VARCHAR)
###question:How many laps did Duke Nelson complete when his qualifying time was 122.951?###answer:SELECT SUM(laps) FROM table_name_29 WHERE qual = "122.951"###context:CREATE TABLE table_name_29 (laps INTEGER, qual VARCHAR)
###question:How many laps did Duke Nelson complete when his qualifying time was 136.498?###answer:SELECT MAX(laps) FROM table_name_9 WHERE qual = "136.498"###context:CREATE TABLE table_name_9 (laps INTEGER, qual VARCHAR)
###question:What entrant drove a car with a Moore chassis prior to 1953?###answer:SELECT entrant FROM table_name_37 WHERE year < 1953 AND chassis = "moore"###context:CREATE TABLE table_name_37 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
###question:What opponent was in the match that resulted in 1-2?###answer:SELECT opponent_team FROM table_name_61 WHERE result = "1-2"###context:CREATE TABLE table_name_61 (opponent_team VARCHAR, result VARCHAR)
###question:Which tournament has a value of a for 2009?###answer:SELECT tournament FROM table_name_42 WHERE 2009 = "a"###context:CREATE TABLE table_name_42 (tournament VARCHAR)
###question:What is the value for 2011 when `a` is the value for 2009, and 4r is the value for 2013?###answer:SELECT 2011 FROM table_name_89 WHERE 2009 = "a" AND 2013 = "4r"###context:CREATE TABLE table_name_89 (Id VARCHAR)
###question:What is the result for Chicago, Illinois?###answer:SELECT result FROM table_name_60 WHERE hometown = "chicago, illinois"###context:CREATE TABLE table_name_60 (result VARCHAR, hometown VARCHAR)
###question:How much did the Hydra team from Bronx, New York raise?###answer:SELECT raised FROM table_name_35 WHERE original_team = "hydra" AND hometown = "bronx, new york"###context:CREATE TABLE table_name_35 (raised VARCHAR, original_team VARCHAR, hometown VARCHAR)
###question:Name the attendance for atlanta braves opponent for september 9###answer:SELECT AVG(attendance) FROM table_name_26 WHERE opponent = "atlanta braves" AND date = "september 9"###context:CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
###question:What were the years active of the player from New Zealand with more than 11 caps?###answer:SELECT years_active FROM table_name_1 WHERE caps > 11 AND country = "new zealand"###context:CREATE TABLE table_name_1 (years_active VARCHAR, caps VARCHAR, country VARCHAR)
###question:How many goals did a player from France have?###answer:SELECT goals FROM table_name_6 WHERE country = "france"###context:CREATE TABLE table_name_6 (goals VARCHAR, country VARCHAR)
###question:How many goals did a player active since 2006 have?###answer:SELECT goals FROM table_name_4 WHERE years_active = "2006"###context:CREATE TABLE table_name_4 (goals VARCHAR, years_active VARCHAR)
###question:What is the transfer window of the Leeds United source with a move from Motherwell?###answer:SELECT transfer_window FROM table_name_52 WHERE source = "leeds united" AND moving_from = "motherwell"###context:CREATE TABLE table_name_52 (transfer_window VARCHAR, source VARCHAR, moving_from VARCHAR)
###question:What is the source of a move from Swindon Town?###answer:SELECT source FROM table_name_43 WHERE moving_from = "swindon town"###context:CREATE TABLE table_name_43 (source VARCHAR, moving_from VARCHAR)
###question:What is the name of the country that has a transfer window of winter with an end after 2009 and moving from Bolton Wanderers?###answer:SELECT country FROM table_name_45 WHERE transfer_window = "winter" AND ends > 2009 AND moving_from = "bolton wanderers"###context:CREATE TABLE table_name_45 (country VARCHAR...
###question:What is the transfer fee of the move from Port Vale?###answer:SELECT transfer_fee FROM table_name_34 WHERE moving_from = "port vale"###context:CREATE TABLE table_name_34 (transfer_fee VARCHAR, moving_from VARCHAR)
###question:What is the type of the Leeds United source, winter transfer window and moving from Northampton town?###answer:SELECT type FROM table_name_65 WHERE source = "leeds united" AND transfer_window = "winter" AND moving_from = "northampton town"###context:CREATE TABLE table_name_65 (type VARCHAR, moving_from VARC...
###question:What is the source of the move from Port Vale?###answer:SELECT source FROM table_name_97 WHERE moving_from = "port vale"###context:CREATE TABLE table_name_97 (source VARCHAR, moving_from VARCHAR)
###question:What is the average silver medals a team ranked 12 with less than 2 bronze has?###answer:SELECT AVG(silver) FROM table_name_28 WHERE rank = 12 AND bronze < 2###context:CREATE TABLE table_name_28 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
###question:What is the average rank Finland, which has 1 bronze, more than 1 silver, and less than 0 gold, has?###answer:SELECT AVG(rank) FROM table_name_6 WHERE bronze = 1 AND silver > 1 AND nation = "finland" AND gold < 0###context:CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, nation VARCHAR, bronze VARCHAR...
###question:What is the lowest amount of gold a team with less than 2 total medals, ranked 17, and more than 0 silver medals, has?###answer:SELECT MIN(gold) FROM table_name_62 WHERE total < 2 AND rank = 17 AND silver > 0###context:CREATE TABLE table_name_62 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)
###question:Who is the captain of the manchester city team?###answer:SELECT captain FROM table_name_51 WHERE team = "manchester city"###context:CREATE TABLE table_name_51 (captain VARCHAR, team VARCHAR)
###question:Which captain's manager is Joe Royle?###answer:SELECT captain FROM table_name_49 WHERE manager = "joe royle"###context:CREATE TABLE table_name_49 (captain VARCHAR, manager VARCHAR)
###question:Name the average founded with joined less than 2008###answer:SELECT AVG(founded) FROM table_name_88 WHERE joined < 2008###context:CREATE TABLE table_name_88 (founded INTEGER, joined INTEGER)
###question:What was the role for Challenge TV?###answer:SELECT role FROM table_name_55 WHERE broadcaster = "challenge tv"###context:CREATE TABLE table_name_55 (role VARCHAR, broadcaster VARCHAR)
###question:Who was the broadcaster in 2003?###answer:SELECT broadcaster FROM table_name_24 WHERE year = "2003"###context:CREATE TABLE table_name_24 (broadcaster VARCHAR, year VARCHAR)
###question:What was the role for BBC1?###answer:SELECT role FROM table_name_20 WHERE broadcaster = "bbc1"###context:CREATE TABLE table_name_20 (role VARCHAR, broadcaster VARCHAR)
###question:What was the title with episode 8?###answer:SELECT title FROM table_name_82 WHERE episodes = "8"###context:CREATE TABLE table_name_82 (title VARCHAR, episodes VARCHAR)
###question:What was the title for Sky One in 2005?###answer:SELECT title FROM table_name_27 WHERE broadcaster = "sky one" AND year = "2005"###context:CREATE TABLE table_name_27 (title VARCHAR, broadcaster VARCHAR, year VARCHAR)
###question:What was Yardley-BRM's points high after 1971?###answer:SELECT MAX(points) FROM table_name_96 WHERE entrant = "yardley-brm" AND year > 1971###context:CREATE TABLE table_name_96 (points INTEGER, entrant VARCHAR, year VARCHAR)
###question:What year did Austria-Marlboro BRM get more than 0 points?###answer:SELECT AVG(year) FROM table_name_99 WHERE entrant = "austria-marlboro brm" AND points > 0###context:CREATE TABLE table_name_99 (year INTEGER, entrant VARCHAR, points VARCHAR)
###question:Which entrant has a Mclaren m7c Chassis?###answer:SELECT entrant FROM table_name_62 WHERE chassis = "mclaren m7c"###context:CREATE TABLE table_name_62 (entrant VARCHAR, chassis VARCHAR)
###question:Which province has gmp for an IATA?###answer:SELECT province_region FROM table_name_73 WHERE iata = "gmp"###context:CREATE TABLE table_name_73 (province_region VARCHAR, iata VARCHAR)
###question:Which airport is in Tokyo and has an ICAO of rjtt?###answer:SELECT airport FROM table_name_73 WHERE city = "tokyo" AND icao = "rjtt"###context:CREATE TABLE table_name_73 (airport VARCHAR, city VARCHAR, icao VARCHAR)
###question:Which country is the ICAO vvts?###answer:SELECT country FROM table_name_80 WHERE icao = "vvts"###context:CREATE TABLE table_name_80 (country VARCHAR, icao VARCHAR)
###question:What airport is in Vietnam?###answer:SELECT airport FROM table_name_77 WHERE country = "vietnam"###context:CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)
###question:Which airport has an IATA of hgh?###answer:SELECT airport FROM table_name_29 WHERE iata = "hgh"###context:CREATE TABLE table_name_29 (airport VARCHAR, iata VARCHAR)
###question:Which city has an IATA of tsa?###answer:SELECT city FROM table_name_69 WHERE iata = "tsa"###context:CREATE TABLE table_name_69 (city VARCHAR, iata VARCHAR)
###question:Where was the starting position when there were 182 laps?###answer:SELECT start FROM table_name_84 WHERE laps = 182###context:CREATE TABLE table_name_84 (start VARCHAR, laps VARCHAR)
###question:How many laps were completed with a start of 33, and a finish of 18?###answer:SELECT MAX(laps) FROM table_name_67 WHERE start = "33" AND finish = "18"###context:CREATE TABLE table_name_67 (laps INTEGER, start VARCHAR, finish VARCHAR)
###question:When completing 182 laps, what was the qual.?###answer:SELECT qual FROM table_name_67 WHERE laps = 182###context:CREATE TABLE table_name_67 (qual VARCHAR, laps VARCHAR)
###question:What is the total number of laps that were completed in 1949?###answer:SELECT COUNT(laps) FROM table_name_23 WHERE year = "1949"###context:CREATE TABLE table_name_23 (laps VARCHAR, year VARCHAR)
###question:What is the fewest number of laps completed by a rank 32?###answer:SELECT MIN(laps) FROM table_name_12 WHERE rank = "32"###context:CREATE TABLE table_name_12 (laps INTEGER, rank VARCHAR)
###question:On what date was the individual time trial?###answer:SELECT date FROM table_name_55 WHERE type = "individual time trial"###context:CREATE TABLE table_name_55 (date VARCHAR, type VARCHAR)
###question:When was tony parker (guard) born?###answer:SELECT MAX(year_born) FROM table_name_31 WHERE position = "guard" AND player = "tony parker"###context:CREATE TABLE table_name_31 (year_born INTEGER, position VARCHAR, player VARCHAR)
###question:What team does tariq kirksay, a guard who is taller than 1.8M and born before 1982, represent?###answer:SELECT current_club FROM table_name_13 WHERE height > 1.8 AND position = "guard" AND year_born < 1982 AND player = "tariq kirksay"###context:CREATE TABLE table_name_13 (current_club VARCHAR, player VARCHA...
###question:What player is a center born in 1977?###answer:SELECT player FROM table_name_79 WHERE position = "center" AND year_born = 1977###context:CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR, year_born VARCHAR)
###question:What is the extra result of the 4th game?###answer:SELECT extra FROM table_name_37 WHERE result = "4th"###context:CREATE TABLE table_name_37 (extra VARCHAR, result VARCHAR)
###question:What extra is from after 2009?###answer:SELECT extra FROM table_name_87 WHERE year > 2009###context:CREATE TABLE table_name_87 (extra VARCHAR, year INTEGER)
###question:Who was the Kit manufacturer that was has shirts sponsored by Walkers?###answer:SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = "walkers"###context:CREATE TABLE table_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
###question:Which team is the kit manufacturer Umbro, and the captain Gary Mabbutt?###answer:SELECT team FROM table_name_83 WHERE kit_manufacturer = "umbro" AND captain = "gary mabbutt"###context:CREATE TABLE table_name_83 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)
###question:Who is the captain for the manufacturer Pony, and the manager Harry Redknapp?###answer:SELECT captain FROM table_name_59 WHERE kit_manufacturer = "pony" AND manager = "harry redknapp"###context:CREATE TABLE table_name_59 (captain VARCHAR, kit_manufacturer VARCHAR, manager VARCHAR)
###question:Who is the shirt sponsor for the manufacturer Nike?###answer:SELECT shirt_sponsor FROM table_name_54 WHERE kit_manufacturer = "nike"###context:CREATE TABLE table_name_54 (shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)
###question:Which team has the team captain Jon Newsome?###answer:SELECT team FROM table_name_81 WHERE captain = "jon newsome"###context:CREATE TABLE table_name_81 (team VARCHAR, captain VARCHAR)
###question:What was the GSR number on the date 1883?###answer:SELECT gsr_nos FROM table_name_50 WHERE date_made = "1883"###context:CREATE TABLE table_name_50 (gsr_nos VARCHAR, date_made VARCHAR)
###question:What was the quantity of the fleet information for DWWR 50 and 51?###answer:SELECT quantity_made FROM table_name_4 WHERE fleet_numbers = "dwwr 50 and 51"###context:CREATE TABLE table_name_4 (quantity_made VARCHAR, fleet_numbers VARCHAR)
###question:What was the quantity for Inchicore of J7?###answer:SELECT quantity_made FROM table_name_3 WHERE inchicore_class = "j7"###context:CREATE TABLE table_name_3 (quantity_made VARCHAR, inchicore_class VARCHAR)
###question:What's the highest round for a defensive tackle position?###answer:SELECT MAX(round) FROM table_name_70 WHERE position = "defensive tackle"###context:CREATE TABLE table_name_70 (round INTEGER, position VARCHAR)
###question:What is the smallest round associated with Samuel Scheschuk?###answer:SELECT MIN(round) FROM table_name_54 WHERE name = "samuel scheschuk"###context:CREATE TABLE table_name_54 (round INTEGER, name VARCHAR)
###question:How many people were in attendance on the day there was a 30-22 victory?###answer:SELECT COUNT(attendance) FROM table_name_13 WHERE record = "30-22"###context:CREATE TABLE table_name_13 (attendance VARCHAR, record VARCHAR)
###question:Who lost on June 29?###answer:SELECT loss FROM table_name_84 WHERE date = "june 29"###context:CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR)
###question:What is the score with lost as the result?###answer:SELECT score FROM table_name_80 WHERE result = "lost"###context:CREATE TABLE table_name_80 (score VARCHAR, result VARCHAR)
###question:Which date has china as the venue?###answer:SELECT date FROM table_name_25 WHERE venue = "china"###context:CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR)
###question:Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date?###answer:SELECT score FROM table_name_92 WHERE competition = "1997 dunhill cup malaysia" AND date = "february 23, 1997"###context:CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR)
###question:Which competition has 4-0 as the score?###answer:SELECT competition FROM table_name_88 WHERE score = "4-0"###context:CREATE TABLE table_name_88 (competition VARCHAR, score VARCHAR)
###question:What score has october 16, 2000 as the date?###answer:SELECT score FROM table_name_71 WHERE date = "october 16, 2000"###context:CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)
###question:What is the result of the competition of 2000 afc asian cup group stages?###answer:SELECT result FROM table_name_22 WHERE competition = "2000 afc asian cup group stages"###context:CREATE TABLE table_name_22 (result VARCHAR, competition VARCHAR)
###question:What is the motive before 2007?###answer:SELECT motive FROM table_name_25 WHERE year < 2007###context:CREATE TABLE table_name_25 (motive VARCHAR, year INTEGER)
###question:What is the result of the directorial debut of the year award?###answer:SELECT result FROM table_name_77 WHERE category = "directorial debut of the year"###context:CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR)
###question:What is the category for the premios lo nuestro award?###answer:SELECT category FROM table_name_72 WHERE award = "premios lo nuestro"###context:CREATE TABLE table_name_72 (category VARCHAR, award VARCHAR)
###question:What's the average number of Laps, that had a start of 25, with a Qual of 138.063?###answer:SELECT AVG(laps) FROM table_name_21 WHERE start = "25" AND qual = "138.063"###context:CREATE TABLE table_name_21 (laps INTEGER, start VARCHAR, qual VARCHAR)
###question:What year had the Finish of 12?###answer:SELECT year FROM table_name_65 WHERE finish = "12"###context:CREATE TABLE table_name_65 (year VARCHAR, finish VARCHAR)
###question:In what year did a Qual of 141.105 with a Start of 25 happen?###answer:SELECT year FROM table_name_69 WHERE start = "25" AND qual = "141.105"###context:CREATE TABLE table_name_69 (year VARCHAR, start VARCHAR, qual VARCHAR)
###question:What year had the largest number of laps over 196?###answer:SELECT year FROM table_name_52 WHERE laps > 196###context:CREATE TABLE table_name_52 (year VARCHAR, laps INTEGER)
###question:Who are the runners-up in 1996?###answer:SELECT runners_up FROM table_name_28 WHERE year = "1996"###context:CREATE TABLE table_name_28 (runners_up VARCHAR, year VARCHAR)