combined_text stringlengths 106 1.05k |
|---|
###question:What is the home team for victoria park?###answer:SELECT home_team FROM table_name_93 WHERE venue = "victoria park"###context:CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR) |
###question:Which home team has a Away team of hawthorn?###answer:SELECT home_team FROM table_name_86 WHERE away_team = "hawthorn"###context:CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) |
###question:Who is the opponent with a score of 6–5 13?###answer:SELECT opponent FROM table_name_82 WHERE score = "6–5 13"###context:CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR) |
###question:Who is the opponent with a save of ||33,453||36–27?###answer:SELECT opponent FROM table_name_39 WHERE save = "||33,453||36–27"###context:CREATE TABLE table_name_39 (opponent VARCHAR, save VARCHAR) |
###question:What is the top grid that laps less than 66 and a retried engine?###answer:SELECT MAX(grid) FROM table_name_28 WHERE time_retired = "engine" AND laps < 66###context:CREATE TABLE table_name_28 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) |
###question:What is the top lap that had a tyre time?###answer:SELECT MAX(laps) FROM table_name_31 WHERE time_retired = "tyre"###context:CREATE TABLE table_name_31 (laps INTEGER, time_retired VARCHAR) |
###question:What is the top grid that roger williamson lapped less than 7?###answer:SELECT MAX(grid) FROM table_name_73 WHERE driver = "roger williamson" AND laps < 7###context:CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
###question:What opponent does she fight when she is 10-1?###answer:SELECT opponent FROM table_name_31 WHERE record = "10-1"###context:CREATE TABLE table_name_31 (opponent VARCHAR, record VARCHAR) |
###question:What is the highest number of rounds for a 3:16 fight?###answer:SELECT MAX(round) FROM table_name_98 WHERE time = "3:16"###context:CREATE TABLE table_name_98 (round INTEGER, time VARCHAR) |
###question:What day is south melbourne at home?###answer:SELECT date FROM table_name_35 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR) |
###question:What is the listed crowd when hawthorn is away?###answer:SELECT COUNT(crowd) FROM table_name_72 WHERE away_team = "hawthorn"###context:CREATE TABLE table_name_72 (crowd VARCHAR, away_team VARCHAR) |
###question:What is the home team's score at mcg?###answer:SELECT home_team AS score FROM table_name_49 WHERE venue = "mcg"###context:CREATE TABLE table_name_49 (home_team VARCHAR, venue VARCHAR) |
###question:Tell me who was the opponent on May 6###answer:SELECT opponent FROM table_name_33 WHERE date = "may 6"###context:CREATE TABLE table_name_33 (opponent VARCHAR, date VARCHAR) |
###question:Name the score when the opponent was the dodgers on april 21###answer:SELECT score FROM table_name_61 WHERE opponent = "dodgers" AND date = "april 21"###context:CREATE TABLE table_name_61 (score VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:What is the number of the pick for round 11?###answer:SELECT SUM(pick) FROM table_name_15 WHERE round = 11###context:CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR) |
###question:What is the largest pick in round 8?###answer:SELECT MAX(pick) FROM table_name_82 WHERE round = 8###context:CREATE TABLE table_name_82 (pick INTEGER, round VARCHAR) |
###question:What is the position of the player for Washington school?###answer:SELECT position FROM table_name_44 WHERE school = "washington"###context:CREATE TABLE table_name_44 (position VARCHAR, school VARCHAR) |
###question:Who gave the play by play commentary with studio host Ward Cornell?###answer:SELECT play_by_play FROM table_name_89 WHERE studio_host = "ward cornell"###context:CREATE TABLE table_name_89 (play_by_play VARCHAR, studio_host VARCHAR) |
###question:Were the color commentators who worked with Bill Hewitt doing the play-by-play?###answer:SELECT colour_commentator_s_ FROM table_name_95 WHERE play_by_play = "bill hewitt"###context:CREATE TABLE table_name_95 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR) |
###question:Who did the play-by-play with studio host Ward Cornell and color commentator Bob Goldham?###answer:SELECT play_by_play FROM table_name_13 WHERE studio_host = "ward cornell" AND colour_commentator_s_ = "bob goldham"###context:CREATE TABLE table_name_13 (play_by_play VARCHAR, studio_host VARCHAR, colour_comme... |
###question:Who did the play-by-play on the CBC network before 1961?###answer:SELECT play_by_play FROM table_name_53 WHERE network = "cbc" AND year < 1961###context:CREATE TABLE table_name_53 (play_by_play VARCHAR, network VARCHAR, year VARCHAR) |
###question:What's the award for #100?###answer:SELECT award FROM table_name_84 WHERE result = "#100"###context:CREATE TABLE table_name_84 (award VARCHAR, result VARCHAR) |
###question:Which award was nominated for in 2000?###answer:SELECT award FROM table_name_37 WHERE year = 2000 AND result = "nominated"###context:CREATE TABLE table_name_37 (award VARCHAR, year VARCHAR, result VARCHAR) |
###question:What were the results before the year 2000?###answer:SELECT result FROM table_name_7 WHERE year < 2000###context:CREATE TABLE table_name_7 (result VARCHAR, year INTEGER) |
###question:What is the 2nd leg of the Comunicaciones team?###answer:SELECT 2 AS nd_leg FROM table_name_78 WHERE team_1 = "comunicaciones"###context:CREATE TABLE table_name_78 (team_1 VARCHAR) |
###question:What is the 1st leg where Team 1 is C.D. Plaza Amador?###answer:SELECT 1 AS st_leg FROM table_name_12 WHERE team_1 = "c.d. plaza amador"###context:CREATE TABLE table_name_12 (team_1 VARCHAR) |
###question:What is the 1st leg where Team 1 is C.D. Plaza Amador?###answer:SELECT 1 AS st_leg FROM table_name_48 WHERE team_1 = "c.d. plaza amador"###context:CREATE TABLE table_name_48 (team_1 VARCHAR) |
###question:Who played on a hard surface?###answer:SELECT partner FROM table_name_14 WHERE surface = "hard"###context:CREATE TABLE table_name_14 (partner VARCHAR, surface VARCHAR) |
###question:What is north melbourne's score as an away side?###answer:SELECT away_team AS score FROM table_name_80 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_80 (away_team VARCHAR) |
###question:What is the average year of the Fantasia Section Award?###answer:SELECT AVG(year) FROM table_name_16 WHERE award = "fantasia section award"###context:CREATE TABLE table_name_16 (year INTEGER, award VARCHAR) |
###question:What is the sum total of picks for drake players from the tri-cities blackhawks?###answer:SELECT SUM(pick) FROM table_name_24 WHERE team = "tri-cities blackhawks" AND college = "drake"###context:CREATE TABLE table_name_24 (pick INTEGER, team VARCHAR, college VARCHAR) |
###question:What is the lowest pick number for players from king's (ny)?###answer:SELECT MIN(pick) FROM table_name_13 WHERE college = "king's (ny)"###context:CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR) |
###question:Who was the Home Team while Calgary was visiting while having an Attendance above 15,655?###answer:SELECT home FROM table_name_22 WHERE visitor = "calgary" AND attendance > 15 OFFSET 655###context:CREATE TABLE table_name_22 (home VARCHAR, visitor VARCHAR, attendance VARCHAR) |
###question:What is the lowest Frequency where the Hemholtz pitch is d?###answer:SELECT MIN(frequency___hz__) FROM table_name_48 WHERE helmholtz_pitch = "d"###context:CREATE TABLE table_name_48 (frequency___hz__ INTEGER, helmholtz_pitch VARCHAR) |
###question:What is the scientific pitch when the Helmholtz pitch is D?###answer:SELECT scientific_pitch FROM table_name_33 WHERE helmholtz_pitch = "d"###context:CREATE TABLE table_name_33 (scientific_pitch VARCHAR, helmholtz_pitch VARCHAR) |
###question:What company constrcuted the vehicle with a circuit of oulton park on 15 april?###answer:SELECT constructor FROM table_name_17 WHERE circuit = "oulton park" AND date = "15 april"###context:CREATE TABLE table_name_17 (constructor VARCHAR, circuit VARCHAR, date VARCHAR) |
###question:What is the name of the race on 16 september?###answer:SELECT race_name FROM table_name_29 WHERE date = "16 september"###context:CREATE TABLE table_name_29 (race_name VARCHAR, date VARCHAR) |
###question:What is the circuit held on 15 april?###answer:SELECT circuit FROM table_name_49 WHERE date = "15 april"###context:CREATE TABLE table_name_49 (circuit VARCHAR, date VARCHAR) |
###question:What date was the xiv international gold cup?###answer:SELECT date FROM table_name_80 WHERE race_name = "xiv international gold cup"###context:CREATE TABLE table_name_80 (date VARCHAR, race_name VARCHAR) |
###question:Name the date for race title lakeside###answer:SELECT date FROM table_name_21 WHERE race_title = "lakeside"###context:CREATE TABLE table_name_21 (date VARCHAR, race_title VARCHAR) |
###question:Name the team for launceston###answer:SELECT team FROM table_name_60 WHERE race_title = "launceston"###context:CREATE TABLE table_name_60 (team VARCHAR, race_title VARCHAR) |
###question:Who has a bowling style of source:?###answer:SELECT player FROM table_name_7 WHERE bowling_style = "source:"###context:CREATE TABLE table_name_7 (player VARCHAR, bowling_style VARCHAR) |
###question:What first class team does sanath jayasuriya play for?###answer:SELECT first_class_team FROM table_name_51 WHERE player = "sanath jayasuriya"###context:CREATE TABLE table_name_51 (first_class_team VARCHAR, player VARCHAR) |
###question:When was roshan mahanama born?###answer:SELECT date_of_birth FROM table_name_71 WHERE player = "roshan mahanama"###context:CREATE TABLE table_name_71 (date_of_birth VARCHAR, player VARCHAR) |
###question:When was avishka gunawardene born?###answer:SELECT date_of_birth FROM table_name_51 WHERE player = "avishka gunawardene"###context:CREATE TABLE table_name_51 (date_of_birth VARCHAR, player VARCHAR) |
###question:What was the venue where the result was 2-1?###answer:SELECT venue FROM table_name_33 WHERE result = "2-1"###context:CREATE TABLE table_name_33 (venue VARCHAR, result VARCHAR) |
###question:What was the score of the match with a 3-0 result?###answer:SELECT score FROM table_name_44 WHERE result = "3-0"###context:CREATE TABLE table_name_44 (score VARCHAR, result VARCHAR) |
###question:What is the score of the match on July 29, 1990?###answer:SELECT score FROM table_name_79 WHERE date = "july 29, 1990"###context:CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR) |
###question:What is the venue of the 1990 Asian games?###answer:SELECT venue FROM table_name_77 WHERE competition = "1990 asian games"###context:CREATE TABLE table_name_77 (venue VARCHAR, competition VARCHAR) |
###question:What is the score of the match on October 5, 1990?###answer:SELECT score FROM table_name_82 WHERE date = "october 5, 1990"###context:CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR) |
###question:What is the competition at the ta'qali venue?###answer:SELECT competition FROM table_name_21 WHERE venue = "ta'qali"###context:CREATE TABLE table_name_21 (competition VARCHAR, venue VARCHAR) |
###question:What is the average against score of all teams with less than 7 losses, more than 6 draws, and 25 points?###answer:SELECT AVG(against) FROM table_name_99 WHERE lost < 7 AND drawn > 6 AND points = 25###context:CREATE TABLE table_name_99 (against INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) |
###question:What is the lowest number of points of any team with less than 6 draws and less than 18 matches played?###answer:SELECT MIN(points) FROM table_name_3 WHERE drawn < 6 AND played < 18###context:CREATE TABLE table_name_3 (points INTEGER, drawn VARCHAR, played VARCHAR) |
###question:What is the sum of the points of all teams that had against scores less than 14?###answer:SELECT SUM(points) FROM table_name_96 WHERE against < 14###context:CREATE TABLE table_name_96 (points INTEGER, against INTEGER) |
###question:What construction completed on 08/10/2007?###answer:SELECT listed FROM table_name_46 WHERE construction_completed = "08/10/2007"###context:CREATE TABLE table_name_46 (listed VARCHAR, construction_completed VARCHAR) |
###question:What away team played at western oval?###answer:SELECT away_team FROM table_name_11 WHERE venue = "western oval"###context:CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR) |
###question:What home team has an Away team of richmond?###answer:SELECT home_team FROM table_name_28 WHERE away_team = "richmond"###context:CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR) |
###question:Which home team has an Away team of essendon?###answer:SELECT home_team AS score FROM table_name_76 WHERE away_team = "essendon"###context:CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR) |
###question:Which Tuesday does big brother 12 air?###answer:SELECT tuesday FROM table_name_16 WHERE series = "big brother 12"###context:CREATE TABLE table_name_16 (tuesday VARCHAR, series VARCHAR) |
###question:Which series airs Saturday on Channel 5?###answer:SELECT series FROM table_name_20 WHERE saturday = "channel 5"###context:CREATE TABLE table_name_20 (series VARCHAR, saturday VARCHAR) |
###question:Which Thursday does big brother 13 air?###answer:SELECT thursday FROM table_name_59 WHERE series = "big brother 13"###context:CREATE TABLE table_name_59 (thursday VARCHAR, series VARCHAR) |
###question:What is the most lost games for the team with a difference smaller than 86 and points of 32?###answer:SELECT MAX(lost) FROM table_name_74 WHERE points = 32 AND difference < 86###context:CREATE TABLE table_name_74 (lost INTEGER, points VARCHAR, difference VARCHAR) |
###question:What is the average points for a team that lost 4 and played more than 28 games?###answer:SELECT AVG(points) FROM table_name_56 WHERE lost = 4 AND played > 28###context:CREATE TABLE table_name_56 (points INTEGER, lost VARCHAR, played VARCHAR) |
###question:What is the highest difference for the team that had less than 0 draws?###answer:SELECT MAX(difference) FROM table_name_98 WHERE drew < 0###context:CREATE TABLE table_name_98 (difference INTEGER, drew INTEGER) |
###question:What is the total number of bronze when the total is less than 1?###answer:SELECT SUM(bronze) FROM table_name_51 WHERE total < 1###context:CREATE TABLE table_name_51 (bronze INTEGER, total INTEGER) |
###question:What is the full amount of Total for Austria when the number of gold is less than 0?###answer:SELECT SUM(total) FROM table_name_45 WHERE nation = "austria" AND gold < 0###context:CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, gold VARCHAR) |
###question:What is the name of Rank 5?###answer:SELECT name FROM table_name_89 WHERE rank = 5###context:CREATE TABLE table_name_89 (name VARCHAR, rank VARCHAR) |
###question:What is the rank of Rmax Rpeak ( Pflops ) of 17.173 20.133?###answer:SELECT AVG(rank) FROM table_name_7 WHERE rmax_rpeak___pflops__ = "17.173 20.133"###context:CREATE TABLE table_name_7 (rank INTEGER, rmax_rpeak___pflops__ VARCHAR) |
###question:What is the tyre on the race where Bruce Mclaren had the fastest lap?###answer:SELECT tyre FROM table_name_58 WHERE fastest_lap = "bruce mclaren"###context:CREATE TABLE table_name_58 (tyre VARCHAR, fastest_lap VARCHAR) |
###question:What is the constructor at the United States Grand Prix?###answer:SELECT constructor FROM table_name_65 WHERE race = "united states grand prix"###context:CREATE TABLE table_name_65 (constructor VARCHAR, race VARCHAR) |
###question:What is the date of the circuit of Monaco?###answer:SELECT date FROM table_name_97 WHERE circuit = "monaco"###context:CREATE TABLE table_name_97 (date VARCHAR, circuit VARCHAR) |
###question:What is the tyre for the circuit of Prince George, which had Jim Clark as the fastest lap?###answer:SELECT tyre FROM table_name_82 WHERE fastest_lap = "jim clark" AND circuit = "prince george"###context:CREATE TABLE table_name_82 (tyre VARCHAR, fastest_lap VARCHAR, circuit VARCHAR) |
###question:What is the date of the circuit of nürburgring, which had Graham Hill as the winning driver?###answer:SELECT date FROM table_name_47 WHERE winning_driver = "graham hill" AND circuit = "nürburgring"###context:CREATE TABLE table_name_47 (date VARCHAR, winning_driver VARCHAR, circuit VARCHAR) |
###question:What game did Eoin Holohan play in?###answer:SELECT game FROM table_name_69 WHERE player = "eoin holohan"###context:CREATE TABLE table_name_69 (game VARCHAR, player VARCHAR) |
###question:what is the weekly rank for living when the air date is october 6, 2008?###answer:SELECT weekly_rank_for_living FROM table_name_96 WHERE air_date = "october 6, 2008"###context:CREATE TABLE table_name_96 (weekly_rank_for_living VARCHAR, air_date VARCHAR) |
###question:what is the episode with the 183,000 viewers?###answer:SELECT episode FROM table_name_64 WHERE viewers = "183,000"###context:CREATE TABLE table_name_64 (episode VARCHAR, viewers VARCHAR) |
###question:How many viewers for the episode with the weekly rank for living of 4?###answer:SELECT viewers FROM table_name_25 WHERE weekly_rank_for_living = "4"###context:CREATE TABLE table_name_25 (viewers VARCHAR, weekly_rank_for_living VARCHAR) |
###question:Which Away team score has a Venue of kardinia park?###answer:SELECT away_team AS score FROM table_name_42 WHERE venue = "kardinia park"###context:CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR) |
###question:Which Home team score has a Home team of geelong?###answer:SELECT home_team AS score FROM table_name_47 WHERE home_team = "geelong"###context:CREATE TABLE table_name_47 (home_team VARCHAR) |
###question:Which Venue has a Home team of geelong?###answer:SELECT venue FROM table_name_45 WHERE home_team = "geelong"###context:CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR) |
###question:Which school is in Raleigh, NC?###answer:SELECT school FROM table_name_23 WHERE hometown = "raleigh, nc"###context:CREATE TABLE table_name_23 (school VARCHAR, hometown VARCHAR) |
###question:Which college does Peyton Siva play for?###answer:SELECT college FROM table_name_44 WHERE player = "peyton siva"###context:CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR) |
###question:Which height is associated with Franklin High School?###answer:SELECT height FROM table_name_40 WHERE school = "franklin high school"###context:CREATE TABLE table_name_40 (height VARCHAR, school VARCHAR) |
###question:How tall is Daniel Orton?###answer:SELECT height FROM table_name_93 WHERE player = "daniel orton"###context:CREATE TABLE table_name_93 (height VARCHAR, player VARCHAR) |
###question:Which school is in Riverside, CA?###answer:SELECT school FROM table_name_76 WHERE hometown = "riverside, ca"###context:CREATE TABLE table_name_76 (school VARCHAR, hometown VARCHAR) |
###question:During which round was a Hawkeyes player selected for the defensive back position?###answer:SELECT round FROM table_name_87 WHERE position = "defensive back"###context:CREATE TABLE table_name_87 (round VARCHAR, position VARCHAR) |
###question:What was the latest round that Derek Pagel was selected with a pick higher than 50?###answer:SELECT MAX(round) FROM table_name_22 WHERE pick > 50 AND player = "derek pagel"###context:CREATE TABLE table_name_22 (round INTEGER, pick VARCHAR, player VARCHAR) |
###question:When is the earliest began operation with a length of sultan ismail and over 27 stations?###answer:SELECT MIN(began_operation) FROM table_name_7 WHERE length__km_ = "sultan ismail" AND stations > 27###context:CREATE TABLE table_name_7 (began_operation INTEGER, length__km_ VARCHAR, stations VARCHAR) |
###question:What is the average operation beginning with a length of ampang and over 27 stations?###answer:SELECT AVG(began_operation) FROM table_name_12 WHERE length__km_ = "ampang" AND stations > 27###context:CREATE TABLE table_name_12 (began_operation INTEGER, length__km_ VARCHAR, stations VARCHAR) |
###question:what is the nationality of the ship appam?###answer:SELECT nationality FROM table_name_24 WHERE ship = "appam"###context:CREATE TABLE table_name_24 (nationality VARCHAR, ship VARCHAR) |
###question:what is the tonnage grt of the ship author?###answer:SELECT tonnage_grt FROM table_name_40 WHERE ship = "author"###context:CREATE TABLE table_name_40 (tonnage_grt VARCHAR, ship VARCHAR) |
###question:what is the most tonnage grt of any ship sunk or captured on 16 jan 16?###answer:SELECT MAX(tonnage_grt) FROM table_name_80 WHERE date = "16 jan 16"###context:CREATE TABLE table_name_80 (tonnage_grt INTEGER, date VARCHAR) |
###question:what is the total tonnage grt of the cargo ship(s) sunk or captured on 4 feb 16?###answer:SELECT COUNT(tonnage_grt) FROM table_name_94 WHERE type = "cargo ship" AND date = "4 feb 16"###context:CREATE TABLE table_name_94 (tonnage_grt VARCHAR, type VARCHAR, date VARCHAR) |
###question:What Rank has a gold smaller than 1, and a silver larger than 0?###answer:SELECT rank FROM table_name_25 WHERE gold < 1 AND silver > 0###context:CREATE TABLE table_name_25 (rank VARCHAR, gold VARCHAR, silver VARCHAR) |
###question:What year was the Line of Gardermobanen completed?###answer:SELECT year_completed FROM table_name_20 WHERE line = "gardermobanen"###context:CREATE TABLE table_name_20 (year_completed VARCHAR, line VARCHAR) |
###question:Which line is the Geumjeong tunnel?###answer:SELECT line FROM table_name_82 WHERE name = "geumjeong tunnel"###context:CREATE TABLE table_name_82 (line VARCHAR, name VARCHAR) |
###question:What is the Date with a Round with sf?###answer:SELECT date FROM table_name_67 WHERE round = "sf"###context:CREATE TABLE table_name_67 (date VARCHAR, round VARCHAR) |
###question:What is the Opponent with a Round with 3, and a Venue of home?###answer:SELECT opponent FROM table_name_24 WHERE round = "3" AND venue = "home"###context:CREATE TABLE table_name_24 (opponent VARCHAR, round VARCHAR, venue VARCHAR) |
###question:What is the Date with an Opponent with wimbledon, and a Result of drew 0-0?###answer:SELECT date FROM table_name_75 WHERE opponent = "wimbledon" AND result = "drew 0-0"###context:CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, result VARCHAR) |
###question:What is the Round with a Opponent with blackburn?###answer:SELECT round FROM table_name_15 WHERE opponent = "blackburn"###context:CREATE TABLE table_name_15 (round VARCHAR, opponent VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.