answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT play_by_play FROM table_name_17 WHERE studio_host = "alan massengale" | Who is the play by play commentator for the game that has Alan Massengale as Studio Host? | CREATE TABLE table_name_17 (play_by_play VARCHAR, studio_host VARCHAR) |
SELECT iata FROM table_name_79 WHERE airport = "gatwick airport" | What is the IATA for Gatwick airport? | CREATE TABLE table_name_79 (iata VARCHAR, airport VARCHAR) |
SELECT fleet FROM table_name_61 WHERE number = "l4" | what fleet is associated with the number L4? | CREATE TABLE table_name_61 (fleet VARCHAR, number VARCHAR) |
SELECT surface FROM table_name_1 WHERE score_in_final = "5–7, 6–4, [10–7]" | What was the surface of the match that ended in a score of 5–7, 6–4, [10–7]? | CREATE TABLE table_name_1 (surface VARCHAR, score_in_final VARCHAR) |
SELECT MIN(loses) FROM table_name_30 WHERE goals_scored > 42 AND goals_conceded > 20 AND draws < 3 | What is the lowest number of loses of the club with more than 42 goals scored, more than 20 goals conceded, and less than 3 draws? | CREATE TABLE table_name_30 (loses INTEGER, draws VARCHAR, goals_scored VARCHAR, goals_conceded VARCHAR) |
SELECT away_team FROM table_name_32 WHERE venue = "arden street oval" | Which Away team has a Venue of arden street oval? | CREATE TABLE table_name_32 (away_team VARCHAR, venue VARCHAR) |
SELECT country FROM table_name_33 WHERE player = "mark hayes" | What country does Mark Hayes play for? | CREATE TABLE table_name_33 (country VARCHAR, player VARCHAR) |
SELECT no_7 FROM table_name_70 WHERE no_3 = "sophia" AND no_10 = "abigail" | Who is number 7 when Sophia is number 3 and Abigail is number 10? | CREATE TABLE table_name_70 (no_7 VARCHAR, no_3 VARCHAR, no_10 VARCHAR) |
SELECT founded FROM table_name_59 WHERE location = "athelstone" | When was the team that plays at Athelstone founded? | CREATE TABLE table_name_59 (founded VARCHAR, location VARCHAR) |
SELECT SUM(heat) FROM table_name_17 WHERE lane = 6 AND time = "4:08.27" AND rank > 7 | In what heat did the swimmer in Lane 6 rank higher than 7 with a time of 4:08.27? | CREATE TABLE table_name_17 (heat INTEGER, rank VARCHAR, lane VARCHAR, time VARCHAR) |
SELECT SUM(laps) FROM table_name_90 WHERE pos = "6th" AND year = 1998 | How many laps did the 6th placed in 1998 complete? | CREATE TABLE table_name_90 (laps INTEGER, pos VARCHAR, year VARCHAR) |
SELECT incumbent FROM table_1434788_5 WHERE district = "Ohio 16" | Who was the incumbent in the Ohio 16 district? | CREATE TABLE table_1434788_5 (incumbent VARCHAR, district VARCHAR) |
SELECT position_in_1998 FROM table_name_10 WHERE team = "slavia" | What was the position of the Slavia team in 1998? | CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR) |
SELECT reserved_for___sc___st__none_ FROM table_name_81 WHERE constituency_number = "203" | What is the Reserved for (SC / ST /None) when the constituency number is 203? | CREATE TABLE table_name_81 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR) |
SELECT name FROM table_name_67 WHERE took_office = "march 4, 1875" | Who has Took Office of march 4, 1875? | CREATE TABLE table_name_67 (name VARCHAR, took_office VARCHAR) |
SELECT d_42_√ FROM table_name_13 WHERE d_43_√ = "r 5" | What's the D 42 √ when D 43 √ is r 5? | CREATE TABLE table_name_13 (d_42_√ VARCHAR, d_43_√ VARCHAR) |
SELECT club FROM table_1676073_13 WHERE points_for = "693" | What club has 693 points for? | CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR) |
SELECT original_air_date FROM table_29436238_1 WHERE no_in_season = 4 | What date did episode 4 in the season originally air? | CREATE TABLE table_29436238_1 (original_air_date VARCHAR, no_in_season VARCHAR) |
SELECT SUM(year) FROM table_name_81 WHERE sport = "soccer" AND college = "virginia" | In what year was the winner a soccer player from Virginia? | CREATE TABLE table_name_81 (year INTEGER, sport VARCHAR, college VARCHAR) |
SELECT sport FROM table_name_3 WHERE founded = 2010 | What sport was played by the team founded in 2010? | CREATE TABLE table_name_3 (sport VARCHAR, founded VARCHAR) |
SELECT AVG(drawn) FROM table_name_37 WHERE lost > 13 | What is the average number of games drawn among the teams that lost over 13 games? | CREATE TABLE table_name_37 (drawn INTEGER, lost INTEGER) |
SELECT COUNT(oilers_first_downs) FROM table_15984957_2 WHERE date = "Sept. 17" | On Sept. 17, how many first downs did the oilers have? | CREATE TABLE table_15984957_2 (oilers_first_downs VARCHAR, date VARCHAR) |
SELECT location FROM table_11044765_1 WHERE mascot = "Lancers" | What city and state is the Lancers mascot located? | CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR) |
SELECT tuesday FROM table_name_77 WHERE monday = "fox sports primetime" | What is shown on Tuesday when Monday is showing Fox Sports Primetime? | CREATE TABLE table_name_77 (tuesday VARCHAR, monday VARCHAR) |
SELECT game_site FROM table_14971788_1 WHERE opponent = "Atlanta Falcons" | Where was the game against Atlanta Falcons held? | CREATE TABLE table_14971788_1 (game_site VARCHAR, opponent VARCHAR) |
SELECT runner_up FROM table_11214772_1 WHERE location = "Ellenton, FL" AND year = "2004" | who is the runner-up where location is ellenton, fl and year is 2004 | CREATE TABLE table_11214772_1 (runner_up VARCHAR, location VARCHAR, year VARCHAR) |
SELECT january FROM table_15945862_1 WHERE june = "7.34" | January 7.34 where is June ? | CREATE TABLE table_15945862_1 (january VARCHAR, june VARCHAR) |
SELECT comments FROM table_name_56 WHERE length_over_all = "4.5m" | Which Comments has a Length Over All of 4.5m? | CREATE TABLE table_name_56 (comments VARCHAR, length_over_all VARCHAR) |
SELECT nationality FROM table_name_58 WHERE time = "9:01.70" | What Nationality has a Time of 9:01.70? | CREATE TABLE table_name_58 (nationality VARCHAR, time VARCHAR) |
SELECT incumbent FROM table_name_93 WHERE party = "democratic" AND district = "ohio 7" | Which democratic incumbent is from the district of ohio 7? | CREATE TABLE table_name_93 (incumbent VARCHAR, party VARCHAR, district VARCHAR) |
SELECT socialist_ticket FROM table_name_65 WHERE american_labor_ticket = "caroline o'day" | Which Socialist candidate ran against American Labor candidate Caroline O'Day? | CREATE TABLE table_name_65 (socialist_ticket VARCHAR, american_labor_ticket VARCHAR) |
SELECT COUNT(against) FROM table_name_94 WHERE team = "sant'anna" AND position > 10 | What is the Total againsts for the Sant'Anna team with a position number greater than 10? | CREATE TABLE table_name_94 (against VARCHAR, team VARCHAR, position VARCHAR) |
SELECT COUNT(title) FROM table_28802668_3 WHERE no_in_season = 19 | How many episode titles does episode 19 in the season have? | CREATE TABLE table_28802668_3 (title VARCHAR, no_in_season VARCHAR) |
SELECT nationality FROM table_name_2 WHERE pick < 104 AND player = "corey fienhage" | What is the nationality of player corey fienhage, who has a pick less than 104? | CREATE TABLE table_name_2 (nationality VARCHAR, pick VARCHAR, player VARCHAR) |
SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "Fox" | Name the virtual for Fox | CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR) |
SELECT paper_type FROM table_name_3 WHERE denomination = "1 cent" | What type of paper is the 1 cent denominations made on? | CREATE TABLE table_name_3 (paper_type VARCHAR, denomination VARCHAR) |
SELECT film FROM table_name_66 WHERE award = "£3,386" | Name the film for award of £3,386 | CREATE TABLE table_name_66 (film VARCHAR, award VARCHAR) |
SELECT location FROM table_13759592_2 WHERE institution = "Interlake" | Where is Interlake located? | CREATE TABLE table_13759592_2 (location VARCHAR, institution VARCHAR) |
SELECT driver FROM table_name_46 WHERE grid = 8 | What is the driver for Grid 8? | CREATE TABLE table_name_46 (driver VARCHAR, grid VARCHAR) |
SELECT school FROM table_name_43 WHERE position = "quarterback" | What is the School of the quarterback? | CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR) |
SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1 | What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10? | CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR) |
SELECT COUNT(to_par) FROM table_name_26 WHERE year_s__won = "1995" | What was the total To Par for the winner in 1995? | CREATE TABLE table_name_26 (to_par VARCHAR, year_s__won VARCHAR) |
SELECT MAX(pick__number) FROM table_name_87 WHERE player = "greg harris" | What is the largest pick# for Greg Harris? | CREATE TABLE table_name_87 (pick__number INTEGER, player VARCHAR) |
SELECT salmonella FROM table_10321124_1 WHERE shigella = "IpgC" | what's the salmonella with shigella being ipgc | CREATE TABLE table_10321124_1 (salmonella VARCHAR, shigella VARCHAR) |
SELECT COUNT(census_ranking) FROM table_170969_2 WHERE area_km_2 = "375.06" | How many areas of 375.06 km 2 have a census ranking? | CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR) |
SELECT COUNT(top_25) FROM table_name_92 WHERE top_10 > 2 AND cuts_made < 29 | What is the total number of top-25 with a top-10 bigger than 2 and less than 29 cuts? | CREATE TABLE table_name_92 (top_25 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR) |
SELECT numbers__quantity_ordered_ FROM table_name_88 WHERE make__model = "eldorado national passport" | Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport? | CREATE TABLE table_name_88 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR) |
SELECT segment_d FROM table_15187735_11 WHERE series_ep = "11-05" | What is the title of series episode 11-05's segment d? | CREATE TABLE table_15187735_11 (segment_d VARCHAR, series_ep VARCHAR) |
SELECT player FROM table_10975034_2 WHERE college = "Wilfrid Laurier" | Which player from the 2004 CFL draft attended Wilfrid Laurier? | CREATE TABLE table_10975034_2 (player VARCHAR, college VARCHAR) |
SELECT COUNT(opponent_in_the_final) FROM table_23235767_4 WHERE score_in_the_final = "6–2, 6–1, 6–3" | Name the total number of opponent in the final for 6–2, 6–1, 6–3 | CREATE TABLE table_23235767_4 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) |
SELECT artist FROM table_1359212_2 WHERE venue = "Heineken Music Hall" | who is the artist performing at heineken music hall? | CREATE TABLE table_1359212_2 (artist VARCHAR, venue VARCHAR) |
SELECT record FROM table_name_43 WHERE team = "manchester yankees" | Which record has a Team of manchester yankees? | CREATE TABLE table_name_43 (record VARCHAR, team VARCHAR) |
SELECT home_team FROM table_name_3 WHERE venue = "mcg" | Who is the home team that played at venue MCG? | CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR) |
SELECT catalog FROM table_name_89 WHERE date = "december 19, 2001" | Which catalog was published on December 19, 2001? | CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR) |
SELECT constructor FROM table_name_33 WHERE race = "german grand prix" | What was the Constructor for the German Grand Prix Race? | CREATE TABLE table_name_33 (constructor VARCHAR, race VARCHAR) |
SELECT inclination FROM table_name_81 WHERE eccentricity = "0.06 +0.06 −0.11" | What Inclination has Eccentricity of 0.06 +0.06 −0.11? | CREATE TABLE table_name_81 (inclination VARCHAR, eccentricity VARCHAR) |
SELECT thursday_fourth_day FROM table_1277350_5 WHERE day__see_irregularities__ = "Slovene" | What's the Slovene word for Thursday? | CREATE TABLE table_1277350_5 (thursday_fourth_day VARCHAR, day__see_irregularities__ VARCHAR) |
SELECT name FROM table_name_76 WHERE ref_number > 8 AND location = "anawan street" | What is the name of the mill located on Anawan Street with a reference number larger than 8? | CREATE TABLE table_name_76 (name VARCHAR, ref_number VARCHAR, location VARCHAR) |
SELECT ratings__5_capital_cities_ FROM table_name_82 WHERE episode_no = "wonder drug" | What was the rating of the episode Wonder Drug? | CREATE TABLE table_name_82 (ratings__5_capital_cities_ VARCHAR, episode_no VARCHAR) |
SELECT round FROM table_21311525_1 WHERE venue = "Stade de la Méditerranée" | What is the round number for the venue of Stade de la Méditerranée? | CREATE TABLE table_21311525_1 (round VARCHAR, venue VARCHAR) |
SELECT AVG(silver) FROM table_name_97 WHERE total < 1 | What is the average Silver with a Total that is smaller than 1? | CREATE TABLE table_name_97 (silver INTEGER, total INTEGER) |
SELECT outcome FROM table_24901152_2 WHERE partner = "Alicia Molik" | When alicia molik is the partner what is the outcome? | CREATE TABLE table_24901152_2 (outcome VARCHAR, partner VARCHAR) |
SELECT home_team FROM table_name_87 WHERE venue = "windy hill" | What is the home team for Windy Hill? | CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR) |
SELECT T1.theme, T2.name FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id WHERE T1.ticket_price > (SELECT AVG(ticket_price) FROM exhibition) | What is the theme and artist name for the exhibition with a ticket price higher than the average? | CREATE TABLE exhibition (ticket_price INTEGER); CREATE TABLE exhibition (theme VARCHAR, artist_id VARCHAR, ticket_price INTEGER); CREATE TABLE artist (name VARCHAR, artist_id VARCHAR) |
SELECT in_production FROM table_name_66 WHERE codename = "jasper" | Is Jasper being producted? | CREATE TABLE table_name_66 (in_production VARCHAR, codename VARCHAR) |
SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = "15x07" | Name the total number of jons team for 15x07 | CREATE TABLE table_23292220_17 (jons_team VARCHAR, episode VARCHAR) |
SELECT COUNT(gain) FROM table_name_55 WHERE name = "williams, jonathan" AND loss > 3 | Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3? | CREATE TABLE table_name_55 (gain VARCHAR, name VARCHAR, loss VARCHAR) |
SELECT COUNT(number_of_seasons_in_meistriliiga) FROM table_name_17 WHERE club = "kuressaare" AND first_season_in_top_division > 2000 | How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000? | CREATE TABLE table_name_17 (number_of_seasons_in_meistriliiga VARCHAR, club VARCHAR, first_season_in_top_division VARCHAR) |
SELECT starter FROM table_14342480_6 WHERE position = "Left end" | Name the starter for position being left end | CREATE TABLE table_14342480_6 (starter VARCHAR, position VARCHAR) |
SELECT college FROM table_name_73 WHERE position = "tackle" AND pick < 87 | What college has a pick smaller than 87 for the position of tackle? | CREATE TABLE table_name_73 (college VARCHAR, position VARCHAR, pick VARCHAR) |
SELECT rider FROM table_name_5 WHERE grid = "21" | WHAT IS THE RIDER WITH A 21 GRID? | CREATE TABLE table_name_5 (rider VARCHAR, grid VARCHAR) |
SELECT AVG(year) FROM table_name_89 WHERE avg_start < 6.3 AND wins < 0 | What is the average year with an average start smaller than 6.3 and fewer than 0 wins? | CREATE TABLE table_name_89 (year INTEGER, avg_start VARCHAR, wins VARCHAR) |
SELECT away_team AS score FROM table_name_53 WHERE venue = "arden street oval" | What was the score of the away team while playing at the arden street oval? | CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) |
SELECT COUNT(episode) FROM table_27039190_3 WHERE viewers = "4.44m" | How many episodes had 4.44m viewers? | CREATE TABLE table_27039190_3 (episode VARCHAR, viewers VARCHAR) |
SELECT SUM(avg_g) FROM table_name_63 WHERE effic > 129.73 AND cmp_att_int = "333-500-13" | Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13? | CREATE TABLE table_name_63 (avg_g INTEGER, effic VARCHAR, cmp_att_int VARCHAR) |
SELECT MIN(top_25) FROM table_name_17 WHERE wins > 0 | What is the fewest number of top-25s for events with more than 0 wins? | CREATE TABLE table_name_17 (top_25 INTEGER, wins INTEGER) |
SELECT date FROM table_name_77 WHERE result = "l 37-3" | What is the date when the result was l 37-3? | CREATE TABLE table_name_77 (date VARCHAR, result VARCHAR) |
SELECT catalog FROM table_name_42 WHERE region = "france" | What is the Catalog number in the Region of France? | CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR) |
SELECT COUNT(*), account_id FROM Financial_transactions | How many transaction does each account have? Show the number and account id. | CREATE TABLE Financial_transactions (account_id VARCHAR) |
SELECT COUNT(pick) FROM table_name_91 WHERE player = "wayne fowler" AND round > 7 | What is the total number for the pick of the player Wayne Fowler and a round after 7? | CREATE TABLE table_name_91 (pick VARCHAR, player VARCHAR, round VARCHAR) |
SELECT film FROM table_name_47 WHERE ceremony = "19th" AND name = "jerome kern" | What is the Film with winner Jerome Kern in the 19th Ceremony? | CREATE TABLE table_name_47 (film VARCHAR, ceremony VARCHAR, name VARCHAR) |
SELECT COUNT(incumbent) FROM table_2668336_24 WHERE candidates = "Charles F. Mercer (F) 100%" | How many times is the candidates charles f. mercer (f) 100%? | CREATE TABLE table_2668336_24 (incumbent VARCHAR, candidates VARCHAR) |
SELECT transfer_window FROM table_name_79 WHERE country = "bra" AND transfer_fee = "£3.4m" | What transfer window has bra as the country, with £3.4m as the transfer fee? | CREATE TABLE table_name_79 (transfer_window VARCHAR, country VARCHAR, transfer_fee VARCHAR) |
SELECT COUNT(high_assists) FROM table_23286223_8 WHERE date = "March 4" | How many different players did the most high assists on the March 4 game? | CREATE TABLE table_23286223_8 (high_assists VARCHAR, date VARCHAR) |
SELECT competition FROM table_name_62 WHERE venue = "away" AND man_of_the_match = "n/a" | For what competition was the venue away the n/a the man of the match? | CREATE TABLE table_name_62 (competition VARCHAR, venue VARCHAR, man_of_the_match VARCHAR) |
SELECT location FROM table_22319599_1 WHERE varsity_teams = 6 | If the varsity team is 6, what is the location? | CREATE TABLE table_22319599_1 (location VARCHAR, varsity_teams VARCHAR) |
SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = "John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%" | how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% | CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR) |
SELECT no FROM table_11950720_4 WHERE date_of_birth = "15 November 1973" | What is the number when birthday is 15 november 1973? | CREATE TABLE table_11950720_4 (no VARCHAR, date_of_birth VARCHAR) |
SELECT school FROM table_name_50 WHERE ihsaa_class = "aaa" AND mascot = "tiger cubs" | What school has an IHSAA Class of aaa, and their mascot is Tiger Cubs? | CREATE TABLE table_name_50 (school VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR) |
SELECT driver FROM table_name_86 WHERE class = "cm22" AND navigator = "macneall" | Who was the driver of the vehicle having class of CM22 and navigator of Macneall? | CREATE TABLE table_name_86 (driver VARCHAR, class VARCHAR, navigator VARCHAR) |
SELECT rounds FROM table_name_63 WHERE constructor = "ducati" AND rider = "mika kallio" | What rounds did rider Mika Kallio with a Ducati constructor have? | CREATE TABLE table_name_63 (rounds VARCHAR, constructor VARCHAR, rider VARCHAR) |
SELECT COUNT(slovak) FROM table_26757_4 WHERE belarusian = "вуха (vúkha)" | When вуха (vúkha) is the belarusian how many slovaks are there? | CREATE TABLE table_26757_4 (slovak VARCHAR, belarusian VARCHAR) |
SELECT points FROM table_name_38 WHERE wins = "0" AND final_placing = "21st" | Which Points have Wins of 0, and a Final Placing of 21st? | CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR) |
SELECT MAX(year) FROM table_name_14 WHERE championship = "the open championship" | What is the highest Year with of the open championship? | CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR) |
SELECT MAX(week) FROM table_name_66 WHERE date = "november 8, 1970" | What is the highest Week, when Date is "November 8, 1970"? | CREATE TABLE table_name_66 (week INTEGER, date VARCHAR) |
SELECT away_team FROM table_name_53 WHERE venue = "arden street oval" | Who was the away team at the game held at Arden Street Oval? | CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) |
SELECT series FROM table_name_84 WHERE date = "april 18" | Which Series is on april 18? | CREATE TABLE table_name_84 (series VARCHAR, date VARCHAR) |
SELECT venue FROM table_17120964_8 WHERE man_of_the_match = "Vaclav Zavoral" | What is the venue of the game with Man of the Match Vaclav Zavoral? | CREATE TABLE table_17120964_8 (venue VARCHAR, man_of_the_match VARCHAR) |
SELECT opponent FROM table_24126606_2 WHERE week = 12 | Name the opponent for week 12 | CREATE TABLE table_24126606_2 (opponent VARCHAR, week VARCHAR) |
SELECT mult FROM table_name_35 WHERE release_price___usd__ = "n/a" AND sspec_number = "slgpr(c0)" | What was the multiplier of the processor with sSpec number of SLGPR(C0) and a release price of N/A? | CREATE TABLE table_name_35 (mult VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.