answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT date FROM table_name_88 WHERE format = "cd/dvd"
CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)
Tell me the date for format of cd/dvd
SELECT format FROM table_name_99 WHERE region = "european union"
CREATE TABLE table_name_99 (format VARCHAR, region VARCHAR)
Tell me the format for european union
SELECT catalog FROM table_name_72 WHERE date > 2004
CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)
Tell me the catalog for date larger than 2004
SELECT MIN(date) FROM table_name_87 WHERE catalog = "6561910008-1"
CREATE TABLE table_name_87 (date INTEGER, catalog VARCHAR)
I want the lowest date for catalog of 6561910008-1
SELECT date FROM table_name_97 WHERE crowd > 30 OFFSET 343
CREATE TABLE table_name_97 (date VARCHAR, crowd INTEGER)
What date was there a crowd larger than 30,343?
SELECT MIN(crowd) FROM table_name_35 WHERE away_team = "essendon"
CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)
What was the lowest Crowd total from a game in which Essendon was the Away team?
SELECT venue FROM table_name_47 WHERE home_team = "geelong"
CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)
Which Venue was used when the Home team was geelong?
SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"
CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)
What is the highest scored in the 2010 east asian football championship?
SELECT country FROM table_name_48 WHERE city = "wellington"
CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR)
Which country is Wellington located in?
SELECT label FROM table_name_42 WHERE region = "united states" AND format = "download"
CREATE TABLE table_name_42 (label VARCHAR, region VARCHAR, format VARCHAR)
What label is in download format in the United States?
SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"
CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)
What label is in download format in the United States?
SELECT label FROM table_name_90 WHERE catalogue = "rtradlp 346"
CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR)
What label has RTRADLP 346 as catalogue?
SELECT label FROM table_name_8 WHERE date = "22 january 2008"
CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR)
What label has 22 January 2008 date?
SELECT label FROM table_name_93 WHERE catalogue = "rt-346-5"
CREATE TABLE table_name_93 (label VARCHAR, catalogue VARCHAR)
What is the label for catalogue of RT-346-5?
SELECT position FROM table_name_34 WHERE school_club_team = "rice"
CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR)
What position is mentioned for Rice school?
SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = "defensive end" AND school_club_team = "wisconsin"
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, overall VARCHAR, position VARCHAR)
What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?
SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)
What is the average round when there is a defensive back and an overall smaller than 199?
SELECT date FROM table_name_23 WHERE score = "42-6"
CREATE TABLE table_name_23 (date VARCHAR, score VARCHAR)
What was the date of game with a score of 42-6?
SELECT stadium FROM table_name_43 WHERE result = "hunter mariners def. sheffield eagles"
CREATE TABLE table_name_43 (stadium VARCHAR, result VARCHAR)
What stadium was the game played at when the result was hunter mariners def. sheffield eagles?
SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox"
CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)
What city has a Result of brisbane broncos def. halifax blue sox?
SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464
CREATE TABLE table_name_83 (player VARCHAR, round VARCHAR, overall VARCHAR)
Which player was drafted after round 9 and number 464 overall?
SELECT COUNT(round) FROM table_name_90 WHERE player = "james reed"
CREATE TABLE table_name_90 (round VARCHAR, player VARCHAR)
What was James Reed's draft round number?
SELECT COUNT(overall) FROM table_name_28 WHERE position = "wide receiver" AND player = "tom fleming"
CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)
What was the overall draft number of Tom Fleming, a wide receiver?
SELECT player FROM table_name_41 WHERE school_club_team = "dartmouth"
CREATE TABLE table_name_41 (player VARCHAR, school_club_team VARCHAR)
Which player is from Dartmouth?
SELECT position FROM table_name_17 WHERE school_country = "tulsa"
CREATE TABLE table_name_17 (position VARCHAR, school_country VARCHAR)
What position does the player from tulsa play?
SELECT SUM(magnitude) FROM table_name_44 WHERE date = "february 12, 1953"
CREATE TABLE table_name_44 (magnitude INTEGER, date VARCHAR)
What is the sum of Magnitude on february 12, 1953?
SELECT final_score FROM table_name_41 WHERE sport = "baseball" AND year < 2005
CREATE TABLE table_name_41 (final_score VARCHAR, sport VARCHAR, year VARCHAR)
What was the final score of a baseball game that happened before 2005?
SELECT venue FROM table_name_29 WHERE away_team = "richmond"
CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)
What venue did Richmond play as the away team?
SELECT home_team AS score FROM table_name_92 WHERE home_team = "essendon"
CREATE TABLE table_name_92 (home_team VARCHAR)
What is the team of Essendon's score in the game where they were the home team?
SELECT away_team FROM table_name_59 WHERE home_team = "st kilda"
CREATE TABLE table_name_59 (away_team VARCHAR, home_team VARCHAR)
Who is the away side when st kilda is the home side?
SELECT away_team AS score FROM table_name_38 WHERE home_team = "footscray"
CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR)
What is the away side score when footscray is the home side?
SELECT home_team AS score FROM table_name_85 WHERE venue = "kardinia park"
CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)
What is the home team's score at kardinia park?
SELECT MIN(crowd) FROM table_name_57 WHERE away_team = "richmond"
CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR)
What was the lowest crowd seen at a game that Richmond was the Away team in?
SELECT MAX(crowd) FROM table_name_48 WHERE venue = "windy hill"
CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)
What was the highest crowd count seen in the Windy Hill venue?
SELECT away_team AS score FROM table_name_10 WHERE home_team = "fitzroy"
CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)
What was the score of the Away team that played against the Home team of Fitzroy?
SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = "wisconsin"
CREATE TABLE table_name_78 (overall INTEGER, school_club_team VARCHAR)
Which was the lowest overall that Wisconsin's team managed?
SELECT school_club_team FROM table_name_20 WHERE player = "roy de walt"
CREATE TABLE table_name_20 (school_club_team VARCHAR, player VARCHAR)
Which team was Roy de Walt a player on?
SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109
CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)
In which round did Paul McDonald have an overall greater than 109?
SELECT SUM(overall) FROM table_name_2 WHERE player = "charles white" AND round < 1
CREATE TABLE table_name_2 (overall INTEGER, player VARCHAR, round VARCHAR)
What is the total overall in round 1, in which Charles White was a player?
SELECT player FROM table_name_4 WHERE round < 3 AND position = "running back"
CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR, position VARCHAR)
What is the name of a running back in a round before round 3?
SELECT w_l__percentage FROM table_name_77 WHERE wins = 63 AND losses < 76
CREATE TABLE table_name_77 (w_l__percentage VARCHAR, wins VARCHAR, losses VARCHAR)
What is the win/loss percentage with wins of 63 and losses smaller than 76?
SELECT away_team AS score FROM table_name_25 WHERE home_team = "geelong"
CREATE TABLE table_name_25 (away_team VARCHAR, home_team VARCHAR)
What is the away team score when the home team is Geelong?
SELECT MAX(order) FROM table_name_55 WHERE weeks < 15 AND majors < 1
CREATE TABLE table_name_55 (order INTEGER, weeks VARCHAR, majors VARCHAR)
What was the highest order amount in weeks prier to 15 and a major less than 1?
SELECT position FROM table_name_7 WHERE school_country = "temple"
CREATE TABLE table_name_7 (position VARCHAR, school_country VARCHAR)
What is the position of the player from Temple?
SELECT player FROM table_name_22 WHERE school_country = "temple"
CREATE TABLE table_name_22 (player VARCHAR, school_country VARCHAR)
Which player is associated with Temple?
SELECT nationality FROM table_name_72 WHERE school_country = "temple"
CREATE TABLE table_name_72 (nationality VARCHAR, school_country VARCHAR)
Which nationality is associated with Temple?
SELECT COUNT(goals) FROM table_name_71 WHERE current_club = "chievo" AND debut_year < 2002
CREATE TABLE table_name_71 (goals VARCHAR, current_club VARCHAR, debut_year VARCHAR)
How many goals were achieved when Chievo was the club and the debut year was before 2002?
SELECT COUNT(goals) FROM table_name_40 WHERE name = "diego milito" AND debut_year > 2008
CREATE TABLE table_name_40 (goals VARCHAR, name VARCHAR, debut_year VARCHAR)
How many goals occurred with Diego Milito in a debut year later than 2008?
SELECT home_team AS score FROM table_name_99 WHERE venue = "punt road oval"
CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)
Who is the home team at the Punt Road Oval?
SELECT away_team FROM table_name_69 WHERE venue = "windy hill"
CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)
Who is the away team at Windy Hill?
SELECT date FROM table_name_3 WHERE crowd > 25 OFFSET 000
CREATE TABLE table_name_3 (date VARCHAR, crowd INTEGER)
What is the date of the game that had a crowd larger than 25,000?
SELECT home_team AS score FROM table_name_19 WHERE home_team = "south melbourne"
CREATE TABLE table_name_19 (home_team VARCHAR)
What was South Melbourne's score as the home team?
SELECT MAX(crowd) FROM table_name_52 WHERE away_team = "collingwood"
CREATE TABLE table_name_52 (crowd INTEGER, away_team VARCHAR)
What was the largest crowd of a game where Collingwood was the away team?
SELECT MIN(round) FROM table_name_21 WHERE method = "decision (unanimous)" AND opponent = "john howard"
CREATE TABLE table_name_21 (round INTEGER, method VARCHAR, opponent VARCHAR)
What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?
SELECT time FROM table_name_74 WHERE record = "2-0"
CREATE TABLE table_name_74 (time VARCHAR, record VARCHAR)
What's the time for the match with a record of 2-0?
SELECT location FROM table_name_92 WHERE method = "submission (standing guillotine choke)"
CREATE TABLE table_name_92 (location VARCHAR, method VARCHAR)
Where was the match with a method of submission (standing guillotine choke)?
SELECT language FROM table_name_87 WHERE genre = "movies" AND service = "sky" AND network = "ump movies"
CREATE TABLE table_name_87 (language VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR)
What language is the moviein that is on UMP movies network through Sky service?
SELECT language FROM table_name_97 WHERE network = "sab" AND service = "sky"
CREATE TABLE table_name_97 (language VARCHAR, network VARCHAR, service VARCHAR)
What language is the movie in that is on SAB network through Sky service?
SELECT AVG(overall) FROM table_name_4 WHERE position = "guard" AND round < 9
CREATE TABLE table_name_4 (overall INTEGER, position VARCHAR, round VARCHAR)
What was the overall pick for the player who was a guard and had a round less than 9?
SELECT MIN(round) FROM table_name_9 WHERE overall = 92
CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR)
What was the lowest round number that had an overall pick up 92?
SELECT open_source_movie FROM table_name_90 WHERE cc_license = "by-nc-sa 1.0"
CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)
What open source movie has a CC License of by-nc-sa 1.0?
SELECT venue FROM table_name_50 WHERE result = "7-1"
CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR)
Which venue had the result 7-1?
SELECT date FROM table_name_67 WHERE competition = "rothmans cup"
CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR)
What date was the Competition of rothmans cup?
SELECT result FROM table_name_61 WHERE competition = "friendly"
CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR)
What was the result of the Competition of friendly?
SELECT competition FROM table_name_90 WHERE date = "8 june 2005"
CREATE TABLE table_name_90 (competition VARCHAR, date VARCHAR)
Which competition was played on 8 June 2005?
SELECT competition FROM table_name_4 WHERE score = "1-0"
CREATE TABLE table_name_4 (competition VARCHAR, score VARCHAR)
Which competition had the score 1-0?
SELECT country FROM table_name_32 WHERE stadium = "timsah arena"
CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR)
Timsah arena is in what country?
SELECT country FROM table_name_83 WHERE team = "relax-gam"
CREATE TABLE table_name_83 (country VARCHAR, team VARCHAR)
What country is Relax-Gam from?
SELECT cyclist FROM table_name_89 WHERE team = "gerolsteiner"
CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR)
Who is Gerolsteiner's cyclist?
SELECT uci_protour_points FROM table_name_33 WHERE cyclist = "davide rebellin"
CREATE TABLE table_name_33 (uci_protour_points VARCHAR, cyclist VARCHAR)
What is Davide Rebellin' UCI ProTour Points?
SELECT home_team AS score FROM table_name_22 WHERE home_team = "north melbourne"
CREATE TABLE table_name_22 (home_team VARCHAR)
What was North Melbourne's score when they were the home team?
SELECT venue FROM table_name_76 WHERE away_team = "footscray"
CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)
Where did Footscray play as the away team?
SELECT away_team AS score FROM table_name_77 WHERE venue = "lake oval"
CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)
What was the away team's score in the match at Lake Oval?
SELECT SUM(crowd) FROM table_name_81 WHERE away_team = "fitzroy"
CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)
What was the sum of the crowds that watched Fitzroy play as the away team?
SELECT SUM(rank) FROM table_name_15 WHERE years = "1996–2012" AND apps > 340
CREATE TABLE table_name_15 (rank INTEGER, years VARCHAR, apps VARCHAR)
What is the sum of rank with years 1996–2012 and apps greater than 340?
SELECT away_team FROM table_name_6 WHERE home_team = "carlton"
CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)
What was the away team that faced Carlton?
SELECT COUNT(crowd) FROM table_name_17 WHERE away_team = "geelong"
CREATE TABLE table_name_17 (crowd VARCHAR, away_team VARCHAR)
What is the total crowd size that saw Geelong play as the away team?
SELECT wins FROM table_name_89 WHERE poles = "0" AND final_placing = "15th"
CREATE TABLE table_name_89 (wins VARCHAR, poles VARCHAR, final_placing VARCHAR)
How many wins did Hobbs had a 15th finish at poles 0?
SELECT points FROM table_name_92 WHERE series = "gp3 series" AND podiums = "2"
CREATE TABLE table_name_92 (points VARCHAR, series VARCHAR, podiums VARCHAR)
What are the points for the GP3 series with 2 podiums?
SELECT races FROM table_name_6 WHERE podiums = "2"
CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR)
Which races have #2 podiums?
SELECT final_placing FROM table_name_17 WHERE season = 2009
CREATE TABLE table_name_17 (final_placing VARCHAR, season VARCHAR)
What was the 2009 final placing?
SELECT points FROM table_name_34 WHERE races = "7"
CREATE TABLE table_name_34 (points VARCHAR, races VARCHAR)
What was the points with 7 races?
SELECT venue FROM table_name_90 WHERE home_team = "south melbourne"
CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)
What venue had south melbourne as the home team?
SELECT venue FROM table_name_14 WHERE away_team = "collingwood"
CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)
What venue had collingwood as the away team?
SELECT home_team AS score FROM table_name_49 WHERE home_team = "south melbourne"
CREATE TABLE table_name_49 (home_team VARCHAR)
What was the home team score when south melbourne was the home team?
SELECT date FROM table_name_70 WHERE away_team = "melbourne"
CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)
What day was south melbourne the away squad?
SELECT position FROM table_name_71 WHERE year > 1998 AND notes = "2:31:40"
CREATE TABLE table_name_71 (position VARCHAR, year VARCHAR, notes VARCHAR)
What position did he finish after 1998 and a note time of 2:31:40?
SELECT venue FROM table_name_63 WHERE notes = "2:38:44"
CREATE TABLE table_name_63 (venue VARCHAR, notes VARCHAR)
What venue featured a notes of 2:38:44?
SELECT opponent FROM table_name_32 WHERE week > 6 AND result = "l 30–24"
CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, result VARCHAR)
Who did they play against in a week after 6 and the result was l 30–24?
SELECT opponent FROM table_name_25 WHERE result = "w 31–0"
CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)
What opponent has a Result of w 31–0?
SELECT MAX(round) FROM table_name_7 WHERE position = "cornerback"
CREATE TABLE table_name_7 (round INTEGER, position VARCHAR)
During which round was the final cornerback drafted for the New England Patriots in 2005?
SELECT MIN(best_score) FROM table_name_9 WHERE worst_dancer = "leeza gibbons" AND worst_score < 15
CREATE TABLE table_name_9 (best_score INTEGER, worst_dancer VARCHAR, worst_score VARCHAR)
What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?
SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = "apolo anton ohno" AND best_score > 30
CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)
What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?
SELECT MAX(crowd) FROM table_name_48 WHERE away_team = "carlton"
CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR)
What is the biggest crowd when carlton is the away squad?
SELECT SUM(crowd) FROM table_name_44 WHERE away_team = "richmond"
CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR)
What is the sum of crowd(s) when richmond is the away squad?
SELECT home_team AS score FROM table_name_40 WHERE venue = "glenferrie oval"
CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
What is the home team's score in the game played at glenferrie oval?
SELECT res FROM table_name_57 WHERE opponent = "nate mohr"
CREATE TABLE table_name_57 (res VARCHAR, opponent VARCHAR)
What was the result of the event against Nate Mohr?
SELECT home_team AS score FROM table_name_45 WHERE venue = "junction oval"
CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)
When the VFL played Junction Oval what was the home team score?
SELECT crowd FROM table_name_6 WHERE away_team = "geelong"
CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)
What was away team Geelong's crowd numbers?
SELECT date FROM table_name_10 WHERE away_team = "fitzroy"
CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)
What is the date they played against fitzroy?