combined_text stringlengths 106 1.05k |
|---|
###question:When was petter ronnquist picked?###answer:SELECT overall FROM table_name_49 WHERE player = "petter ronnquist"###context:CREATE TABLE table_name_49 (overall VARCHAR, player VARCHAR) |
###question:Which venue has a Result of 1–0?###answer:SELECT venue FROM table_name_96 WHERE result = "1–0"###context:CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR) |
###question:Which venue has a Result of 1–2?###answer:SELECT venue FROM table_name_98 WHERE result = "1–2"###context:CREATE TABLE table_name_98 (venue VARCHAR, result VARCHAR) |
###question:What is the highest score with a Result of 1–1 on 4 march 2001?###answer:SELECT MAX(scored) FROM table_name_59 WHERE result = "1–1" AND date = "4 march 2001"###context:CREATE TABLE table_name_59 (scored INTEGER, result VARCHAR, date VARCHAR) |
###question:What is the result of 2003 eaff championship preliminary on 2 march 2003?###answer:SELECT result FROM table_name_70 WHERE competition = "2003 eaff championship preliminary" AND date = "2 march 2003"###context:CREATE TABLE table_name_70 (result VARCHAR, competition VARCHAR, date VARCHAR) |
###question:I want the engine for luigi villoresi###answer:SELECT engine FROM table_name_44 WHERE driver = "luigi villoresi"###context:CREATE TABLE table_name_44 (engine VARCHAR, driver VARCHAR) |
###question:I want the chassis for entrant of ecurie lutetia###answer:SELECT chassis FROM table_name_34 WHERE entrant = "ecurie lutetia"###context:CREATE TABLE table_name_34 (chassis VARCHAR, entrant VARCHAR) |
###question:What date was the game played at princes park?###answer:SELECT date FROM table_name_8 WHERE venue = "princes park"###context:CREATE TABLE table_name_8 (date VARCHAR, venue VARCHAR) |
###question:What was the score of the away team when the game was played at vfl park?###answer:SELECT away_team AS score FROM table_name_83 WHERE venue = "vfl park"###context:CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR) |
###question:Name the kaz hayashi for block A being bushi###answer:SELECT kaz_hayashi FROM table_name_43 WHERE block_a = "bushi"###context:CREATE TABLE table_name_43 (kaz_hayashi VARCHAR, block_a VARCHAR) |
###question:Name the minoru for block A being koji kanemoto###answer:SELECT minoru FROM table_name_38 WHERE block_a = "koji kanemoto"###context:CREATE TABLE table_name_38 (minoru VARCHAR, block_a VARCHAR) |
###question:Name the BUSHI when it has kenny omega of yang (7:27)###answer:SELECT bushi FROM table_name_45 WHERE kenny_omega = "yang (7:27)"###context:CREATE TABLE table_name_45 (bushi VARCHAR, kenny_omega VARCHAR) |
###question:Name the BUSHI that has kaz hayashi of kai (14:01)###answer:SELECT bushi FROM table_name_50 WHERE kaz_hayashi = "kai (14:01)"###context:CREATE TABLE table_name_50 (bushi VARCHAR, kaz_hayashi VARCHAR) |
###question:Name the Kaz Hayashi which has BUSHI of yang (9:43)###answer:SELECT kaz_hayashi FROM table_name_49 WHERE bushi = "yang (9:43)"###context:CREATE TABLE table_name_49 (kaz_hayashi VARCHAR, bushi VARCHAR) |
###question:Who was the winning driver for the Dutch Grand Prix?###answer:SELECT winning_driver FROM table_name_25 WHERE race = "dutch grand prix"###context:CREATE TABLE table_name_25 (winning_driver VARCHAR, race VARCHAR) |
###question:Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii###answer:SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = "yuvan shankar raja" AND film = "billa ii"###context:CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music... |
###question:What title aired on March 19, 1998?###answer:SELECT title FROM table_name_13 WHERE original_air_date = "march 19, 1998"###context:CREATE TABLE table_name_13 (title VARCHAR, original_air_date VARCHAR) |
###question:Who directed the show with the production code k2708?###answer:SELECT directed_by FROM table_name_1 WHERE production_code = "k2708"###context:CREATE TABLE table_name_1 (directed_by VARCHAR, production_code VARCHAR) |
###question:What is the season for series 81?###answer:SELECT season__number FROM table_name_52 WHERE series__number = 81###context:CREATE TABLE table_name_52 (season__number VARCHAR, series__number VARCHAR) |
###question:On what date was a match played at Lake Oval?###answer:SELECT date FROM table_name_4 WHERE venue = "lake oval"###context:CREATE TABLE table_name_4 (date VARCHAR, venue VARCHAR) |
###question:At the home game in Collingwood, how much did the away team score?###answer:SELECT away_team AS score FROM table_name_62 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR) |
###question:In the game at Victoria Park, what was the number of people in the crowd?###answer:SELECT SUM(crowd) FROM table_name_34 WHERE venue = "victoria park"###context:CREATE TABLE table_name_34 (crowd INTEGER, venue VARCHAR) |
###question:What was the tournament that happened in 1974 in gothenburg , sweden?###answer:SELECT tournament FROM table_name_84 WHERE year = 1974 AND venue = "gothenburg , sweden"###context:CREATE TABLE table_name_84 (tournament VARCHAR, year VARCHAR, venue VARCHAR) |
###question:Which MLB division has a win record of 76?###answer:SELECT division FROM table_name_26 WHERE wins = "76"###context:CREATE TABLE table_name_26 (division VARCHAR, wins VARCHAR) |
###question:What was the final rank of the Brewers in 1980?###answer:SELECT finish FROM table_name_63 WHERE team_season = "1980"###context:CREATE TABLE table_name_63 (finish VARCHAR, team_season VARCHAR) |
###question:What was the final rank of the Brewers when they achieved a win percentage of .585?###answer:SELECT finish FROM table_name_79 WHERE win__percentage = ".585"###context:CREATE TABLE table_name_79 (finish VARCHAR, win__percentage VARCHAR) |
###question:Which division were the Brewers a part of in the 1987 season?###answer:SELECT division FROM table_name_23 WHERE team_season = "1987"###context:CREATE TABLE table_name_23 (division VARCHAR, team_season VARCHAR) |
###question:Which division of the Brewers had a 5th place ranking and a loss record of 87?###answer:SELECT division FROM table_name_98 WHERE finish = "5th" AND losses = "87"###context:CREATE TABLE table_name_98 (division VARCHAR, finish VARCHAR, losses VARCHAR) |
###question:where was the game site when the opponent was san diego chargers?###answer:SELECT game_site FROM table_name_52 WHERE opponent = "san diego chargers"###context:CREATE TABLE table_name_52 (game_site VARCHAR, opponent VARCHAR) |
###question:who was the opponent when the week was 9?###answer:SELECT opponent FROM table_name_44 WHERE week = "9"###context:CREATE TABLE table_name_44 (opponent VARCHAR, week VARCHAR) |
###question:What venue features geelong as the away side?###answer:SELECT venue FROM table_name_29 WHERE away_team = "geelong"###context:CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR) |
###question:What venue features essendon at home?###answer:SELECT venue FROM table_name_65 WHERE home_team = "essendon"###context:CREATE TABLE table_name_65 (venue VARCHAR, home_team VARCHAR) |
###question:Who is the nominee for best director?###answer:SELECT nominee FROM table_name_86 WHERE category = "best director"###context:CREATE TABLE table_name_86 (nominee VARCHAR, category VARCHAR) |
###question:What ceremony was leela chitnis nominated at?###answer:SELECT ceremony FROM table_name_45 WHERE outcome = "nominated" AND nominee = "leela chitnis"###context:CREATE TABLE table_name_45 (ceremony VARCHAR, outcome VARCHAR, nominee VARCHAR) |
###question:what is the highest pick number of the CFL team, the winnipeg blue bombers?###answer:SELECT MAX(pick__number) FROM table_name_42 WHERE cfl_team = "winnipeg blue bombers"###context:CREATE TABLE table_name_42 (pick__number INTEGER, cfl_team VARCHAR) |
###question:Which college has 41 picks?###answer:SELECT college FROM table_name_86 WHERE pick__number = 41###context:CREATE TABLE table_name_86 (college VARCHAR, pick__number VARCHAR) |
###question:Which player plays for the college of manitoba?###answer:SELECT player FROM table_name_96 WHERE college = "manitoba"###context:CREATE TABLE table_name_96 (player VARCHAR, college VARCHAR) |
###question:What is the Unami Delaware value for a Thomas value of nacha?###answer:SELECT unami_delaware FROM table_name_18 WHERE thomas__1698_ = "nacha"###context:CREATE TABLE table_name_18 (unami_delaware VARCHAR, thomas__1698_ VARCHAR) |
###question:What is the Campanius term for an Unami Delaware term of palé·naxk?###answer:SELECT campanius__ca_1645_ FROM table_name_43 WHERE unami_delaware = "palé·naxk"###context:CREATE TABLE table_name_43 (campanius__ca_1645_ VARCHAR, unami_delaware VARCHAR) |
###question:What is the De Laet term for a Munsee Delaware term of ní·ša?###answer:SELECT de_laet__1633_ FROM table_name_12 WHERE munsee_delaware = "ní·ša"###context:CREATE TABLE table_name_12 (de_laet__1633_ VARCHAR, munsee_delaware VARCHAR) |
###question:What is the name of the player picked before round 2?###answer:SELECT player FROM table_name_75 WHERE round < 2###context:CREATE TABLE table_name_75 (player VARCHAR, round INTEGER) |
###question:What is the name of the player with an overall less than 209 for the Victoriaville tigres (qmjhl), and a Round of 1?###answer:SELECT player FROM table_name_85 WHERE overall < 209 AND club_team = "victoriaville tigres (qmjhl)" AND round = 1###context:CREATE TABLE table_name_85 (player VARCHAR, round VARCHAR,... |
###question:What is the name of the player with an Overall larger than 227?###answer:SELECT player FROM table_name_14 WHERE overall > 227###context:CREATE TABLE table_name_14 (player VARCHAR, overall INTEGER) |
###question:What is the highest overall for a round larger than 8 for pavol demitra?###answer:SELECT MAX(overall) FROM table_name_40 WHERE round > 8 AND player = "pavol demitra"###context:CREATE TABLE table_name_40 (overall INTEGER, round VARCHAR, player VARCHAR) |
###question:What description does Livery of ews have?###answer:SELECT description FROM table_name_61 WHERE livery = "ews"###context:CREATE TABLE table_name_61 (description VARCHAR, livery VARCHAR) |
###question:What Position has a Super League 1 Competition?###answer:SELECT position FROM table_name_85 WHERE competition = "super league 1"###context:CREATE TABLE table_name_85 (position VARCHAR, competition VARCHAR) |
###question:What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost?###answer:SELECT competition FROM table_name_54 WHERE captain = "robbie paul" AND lost < 5 AND main_article = "bradford bulls 1997"###context:CREATE TABLE table_name_54 (competition VARCHAR, main_articl... |
###question:What Captain has Lost 13?###answer:SELECT captain FROM table_name_28 WHERE lost = 13###context:CREATE TABLE table_name_28 (captain VARCHAR, lost VARCHAR) |
###question:How many Drawn did Coach Francis Cummins have with less than 4 Lost?###answer:SELECT SUM(drawn) FROM table_name_99 WHERE lost < 4 AND coach = "francis cummins"###context:CREATE TABLE table_name_99 (drawn INTEGER, lost VARCHAR, coach VARCHAR) |
###question:What horse did not start and had a total of over 16.16?###answer:SELECT horse FROM table_name_10 WHERE faults = "did not start" AND total > 16.16###context:CREATE TABLE table_name_10 (horse VARCHAR, faults VARCHAR, total VARCHAR) |
###question:What was the total for christina liebherr?###answer:SELECT MIN(total) FROM table_name_4 WHERE rider = "christina liebherr"###context:CREATE TABLE table_name_4 (total INTEGER, rider VARCHAR) |
###question:What is the population of the year featuring an 87.5% German population?###answer:SELECT population FROM table_name_51 WHERE germans = "87.5%"###context:CREATE TABLE table_name_51 (population VARCHAR, germans VARCHAR) |
###question:How tall is the player from Chicago, IL?###answer:SELECT height FROM table_name_48 WHERE hometown = "chicago, il"###context:CREATE TABLE table_name_48 (height VARCHAR, hometown VARCHAR) |
###question:What college does Dennis Scott attend?###answer:SELECT college FROM table_name_26 WHERE player = "dennis scott"###context:CREATE TABLE table_name_26 (college VARCHAR, player VARCHAR) |
###question:Who's from Bay City, TX?###answer:SELECT player FROM table_name_20 WHERE hometown = "bay city, tx"###context:CREATE TABLE table_name_20 (player VARCHAR, hometown VARCHAR) |
###question:Which NBA Draft had Labradford Smith?###answer:SELECT nba_draft FROM table_name_61 WHERE player = "labradford smith"###context:CREATE TABLE table_name_61 (nba_draft VARCHAR, player VARCHAR) |
###question:What was the lowest attendance at Windy Hill?###answer:SELECT MIN(crowd) FROM table_name_77 WHERE venue = "windy hill"###context:CREATE TABLE table_name_77 (crowd INTEGER, venue VARCHAR) |
###question:What was the home team's score at Princes Park?###answer:SELECT home_team AS score FROM table_name_6 WHERE venue = "princes park"###context:CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR) |
###question:How much did the home team Geelong score?###answer:SELECT home_team AS score FROM table_name_50 WHERE home_team = "geelong"###context:CREATE TABLE table_name_50 (home_team VARCHAR) |
###question:What is the name of the home team that played Carlton?###answer:SELECT home_team FROM table_name_86 WHERE away_team = "carlton"###context:CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) |
###question:Name the status with builder of orenstein and koppel###answer:SELECT status FROM table_name_54 WHERE builder = "orenstein and koppel"###context:CREATE TABLE table_name_54 (status VARCHAR, builder VARCHAR) |
###question:Who was the builder for joffre###answer:SELECT builder FROM table_name_60 WHERE name_number = "joffre"###context:CREATE TABLE table_name_60 (builder VARCHAR, name_number VARCHAR) |
###question:Where did Carlton play as the home team?###answer:SELECT venue FROM table_name_14 WHERE home_team = "carlton"###context:CREATE TABLE table_name_14 (venue VARCHAR, home_team VARCHAR) |
###question:Who was the home team when Melbourne was the away team?###answer:SELECT home_team FROM table_name_98 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_98 (home_team VARCHAR, away_team VARCHAR) |
###question:What was the result on November 20, 1988?###answer:SELECT result FROM table_name_49 WHERE date = "november 20, 1988"###context:CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR) |
###question:What time was the kickoff on week 5?###answer:SELECT kickoff_[a_] FROM table_name_60 WHERE week = "5"###context:CREATE TABLE table_name_60 (kickoff_ VARCHAR, a_ VARCHAR, week VARCHAR) |
###question:Where was the game that had an attendance of 39,889?###answer:SELECT game_site FROM table_name_64 WHERE attendance = "39,889"###context:CREATE TABLE table_name_64 (game_site VARCHAR, attendance VARCHAR) |
###question:What was the record when the attendance was 43,502?###answer:SELECT record FROM table_name_95 WHERE attendance = "43,502"###context:CREATE TABLE table_name_95 (record VARCHAR, attendance VARCHAR) |
###question:What label released a CD in 1988?###answer:SELECT label FROM table_name_37 WHERE date = "1988" AND format = "cd"###context:CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR, format VARCHAR) |
###question:On what date did the United Kingdom have a catalog of FT 507?###answer:SELECT date FROM table_name_86 WHERE region = "united kingdom" AND catalog = "ft 507"###context:CREATE TABLE table_name_86 (date VARCHAR, region VARCHAR, catalog VARCHAR) |
###question:On what date was the Catalog FT 507?###answer:SELECT date FROM table_name_93 WHERE catalog = "ft 507"###context:CREATE TABLE table_name_93 (date VARCHAR, catalog VARCHAR) |
###question:Which label had a catalog of 54513 in 1988?###answer:SELECT label FROM table_name_47 WHERE date = "1988" AND catalog = "54513"###context:CREATE TABLE table_name_47 (label VARCHAR, date VARCHAR, catalog VARCHAR) |
###question:On what date did Fantasy Records release a CD format of catalog FCD-4513-2?###answer:SELECT date FROM table_name_54 WHERE label = "fantasy records" AND format = "cd" AND catalog = "fcd-4513-2"###context:CREATE TABLE table_name_54 (date VARCHAR, catalog VARCHAR, label VARCHAR, format VARCHAR) |
###question:What was John Watson's total laps with a grid of less than 7?###answer:SELECT COUNT(laps) FROM table_name_21 WHERE driver = "john watson" AND grid < 7###context:CREATE TABLE table_name_21 (laps VARCHAR, driver VARCHAR, grid VARCHAR) |
###question:How many laps were there with #9 grid?###answer:SELECT COUNT(laps) FROM table_name_44 WHERE grid = 9###context:CREATE TABLE table_name_44 (laps VARCHAR, grid VARCHAR) |
###question:What was the time/retired with laps less than 33 and a grid of 14?###answer:SELECT time_retired FROM table_name_29 WHERE laps < 33 AND grid = 14###context:CREATE TABLE table_name_29 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:What was John Watson's time/retired?###answer:SELECT time_retired FROM table_name_46 WHERE driver = "john watson"###context:CREATE TABLE table_name_46 (time_retired VARCHAR, driver VARCHAR) |
###question:What is the player with the no. 14?###answer:SELECT player FROM table_name_41 WHERE no_s_ = "14"###context:CREATE TABLE table_name_41 (player VARCHAR, no_s_ VARCHAR) |
###question:What is the height of the player from Benetton Treviso, Italy?###answer:SELECT height_in_ft FROM table_name_2 WHERE school_club_team_country = "benetton treviso, italy"###context:CREATE TABLE table_name_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR) |
###question:I want to know the pens with conv of 6###answer:SELECT pens FROM table_name_10 WHERE conv = "6"###context:CREATE TABLE table_name_10 (pens VARCHAR, conv VARCHAR) |
###question:Which pens has 1 tries and matt alexander as a player with conv of 4?###answer:SELECT pens FROM table_name_38 WHERE tries = "1" AND player = "matt alexander" AND conv = "4"###context:CREATE TABLE table_name_38 (pens VARCHAR, conv VARCHAR, tries VARCHAR, player VARCHAR) |
###question:Name the venue that has conv of 5 players on 20 points###answer:SELECT venue FROM table_name_12 WHERE conv = "5 players on 20 points"###context:CREATE TABLE table_name_12 (venue VARCHAR, conv VARCHAR) |
###question:What are the names of those who made less than 3 wins in 15 matches?###answer:SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15###context:CREATE TABLE table_name_90 (name VARCHAR, wins VARCHAR, matches VARCHAR) |
###question:What is the highest amount of points when the game is less than 2?###answer:SELECT high_points FROM table_name_31 WHERE game < 2###context:CREATE TABLE table_name_31 (high_points VARCHAR, game INTEGER) |
###question:What was the score on April 20?###answer:SELECT score FROM table_name_3 WHERE date = "april 20"###context:CREATE TABLE table_name_3 (score VARCHAR, date VARCHAR) |
###question:Name the surface on june 11, 1995###answer:SELECT surface FROM table_name_70 WHERE date = "june 11, 1995"###context:CREATE TABLE table_name_70 (surface VARCHAR, date VARCHAR) |
###question:Name the score for september 12, 1993###answer:SELECT score FROM table_name_34 WHERE date = "september 12, 1993"###context:CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR) |
###question:Name the surface for score of 7–6(4), 6–1###answer:SELECT surface FROM table_name_71 WHERE score = "7–6(4), 6–1"###context:CREATE TABLE table_name_71 (surface VARCHAR, score VARCHAR) |
###question:Name the date that had a score of 7–6(4), 6–1###answer:SELECT date FROM table_name_98 WHERE score = "7–6(4), 6–1"###context:CREATE TABLE table_name_98 (date VARCHAR, score VARCHAR) |
###question:what is the result for the world group, semifinals after the year 1997?###answer:SELECT result FROM table_name_19 WHERE year > 1997 AND competition = "world group, semifinals"###context:CREATE TABLE table_name_19 (result VARCHAR, year VARCHAR, competition VARCHAR) |
###question:What home team played against south Melbourne?###answer:SELECT home_team FROM table_name_54 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR) |
###question:What is the average crowd size for the home team essendon?###answer:SELECT AVG(crowd) FROM table_name_6 WHERE home_team = "essendon"###context:CREATE TABLE table_name_6 (crowd INTEGER, home_team VARCHAR) |
###question:What is the home team score when north Melbourne was the away team?###answer:SELECT home_team AS score FROM table_name_49 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR) |
###question:What is the average grid with brm and under 63 laps?###answer:SELECT AVG(grid) FROM table_name_33 WHERE constructor = "brm" AND laps < 63###context:CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR) |
###question:On what circuit is there a class gts-2 race that takes place on May 27?###answer:SELECT circuit FROM table_name_68 WHERE date = "may 27" AND class = "gts-2"###context:CREATE TABLE table_name_68 (circuit VARCHAR, date VARCHAR, class VARCHAR) |
###question:On what circuit is there a race that lasts 2 hours?###answer:SELECT circuit FROM table_name_69 WHERE length = "2 hours"###context:CREATE TABLE table_name_69 (circuit VARCHAR, length VARCHAR) |
###question:What class is the dodge dealers grand prix?###answer:SELECT class FROM table_name_23 WHERE race = "the dodge dealers grand prix"###context:CREATE TABLE table_name_23 (class VARCHAR, race VARCHAR) |
###question:What is the length of the First Union six hours at the Glen?###answer:SELECT length FROM table_name_95 WHERE race = "first union six hours at the glen"###context:CREATE TABLE table_name_95 (length VARCHAR, race VARCHAR) |
###question:What is the class of the race that takes place on August 25?###answer:SELECT class FROM table_name_20 WHERE date = "august 25"###context:CREATE TABLE table_name_20 (class VARCHAR, date VARCHAR) |
###question:What was the score when Montreal was home?###answer:SELECT score FROM table_name_94 WHERE home = "montreal"###context:CREATE TABLE table_name_94 (score VARCHAR, home VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.