combined_text
stringlengths
106
1.05k
###question:What city was in 1889?###answer:SELECT city FROM table_name_97 WHERE year = 1889###context:CREATE TABLE table_name_97 (city VARCHAR, year VARCHAR)
###question:What is the score in Leicester?###answer:SELECT score FROM table_name_42 WHERE city = "leicester"###context:CREATE TABLE table_name_42 (score VARCHAR, city VARCHAR)
###question:How many years has 1 run?###answer:SELECT COUNT(year) FROM table_name_53 WHERE score = "1 run"###context:CREATE TABLE table_name_53 (year VARCHAR, score VARCHAR)
###question:What year was in Aigburth?###answer:SELECT MAX(year) FROM table_name_26 WHERE venue = "aigburth"###context:CREATE TABLE table_name_26 (year INTEGER, venue VARCHAR)
###question:Which season has q145 as its format?###answer:SELECT MIN(season__number) FROM table_name_63 WHERE format__number = "q145"###context:CREATE TABLE table_name_63 (season__number INTEGER, format__number VARCHAR)
###question:What is the average episode number with q146 format?###answer:SELECT AVG(episode__number) FROM table_name_26 WHERE format__number = "q146"###context:CREATE TABLE table_name_26 (episode__number INTEGER, format__number VARCHAR)
###question:Who is the opponent of Game 1 with a 3-2-0 record?###answer:SELECT opponent FROM table_name_21 WHERE game > 1 AND record = "3-2-0"###context:CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR, record VARCHAR)
###question:What is game 9's record?###answer:SELECT record FROM table_name_36 WHERE game = 9###context:CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)
###question:Who is the opponent of the team with a 1-1-0 record?###answer:SELECT opponent FROM table_name_53 WHERE record = "1-1-0"###context:CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)
###question:What is the 3rd Liga from 2010-11?###answer:SELECT 3 AS rd_liga_3rd FROM table_name_41 WHERE date = "2010-11"###context:CREATE TABLE table_name_41 (date VARCHAR)
###question:What is the 3rd Liga from Game 1 of 0-1 between the years 2008-09?###answer:SELECT 3 AS rd_liga_3rd FROM table_name_36 WHERE game_1 = "0-1" AND date = "2008-09"###context:CREATE TABLE table_name_36 (game_1 VARCHAR, date VARCHAR)
###question:Which Score in the final has an Outcome of winner, and a Surface of hard (i)?###answer:SELECT score_in_the_final FROM table_name_12 WHERE outcome = "winner" AND surface = "hard (i)"###context:CREATE TABLE table_name_12 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)
###question:Which Surface has a Partner of jim thomas, and a Date of 2007?###answer:SELECT surface FROM table_name_45 WHERE partner = "jim thomas" AND date = 2007###context:CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR, date VARCHAR)
###question:What was the Attendance in the game with a Result of won 5-2?###answer:SELECT attendance FROM table_name_58 WHERE result = "won 5-2"###context:CREATE TABLE table_name_58 (attendance VARCHAR, result VARCHAR)
###question:What was the home Competition with Attendance of 1,268?###answer:SELECT competition FROM table_name_39 WHERE venue = "home" AND attendance = "1,268"###context:CREATE TABLE table_name_39 (competition VARCHAR, venue VARCHAR, attendance VARCHAR)
###question:What school or club team did the player chosen for the Sacramento Monarchs play for?###answer:SELECT school_club_team FROM table_name_94 WHERE wnba_team = "sacramento monarchs"###context:CREATE TABLE table_name_94 (school_club_team VARCHAR, wnba_team VARCHAR)
###question:What player was chosen for the Chicago Sky?###answer:SELECT player FROM table_name_57 WHERE wnba_team = "chicago sky"###context:CREATE TABLE table_name_57 (player VARCHAR, wnba_team VARCHAR)
###question:Which player was picked for the Chicago Sky?###answer:SELECT player FROM table_name_47 WHERE wnba_team = "chicago sky"###context:CREATE TABLE table_name_47 (player VARCHAR, wnba_team VARCHAR)
###question:What is the position of the player with a height of 205 and shirt no 8?###answer:SELECT position FROM table_name_14 WHERE height = 205 AND shirt_no = 8###context:CREATE TABLE table_name_14 (position VARCHAR, height VARCHAR, shirt_no VARCHAR)
###question:What is the name of the player who is a height of 182?###answer:SELECT player FROM table_name_84 WHERE height = 182###context:CREATE TABLE table_name_84 (player VARCHAR, height VARCHAR)
###question:What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0?###answer:SELECT SUM(gold) FROM table_name_81 WHERE participants = 4 AND silver < 0###context:CREATE TABLE table_name_81 (gold INTEGER, participants VARCHAR, silver VARCHAR)
###question:Who was the opponent with a score of 141–102?###answer:SELECT opponent FROM table_name_97 WHERE score = "141–102"###context:CREATE TABLE table_name_97 (opponent VARCHAR, score VARCHAR)
###question:Who was the opponent with a score of 109–108?###answer:SELECT opponent FROM table_name_7 WHERE score = "109–108"###context:CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)
###question:What was the result when the record was 62–12?###answer:SELECT result FROM table_name_75 WHERE record = "62–12"###context:CREATE TABLE table_name_75 (result VARCHAR, record VARCHAR)
###question:What was the result with a record of 58–11?###answer:SELECT result FROM table_name_49 WHERE record = "58–11"###context:CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR)
###question:What's the number of the game played on January 2, 1936?###answer:SELECT MIN(number) FROM table_name_10 WHERE date = "january 2, 1936"###context:CREATE TABLE table_name_10 (number INTEGER, date VARCHAR)
###question:What's the record of game number 23?###answer:SELECT record FROM table_name_50 WHERE number = 23###context:CREATE TABLE table_name_50 (record VARCHAR, number VARCHAR)
###question:How many Points a February smaller than 1 have?###answer:SELECT MIN(points) FROM table_name_5 WHERE february < 1###context:CREATE TABLE table_name_5 (points INTEGER, february INTEGER)
###question:How many February days have Points of 63 and a Score of 1–2?###answer:SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = "1–2"###context:CREATE TABLE table_name_40 (february VARCHAR, points VARCHAR, score VARCHAR)
###question:What is the name of the player with less than 2 wins?###answer:SELECT player FROM table_name_24 WHERE wins < 2###context:CREATE TABLE table_name_24 (player VARCHAR, wins INTEGER)
###question:What is the number of earning for more than 2 wins and less than 25 events?###answer:SELECT SUM(earnings___) AS $__ FROM table_name_97 WHERE wins > 2 AND events < 25###context:CREATE TABLE table_name_97 (earnings___ INTEGER, wins VARCHAR, events VARCHAR)
###question:What is the largest events number for more than 2 wins and less than $446,893 in earnings?###answer:SELECT MAX(events) FROM table_name_65 WHERE wins > 2 AND earnings___$__ < 446 OFFSET 893###context:CREATE TABLE table_name_65 (events INTEGER, wins VARCHAR, earnings___$__ VARCHAR)
###question:Who was the visitor at 5:00 pm?###answer:SELECT visitor FROM table_name_42 WHERE time = "5:00 pm"###context:CREATE TABLE table_name_42 (visitor VARCHAR, time VARCHAR)
###question:Who was the visitor at the pittsburgh penguins at 7:00 pm that had a record of 0-2-2?###answer:SELECT visitor FROM table_name_14 WHERE home = "pittsburgh penguins" AND time = "7:00 pm" AND record = "0-2-2"###context:CREATE TABLE table_name_14 (visitor VARCHAR, record VARCHAR, home VARCHAR, time VARCHAR)
###question:What is the home in mellon arena at 7:30 pm with a record o 2-5-2?###answer:SELECT home FROM table_name_25 WHERE time = "7:30 pm" AND location_attendance = "mellon arena" AND record = "2-5-2"###context:CREATE TABLE table_name_25 (home VARCHAR, record VARCHAR, time VARCHAR, location_attendance VARCHAR)
###question:Which average Drawn has Games larger than 7?###answer:SELECT AVG(drawn) FROM table_name_29 WHERE games > 7###context:CREATE TABLE table_name_29 (drawn INTEGER, games INTEGER)
###question:Which Make has a Pos of 3?###answer:SELECT make FROM table_name_58 WHERE pos = 3###context:CREATE TABLE table_name_58 (make VARCHAR, pos VARCHAR)
###question:Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3?###answer:SELECT MAX(car__number) FROM table_name_19 WHERE make = "toyota" AND driver = "mike skinner" AND pos > 3###context:CREATE TABLE table_name_19 (car__number INTEGER, pos VARCHAR, make VARCHAR, driver VARCHAR)
###question:Which Make has a Car # larger than 59?###answer:SELECT make FROM table_name_48 WHERE car__number > 59###context:CREATE TABLE table_name_48 (make VARCHAR, car__number INTEGER)
###question:What was the result of the Euro '64 qualifying game?###answer:SELECT results¹ FROM table_name_65 WHERE type_of_game = "euro '64 qualifying"###context:CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR)
###question:What is the date of the Euro '64 qualifying game?###answer:SELECT date FROM table_name_64 WHERE type_of_game = "euro '64 qualifying"###context:CREATE TABLE table_name_64 (date VARCHAR, type_of_game VARCHAR)
###question:What was the title in 1996?###answer:SELECT title FROM table_name_26 WHERE year = "1996"###context:CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR)
###question:What was the role in 2001?###answer:SELECT role FROM table_name_91 WHERE year = "2001"###context:CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR)
###question:What language was Taken in?###answer:SELECT language FROM table_name_68 WHERE title = "taken"###context:CREATE TABLE table_name_68 (language VARCHAR, title VARCHAR)
###question:Which title had Notes of 8 episodes?###answer:SELECT title FROM table_name_90 WHERE notes = "8 episodes"###context:CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR)
###question:Which title is in Portuguese?###answer:SELECT title FROM table_name_28 WHERE language = "portuguese"###context:CREATE TABLE table_name_28 (title VARCHAR, language VARCHAR)
###question:What was the role in 1996?###answer:SELECT role FROM table_name_80 WHERE year = "1996"###context:CREATE TABLE table_name_80 (role VARCHAR, year VARCHAR)
###question:what date did the irwin storm take place###answer:SELECT dates_active FROM table_name_78 WHERE storm_name = "irwin"###context:CREATE TABLE table_name_78 (dates_active VARCHAR, storm_name VARCHAR)
###question:what is the minimum force of storm Adrian###answer:SELECT min_press___mbar__ FROM table_name_15 WHERE storm_name = "adrian"###context:CREATE TABLE table_name_15 (min_press___mbar__ VARCHAR, storm_name VARCHAR)
###question:How many households are in highlands county?###answer:SELECT AVG(number_of_households) FROM table_name_70 WHERE county = "highlands"###context:CREATE TABLE table_name_70 (number_of_households INTEGER, county VARCHAR)
###question:What is the Median household income associated with a median family income of $46,616?###answer:SELECT median_household_income FROM table_name_56 WHERE median_family_income = "$46,616"###context:CREATE TABLE table_name_56 (median_household_income VARCHAR, median_family_income VARCHAR)
###question:What time did the game at memorial stadium take place?###answer:SELECT time___et__ FROM table_name_49 WHERE location = "memorial stadium"###context:CREATE TABLE table_name_49 (time___et__ VARCHAR, location VARCHAR)
###question:What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?###answer:SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16###context:CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR)
###question:What is the bronze for Kyrgyzstan nation with a silver record of greater than 0?###answer:SELECT AVG(bronze) FROM table_name_8 WHERE nation = "kyrgyzstan" AND silver > 0###context:CREATE TABLE table_name_8 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
###question:What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1?###answer:SELECT AVG(gold) FROM table_name_25 WHERE bronze = 1 AND nation = "syria" AND total < 1###context:CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR)
###question:When was the game with a result of w 27-24 (ot)?###answer:SELECT date FROM table_name_26 WHERE result = "w 27-24 (ot)"###context:CREATE TABLE table_name_26 (date VARCHAR, result VARCHAR)
###question:When was the game with a record of 9-3?###answer:SELECT date FROM table_name_65 WHERE record = "9-3"###context:CREATE TABLE table_name_65 (date VARCHAR, record VARCHAR)
###question:What time was the game with a record of 7-3?###answer:SELECT game_time FROM table_name_96 WHERE record = "7-3"###context:CREATE TABLE table_name_96 (game_time VARCHAR, record VARCHAR)
###question:What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252?###answer:SELECT COUNT(week) FROM table_name_36 WHERE venue = "memorial stadium" AND attendance < 41 OFFSET 252###context:CREATE TABLE table_name_36 (week VARCHAR, venue VARCHAR, attendance VARCHAR)
###question:What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended?###answer:SELECT SUM(week) FROM table_name_20 WHERE date = "october 21, 1974" AND attendance < 50 OFFSET 623###context:CREATE TABLE table_name_20 (week INTEGER, date VARCHAR, attendance VARCHAR)
###question:What is the frequency of the station that was launched on 21 August 1994?###answer:SELECT frequency FROM table_name_97 WHERE launched = "21 august 1994"###context:CREATE TABLE table_name_97 (frequency VARCHAR, launched VARCHAR)
###question:What is the launched date of the station in cora huichol tepehuano nahuatl language?###answer:SELECT launched FROM table_name_1 WHERE languages = "cora huichol tepehuano nahuatl"###context:CREATE TABLE table_name_1 (launched VARCHAR, languages VARCHAR)
###question:Where is the station with a coverage of yucatán quintana roo campeche transmitting from?###answer:SELECT transmitting_from FROM table_name_15 WHERE coverage = "yucatán quintana roo campeche"###context:CREATE TABLE table_name_15 (transmitting_from VARCHAR, coverage VARCHAR)
###question:What is the frequency of the station with a coverage of oaxaca guerrero puebla?###answer:SELECT frequency FROM table_name_24 WHERE coverage = "oaxaca guerrero puebla"###context:CREATE TABLE table_name_24 (frequency VARCHAR, coverage VARCHAR)
###question:Where is the station that was launched on 17 July 1997 transmitting from?###answer:SELECT transmitting_from FROM table_name_18 WHERE launched = "17 july 1997"###context:CREATE TABLE table_name_18 (transmitting_from VARCHAR, launched VARCHAR)
###question:What is the coverage of the station that was launched on 22 January 1996?###answer:SELECT coverage FROM table_name_83 WHERE launched = "22 january 1996"###context:CREATE TABLE table_name_83 (coverage VARCHAR, launched VARCHAR)
###question:How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers?###answer:SELECT COUNT(bronze) FROM table_name_79 WHERE gold > "14" AND rank = "14" AND silver > 25###context:CREATE TABLE table_name_79 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)
###question:How many total medals for germany with under 56 bronzes?###answer:SELECT SUM(total) FROM table_name_46 WHERE nation = "germany" AND bronze < 56###context:CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, bronze VARCHAR)
###question:How many total medals for the nation with 1 gold and 6 bronzes?###answer:SELECT COUNT(total) FROM table_name_52 WHERE gold = 1 AND bronze = 6###context:CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, bronze VARCHAR)
###question:What was the loss of the game when the record was 32–34?###answer:SELECT loss FROM table_name_52 WHERE record = "32–34"###context:CREATE TABLE table_name_52 (loss VARCHAR, record VARCHAR)
###question:What was the date of the game with a score of 15–6?###answer:SELECT date FROM table_name_15 WHERE score = "15–6"###context:CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR)
###question:what is the frequency of visits to elmanana.com.mx###answer:SELECT frequency FROM table_name_65 WHERE website = "elmanana.com.mx"###context:CREATE TABLE table_name_65 (frequency VARCHAR, website VARCHAR)
###question:What was the game result against the minnesota vikings?###answer:SELECT result FROM table_name_3 WHERE opponent = "minnesota vikings"###context:CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)
###question:What week shows for december 31, 1993?###answer:SELECT COUNT(week) FROM table_name_25 WHERE date = "december 31, 1993"###context:CREATE TABLE table_name_25 (week VARCHAR, date VARCHAR)
###question:What was the result on October 4, 1993?###answer:SELECT result FROM table_name_48 WHERE date = "october 4, 1993"###context:CREATE TABLE table_name_48 (result VARCHAR, date VARCHAR)
###question:What Week has a Result of l 17-14?###answer:SELECT SUM(week) FROM table_name_52 WHERE result = "l 17-14"###context:CREATE TABLE table_name_52 (week INTEGER, result VARCHAR)
###question:How many years have a position of 2nd?###answer:SELECT COUNT(year) FROM table_name_86 WHERE position = "2nd"###context:CREATE TABLE table_name_86 (year VARCHAR, position VARCHAR)
###question:Which event has a year of 2000?###answer:SELECT event FROM table_name_72 WHERE year = 2000###context:CREATE TABLE table_name_72 (event VARCHAR, year VARCHAR)
###question:What position has notes of 2:12:53?###answer:SELECT position FROM table_name_7 WHERE notes = "2:12:53"###context:CREATE TABLE table_name_7 (position VARCHAR, notes VARCHAR)
###question:What is the average round for draft pick #49 from Notre Dame?###answer:SELECT AVG(round) FROM table_name_90 WHERE college = "notre dame" AND pick__number = "49"###context:CREATE TABLE table_name_90 (round INTEGER, college VARCHAR, pick__number VARCHAR)
###question:What college is draft pick #327 from?###answer:SELECT college FROM table_name_80 WHERE pick__number = "327"###context:CREATE TABLE table_name_80 (college VARCHAR, pick__number VARCHAR)
###question:What college is pick number 268 from?###answer:SELECT college FROM table_name_44 WHERE pick__number = "268"###context:CREATE TABLE table_name_44 (college VARCHAR, pick__number VARCHAR)
###question:What round pick was pick number 101 who plays defensive back?###answer:SELECT round FROM table_name_92 WHERE position = "defensive back" AND pick__number = "101"###context:CREATE TABLE table_name_92 (round VARCHAR, position VARCHAR, pick__number VARCHAR)
###question:What pick number was from the college of maryland and was picked in a round larger than 7?###answer:SELECT pick__number FROM table_name_65 WHERE round > 7 AND college = "maryland"###context:CREATE TABLE table_name_65 (pick__number VARCHAR, round VARCHAR, college VARCHAR)
###question:How much Overall has a Pick # of 26?###answer:SELECT SUM(overall) FROM table_name_25 WHERE pick__number = 26###context:CREATE TABLE table_name_25 (overall INTEGER, pick__number VARCHAR)
###question:Which Position has a Round smaller than 14, and a College of illinois?###answer:SELECT position FROM table_name_88 WHERE round < 14 AND college = "illinois"###context:CREATE TABLE table_name_88 (position VARCHAR, round VARCHAR, college VARCHAR)
###question:How much Overall has a Round smaller than 6, and a Pick # of 26?###answer:SELECT SUM(overall) FROM table_name_68 WHERE round < 6 AND pick__number = 26###context:CREATE TABLE table_name_68 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
###question:What is Roy Hall's highest round?###answer:SELECT MAX(round) FROM table_name_67 WHERE name = "roy hall"###context:CREATE TABLE table_name_67 (round INTEGER, name VARCHAR)
###question:How much Overall has a Pick # larger than 2, and a Name of claude humphrey?###answer:SELECT COUNT(overall) FROM table_name_93 WHERE pick__number > 2 AND name = "claude humphrey"###context:CREATE TABLE table_name_93 (overall VARCHAR, pick__number VARCHAR, name VARCHAR)
###question:What is the oppenent when the score was 5–0?###answer:SELECT opponent FROM table_name_70 WHERE score = "5–0"###context:CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR)
###question:What is the opponent before game 57 when the score was 4–5?###answer:SELECT opponent FROM table_name_61 WHERE game < 57 AND score = "4–5"###context:CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR)
###question:What is the score when the points are larger than 74 and the game is 57?###answer:SELECT score FROM table_name_7 WHERE points > 74 AND game = 57###context:CREATE TABLE table_name_7 (score VARCHAR, points VARCHAR, game VARCHAR)
###question:When is the latest year that an entrant has toro rosso str1 chassis and under 1 point?###answer:SELECT MAX(year) FROM table_name_4 WHERE chassis = "toro rosso str1" AND points < 1###context:CREATE TABLE table_name_4 (year INTEGER, chassis VARCHAR, points VARCHAR)
###question:How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points?###answer:SELECT COUNT(year) FROM table_name_4 WHERE engine = "mercedes fo 108w 2.4l v8" AND points > 0###context:CREATE TABLE table_name_4 (year VARCHAR, engine VARCHAR, points VARCHAR)
###question:What is the engine for the car with 3 points?###answer:SELECT engine FROM table_name_6 WHERE points = 3###context:CREATE TABLE table_name_6 (engine VARCHAR, points VARCHAR)
###question:Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion?###answer:SELECT international_tourism_expenditure__2012_ FROM table_name_65 WHERE international_tourism_expenditure__2011_ = "$33.3 billion"###context:CREATE TABLE table_name_65 (international_to...
###question:What is Italy's UNWTO region?###answer:SELECT unwto_region FROM table_name_24 WHERE country = "italy"###context:CREATE TABLE table_name_24 (unwto_region VARCHAR, country VARCHAR)
###question:What is China's International tourism expenditure (2011)?###answer:SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = "china"###context:CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR)
###question:What was the format for the 4 disc season that had less than 22 episodes and n/a for region 4?###answer:SELECT format FROM table_name_86 WHERE _number_episodes < 22 AND _number_disc_s_ = 4 AND region_4 = "n/a"###context:CREATE TABLE table_name_86 (format VARCHAR, region_4 VARCHAR, _number_episodes VARCHAR, ...
###question:What is the lowest Top-25 for the open championship, with a Top-10 larger than 3?###answer:SELECT MIN(top_25) FROM table_name_55 WHERE tournament = "the open championship" AND top_10 > 3###context:CREATE TABLE table_name_55 (top_25 INTEGER, tournament VARCHAR, top_10 VARCHAR)