question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who scored more than 8 goals, had more than 75 caps, and averaged 0.432?
CREATE TABLE table_name_42 (player VARCHAR, average VARCHAR, goals VARCHAR, caps VARCHAR)
SELECT player FROM table_name_42 WHERE goals > 8 AND caps > 75 AND average = 0.432
### Context: CREATE TABLE table_name_42 (player VARCHAR, average VARCHAR, goals VARCHAR, caps VARCHAR) ### Question: Who scored more than 8 goals, had more than 75 caps, and averaged 0.432? ### Answer: SELECT player FROM table_name_42 WHERE goals > 8 AND caps > 75 AND average = 0.432
What is the sum of the averages when there are 68 caps and less than 9 goals?
CREATE TABLE table_name_16 (average INTEGER, caps VARCHAR, goals VARCHAR)
SELECT SUM(average) FROM table_name_16 WHERE caps = 68 AND goals < 9
### Context: CREATE TABLE table_name_16 (average INTEGER, caps VARCHAR, goals VARCHAR) ### Question: What is the sum of the averages when there are 68 caps and less than 9 goals? ### Answer: SELECT SUM(average) FROM table_name_16 WHERE caps = 68 AND goals < 9
Tell me the 1968 for 1r
CREATE TABLE table_name_76 (Id VARCHAR)
SELECT 1968 FROM table_name_76 WHERE 1967 = "1r"
### Context: CREATE TABLE table_name_76 (Id VARCHAR) ### Question: Tell me the 1968 for 1r ### Answer: SELECT 1968 FROM table_name_76 WHERE 1967 = "1r"
Tell me the round of 32 for conference of southland
CREATE TABLE table_name_62 (round_of_32 VARCHAR, conference VARCHAR)
SELECT round_of_32 FROM table_name_62 WHERE conference = "southland"
### Context: CREATE TABLE table_name_62 (round_of_32 VARCHAR, conference VARCHAR) ### Question: Tell me the round of 32 for conference of southland ### Answer: SELECT round_of_32 FROM table_name_62 WHERE conference = "southland"
Tell me the lowest # of bids for win percent of .667
CREATE TABLE table_name_38 (_number_of_bids INTEGER, win__percentage VARCHAR)
SELECT MIN(_number_of_bids) FROM table_name_38 WHERE win__percentage = ".667"
### Context: CREATE TABLE table_name_38 (_number_of_bids INTEGER, win__percentage VARCHAR) ### Question: Tell me the lowest # of bids for win percent of .667 ### Answer: SELECT MIN(_number_of_bids) FROM table_name_38 WHERE win__percentage = ".667"
Tell me the sum of cap/hor for double chair and vertical less than 479
CREATE TABLE table_name_8 (cap_hour INTEGER, type VARCHAR, vertical VARCHAR)
SELECT SUM(cap_hour) FROM table_name_8 WHERE type = "double chair" AND vertical < 479
### Context: CREATE TABLE table_name_8 (cap_hour INTEGER, type VARCHAR, vertical VARCHAR) ### Question: Tell me the sum of cap/hor for double chair and vertical less than 479 ### Answer: SELECT SUM(cap_hour) FROM table_name_8 WHERE type = "double chair" AND vertical < 479
What's the compression ratio when the vin code is c?
CREATE TABLE table_name_38 (vin_code VARCHAR)
SELECT "c" AS ompression_ratio FROM table_name_38 WHERE vin_code = "c"
### Context: CREATE TABLE table_name_38 (vin_code VARCHAR) ### Question: What's the compression ratio when the vin code is c? ### Answer: SELECT "c" AS ompression_ratio FROM table_name_38 WHERE vin_code = "c"
Tell me the sum of year for extra of junior team competition
CREATE TABLE table_name_31 (year INTEGER, extra VARCHAR)
SELECT SUM(year) FROM table_name_31 WHERE extra = "junior team competition"
### Context: CREATE TABLE table_name_31 (year INTEGER, extra VARCHAR) ### Question: Tell me the sum of year for extra of junior team competition ### Answer: SELECT SUM(year) FROM table_name_31 WHERE extra = "junior team competition"
Tell me the lens zoom for aperture of model s2600
CREATE TABLE table_name_39 (lens_35mmequiv__zoom VARCHAR, _aperture VARCHAR, model VARCHAR)
SELECT lens_35mmequiv__zoom, _aperture FROM table_name_39 WHERE model = "s2600"
### Context: CREATE TABLE table_name_39 (lens_35mmequiv__zoom VARCHAR, _aperture VARCHAR, model VARCHAR) ### Question: Tell me the lens zoom for aperture of model s2600 ### Answer: SELECT lens_35mmequiv__zoom, _aperture FROM table_name_39 WHERE model = "s2600"
Tell me the screen size for pixels of model s6400
CREATE TABLE table_name_69 (screen_size VARCHAR, pixels VARCHAR, model VARCHAR)
SELECT screen_size, pixels FROM table_name_69 WHERE model = "s6400"
### Context: CREATE TABLE table_name_69 (screen_size VARCHAR, pixels VARCHAR, model VARCHAR) ### Question: Tell me the screen size for pixels of model s6400 ### Answer: SELECT screen_size, pixels FROM table_name_69 WHERE model = "s6400"
Name the sensor res for model of s9200
CREATE TABLE table_name_74 (sensor_res VARCHAR, _size VARCHAR, model VARCHAR)
SELECT sensor_res, _size FROM table_name_74 WHERE model = "s9200"
### Context: CREATE TABLE table_name_74 (sensor_res VARCHAR, _size VARCHAR, model VARCHAR) ### Question: Name the sensor res for model of s9200 ### Answer: SELECT sensor_res, _size FROM table_name_74 WHERE model = "s9200"
Tell me the nation for bronze more than 0 and total more than 8 with gold of 4
CREATE TABLE table_name_62 (nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT nation FROM table_name_62 WHERE bronze > 0 AND total > 8 AND gold = 4
### Context: CREATE TABLE table_name_62 (nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: Tell me the nation for bronze more than 0 and total more than 8 with gold of 4 ### Answer: SELECT nation FROM table_name_62 WHERE bronze > 0 AND total > 8 AND gold = 4
Who is Team Suzuki's rider and ranks higher than 6?
CREATE TABLE table_name_44 (rider VARCHAR, rank VARCHAR, team VARCHAR)
SELECT rider FROM table_name_44 WHERE rank > 6 AND team = "suzuki"
### Context: CREATE TABLE table_name_44 (rider VARCHAR, rank VARCHAR, team VARCHAR) ### Question: Who is Team Suzuki's rider and ranks higher than 6? ### Answer: SELECT rider FROM table_name_44 WHERE rank > 6 AND team = "suzuki"
Who was the lowest division in the 7th season?
CREATE TABLE table_name_11 (division INTEGER, reg_season VARCHAR)
SELECT MIN(division) FROM table_name_11 WHERE reg_season = "7th"
### Context: CREATE TABLE table_name_11 (division INTEGER, reg_season VARCHAR) ### Question: Who was the lowest division in the 7th season? ### Answer: SELECT MIN(division) FROM table_name_11 WHERE reg_season = "7th"
In 1924/25, who was in the playoffs?
CREATE TABLE table_name_27 (playoffs VARCHAR, year VARCHAR)
SELECT playoffs FROM table_name_27 WHERE year = "1924/25"
### Context: CREATE TABLE table_name_27 (playoffs VARCHAR, year VARCHAR) ### Question: In 1924/25, who was in the playoffs? ### Answer: SELECT playoffs FROM table_name_27 WHERE year = "1924/25"
Which division has no playoff but has a 12th game in their season?
CREATE TABLE table_name_74 (division INTEGER, playoffs VARCHAR, reg_season VARCHAR)
SELECT MAX(division) FROM table_name_74 WHERE playoffs = "no playoff" AND reg_season = "12th"
### Context: CREATE TABLE table_name_74 (division INTEGER, playoffs VARCHAR, reg_season VARCHAR) ### Question: Which division has no playoff but has a 12th game in their season? ### Answer: SELECT MAX(division) FROM table_name_74 WHERE playoffs = "no playoff" AND reg_season = "12th"
What was the venue of the competition that held the 1st position in 2011?
CREATE TABLE table_name_68 (venue VARCHAR, position VARCHAR, year VARCHAR)
SELECT venue FROM table_name_68 WHERE position = "1st" AND year = 2011
### Context: CREATE TABLE table_name_68 (venue VARCHAR, position VARCHAR, year VARCHAR) ### Question: What was the venue of the competition that held the 1st position in 2011? ### Answer: SELECT venue FROM table_name_68 WHERE position = "1st" AND year = 2011
What was the position of the Olympic Games in the year 2008?
CREATE TABLE table_name_68 (position VARCHAR, competition VARCHAR, year VARCHAR)
SELECT position FROM table_name_68 WHERE competition = "olympic games" AND year = 2008
### Context: CREATE TABLE table_name_68 (position VARCHAR, competition VARCHAR, year VARCHAR) ### Question: What was the position of the Olympic Games in the year 2008? ### Answer: SELECT position FROM table_name_68 WHERE competition = "olympic games" AND year = 2008
Which competition held the 1st position in 2009?
CREATE TABLE table_name_89 (competition VARCHAR, position VARCHAR, year VARCHAR)
SELECT competition FROM table_name_89 WHERE position = "1st" AND year = 2009
### Context: CREATE TABLE table_name_89 (competition VARCHAR, position VARCHAR, year VARCHAR) ### Question: Which competition held the 1st position in 2009? ### Answer: SELECT competition FROM table_name_89 WHERE position = "1st" AND year = 2009
Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?
CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = "3000 m s'chase" AND position = "2nd" AND competition = "african championships"
### Context: CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR) ### Question: Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes? ### Answer: SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = "3000 m s'chase" AND position = "2nd" AND competition = "african championships"
Tell me the label for US region and catalog of 10008-2
CREATE TABLE table_name_2 (label VARCHAR, region VARCHAR, catalog VARCHAR)
SELECT label FROM table_name_2 WHERE region = "us" AND catalog = "10008-2"
### Context: CREATE TABLE table_name_2 (label VARCHAR, region VARCHAR, catalog VARCHAR) ### Question: Tell me the label for US region and catalog of 10008-2 ### Answer: SELECT label FROM table_name_2 WHERE region = "us" AND catalog = "10008-2"
Tell me the date for format of cd/dvd
CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)
SELECT date FROM table_name_88 WHERE format = "cd/dvd"
### Context: CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR) ### Question: Tell me the date for format of cd/dvd ### Answer: SELECT date FROM table_name_88 WHERE format = "cd/dvd"
Tell me the format for european union
CREATE TABLE table_name_99 (format VARCHAR, region VARCHAR)
SELECT format FROM table_name_99 WHERE region = "european union"
### Context: CREATE TABLE table_name_99 (format VARCHAR, region VARCHAR) ### Question: Tell me the format for european union ### Answer: SELECT format FROM table_name_99 WHERE region = "european union"
Tell me the catalog for date larger than 2004
CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)
SELECT catalog FROM table_name_72 WHERE date > 2004
### Context: CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER) ### Question: Tell me the catalog for date larger than 2004 ### Answer: SELECT catalog FROM table_name_72 WHERE date > 2004
I want the lowest date for catalog of 6561910008-1
CREATE TABLE table_name_87 (date INTEGER, catalog VARCHAR)
SELECT MIN(date) FROM table_name_87 WHERE catalog = "6561910008-1"
### Context: CREATE TABLE table_name_87 (date INTEGER, catalog VARCHAR) ### Question: I want the lowest date for catalog of 6561910008-1 ### Answer: SELECT MIN(date) FROM table_name_87 WHERE catalog = "6561910008-1"
What date was there a crowd larger than 30,343?
CREATE TABLE table_name_97 (date VARCHAR, crowd INTEGER)
SELECT date FROM table_name_97 WHERE crowd > 30 OFFSET 343
### Context: CREATE TABLE table_name_97 (date VARCHAR, crowd INTEGER) ### Question: What date was there a crowd larger than 30,343? ### Answer: SELECT date FROM table_name_97 WHERE crowd > 30 OFFSET 343
What was the lowest Crowd total from a game in which Essendon was the Away team?
CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_35 WHERE away_team = "essendon"
### Context: CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR) ### Question: What was the lowest Crowd total from a game in which Essendon was the Away team? ### Answer: SELECT MIN(crowd) FROM table_name_35 WHERE away_team = "essendon"
Which Venue was used when the Home team was geelong?
CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_47 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR) ### Question: Which Venue was used when the Home team was geelong? ### Answer: SELECT venue FROM table_name_47 WHERE home_team = "geelong"
What is the highest scored in the 2010 east asian football championship?
CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)
SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"
### Context: CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR) ### Question: What is the highest scored in the 2010 east asian football championship? ### Answer: SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"
Which country is Wellington located in?
CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_48 WHERE city = "wellington"
### Context: CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR) ### Question: Which country is Wellington located in? ### Answer: SELECT country FROM table_name_48 WHERE city = "wellington"
What label is in download format in the United States?
CREATE TABLE table_name_42 (label VARCHAR, region VARCHAR, format VARCHAR)
SELECT label FROM table_name_42 WHERE region = "united states" AND format = "download"
### Context: CREATE TABLE table_name_42 (label VARCHAR, region VARCHAR, format VARCHAR) ### Question: What label is in download format in the United States? ### Answer: SELECT label FROM table_name_42 WHERE region = "united states" AND format = "download"
What label is in download format in the United States?
CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)
SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"
### Context: CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR) ### Question: What label is in download format in the United States? ### Answer: SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"
What label has RTRADLP 346 as catalogue?
CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_90 WHERE catalogue = "rtradlp 346"
### Context: CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR) ### Question: What label has RTRADLP 346 as catalogue? ### Answer: SELECT label FROM table_name_90 WHERE catalogue = "rtradlp 346"
What label has 22 January 2008 date?
CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_8 WHERE date = "22 january 2008"
### Context: CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR) ### Question: What label has 22 January 2008 date? ### Answer: SELECT label FROM table_name_8 WHERE date = "22 january 2008"
What is the label for catalogue of RT-346-5?
CREATE TABLE table_name_93 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_93 WHERE catalogue = "rt-346-5"
### Context: CREATE TABLE table_name_93 (label VARCHAR, catalogue VARCHAR) ### Question: What is the label for catalogue of RT-346-5? ### Answer: SELECT label FROM table_name_93 WHERE catalogue = "rt-346-5"
What position is mentioned for Rice school?
CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_34 WHERE school_club_team = "rice"
### Context: CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR) ### Question: What position is mentioned for Rice school? ### Answer: SELECT position FROM table_name_34 WHERE school_club_team = "rice"
What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, overall VARCHAR, position VARCHAR)
SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = "defensive end" AND school_club_team = "wisconsin"
### Context: CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, overall VARCHAR, position VARCHAR) ### Question: What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end? ### Answer: SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = "defensive end" AND school_club_team = "wisconsin"
What is the average round when there is a defensive back and an overall smaller than 199?
CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
### Context: CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR) ### Question: What is the average round when there is a defensive back and an overall smaller than 199? ### Answer: SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199
What was the date of game with a score of 42-6?
CREATE TABLE table_name_23 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_23 WHERE score = "42-6"
### Context: CREATE TABLE table_name_23 (date VARCHAR, score VARCHAR) ### Question: What was the date of game with a score of 42-6? ### Answer: SELECT date FROM table_name_23 WHERE score = "42-6"
What stadium was the game played at when the result was hunter mariners def. sheffield eagles?
CREATE TABLE table_name_43 (stadium VARCHAR, result VARCHAR)
SELECT stadium FROM table_name_43 WHERE result = "hunter mariners def. sheffield eagles"
### Context: CREATE TABLE table_name_43 (stadium VARCHAR, result VARCHAR) ### Question: What stadium was the game played at when the result was hunter mariners def. sheffield eagles? ### Answer: SELECT stadium FROM table_name_43 WHERE result = "hunter mariners def. sheffield eagles"
What city has a Result of brisbane broncos def. halifax blue sox?
CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)
SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox"
### Context: CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR) ### Question: What city has a Result of brisbane broncos def. halifax blue sox? ### Answer: SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox"
Which player was drafted after round 9 and number 464 overall?
CREATE TABLE table_name_83 (player VARCHAR, round VARCHAR, overall VARCHAR)
SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464
### Context: CREATE TABLE table_name_83 (player VARCHAR, round VARCHAR, overall VARCHAR) ### Question: Which player was drafted after round 9 and number 464 overall? ### Answer: SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464
What was James Reed's draft round number?
CREATE TABLE table_name_90 (round VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_90 WHERE player = "james reed"
### Context: CREATE TABLE table_name_90 (round VARCHAR, player VARCHAR) ### Question: What was James Reed's draft round number? ### Answer: SELECT COUNT(round) FROM table_name_90 WHERE player = "james reed"
What was the overall draft number of Tom Fleming, a wide receiver?
CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)
SELECT COUNT(overall) FROM table_name_28 WHERE position = "wide receiver" AND player = "tom fleming"
### Context: CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR) ### Question: What was the overall draft number of Tom Fleming, a wide receiver? ### Answer: SELECT COUNT(overall) FROM table_name_28 WHERE position = "wide receiver" AND player = "tom fleming"
Which player is from Dartmouth?
CREATE TABLE table_name_41 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_41 WHERE school_club_team = "dartmouth"
### Context: CREATE TABLE table_name_41 (player VARCHAR, school_club_team VARCHAR) ### Question: Which player is from Dartmouth? ### Answer: SELECT player FROM table_name_41 WHERE school_club_team = "dartmouth"
What position does the player from tulsa play?
CREATE TABLE table_name_17 (position VARCHAR, school_country VARCHAR)
SELECT position FROM table_name_17 WHERE school_country = "tulsa"
### Context: CREATE TABLE table_name_17 (position VARCHAR, school_country VARCHAR) ### Question: What position does the player from tulsa play? ### Answer: SELECT position FROM table_name_17 WHERE school_country = "tulsa"
What is the sum of Magnitude on february 12, 1953?
CREATE TABLE table_name_44 (magnitude INTEGER, date VARCHAR)
SELECT SUM(magnitude) FROM table_name_44 WHERE date = "february 12, 1953"
### Context: CREATE TABLE table_name_44 (magnitude INTEGER, date VARCHAR) ### Question: What is the sum of Magnitude on february 12, 1953? ### Answer: SELECT SUM(magnitude) FROM table_name_44 WHERE date = "february 12, 1953"
What was the final score of a baseball game that happened before 2005?
CREATE TABLE table_name_41 (final_score VARCHAR, sport VARCHAR, year VARCHAR)
SELECT final_score FROM table_name_41 WHERE sport = "baseball" AND year < 2005
### Context: CREATE TABLE table_name_41 (final_score VARCHAR, sport VARCHAR, year VARCHAR) ### Question: What was the final score of a baseball game that happened before 2005? ### Answer: SELECT final_score FROM table_name_41 WHERE sport = "baseball" AND year < 2005
What venue did Richmond play as the away team?
CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_29 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR) ### Question: What venue did Richmond play as the away team? ### Answer: SELECT venue FROM table_name_29 WHERE away_team = "richmond"
What is the team of Essendon's score in the game where they were the home team?
CREATE TABLE table_name_92 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_92 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_92 (home_team VARCHAR) ### Question: What is the team of Essendon's score in the game where they were the home team? ### Answer: SELECT home_team AS score FROM table_name_92 WHERE home_team = "essendon"
Who is the away side when st kilda is the home side?
CREATE TABLE table_name_59 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_59 WHERE home_team = "st kilda"
### Context: CREATE TABLE table_name_59 (away_team VARCHAR, home_team VARCHAR) ### Question: Who is the away side when st kilda is the home side? ### Answer: SELECT away_team FROM table_name_59 WHERE home_team = "st kilda"
What is the away side score when footscray is the home side?
CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_38 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_38 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away side score when footscray is the home side? ### Answer: SELECT away_team AS score FROM table_name_38 WHERE home_team = "footscray"
What is the home team's score at kardinia park?
CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_85 WHERE venue = "kardinia park"
### Context: CREATE TABLE table_name_85 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team's score at kardinia park? ### Answer: SELECT home_team AS score FROM table_name_85 WHERE venue = "kardinia park"
What was the lowest crowd seen at a game that Richmond was the Away team in?
CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_57 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR) ### Question: What was the lowest crowd seen at a game that Richmond was the Away team in? ### Answer: SELECT MIN(crowd) FROM table_name_57 WHERE away_team = "richmond"
What was the highest crowd count seen in the Windy Hill venue?
CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_48 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR) ### Question: What was the highest crowd count seen in the Windy Hill venue? ### Answer: SELECT MAX(crowd) FROM table_name_48 WHERE venue = "windy hill"
What was the score of the Away team that played against the Home team of Fitzroy?
CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_10 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the score of the Away team that played against the Home team of Fitzroy? ### Answer: SELECT away_team AS score FROM table_name_10 WHERE home_team = "fitzroy"
Which was the lowest overall that Wisconsin's team managed?
CREATE TABLE table_name_78 (overall INTEGER, school_club_team VARCHAR)
SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = "wisconsin"
### Context: CREATE TABLE table_name_78 (overall INTEGER, school_club_team VARCHAR) ### Question: Which was the lowest overall that Wisconsin's team managed? ### Answer: SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = "wisconsin"
Which team was Roy de Walt a player on?
CREATE TABLE table_name_20 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_20 WHERE player = "roy de walt"
### Context: CREATE TABLE table_name_20 (school_club_team VARCHAR, player VARCHAR) ### Question: Which team was Roy de Walt a player on? ### Answer: SELECT school_club_team FROM table_name_20 WHERE player = "roy de walt"
In which round did Paul McDonald have an overall greater than 109?
CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)
SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109
### Context: CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR) ### Question: In which round did Paul McDonald have an overall greater than 109? ### Answer: SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109
What is the total overall in round 1, in which Charles White was a player?
CREATE TABLE table_name_2 (overall INTEGER, player VARCHAR, round VARCHAR)
SELECT SUM(overall) FROM table_name_2 WHERE player = "charles white" AND round < 1
### Context: CREATE TABLE table_name_2 (overall INTEGER, player VARCHAR, round VARCHAR) ### Question: What is the total overall in round 1, in which Charles White was a player? ### Answer: SELECT SUM(overall) FROM table_name_2 WHERE player = "charles white" AND round < 1
What is the name of a running back in a round before round 3?
CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT player FROM table_name_4 WHERE round < 3 AND position = "running back"
### Context: CREATE TABLE table_name_4 (player VARCHAR, round VARCHAR, position VARCHAR) ### Question: What is the name of a running back in a round before round 3? ### Answer: SELECT player FROM table_name_4 WHERE round < 3 AND position = "running back"
What is the win/loss percentage with wins of 63 and losses smaller than 76?
CREATE TABLE table_name_77 (w_l__percentage VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT w_l__percentage FROM table_name_77 WHERE wins = 63 AND losses < 76
### Context: CREATE TABLE table_name_77 (w_l__percentage VARCHAR, wins VARCHAR, losses VARCHAR) ### Question: What is the win/loss percentage with wins of 63 and losses smaller than 76? ### Answer: SELECT w_l__percentage FROM table_name_77 WHERE wins = 63 AND losses < 76
What is the away team score when the home team is Geelong?
CREATE TABLE table_name_25 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_25 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_25 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away team score when the home team is Geelong? ### Answer: SELECT away_team AS score FROM table_name_25 WHERE home_team = "geelong"
What was the highest order amount in weeks prier to 15 and a major less than 1?
CREATE TABLE table_name_55 (order INTEGER, weeks VARCHAR, majors VARCHAR)
SELECT MAX(order) FROM table_name_55 WHERE weeks < 15 AND majors < 1
### Context: CREATE TABLE table_name_55 (order INTEGER, weeks VARCHAR, majors VARCHAR) ### Question: What was the highest order amount in weeks prier to 15 and a major less than 1? ### Answer: SELECT MAX(order) FROM table_name_55 WHERE weeks < 15 AND majors < 1
What is the position of the player from Temple?
CREATE TABLE table_name_7 (position VARCHAR, school_country VARCHAR)
SELECT position FROM table_name_7 WHERE school_country = "temple"
### Context: CREATE TABLE table_name_7 (position VARCHAR, school_country VARCHAR) ### Question: What is the position of the player from Temple? ### Answer: SELECT position FROM table_name_7 WHERE school_country = "temple"
Which player is associated with Temple?
CREATE TABLE table_name_22 (player VARCHAR, school_country VARCHAR)
SELECT player FROM table_name_22 WHERE school_country = "temple"
### Context: CREATE TABLE table_name_22 (player VARCHAR, school_country VARCHAR) ### Question: Which player is associated with Temple? ### Answer: SELECT player FROM table_name_22 WHERE school_country = "temple"
Which nationality is associated with Temple?
CREATE TABLE table_name_72 (nationality VARCHAR, school_country VARCHAR)
SELECT nationality FROM table_name_72 WHERE school_country = "temple"
### Context: CREATE TABLE table_name_72 (nationality VARCHAR, school_country VARCHAR) ### Question: Which nationality is associated with Temple? ### Answer: SELECT nationality FROM table_name_72 WHERE school_country = "temple"
How many goals were achieved when Chievo was the club and the debut year was before 2002?
CREATE TABLE table_name_71 (goals VARCHAR, current_club VARCHAR, debut_year VARCHAR)
SELECT COUNT(goals) FROM table_name_71 WHERE current_club = "chievo" AND debut_year < 2002
### Context: CREATE TABLE table_name_71 (goals VARCHAR, current_club VARCHAR, debut_year VARCHAR) ### Question: How many goals were achieved when Chievo was the club and the debut year was before 2002? ### Answer: SELECT COUNT(goals) FROM table_name_71 WHERE current_club = "chievo" AND debut_year < 2002
How many goals occurred with Diego Milito in a debut year later than 2008?
CREATE TABLE table_name_40 (goals VARCHAR, name VARCHAR, debut_year VARCHAR)
SELECT COUNT(goals) FROM table_name_40 WHERE name = "diego milito" AND debut_year > 2008
### Context: CREATE TABLE table_name_40 (goals VARCHAR, name VARCHAR, debut_year VARCHAR) ### Question: How many goals occurred with Diego Milito in a debut year later than 2008? ### Answer: SELECT COUNT(goals) FROM table_name_40 WHERE name = "diego milito" AND debut_year > 2008
Who is the home team at the Punt Road Oval?
CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_99 WHERE venue = "punt road oval"
### Context: CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR) ### Question: Who is the home team at the Punt Road Oval? ### Answer: SELECT home_team AS score FROM table_name_99 WHERE venue = "punt road oval"
Who is the away team at Windy Hill?
CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_69 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR) ### Question: Who is the away team at Windy Hill? ### Answer: SELECT away_team FROM table_name_69 WHERE venue = "windy hill"
What is the date of the game that had a crowd larger than 25,000?
CREATE TABLE table_name_3 (date VARCHAR, crowd INTEGER)
SELECT date FROM table_name_3 WHERE crowd > 25 OFFSET 000
### Context: CREATE TABLE table_name_3 (date VARCHAR, crowd INTEGER) ### Question: What is the date of the game that had a crowd larger than 25,000? ### Answer: SELECT date FROM table_name_3 WHERE crowd > 25 OFFSET 000
What was South Melbourne's score as the home team?
CREATE TABLE table_name_19 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_19 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_19 (home_team VARCHAR) ### Question: What was South Melbourne's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_19 WHERE home_team = "south melbourne"
What was the largest crowd of a game where Collingwood was the away team?
CREATE TABLE table_name_52 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_52 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_52 (crowd INTEGER, away_team VARCHAR) ### Question: What was the largest crowd of a game where Collingwood was the away team? ### Answer: SELECT MAX(crowd) FROM table_name_52 WHERE away_team = "collingwood"
What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?
CREATE TABLE table_name_21 (round INTEGER, method VARCHAR, opponent VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE method = "decision (unanimous)" AND opponent = "john howard"
### Context: CREATE TABLE table_name_21 (round INTEGER, method VARCHAR, opponent VARCHAR) ### Question: What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)? ### Answer: SELECT MIN(round) FROM table_name_21 WHERE method = "decision (unanimous)" AND opponent = "john howard"
What's the time for the match with a record of 2-0?
CREATE TABLE table_name_74 (time VARCHAR, record VARCHAR)
SELECT time FROM table_name_74 WHERE record = "2-0"
### Context: CREATE TABLE table_name_74 (time VARCHAR, record VARCHAR) ### Question: What's the time for the match with a record of 2-0? ### Answer: SELECT time FROM table_name_74 WHERE record = "2-0"
Where was the match with a method of submission (standing guillotine choke)?
CREATE TABLE table_name_92 (location VARCHAR, method VARCHAR)
SELECT location FROM table_name_92 WHERE method = "submission (standing guillotine choke)"
### Context: CREATE TABLE table_name_92 (location VARCHAR, method VARCHAR) ### Question: Where was the match with a method of submission (standing guillotine choke)? ### Answer: SELECT location FROM table_name_92 WHERE method = "submission (standing guillotine choke)"
What language is the moviein that is on UMP movies network through Sky service?
CREATE TABLE table_name_87 (language VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR)
SELECT language FROM table_name_87 WHERE genre = "movies" AND service = "sky" AND network = "ump movies"
### Context: CREATE TABLE table_name_87 (language VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR) ### Question: What language is the moviein that is on UMP movies network through Sky service? ### Answer: SELECT language FROM table_name_87 WHERE genre = "movies" AND service = "sky" AND network = "ump movies"
What language is the movie in that is on SAB network through Sky service?
CREATE TABLE table_name_97 (language VARCHAR, network VARCHAR, service VARCHAR)
SELECT language FROM table_name_97 WHERE network = "sab" AND service = "sky"
### Context: CREATE TABLE table_name_97 (language VARCHAR, network VARCHAR, service VARCHAR) ### Question: What language is the movie in that is on SAB network through Sky service? ### Answer: SELECT language FROM table_name_97 WHERE network = "sab" AND service = "sky"
What was the overall pick for the player who was a guard and had a round less than 9?
CREATE TABLE table_name_4 (overall INTEGER, position VARCHAR, round VARCHAR)
SELECT AVG(overall) FROM table_name_4 WHERE position = "guard" AND round < 9
### Context: CREATE TABLE table_name_4 (overall INTEGER, position VARCHAR, round VARCHAR) ### Question: What was the overall pick for the player who was a guard and had a round less than 9? ### Answer: SELECT AVG(overall) FROM table_name_4 WHERE position = "guard" AND round < 9
What was the lowest round number that had an overall pick up 92?
CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR)
SELECT MIN(round) FROM table_name_9 WHERE overall = 92
### Context: CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR) ### Question: What was the lowest round number that had an overall pick up 92? ### Answer: SELECT MIN(round) FROM table_name_9 WHERE overall = 92
What open source movie has a CC License of by-nc-sa 1.0?
CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)
SELECT open_source_movie FROM table_name_90 WHERE cc_license = "by-nc-sa 1.0"
### Context: CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR) ### Question: What open source movie has a CC License of by-nc-sa 1.0? ### Answer: SELECT open_source_movie FROM table_name_90 WHERE cc_license = "by-nc-sa 1.0"
Which venue had the result 7-1?
CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_50 WHERE result = "7-1"
### Context: CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR) ### Question: Which venue had the result 7-1? ### Answer: SELECT venue FROM table_name_50 WHERE result = "7-1"
What date was the Competition of rothmans cup?
CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_67 WHERE competition = "rothmans cup"
### Context: CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR) ### Question: What date was the Competition of rothmans cup? ### Answer: SELECT date FROM table_name_67 WHERE competition = "rothmans cup"
What was the result of the Competition of friendly?
CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_61 WHERE competition = "friendly"
### Context: CREATE TABLE table_name_61 (result VARCHAR, competition VARCHAR) ### Question: What was the result of the Competition of friendly? ### Answer: SELECT result FROM table_name_61 WHERE competition = "friendly"
Which competition was played on 8 June 2005?
CREATE TABLE table_name_90 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_90 WHERE date = "8 june 2005"
### Context: CREATE TABLE table_name_90 (competition VARCHAR, date VARCHAR) ### Question: Which competition was played on 8 June 2005? ### Answer: SELECT competition FROM table_name_90 WHERE date = "8 june 2005"
Which competition had the score 1-0?
CREATE TABLE table_name_4 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_4 WHERE score = "1-0"
### Context: CREATE TABLE table_name_4 (competition VARCHAR, score VARCHAR) ### Question: Which competition had the score 1-0? ### Answer: SELECT competition FROM table_name_4 WHERE score = "1-0"
Timsah arena is in what country?
CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR)
SELECT country FROM table_name_32 WHERE stadium = "timsah arena"
### Context: CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR) ### Question: Timsah arena is in what country? ### Answer: SELECT country FROM table_name_32 WHERE stadium = "timsah arena"
What country is Relax-Gam from?
CREATE TABLE table_name_83 (country VARCHAR, team VARCHAR)
SELECT country FROM table_name_83 WHERE team = "relax-gam"
### Context: CREATE TABLE table_name_83 (country VARCHAR, team VARCHAR) ### Question: What country is Relax-Gam from? ### Answer: SELECT country FROM table_name_83 WHERE team = "relax-gam"
Who is Gerolsteiner's cyclist?
CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR)
SELECT cyclist FROM table_name_89 WHERE team = "gerolsteiner"
### Context: CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR) ### Question: Who is Gerolsteiner's cyclist? ### Answer: SELECT cyclist FROM table_name_89 WHERE team = "gerolsteiner"
What is Davide Rebellin' UCI ProTour Points?
CREATE TABLE table_name_33 (uci_protour_points VARCHAR, cyclist VARCHAR)
SELECT uci_protour_points FROM table_name_33 WHERE cyclist = "davide rebellin"
### Context: CREATE TABLE table_name_33 (uci_protour_points VARCHAR, cyclist VARCHAR) ### Question: What is Davide Rebellin' UCI ProTour Points? ### Answer: SELECT uci_protour_points FROM table_name_33 WHERE cyclist = "davide rebellin"
What was North Melbourne's score when they were the home team?
CREATE TABLE table_name_22 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_22 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_22 (home_team VARCHAR) ### Question: What was North Melbourne's score when they were the home team? ### Answer: SELECT home_team AS score FROM table_name_22 WHERE home_team = "north melbourne"
Where did Footscray play as the away team?
CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_76 WHERE away_team = "footscray"
### Context: CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Footscray play as the away team? ### Answer: SELECT venue FROM table_name_76 WHERE away_team = "footscray"
What was the away team's score in the match at Lake Oval?
CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_77 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score in the match at Lake Oval? ### Answer: SELECT away_team AS score FROM table_name_77 WHERE venue = "lake oval"
What was the sum of the crowds that watched Fitzroy play as the away team?
CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_81 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR) ### Question: What was the sum of the crowds that watched Fitzroy play as the away team? ### Answer: SELECT SUM(crowd) FROM table_name_81 WHERE away_team = "fitzroy"
What is the sum of rank with years 1996–2012 and apps greater than 340?
CREATE TABLE table_name_15 (rank INTEGER, years VARCHAR, apps VARCHAR)
SELECT SUM(rank) FROM table_name_15 WHERE years = "1996–2012" AND apps > 340
### Context: CREATE TABLE table_name_15 (rank INTEGER, years VARCHAR, apps VARCHAR) ### Question: What is the sum of rank with years 1996–2012 and apps greater than 340? ### Answer: SELECT SUM(rank) FROM table_name_15 WHERE years = "1996–2012" AND apps > 340
What was the away team that faced Carlton?
CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_6 WHERE home_team = "carlton"
### Context: CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the away team that faced Carlton? ### Answer: SELECT away_team FROM table_name_6 WHERE home_team = "carlton"
What is the total crowd size that saw Geelong play as the away team?
CREATE TABLE table_name_17 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_17 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_17 (crowd VARCHAR, away_team VARCHAR) ### Question: What is the total crowd size that saw Geelong play as the away team? ### Answer: SELECT COUNT(crowd) FROM table_name_17 WHERE away_team = "geelong"
How many wins did Hobbs had a 15th finish at poles 0?
CREATE TABLE table_name_89 (wins VARCHAR, poles VARCHAR, final_placing VARCHAR)
SELECT wins FROM table_name_89 WHERE poles = "0" AND final_placing = "15th"
### Context: CREATE TABLE table_name_89 (wins VARCHAR, poles VARCHAR, final_placing VARCHAR) ### Question: How many wins did Hobbs had a 15th finish at poles 0? ### Answer: SELECT wins FROM table_name_89 WHERE poles = "0" AND final_placing = "15th"
What are the points for the GP3 series with 2 podiums?
CREATE TABLE table_name_92 (points VARCHAR, series VARCHAR, podiums VARCHAR)
SELECT points FROM table_name_92 WHERE series = "gp3 series" AND podiums = "2"
### Context: CREATE TABLE table_name_92 (points VARCHAR, series VARCHAR, podiums VARCHAR) ### Question: What are the points for the GP3 series with 2 podiums? ### Answer: SELECT points FROM table_name_92 WHERE series = "gp3 series" AND podiums = "2"