combined_text
stringlengths 106
1.05k
|
---|
###question:On what Date was the Score in Final 6–3, 6–3?###answer:SELECT date FROM table_name_70 WHERE score_in_final = "6–3, 6–3"###context:CREATE TABLE table_name_70 (date VARCHAR, score_in_final VARCHAR) |
###question:What was the Opponents in Final during the match with a Score in Final of 6–4, 3–6, 5–7?###answer:SELECT opponents_in_final FROM table_name_5 WHERE score_in_final = "6–4, 3–6, 5–7"###context:CREATE TABLE table_name_5 (opponents_in_final VARCHAR, score_in_final VARCHAR) |
###question:How many seasons took place in aspen, usa?###answer:SELECT COUNT(season) FROM table_name_34 WHERE location = "aspen, usa"###context:CREATE TABLE table_name_34 (season VARCHAR, location VARCHAR) |
###question:Which place was earned on 12 feb 2012?###answer:SELECT place FROM table_name_93 WHERE date = "12 feb 2012"###context:CREATE TABLE table_name_93 (place VARCHAR, date VARCHAR) |
###question:Where was the race on 28 dec 2010 held?###answer:SELECT location FROM table_name_69 WHERE date = "28 dec 2010"###context:CREATE TABLE table_name_69 (location VARCHAR, date VARCHAR) |
###question:What is the overall length with a designation of s-8ko?###answer:SELECT length_overall FROM table_name_38 WHERE designation = "s-8ko"###context:CREATE TABLE table_name_38 (length_overall VARCHAR, designation VARCHAR) |
###question:What designation has a launch weight of 11.3kg?###answer:SELECT designation FROM table_name_37 WHERE launch_weight = "11.3kg"###context:CREATE TABLE table_name_37 (designation VARCHAR, launch_weight VARCHAR) |
###question:What type has an overall length of 1.605 m?###answer:SELECT type FROM table_name_92 WHERE length_overall = "1.605 m"###context:CREATE TABLE table_name_92 (type VARCHAR, length_overall VARCHAR) |
###question:How many touchdowns were made where field goals were less than 0?###answer:SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0###context:CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER) |
###question:While Duncan Thompson played, how many points did he have where there were 0 field goals, 0 extra points, and more than 9 touchdowns?###answer:SELECT AVG(points) FROM table_name_86 WHERE field_goals = 0 AND touchdowns > 9 AND extra_points = 0 AND player = "duncan thompson"###context:CREATE TABLE table_name_86 (points INTEGER, player VARCHAR, extra_points VARCHAR, field_goals VARCHAR, touchdowns VARCHAR) |
###question:When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points?###answer:SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = "herb graver" AND touchdowns < 15###context:CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR) |
###question:How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns?###answer:SELECT AVG(field_goals) FROM table_name_79 WHERE touchdowns < 15 AND points < 45###context:CREATE TABLE table_name_79 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR) |
###question:What is the position of the race with a point of test driver?###answer:SELECT position FROM table_name_70 WHERE points = "test driver"###context:CREATE TABLE table_name_70 (position VARCHAR, points VARCHAR) |
###question:How many wins did team Kolles & Heinz union, with f/laps of 0, have in the Formula Three Euroseries?###answer:SELECT wins FROM table_name_16 WHERE f_laps = "0" AND series = "formula three euroseries" AND team = "kolles & heinz union"###context:CREATE TABLE table_name_16 (wins VARCHAR, team VARCHAR, f_laps VARCHAR, series VARCHAR) |
###question:Which series has 4 f/laps?###answer:SELECT series FROM table_name_58 WHERE f_laps = "4"###context:CREATE TABLE table_name_58 (series VARCHAR, f_laps VARCHAR) |
###question:How many wins did Team Autotecnica, with 0 podiums, have?###answer:SELECT wins FROM table_name_82 WHERE podiums = "0" AND team = "team autotecnica"###context:CREATE TABLE table_name_82 (wins VARCHAR, podiums VARCHAR, team VARCHAR) |
###question:How many races had 10.5 points?###answer:SELECT races FROM table_name_99 WHERE points = "10.5"###context:CREATE TABLE table_name_99 (races VARCHAR, points VARCHAR) |
###question:How many wins did the team with 5 podiums have?###answer:SELECT wins FROM table_name_15 WHERE podiums = "5"###context:CREATE TABLE table_name_15 (wins VARCHAR, podiums VARCHAR) |
###question:What is recorded as the lowest Round for the Player Jim Thompson?###answer:SELECT MIN(round) FROM table_name_26 WHERE player = "jim thompson"###context:CREATE TABLE table_name_26 (round INTEGER, player VARCHAR) |
###question:What is the highest Round that has a Position of Tackle and the Player Fred Neilsen?###answer:SELECT MAX(round) FROM table_name_91 WHERE position = "tackle" AND player = "fred neilsen"###context:CREATE TABLE table_name_91 (round INTEGER, position VARCHAR, player VARCHAR) |
###question:What Position has a Round of 27?###answer:SELECT position FROM table_name_95 WHERE round = 27###context:CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR) |
###question:Name the sum of drawn for points less than 6 and games more than 8###answer:SELECT SUM(drawn) FROM table_name_85 WHERE points < 6 AND games > 8###context:CREATE TABLE table_name_85 (drawn INTEGER, points VARCHAR, games VARCHAR) |
###question:How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?###answer:SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = "2 x -inch (mm), 16 x -inch (mm)"###context:CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR) |
###question:Which Opponent has a Round larger than 1, and an Event of king of the cage 31?###answer:SELECT opponent FROM table_name_3 WHERE round > 1 AND event = "king of the cage 31"###context:CREATE TABLE table_name_3 (opponent VARCHAR, round VARCHAR, event VARCHAR) |
###question:Which Time has a Round larger than 1, and an Event of total fighting alliance 2?###answer:SELECT time FROM table_name_21 WHERE round > 1 AND event = "total fighting alliance 2"###context:CREATE TABLE table_name_21 (time VARCHAR, round VARCHAR, event VARCHAR) |
###question:Which res has a Record of 3-0?###answer:SELECT res FROM table_name_35 WHERE record = "3-0"###context:CREATE TABLE table_name_35 (res VARCHAR, record VARCHAR) |
###question:Which Location has an Event of king of the cage: flash point?###answer:SELECT location FROM table_name_16 WHERE event = "king of the cage: flash point"###context:CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR) |
###question:Who were the opposing team when a Loss was listed with Lowe (1-4)?###answer:SELECT opponent FROM table_name_63 WHERE loss = "lowe (1-4)"###context:CREATE TABLE table_name_63 (opponent VARCHAR, loss VARCHAR) |
###question:What body styles have 6/75 as the model?###answer:SELECT body_styles FROM table_name_4 WHERE model = "6/75"###context:CREATE TABLE table_name_4 (body_styles VARCHAR, model VARCHAR) |
###question:What body styles have devaux-hall inline 6 as the engine?###answer:SELECT body_styles FROM table_name_9 WHERE engine = "devaux-hall inline 6"###context:CREATE TABLE table_name_9 (body_styles VARCHAR, engine VARCHAR) |
###question:What model has de vaux continental as the make?###answer:SELECT model FROM table_name_50 WHERE make = "de vaux continental"###context:CREATE TABLE table_name_50 (model VARCHAR, make VARCHAR) |
###question:What wheelbase has sport coupe (4p.) as the body style?###answer:SELECT wheelbase FROM table_name_20 WHERE body_styles = "sport coupe (4p.)"###context:CREATE TABLE table_name_20 (wheelbase VARCHAR, body_styles VARCHAR) |
###question:What was the score when the home team was Toronto?###answer:SELECT score FROM table_name_89 WHERE home = "toronto"###context:CREATE TABLE table_name_89 (score VARCHAR, home VARCHAR) |
###question:What was the record when Minnesota was the home team?###answer:SELECT record FROM table_name_64 WHERE home = "minnesota"###context:CREATE TABLE table_name_64 (record VARCHAR, home VARCHAR) |
###question:Which city held the game in Old Trafford before 1907 when the Opposition was sussex?###answer:SELECT city FROM table_name_49 WHERE year < 1907 AND venue = "old trafford" AND opposition = "sussex"###context:CREATE TABLE table_name_49 (city VARCHAR, opposition VARCHAR, year VARCHAR, venue VARCHAR) |
###question:What was the score when the opposition was sussex after 1890?###answer:SELECT score FROM table_name_49 WHERE opposition = "sussex" AND year > 1890###context:CREATE TABLE table_name_49 (score VARCHAR, opposition VARCHAR, year VARCHAR) |
###question:What city had a score of 20 in aigburth after 1907?###answer:SELECT city FROM table_name_76 WHERE year > 1907 AND score > 20 AND venue = "aigburth"###context:CREATE TABLE table_name_76 (city VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR) |
###question:What was the score when the opposition was sussex in liverpool?###answer:SELECT SUM(score) FROM table_name_96 WHERE opposition = "sussex" AND city = "liverpool"###context:CREATE TABLE table_name_96 (score INTEGER, opposition VARCHAR, city VARCHAR) |
###question:What is Director Erik Matti's Producer?###answer:SELECT producer FROM table_name_57 WHERE director = "erik matti"###context:CREATE TABLE table_name_57 (producer VARCHAR, director VARCHAR) |
###question:What is Director Bona Fajardo's Producer?###answer:SELECT producer FROM table_name_32 WHERE director = "bona fajardo"###context:CREATE TABLE table_name_32 (producer VARCHAR, director VARCHAR) |
###question:What is the Producer on December 25, 2006?###answer:SELECT producer FROM table_name_77 WHERE year = "december 25, 2006"###context:CREATE TABLE table_name_77 (producer VARCHAR, year VARCHAR) |
###question:What Title has a Role of Mylene?###answer:SELECT title FROM table_name_79 WHERE role = "mylene"###context:CREATE TABLE table_name_79 (title VARCHAR, role VARCHAR) |
###question:In what Year is there a Role of (cameo)?###answer:SELECT year FROM table_name_55 WHERE role = "(cameo)"###context:CREATE TABLE table_name_55 (year VARCHAR, role VARCHAR) |
###question:On what date was the result 106-105?###answer:SELECT date FROM table_name_57 WHERE result = "106-105"###context:CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR) |
###question:What was the result for Portland at home on June 12?###answer:SELECT result FROM table_name_26 WHERE home_team = "portland" AND date = "june 12"###context:CREATE TABLE table_name_26 (result VARCHAR, home_team VARCHAR, date VARCHAR) |
###question:Who was the home team with a result of 105-99?###answer:SELECT home_team FROM table_name_32 WHERE result = "105-99"###context:CREATE TABLE table_name_32 (home_team VARCHAR, result VARCHAR) |
###question:On what date was Game 1?###answer:SELECT date FROM table_name_54 WHERE game = "game 1"###context:CREATE TABLE table_name_54 (date VARCHAR, game VARCHAR) |
###question:On what date was Game 3?###answer:SELECT date FROM table_name_2 WHERE game = "game 3"###context:CREATE TABLE table_name_2 (date VARCHAR, game VARCHAR) |
###question:On what date was Portland on the road for Game 2?###answer:SELECT date FROM table_name_95 WHERE road_team = "portland" AND game = "game 2"###context:CREATE TABLE table_name_95 (date VARCHAR, road_team VARCHAR, game VARCHAR) |
###question:What was the highest number of games played when they had over 14 against and 3 losses?###answer:SELECT MAX(played) FROM table_name_27 WHERE against > 14 AND lost = 3###context:CREATE TABLE table_name_27 (played INTEGER, against VARCHAR, lost VARCHAR) |
###question:What was the position for team corinthians with over 14 against?###answer:SELECT AVG(position) FROM table_name_90 WHERE team = "corinthians" AND against > 14###context:CREATE TABLE table_name_90 (position INTEGER, team VARCHAR, against VARCHAR) |
###question:How many games played for team bangu with under 15 against, and over 9 points?###answer:SELECT MAX(played) FROM table_name_19 WHERE against < 15 AND team = "bangu" AND points > 9###context:CREATE TABLE table_name_19 (played INTEGER, points VARCHAR, against VARCHAR, team VARCHAR) |
###question:When is Northern Ireland the opponent?###answer:SELECT date FROM table_name_55 WHERE opponent = "northern ireland"###context:CREATE TABLE table_name_55 (date VARCHAR, opponent VARCHAR) |
###question:Name the length for class of gts-2 and date of october 8###answer:SELECT length FROM table_name_27 WHERE class = "gts-2" AND date = "october 8"###context:CREATE TABLE table_name_27 (length VARCHAR, class VARCHAR, date VARCHAR) |
###question:Name the circuit with class of gts###answer:SELECT circuit FROM table_name_78 WHERE class = "gts"###context:CREATE TABLE table_name_78 (circuit VARCHAR, class VARCHAR) |
###question:Name the length for all class and date of march 18###answer:SELECT length FROM table_name_63 WHERE class = "all" AND date = "march 18"###context:CREATE TABLE table_name_63 (length VARCHAR, class VARCHAR, date VARCHAR) |
###question:How many Games has a Team of chicago?###answer:SELECT COUNT(game) FROM table_name_55 WHERE team = "chicago"###context:CREATE TABLE table_name_55 (game VARCHAR, team VARCHAR) |
###question:What is the High points of charles oakley , kevin willis (11)?###answer:SELECT high_points FROM table_name_55 WHERE high_rebounds = "charles oakley , kevin willis (11)"###context:CREATE TABLE table_name_55 (high_points VARCHAR, high_rebounds VARCHAR) |
###question:Which Game has a Score of w 90–82 (ot)?###answer:SELECT game FROM table_name_40 WHERE score = "w 90–82 (ot)"###context:CREATE TABLE table_name_40 (game VARCHAR, score VARCHAR) |
###question:What is the High rebounds of washington Team?###answer:SELECT high_rebounds FROM table_name_43 WHERE team = "washington"###context:CREATE TABLE table_name_43 (high_rebounds VARCHAR, team VARCHAR) |
###question:What is the sum of Game on february 28?###answer:SELECT SUM(game) FROM table_name_52 WHERE date = "february 28"###context:CREATE TABLE table_name_52 (game INTEGER, date VARCHAR) |
###question:Which Country has a number of Wins larger than 2?###answer:SELECT country FROM table_name_71 WHERE wins > 2###context:CREATE TABLE table_name_71 (country VARCHAR, wins INTEGER) |
###question:What ranking has the nationality of spain and the goals of 26?###answer:SELECT ranking FROM table_name_95 WHERE nationality = "spain" AND goals = 26###context:CREATE TABLE table_name_95 (ranking VARCHAR, nationality VARCHAR, goals VARCHAR) |
###question:What name is the goals of 25?###answer:SELECT name FROM table_name_18 WHERE goals = 25###context:CREATE TABLE table_name_18 (name VARCHAR, goals VARCHAR) |
###question:what's the grid with time +37.949?###answer:SELECT COUNT(grid) FROM table_name_59 WHERE time = "+37.949"###context:CREATE TABLE table_name_59 (grid VARCHAR, time VARCHAR) |
###question:what driver has 12 in grid?###answer:SELECT driver FROM table_name_80 WHERE grid = 12###context:CREATE TABLE table_name_80 (driver VARCHAR, grid VARCHAR) |
###question:what is the highest grid for new zealand?###answer:SELECT MAX(grid) FROM table_name_59 WHERE team = "new zealand"###context:CREATE TABLE table_name_59 (grid INTEGER, team VARCHAR) |
###question:what team has +1'25.337 for the time?###answer:SELECT team FROM table_name_92 WHERE time = "+1'25.337"###context:CREATE TABLE table_name_92 (team VARCHAR, time VARCHAR) |
###question:What was the result at A Arena, the SL league, and a match number over 16?###answer:SELECT result FROM table_name_15 WHERE arena = "a" AND league = "sl" AND match > 16###context:CREATE TABLE table_name_15 (result VARCHAR, match VARCHAR, arena VARCHAR, league VARCHAR) |
###question:Opponent of @ atlanta flames had what game?###answer:SELECT game FROM table_name_44 WHERE opponent = "@ atlanta flames"###context:CREATE TABLE table_name_44 (game VARCHAR, opponent VARCHAR) |
###question:Record of 3-3-1 had what lowest game?###answer:SELECT MIN(game) FROM table_name_81 WHERE record = "3-3-1"###context:CREATE TABLE table_name_81 (game INTEGER, record VARCHAR) |
###question:What was the date when the game had a save by Aguilera (5)?###answer:SELECT date FROM table_name_65 WHERE save = "aguilera (5)"###context:CREATE TABLE table_name_65 (date VARCHAR, save VARCHAR) |
###question:What was the Save in the game that has a Loss of sanderson (6-5)?###answer:SELECT save FROM table_name_96 WHERE loss = "sanderson (6-5)"###context:CREATE TABLE table_name_96 (save VARCHAR, loss VARCHAR) |
###question:Which Wins have a Rank of 3?###answer:SELECT AVG(wins) FROM table_name_77 WHERE rank = 3###context:CREATE TABLE table_name_77 (wins INTEGER, rank VARCHAR) |
###question:Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405?###answer:SELECT AVG(events) FROM table_name_60 WHERE player = "tom kite" AND earnings___$__ < 760 OFFSET 405###context:CREATE TABLE table_name_60 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR) |
###question:Which events have a Rank of 1?###answer:SELECT events FROM table_name_7 WHERE rank = 1###context:CREATE TABLE table_name_7 (events VARCHAR, rank VARCHAR) |
###question:What is the fewest Points that has Willie Heston as Player and less than 3 as Touchdowns?###answer:SELECT MIN(points) FROM table_name_12 WHERE player = "willie heston" AND touchdowns < 3###context:CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, touchdowns VARCHAR) |
###question:What is the Departure time at Rajendranagar Terminal?###answer:SELECT departure FROM table_name_66 WHERE station_name = "rajendranagar terminal"###context:CREATE TABLE table_name_66 (departure VARCHAR, station_name VARCHAR) |
###question:What is the Station Code of the Destination Station Departure?###answer:SELECT station_code FROM table_name_37 WHERE departure = "destination station"###context:CREATE TABLE table_name_37 (station_code VARCHAR, departure VARCHAR) |
###question:At what Platform is the Departure 18:00?###answer:SELECT platform FROM table_name_26 WHERE departure = "18:00"###context:CREATE TABLE table_name_26 (platform VARCHAR, departure VARCHAR) |
###question:What is the Station Name of the Arrival Starting Station?###answer:SELECT station_name FROM table_name_63 WHERE arrival = "starting station"###context:CREATE TABLE table_name_63 (station_name VARCHAR, arrival VARCHAR) |
###question:What is the Arrival time of the Patna Junction Station?###answer:SELECT arrival FROM table_name_62 WHERE station_name = "patna junction"###context:CREATE TABLE table_name_62 (arrival VARCHAR, station_name VARCHAR) |
###question:What Station Name has an Arrival time of 01:10?###answer:SELECT station_name FROM table_name_97 WHERE arrival = "01:10"###context:CREATE TABLE table_name_97 (station_name VARCHAR, arrival VARCHAR) |
###question:What was the score for the game against the New Jersey Nets?###answer:SELECT score FROM table_name_14 WHERE opponent = "new jersey nets"###context:CREATE TABLE table_name_14 (score VARCHAR, opponent VARCHAR) |
###question:On which date was the game played against the Milwaukee Bucks?###answer:SELECT date FROM table_name_36 WHERE opponent = "milwaukee bucks"###context:CREATE TABLE table_name_36 (date VARCHAR, opponent VARCHAR) |
###question:What was the result of the game against Luxembourg?###answer:SELECT results¹ FROM table_name_13 WHERE opponent = "luxembourg"###context:CREATE TABLE table_name_13 (results¹ VARCHAR, opponent VARCHAR) |
###question:When did the city of Novi Sad participate?###answer:SELECT date FROM table_name_14 WHERE city = "novi sad"###context:CREATE TABLE table_name_14 (date VARCHAR, city VARCHAR) |
###question:What was the result of the game against Luxembourg?###answer:SELECT results¹ FROM table_name_97 WHERE opponent = "luxembourg"###context:CREATE TABLE table_name_97 (results¹ VARCHAR, opponent VARCHAR) |
###question:What was the result for the game at Memorial Stadium in week 15?###answer:SELECT result FROM table_name_24 WHERE game_site = "memorial stadium" AND week = 15###context:CREATE TABLE table_name_24 (result VARCHAR, game_site VARCHAR, week VARCHAR) |
###question:Which Series has a Score of 0–6?###answer:SELECT series FROM table_name_99 WHERE score = "0–6"###context:CREATE TABLE table_name_99 (series VARCHAR, score VARCHAR) |
###question:Which Series has a Game larger than 1, and a Date of april 18?###answer:SELECT series FROM table_name_39 WHERE game > 1 AND date = "april 18"###context:CREATE TABLE table_name_39 (series VARCHAR, game VARCHAR, date VARCHAR) |
###question:Which Series has an Opponent of new york rangers, and a Score of 3–2 ot?###answer:SELECT series FROM table_name_59 WHERE opponent = "new york rangers" AND score = "3–2 ot"###context:CREATE TABLE table_name_59 (series VARCHAR, opponent VARCHAR, score VARCHAR) |
###question:Which Series has an Opponent of @ new york rangers, and a Date of april 22?###answer:SELECT series FROM table_name_70 WHERE opponent = "@ new york rangers" AND date = "april 22"###context:CREATE TABLE table_name_70 (series VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:How many Played have a Lost smaller than 3, and a Difference of 6, and Points larger than 6?###answer:SELECT COUNT(played) FROM table_name_99 WHERE lost < 3 AND difference = "6" AND points > 6###context:CREATE TABLE table_name_99 (played VARCHAR, points VARCHAR, lost VARCHAR, difference VARCHAR) |
###question:How many Points have a Drawn smaller than 0?###answer:SELECT COUNT(points) FROM table_name_36 WHERE drawn < 0###context:CREATE TABLE table_name_36 (points VARCHAR, drawn INTEGER) |
###question:How many Drawn have an Against smaller than 5, and a Played smaller than 3?###answer:SELECT COUNT(drawn) FROM table_name_38 WHERE against < 5 AND played < 3###context:CREATE TABLE table_name_38 (drawn VARCHAR, against VARCHAR, played VARCHAR) |
###question:Which Position has an Against of 5, and a Drawn larger than 0?###answer:SELECT SUM(position) FROM table_name_35 WHERE against = 5 AND drawn > 0###context:CREATE TABLE table_name_35 (position INTEGER, against VARCHAR, drawn VARCHAR) |
###question:Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2?###answer:SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = "6" AND against > 2###context:CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR) |
###question:Which Points is the lowest one that has a Position larger than 5?###answer:SELECT MIN(points) FROM table_name_36 WHERE position > 5###context:CREATE TABLE table_name_36 (points INTEGER, position INTEGER) |
###question:what team lost the most points###answer:SELECT lost FROM table_name_56 WHERE "points" = "points"###context:CREATE TABLE table_name_56 (lost VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.