answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT attendance FROM table_name_54 WHERE result = "l 29–23" | CREATE TABLE table_name_54 (attendance VARCHAR, result VARCHAR) | Which Attendance has a Result of l 29–23? |
SELECT date FROM table_name_89 WHERE week = 1 | CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR) | When has a Week of 1? |
SELECT week FROM table_name_11 WHERE opponent = "at seattle seahawks" | CREATE TABLE table_name_11 (week VARCHAR, opponent VARCHAR) | Which Week has an Opponent of at seattle seahawks? |
SELECT result FROM table_name_71 WHERE date = "october 15, 1995" | CREATE TABLE table_name_71 (result VARCHAR, date VARCHAR) | Name the Result on october 15, 1995? |
SELECT opponent FROM table_name_81 WHERE week > 2 AND date = "november 19, 1995" | CREATE TABLE table_name_81 (opponent VARCHAR, week VARCHAR, date VARCHAR) | Which Opponent has a Week larger than 2 on november 19, 1995? |
SELECT record__conf_ FROM table_name_73 WHERE conference = "wac" | CREATE TABLE table_name_73 (record__conf_ VARCHAR, conference VARCHAR) | What is the recorded conference that was a Wac Conference? |
SELECT conference FROM table_name_26 WHERE school = "wichita state" | CREATE TABLE table_name_26 (conference VARCHAR, school VARCHAR) | What conference has the Wichita State school? |
SELECT rank FROM table_name_72 WHERE place = "burghley" | CREATE TABLE table_name_72 (rank VARCHAR, place VARCHAR) | What is the rank for Burghley? |
SELECT horse FROM table_name_54 WHERE competition = "badminton horse trials" | CREATE TABLE table_name_54 (horse VARCHAR, competition VARCHAR) | What horse was at the Badminton Horse Trials? |
SELECT MIN(rank) FROM table_name_89 WHERE matches < 285 AND name = "des dickson" AND goals < 219 | CREATE TABLE table_name_89 (rank INTEGER, goals VARCHAR, matches VARCHAR, name VARCHAR) | What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals? |
SELECT AVG(goals) FROM table_name_94 WHERE matches = 644 AND rank > 3 | CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR) | How many goals on average had 644 matches and a rank bigger than 3? |
SELECT COUNT(rank) FROM table_name_54 WHERE matches = 205 | CREATE TABLE table_name_54 (rank VARCHAR, matches VARCHAR) | How many ranks had 205 matches? |
SELECT MAX(rank) FROM table_name_4 WHERE name = "jimmy jones" AND matches < 285 | CREATE TABLE table_name_4 (rank INTEGER, name VARCHAR, matches VARCHAR) | What was Jimmy Jones' rank when the matches were smaller than 285? |
SELECT date FROM table_name_53 WHERE home = "hornets" | CREATE TABLE table_name_53 (date VARCHAR, home VARCHAR) | Which date had the Hornets as the home team? |
SELECT to_par FROM table_name_88 WHERE winning_score = 64 - 69 - 67 - 66 = 266 | CREATE TABLE table_name_88 (to_par VARCHAR, winning_score VARCHAR) | What is the To par score corresponding to the winning score of 64-69-67-66=266? |
SELECT to_par FROM table_name_44 WHERE margin_of_victory = "1 stroke" | CREATE TABLE table_name_44 (to_par VARCHAR, margin_of_victory VARCHAR) | What was the To par score for the tournament with a margin of victory of 1 stroke? |
SELECT winning_score FROM table_name_6 WHERE margin_of_victory = "7 strokes" | CREATE TABLE table_name_6 (winning_score VARCHAR, margin_of_victory VARCHAR) | What was the winning score for the tournament with a margin of victory of 7 strokes? |
SELECT SUM(december) FROM table_name_64 WHERE record = "6-3-1" | CREATE TABLE table_name_64 (december INTEGER, record VARCHAR) | What day in December was the game that resulted in a record of 6-3-1? |
SELECT SUM(attendance) FROM table_name_25 WHERE opponent = "oakland raiders" AND week > 7 | CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | How many were in attendance against the Oakland Raiders after week 7? |
SELECT AVG(attendance) FROM table_name_98 WHERE opponent = "new york jets" | CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR) | What is the average attendance for the New York Jets? |
SELECT COUNT(week) FROM table_name_51 WHERE date = "september 21, 1969" AND attendance < 26 OFFSET 243 | CREATE TABLE table_name_51 (week VARCHAR, date VARCHAR, attendance VARCHAR) | On what week were there 26,243 in attendance on September 21, 1969? |
SELECT opponent_team FROM table_name_18 WHERE match > 2 AND location = "pasir gudang, malaysia" | CREATE TABLE table_name_18 (opponent_team VARCHAR, match VARCHAR, location VARCHAR) | Who was the opponent at Pasir Gudang, Malaysia with a match larger than 2? |
SELECT opponent_team FROM table_name_31 WHERE match < 3 | CREATE TABLE table_name_31 (opponent_team VARCHAR, match INTEGER) | Who was the opponent at the match smaller than 3? |
SELECT location FROM table_name_78 WHERE opponent_team = "police s.a." | CREATE TABLE table_name_78 (location VARCHAR, opponent_team VARCHAR) | Where was the game when Police S.A. was the opponent? |
SELECT COUNT(list_entry_number) FROM table_name_95 WHERE location = "platting road, lydgate" | CREATE TABLE table_name_95 (list_entry_number VARCHAR, location VARCHAR) | How many list entry numbers are located in Platting Road, Lydgate? |
SELECT type FROM table_name_52 WHERE list_entry_number = 1356677 | CREATE TABLE table_name_52 (type VARCHAR, list_entry_number VARCHAR) | Which type has list entry number of 1356677? |
SELECT completed FROM table_name_33 WHERE type = "church" AND list_entry_number = 1068071 | CREATE TABLE table_name_33 (completed VARCHAR, type VARCHAR, list_entry_number VARCHAR) | What is the completed date of the church with list entry number 1068071? |
SELECT scorers FROM table_name_64 WHERE opponent = "neuchâtel xamax" AND date = "10 december 1985" | CREATE TABLE table_name_64 (scorers VARCHAR, opponent VARCHAR, date VARCHAR) | Who were the scorers in the game against neuchâtel xamax played on 10 December 1985? |
SELECT date FROM table_name_94 WHERE scorers = "hegarty" | CREATE TABLE table_name_94 (date VARCHAR, scorers VARCHAR) | What date was the game played in where hegarty was the scorer? |
SELECT callsign FROM table_name_68 WHERE icao = "sco" | CREATE TABLE table_name_68 (callsign VARCHAR, icao VARCHAR) | Who is the callsign that has ICAO of SCO? |
SELECT commenced_operations FROM table_name_34 WHERE icao = "slk" | CREATE TABLE table_name_34 (commenced_operations VARCHAR, icao VARCHAR) | Who is the commenced operations that has icao of slk? |
SELECT callsign FROM table_name_3 WHERE commenced_operations < 1976 | CREATE TABLE table_name_3 (callsign VARCHAR, commenced_operations INTEGER) | Who is the call sign that has a commenced operation before 1976? |
SELECT hdtv FROM table_name_60 WHERE content = "music" | CREATE TABLE table_name_60 (hdtv VARCHAR, content VARCHAR) | What is the HDTV of the Music Content Channel? |
SELECT television_service FROM table_name_36 WHERE content = "cartomanzia" | CREATE TABLE table_name_36 (television_service VARCHAR, content VARCHAR) | What is the Television Service offering Cartomanzia? |
SELECT country FROM table_name_32 WHERE content = "televendite" | CREATE TABLE table_name_32 (country VARCHAR, content VARCHAR) | What Country's content is Televendite? |
SELECT country FROM table_name_9 WHERE content = "tv locale" | CREATE TABLE table_name_9 (country VARCHAR, content VARCHAR) | What Country's Content is TV Locale? |
SELECT SUM(gold) FROM table_name_12 WHERE silver > 1 AND rank > 1 AND total > 4 AND bronze > 4 | CREATE TABLE table_name_12 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR, rank VARCHAR) | How many golds had a silver of more than 1, rank more than 1, total of more than 4 when the bronze was also more than 4? |
SELECT SUM(rank) FROM table_name_99 WHERE gold = 2 AND total > 4 | CREATE TABLE table_name_99 (rank INTEGER, gold VARCHAR, total VARCHAR) | What is the total of rank when gold is 2 and total is more than 4? |
SELECT SUM(bronze) FROM table_name_53 WHERE gold < 1 AND silver > 1 | CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, silver VARCHAR) | What is the total number of bronze when gold is less than 1 and silver is more than 1? |
SELECT SUM(rank) FROM table_name_4 WHERE silver > 1 AND gold = 2 AND total > 4 | CREATE TABLE table_name_4 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR) | What is the total of rank when silver is more than 1, gold is 2, and total is more than 4? |
SELECT AVG(wins) FROM table_name_86 WHERE top_25 = 3 AND top_5 > 1 | CREATE TABLE table_name_86 (wins INTEGER, top_25 VARCHAR, top_5 VARCHAR) | What is the Wins with a Top-25 of 3, and a Top-5 larger than 1? |
SELECT cuts_made FROM table_name_53 WHERE top_5 < 3 AND top_25 < 6 AND events = 10 | CREATE TABLE table_name_53 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_25 VARCHAR) | Which Cuts made has a Top-5 smaller than 3, and a Top-25 smaller than 6, and an Events of 10? |
SELECT tournament FROM table_name_25 WHERE cuts_made < 9 AND events = 10 | CREATE TABLE table_name_25 (tournament VARCHAR, cuts_made VARCHAR, events VARCHAR) | Which Tournament has a Cuts made smaller than 9, and an Events of 10? |
SELECT SUM(points) FROM table_name_89 WHERE class = "250cc" AND rank = "13th" AND year > 1955 | CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR) | What is the sum of Points for 250cc class, ranked 13th, later than 1955? |
SELECT class FROM table_name_30 WHERE year > 1958 AND points = 4 | CREATE TABLE table_name_30 (class VARCHAR, year VARCHAR, points VARCHAR) | What is the Class for a year later than 1958, with 4 points? |
SELECT AVG(year) FROM table_name_45 WHERE points > 3 AND team = "mv agusta" AND rank = "10th" | CREATE TABLE table_name_45 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR) | What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th? |
SELECT team FROM table_name_93 WHERE class = "350cc" AND points < 13 AND year = 1959 | CREATE TABLE table_name_93 (team VARCHAR, year VARCHAR, class VARCHAR, points VARCHAR) | What Team has a Class of 350cc, with less than 13 points in 1959? |
SELECT event FROM table_name_20 WHERE location = "manly beach" | CREATE TABLE table_name_20 (event VARCHAR, location VARCHAR) | Which event was held at Manly Beach? |
SELECT location FROM table_name_99 WHERE country = "australia" AND event = "havaianas beachley classic" | CREATE TABLE table_name_99 (location VARCHAR, country VARCHAR, event VARCHAR) | What was the location of the Havaianas Beachley Classic, held in Australia? |
SELECT event FROM table_name_31 WHERE country = "brazil" | CREATE TABLE table_name_31 (event VARCHAR, country VARCHAR) | Which event was held in Brazil? |
SELECT region FROM table_name_4 WHERE host = "university of colorado" | CREATE TABLE table_name_4 (region VARCHAR, host VARCHAR) | The University of Colorado hosted what region? |
SELECT city FROM table_name_60 WHERE venue = "peterson gym" | CREATE TABLE table_name_60 (city VARCHAR, venue VARCHAR) | Peterson Gym is in what city? |
SELECT state FROM table_name_70 WHERE region = "mideast" AND host = "university of tennessee" | CREATE TABLE table_name_70 (state VARCHAR, region VARCHAR, host VARCHAR) | Mideast region host University of Tennessee is in what state? |
SELECT city FROM table_name_10 WHERE region = "east" AND venue = "university hall (university of virginia)" | CREATE TABLE table_name_10 (city VARCHAR, region VARCHAR, venue VARCHAR) | What city is east region venue University Hall (University of Virginia) in? |
SELECT venue FROM table_name_19 WHERE host = "stanford university" | CREATE TABLE table_name_19 (venue VARCHAR, host VARCHAR) | What is the venue at Stanford University? |
SELECT venue FROM table_name_22 WHERE city = "seattle" | CREATE TABLE table_name_22 (venue VARCHAR, city VARCHAR) | What is the venue in Seattle? |
SELECT team FROM table_name_5 WHERE race_name = "tour de santa catarina" | CREATE TABLE table_name_5 (team VARCHAR, race_name VARCHAR) | What team won the Tour de Santa Catarina? |
SELECT AVG(uci_rating) FROM table_name_88 WHERE team = "relax-gam" | CREATE TABLE table_name_88 (uci_rating INTEGER, team VARCHAR) | What is Relax-Gam's average UCI Rating? |
SELECT MIN(uci_rating) FROM table_name_3 WHERE race_name = "vuelta a ecuador" | CREATE TABLE table_name_3 (uci_rating INTEGER, race_name VARCHAR) | What is Vuelta a Ecuador's lowest UCI Rating? |
SELECT result FROM table_name_73 WHERE attendance = "54,110" | CREATE TABLE table_name_73 (result VARCHAR, attendance VARCHAR) | What was the result of the game attended by 54,110? |
SELECT date FROM table_name_39 WHERE attendance = "45,122" | CREATE TABLE table_name_39 (date VARCHAR, attendance VARCHAR) | What was the date of the game attended by 45,122? |
SELECT MIN(week) FROM table_name_35 WHERE attendance = "60,233" | CREATE TABLE table_name_35 (week INTEGER, attendance VARCHAR) | What is the earliest week with a game attended by 60,233? |
SELECT MAX(week) FROM table_name_43 WHERE result = "l 12–7" | CREATE TABLE table_name_43 (week INTEGER, result VARCHAR) | What is the latest week with a game with a result of l 12–7? |
SELECT runner_s__up FROM table_name_75 WHERE tournament = "mci classic" | CREATE TABLE table_name_75 (runner_s__up VARCHAR, tournament VARCHAR) | What is Runner(s)-up, when Tournament is MCI Classic? |
SELECT winning_score FROM table_name_53 WHERE date = "jul 27, 1997" | CREATE TABLE table_name_53 (winning_score VARCHAR, date VARCHAR) | What is Winning Score, when Date is Jul 27, 1997? |
SELECT winning_score FROM table_name_37 WHERE runner_s__up = "ted purdy" | CREATE TABLE table_name_37 (winning_score VARCHAR, runner_s__up VARCHAR) | What is Winning Score, when Runner(s)-up is Ted Purdy? |
SELECT AVG(enrollment) FROM table_name_38 WHERE control = "public" AND location = "golden, colorado" AND founded > 1874 | CREATE TABLE table_name_38 (enrollment INTEGER, founded VARCHAR, control VARCHAR, location VARCHAR) | What is the enrollment number for the public institution in Golden, Colorado founded after 1874? |
SELECT team FROM table_name_96 WHERE year < 2007 AND class = "gts" | CREATE TABLE table_name_96 (team VARCHAR, year VARCHAR, class VARCHAR) | Which Team has a Year smaller than 2007, and a Class of gts? |
SELECT SUM(year) FROM table_name_82 WHERE co_drivers = "jérôme policand christopher campbell" | CREATE TABLE table_name_82 (year INTEGER, co_drivers VARCHAR) | In what year Year has a Co-Drivers of jérôme policand christopher campbell? |
SELECT language FROM table_name_27 WHERE content = "monoscopio" | CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR) | What is Language, when Content is Monoscopio? |
SELECT television_service FROM table_name_90 WHERE content = "presentazione" | CREATE TABLE table_name_90 (television_service VARCHAR, content VARCHAR) | What is Television Service, when Content is Presentazione? |
SELECT package_option FROM table_name_74 WHERE television_service = "sky inside" | CREATE TABLE table_name_74 (package_option VARCHAR, television_service VARCHAR) | What is Package/Option, when Television Service is Sky Inside? |
SELECT package_option FROM table_name_63 WHERE television_service = "sky inside" | CREATE TABLE table_name_63 (package_option VARCHAR, television_service VARCHAR) | What is Package/Option, when Television Service is Sky Inside? |
SELECT SUM(points) FROM table_name_64 WHERE performer = "fe-mail" | CREATE TABLE table_name_64 (points INTEGER, performer VARCHAR) | What is the sum of Points, when the Performer is fe-mail? |
SELECT set_3 FROM table_name_46 WHERE time = "15:04" | CREATE TABLE table_name_46 (set_3 VARCHAR, time VARCHAR) | What is the score for set 3 with a time at 15:04? |
SELECT score FROM table_name_63 WHERE set_3 = "29–27" | CREATE TABLE table_name_63 (score VARCHAR, set_3 VARCHAR) | What was the overall score when the score of set 3 was 29–27? |
SELECT set_2 FROM table_name_74 WHERE set_3 = "25–22" | CREATE TABLE table_name_74 (set_2 VARCHAR, set_3 VARCHAR) | What was the score for set 2 when set 3 was 25–22? |
SELECT score FROM table_name_33 WHERE set_1 = "23–25" | CREATE TABLE table_name_33 (score VARCHAR, set_1 VARCHAR) | What was the overall score when set 1 was 23–25? |
SELECT school_club_team FROM table_name_40 WHERE player = "amal mccaskill" | CREATE TABLE table_name_40 (school_club_team VARCHAR, player VARCHAR) | What school/club team did Amal McCaskill play for? |
SELECT school_club_team FROM table_name_87 WHERE player = "mike miller" | CREATE TABLE table_name_87 (school_club_team VARCHAR, player VARCHAR) | Mike Miller played for what school/club team? |
SELECT player FROM table_name_13 WHERE school_club_team = "maryland" | CREATE TABLE table_name_13 (player VARCHAR, school_club_team VARCHAR) | Who is the player that played for the school/club team Maryland? |
SELECT nationality FROM table_name_5 WHERE player = "cuttino mobley" | CREATE TABLE table_name_5 (nationality VARCHAR, player VARCHAR) | Cuttino Mobley is what nationality? |
SELECT position FROM table_name_70 WHERE nationality = "united states" AND player = "corey maggette" | CREATE TABLE table_name_70 (position VARCHAR, nationality VARCHAR, player VARCHAR) | Corey Maggette from the United States plays what position? |
SELECT school_club_team FROM table_name_55 WHERE position = "forward-center" AND player = "amal mccaskill" | CREATE TABLE table_name_55 (school_club_team VARCHAR, position VARCHAR, player VARCHAR) | Amal McCaskill who plays forward-center played for what school/club team? |
SELECT servedby FROM table_name_1 WHERE local_authority_[a_] = "thurrock" AND station = "ockendon" | CREATE TABLE table_name_1 (servedby VARCHAR, station VARCHAR, local_authority_ VARCHAR, a_ VARCHAR) | Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon? |
SELECT opponents_in_the_final FROM table_name_44 WHERE tournament = "puebla" | CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, tournament VARCHAR) | What is the Opponents from the final with a Tournament that is puebla? |
SELECT date FROM table_name_13 WHERE venue = "al-rashid stadium, dubai" | CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR) | What was the date of the game held at the Al-Rashid Stadium, Dubai? |
SELECT round_of_16 FROM table_name_83 WHERE ranking_round_rank = 5 | CREATE TABLE table_name_83 (round_of_16 VARCHAR, ranking_round_rank VARCHAR) | What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank? |
SELECT team FROM table_name_53 WHERE first_round = "1:00" | CREATE TABLE table_name_53 (team VARCHAR, first_round VARCHAR) | What Team had the first round of 1:00? |
SELECT city_state FROM table_name_24 WHERE team = "atlanta hawks (retired)" | CREATE TABLE table_name_24 (city_state VARCHAR, team VARCHAR) | What City/State did the Atlanta Hawks (retired) team play for? |
SELECT final_round FROM table_name_59 WHERE members = "chris webber" | CREATE TABLE table_name_59 (final_round VARCHAR, members VARCHAR) | What was the final round value for member Chris Webber? |
SELECT first_round FROM table_name_14 WHERE members = "kenny smith" | CREATE TABLE table_name_14 (first_round VARCHAR, members VARCHAR) | What was the first round time for member Kenny Smith? |
SELECT team FROM table_name_17 WHERE date = "december 30" | CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR) | Which team was the opponent on December 30? |
SELECT content FROM table_name_1 WHERE television_service = "ewtn" | CREATE TABLE table_name_1 (content VARCHAR, television_service VARCHAR) | What content is provided by the television service ewtn? |
SELECT content FROM table_name_94 WHERE country = "united kingdom" AND television_service = "ewtn" | CREATE TABLE table_name_94 (content VARCHAR, country VARCHAR, television_service VARCHAR) | What is the content of the television service ewtn in the United Kingdom? |
SELECT package_option FROM table_name_24 WHERE country = "italy" AND language = "italian" | CREATE TABLE table_name_24 (package_option VARCHAR, country VARCHAR, language VARCHAR) | What is the package/option for Italy when the language is italian? |
SELECT package_option FROM table_name_68 WHERE content = "religione" AND country = "italy" | CREATE TABLE table_name_68 (package_option VARCHAR, content VARCHAR, country VARCHAR) | What is the package/option in Italy when the content is religione? |
SELECT television_service FROM table_name_46 WHERE language = "italian" | CREATE TABLE table_name_46 (television_service VARCHAR, language VARCHAR) | Which television service has italian for its language? |
SELECT hdtv FROM table_name_50 WHERE television_service = "daystar television network" | CREATE TABLE table_name_50 (hdtv VARCHAR, television_service VARCHAR) | Does daystar television network provide HDTV? |
SELECT SUM(attendance) FROM table_name_58 WHERE home_team = "oxford united" | CREATE TABLE table_name_58 (attendance INTEGER, home_team VARCHAR) | What was the Attendance when Oxford United was the Home team? |
Subsets and Splits