question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the score for the home team for the venue glenferrie oval?
CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_57 WHERE venue = "glenferrie oval"
### Context: CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR) ### Question: What is the score for the home team for the venue glenferrie oval? ### Answer: SELECT home_team AS score FROM table_name_57 WHERE venue = "glenferrie oval"
What was South Melbourne's score when they played as the away team?
CREATE TABLE table_name_5 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_5 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_5 (away_team VARCHAR) ### Question: What was South Melbourne's score when they played as the away team? ### Answer: SELECT away_team AS score FROM table_name_5 WHERE away_team = "south melbourne"
What was the attendance for the North Melbourne's home game?
CREATE TABLE table_name_31 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_31 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_31 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the attendance for the North Melbourne's home game? ### Answer: SELECT crowd FROM table_name_31 WHERE home_team = "north melbourne"
What is the name of the venue where home team st kilda played?
CREATE TABLE table_name_83 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_83 WHERE home_team = "st kilda"
### Context: CREATE TABLE table_name_83 (venue VARCHAR, home_team VARCHAR) ### Question: What is the name of the venue where home team st kilda played? ### Answer: SELECT venue FROM table_name_83 WHERE home_team = "st kilda"
What is the home team score that played away team carlton?
CREATE TABLE table_name_60 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_60 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_60 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team score that played away team carlton? ### Answer: SELECT home_team AS score FROM table_name_60 WHERE away_team = "carlton"
When the Year is smaller than 2004, and Mike Joy is the Lap-by-lap, what are the Ratings?
CREATE TABLE table_name_86 (ratings VARCHAR, year VARCHAR, lap_by_lap VARCHAR)
SELECT ratings FROM table_name_86 WHERE year < 2004 AND lap_by_lap = "mike joy"
### Context: CREATE TABLE table_name_86 (ratings VARCHAR, year VARCHAR, lap_by_lap VARCHAR) ### Question: When the Year is smaller than 2004, and Mike Joy is the Lap-by-lap, what are the Ratings? ### Answer: SELECT ratings FROM table_name_86 WHERE year < 2004 AND lap_by_lap = "mike joy"
Which Network has Bill Weber for the Lap-by-lap?
CREATE TABLE table_name_90 (network VARCHAR, lap_by_lap VARCHAR)
SELECT network FROM table_name_90 WHERE lap_by_lap = "bill weber"
### Context: CREATE TABLE table_name_90 (network VARCHAR, lap_by_lap VARCHAR) ### Question: Which Network has Bill Weber for the Lap-by-lap? ### Answer: SELECT network FROM table_name_90 WHERE lap_by_lap = "bill weber"
Who was the Pre-Race Host when Mike Joy was the Lap-by-lap in the Year 2005?
CREATE TABLE table_name_87 (pre_race_host VARCHAR, lap_by_lap VARCHAR, year VARCHAR)
SELECT pre_race_host FROM table_name_87 WHERE lap_by_lap = "mike joy" AND year = 2005
### Context: CREATE TABLE table_name_87 (pre_race_host VARCHAR, lap_by_lap VARCHAR, year VARCHAR) ### Question: Who was the Pre-Race Host when Mike Joy was the Lap-by-lap in the Year 2005? ### Answer: SELECT pre_race_host FROM table_name_87 WHERE lap_by_lap = "mike joy" AND year = 2005
How many Years have Ratings of 10.9/23?
CREATE TABLE table_name_7 (year VARCHAR, ratings VARCHAR)
SELECT COUNT(year) FROM table_name_7 WHERE ratings = "10.9/23"
### Context: CREATE TABLE table_name_7 (year VARCHAR, ratings VARCHAR) ### Question: How many Years have Ratings of 10.9/23? ### Answer: SELECT COUNT(year) FROM table_name_7 WHERE ratings = "10.9/23"
What is the home team of lake oval's score?
CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_57 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team of lake oval's score? ### Answer: SELECT home_team AS score FROM table_name_57 WHERE venue = "lake oval"
When was victoria park used as a venue?
CREATE TABLE table_name_18 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_18 WHERE venue = "victoria park"
### Context: CREATE TABLE table_name_18 (date VARCHAR, venue VARCHAR) ### Question: When was victoria park used as a venue? ### Answer: SELECT date FROM table_name_18 WHERE venue = "victoria park"
Which date has an Away team of fitzroy?
CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_67 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) ### Question: Which date has an Away team of fitzroy? ### Answer: SELECT date FROM table_name_67 WHERE away_team = "fitzroy"
What is the largest crowd for a Home team of carlton?
CREATE TABLE table_name_96 (crowd INTEGER, home_team VARCHAR)
SELECT MAX(crowd) FROM table_name_96 WHERE home_team = "carlton"
### Context: CREATE TABLE table_name_96 (crowd INTEGER, home_team VARCHAR) ### Question: What is the largest crowd for a Home team of carlton? ### Answer: SELECT MAX(crowd) FROM table_name_96 WHERE home_team = "carlton"
When the Away team is melbourne, what's the lowest Crowd attended?
CREATE TABLE table_name_42 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_42 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_42 (crowd INTEGER, away_team VARCHAR) ### Question: When the Away team is melbourne, what's the lowest Crowd attended? ### Answer: SELECT MIN(crowd) FROM table_name_42 WHERE away_team = "melbourne"
When the Away team is essendon, what's the Home team score?
CREATE TABLE table_name_99 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_99 WHERE away_team = "essendon"
### Context: CREATE TABLE table_name_99 (home_team VARCHAR, away_team VARCHAR) ### Question: When the Away team is essendon, what's the Home team score? ### Answer: SELECT home_team AS score FROM table_name_99 WHERE away_team = "essendon"
If the Venue is brunswick street oval, what date was the game played ?
CREATE TABLE table_name_81 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_81 WHERE venue = "brunswick street oval"
### Context: CREATE TABLE table_name_81 (date VARCHAR, venue VARCHAR) ### Question: If the Venue is brunswick street oval, what date was the game played ? ### Answer: SELECT date FROM table_name_81 WHERE venue = "brunswick street oval"
Name the first for countries of trinidad and tobago for hutchinson for years before 2004
CREATE TABLE table_name_39 (first VARCHAR, year VARCHAR, country VARCHAR, last VARCHAR)
SELECT first FROM table_name_39 WHERE country = "trinidad and tobago" AND last = "hutchinson" AND year < 2004
### Context: CREATE TABLE table_name_39 (first VARCHAR, year VARCHAR, country VARCHAR, last VARCHAR) ### Question: Name the first for countries of trinidad and tobago for hutchinson for years before 2004 ### Answer: SELECT first FROM table_name_39 WHERE country = "trinidad and tobago" AND last = "hutchinson" AND year < 2004
Name the sport for canada in 2004
CREATE TABLE table_name_40 (sport VARCHAR, country VARCHAR, year VARCHAR)
SELECT sport FROM table_name_40 WHERE country = "canada" AND year = 2004
### Context: CREATE TABLE table_name_40 (sport VARCHAR, country VARCHAR, year VARCHAR) ### Question: Name the sport for canada in 2004 ### Answer: SELECT sport FROM table_name_40 WHERE country = "canada" AND year = 2004
Name the last for softball before 2000
CREATE TABLE table_name_95 (last VARCHAR, year VARCHAR, sport VARCHAR)
SELECT last FROM table_name_95 WHERE year < 2000 AND sport = "softball"
### Context: CREATE TABLE table_name_95 (last VARCHAR, year VARCHAR, sport VARCHAR) ### Question: Name the last for softball before 2000 ### Answer: SELECT last FROM table_name_95 WHERE year < 2000 AND sport = "softball"
Name the sum of year for swimming and first of mike
CREATE TABLE table_name_68 (year INTEGER, sport VARCHAR, first VARCHAR)
SELECT SUM(year) FROM table_name_68 WHERE sport = "swimming" AND first = "mike"
### Context: CREATE TABLE table_name_68 (year INTEGER, sport VARCHAR, first VARCHAR) ### Question: Name the sum of year for swimming and first of mike ### Answer: SELECT SUM(year) FROM table_name_68 WHERE sport = "swimming" AND first = "mike"
Name the sport for puerto rico and year of 2000
CREATE TABLE table_name_44 (sport VARCHAR, country VARCHAR, year VARCHAR)
SELECT sport FROM table_name_44 WHERE country = "puerto rico" AND year = 2000
### Context: CREATE TABLE table_name_44 (sport VARCHAR, country VARCHAR, year VARCHAR) ### Question: Name the sport for puerto rico and year of 2000 ### Answer: SELECT sport FROM table_name_44 WHERE country = "puerto rico" AND year = 2000
Cumulative point total for all teams playing on the Discovery Channel?
CREATE TABLE table_name_67 (points VARCHAR, team VARCHAR)
SELECT COUNT(points) FROM table_name_67 WHERE team = "discovery channel"
### Context: CREATE TABLE table_name_67 (points VARCHAR, team VARCHAR) ### Question: Cumulative point total for all teams playing on the Discovery Channel? ### Answer: SELECT COUNT(points) FROM table_name_67 WHERE team = "discovery channel"
Which player is from Belgium?
CREATE TABLE table_name_44 (name VARCHAR, nationality VARCHAR)
SELECT name FROM table_name_44 WHERE nationality = "belgium"
### Context: CREATE TABLE table_name_44 (name VARCHAR, nationality VARCHAR) ### Question: Which player is from Belgium? ### Answer: SELECT name FROM table_name_44 WHERE nationality = "belgium"
Who was the visiting team that played against the Kings?
CREATE TABLE table_name_42 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_42 WHERE home = "kings"
### Context: CREATE TABLE table_name_42 (visitor VARCHAR, home VARCHAR) ### Question: Who was the visiting team that played against the Kings? ### Answer: SELECT visitor FROM table_name_42 WHERE home = "kings"
Tell me the player for round more than 5 and position of c
CREATE TABLE table_name_25 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT player FROM table_name_25 WHERE round > 5 AND position = "c"
### Context: CREATE TABLE table_name_25 (player VARCHAR, round VARCHAR, position VARCHAR) ### Question: Tell me the player for round more than 5 and position of c ### Answer: SELECT player FROM table_name_25 WHERE round > 5 AND position = "c"
Tell me the college for carl hagelin
CREATE TABLE table_name_70 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_70 WHERE player = "carl hagelin"
### Context: CREATE TABLE table_name_70 (college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: Tell me the college for carl hagelin ### Answer: SELECT college_junior_club_team__league_ FROM table_name_70 WHERE player = "carl hagelin"
Which year has a total of 0 points and a chassis of Toleman tg181?
CREATE TABLE table_name_88 (year INTEGER, points VARCHAR, chassis VARCHAR)
SELECT AVG(year) FROM table_name_88 WHERE points = 0 AND chassis = "toleman tg181"
### Context: CREATE TABLE table_name_88 (year INTEGER, points VARCHAR, chassis VARCHAR) ### Question: Which year has a total of 0 points and a chassis of Toleman tg181? ### Answer: SELECT AVG(year) FROM table_name_88 WHERE points = 0 AND chassis = "toleman tg181"
What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine?
CREATE TABLE table_name_20 (year INTEGER, engine VARCHAR, points VARCHAR)
SELECT MAX(year) FROM table_name_20 WHERE engine = "renault ef15 1.5 v6 t" AND points > 5
### Context: CREATE TABLE table_name_20 (year INTEGER, engine VARCHAR, points VARCHAR) ### Question: What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine? ### Answer: SELECT MAX(year) FROM table_name_20 WHERE engine = "renault ef15 1.5 v6 t" AND points > 5
Which year had a toleman tg183 chassis?
CREATE TABLE table_name_36 (year VARCHAR, chassis VARCHAR)
SELECT COUNT(year) FROM table_name_36 WHERE chassis = "toleman tg183"
### Context: CREATE TABLE table_name_36 (year VARCHAR, chassis VARCHAR) ### Question: Which year had a toleman tg183 chassis? ### Answer: SELECT COUNT(year) FROM table_name_36 WHERE chassis = "toleman tg183"
What is the time for tony myres?
CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR)
SELECT time FROM table_name_13 WHERE rider = "tony myres"
### Context: CREATE TABLE table_name_13 (time VARCHAR, rider VARCHAR) ### Question: What is the time for tony myres? ### Answer: SELECT time FROM table_name_13 WHERE rider = "tony myres"
Name the speed for andy reynolds
CREATE TABLE table_name_41 (speed VARCHAR, rider VARCHAR)
SELECT speed FROM table_name_41 WHERE rider = "andy reynolds"
### Context: CREATE TABLE table_name_41 (speed VARCHAR, rider VARCHAR) ### Question: Name the speed for andy reynolds ### Answer: SELECT speed FROM table_name_41 WHERE rider = "andy reynolds"
Name the total number of rank for 348cc petty manx
CREATE TABLE table_name_54 (rank VARCHAR, team VARCHAR)
SELECT COUNT(rank) FROM table_name_54 WHERE team = "348cc petty manx"
### Context: CREATE TABLE table_name_54 (rank VARCHAR, team VARCHAR) ### Question: Name the total number of rank for 348cc petty manx ### Answer: SELECT COUNT(rank) FROM table_name_54 WHERE team = "348cc petty manx"
Name the speed for 1:36.46.93
CREATE TABLE table_name_13 (speed VARCHAR, time VARCHAR)
SELECT speed FROM table_name_13 WHERE time = "1:36.46.93"
### Context: CREATE TABLE table_name_13 (speed VARCHAR, time VARCHAR) ### Question: Name the speed for 1:36.46.93 ### Answer: SELECT speed FROM table_name_13 WHERE time = "1:36.46.93"
What is the away team score of Melbourne?
CREATE TABLE table_name_54 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_54 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_54 (away_team VARCHAR) ### Question: What is the away team score of Melbourne? ### Answer: SELECT away_team AS score FROM table_name_54 WHERE away_team = "melbourne"
What is the away team score for South Melbourne?
CREATE TABLE table_name_86 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_86 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_86 (away_team VARCHAR) ### Question: What is the away team score for South Melbourne? ### Answer: SELECT away_team AS score FROM table_name_86 WHERE away_team = "south melbourne"
What is Prime Mover of Model FM CFA-16-4?
CREATE TABLE table_name_87 (prime_mover VARCHAR, model VARCHAR)
SELECT prime_mover FROM table_name_87 WHERE model = "fm cfa-16-4"
### Context: CREATE TABLE table_name_87 (prime_mover VARCHAR, model VARCHAR) ### Question: What is Prime Mover of Model FM CFA-16-4? ### Answer: SELECT prime_mover FROM table_name_87 WHERE model = "fm cfa-16-4"
what was the purse ($) in illinois?
CREATE TABLE table_name_80 (purse__ INTEGER, location VARCHAR)
SELECT MAX(purse__) AS $__ FROM table_name_80 WHERE location = "illinois"
### Context: CREATE TABLE table_name_80 (purse__ INTEGER, location VARCHAR) ### Question: what was the purse ($) in illinois? ### Answer: SELECT MAX(purse__) AS $__ FROM table_name_80 WHERE location = "illinois"
who won with a score of 199 (-14) on oct 31?
CREATE TABLE table_name_21 (winner VARCHAR, score VARCHAR, date VARCHAR)
SELECT winner FROM table_name_21 WHERE score = "199 (-14)" AND date = "oct 31"
### Context: CREATE TABLE table_name_21 (winner VARCHAR, score VARCHAR, date VARCHAR) ### Question: who won with a score of 199 (-14) on oct 31? ### Answer: SELECT winner FROM table_name_21 WHERE score = "199 (-14)" AND date = "oct 31"
How many years did he play in santiago de compostela?
CREATE TABLE table_name_6 (year INTEGER, city VARCHAR)
SELECT SUM(year) FROM table_name_6 WHERE city = "santiago de compostela"
### Context: CREATE TABLE table_name_6 (year INTEGER, city VARCHAR) ### Question: How many years did he play in santiago de compostela? ### Answer: SELECT SUM(year) FROM table_name_6 WHERE city = "santiago de compostela"
What is the Total Finale of 女人唔易做?
CREATE TABLE table_name_64 (finale INTEGER, chinese_title VARCHAR)
SELECT SUM(finale) FROM table_name_64 WHERE chinese_title = "女人唔易做"
### Context: CREATE TABLE table_name_64 (finale INTEGER, chinese_title VARCHAR) ### Question: What is the Total Finale of 女人唔易做? ### Answer: SELECT SUM(finale) FROM table_name_64 WHERE chinese_title = "女人唔易做"
What is the lowest Premiere peaking at more than 35 with a Rank of 10 and Finale greater than 33?
CREATE TABLE table_name_25 (premiere INTEGER, finale VARCHAR, peak VARCHAR, rank VARCHAR)
SELECT MIN(premiere) FROM table_name_25 WHERE peak > 35 AND rank = 10 AND finale > 33
### Context: CREATE TABLE table_name_25 (premiere INTEGER, finale VARCHAR, peak VARCHAR, rank VARCHAR) ### Question: What is the lowest Premiere peaking at more than 35 with a Rank of 10 and Finale greater than 33? ### Answer: SELECT MIN(premiere) FROM table_name_25 WHERE peak > 35 AND rank = 10 AND finale > 33
What is the Chinese Title Premiering 32 with 2.07 million HK viewers?
CREATE TABLE table_name_60 (chinese_title VARCHAR, hk_viewers VARCHAR, premiere VARCHAR)
SELECT chinese_title FROM table_name_60 WHERE hk_viewers = "2.07 million" AND premiere = 32
### Context: CREATE TABLE table_name_60 (chinese_title VARCHAR, hk_viewers VARCHAR, premiere VARCHAR) ### Question: What is the Chinese Title Premiering 32 with 2.07 million HK viewers? ### Answer: SELECT chinese_title FROM table_name_60 WHERE hk_viewers = "2.07 million" AND premiere = 32
What is the Average of Men in Pain with a Finale of less than 33?
CREATE TABLE table_name_70 (average INTEGER, english_title VARCHAR, finale VARCHAR)
SELECT AVG(average) FROM table_name_70 WHERE english_title = "men in pain" AND finale < 33
### Context: CREATE TABLE table_name_70 (average INTEGER, english_title VARCHAR, finale VARCHAR) ### Question: What is the Average of Men in Pain with a Finale of less than 33? ### Answer: SELECT AVG(average) FROM table_name_70 WHERE english_title = "men in pain" AND finale < 33
What Chinese Title Ranking #7 has an Average of 32 and Peak less than 38?
CREATE TABLE table_name_3 (chinese_title VARCHAR, rank VARCHAR, average VARCHAR, peak VARCHAR)
SELECT chinese_title FROM table_name_3 WHERE average = 32 AND peak < 38 AND rank = 7
### Context: CREATE TABLE table_name_3 (chinese_title VARCHAR, rank VARCHAR, average VARCHAR, peak VARCHAR) ### Question: What Chinese Title Ranking #7 has an Average of 32 and Peak less than 38? ### Answer: SELECT chinese_title FROM table_name_3 WHERE average = 32 AND peak < 38 AND rank = 7
What is the average crowd size for corio oval?
CREATE TABLE table_name_9 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_9 WHERE venue = "corio oval"
### Context: CREATE TABLE table_name_9 (crowd INTEGER, venue VARCHAR) ### Question: What is the average crowd size for corio oval? ### Answer: SELECT AVG(crowd) FROM table_name_9 WHERE venue = "corio oval"
What is the average crowd size for Brunswick street oval?
CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_32 WHERE venue = "brunswick street oval"
### Context: CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR) ### Question: What is the average crowd size for Brunswick street oval? ### Answer: SELECT AVG(crowd) FROM table_name_32 WHERE venue = "brunswick street oval"
What day did the team play in murcia with a score of 0-3 after 1992?
CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, year VARCHAR, location VARCHAR)
SELECT date FROM table_name_15 WHERE year > 1992 AND location = "murcia" AND score = "0-3"
### Context: CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, year VARCHAR, location VARCHAR) ### Question: What day did the team play in murcia with a score of 0-3 after 1992? ### Answer: SELECT date FROM table_name_15 WHERE year > 1992 AND location = "murcia" AND score = "0-3"
What location did the team win before 1998 in the europe/africa zone, group i, round robin?
CREATE TABLE table_name_96 (location VARCHAR, year VARCHAR, competition VARCHAR, result VARCHAR)
SELECT location FROM table_name_96 WHERE competition = "europe/africa zone, group i, round robin" AND result = "win" AND year < 1998
### Context: CREATE TABLE table_name_96 (location VARCHAR, year VARCHAR, competition VARCHAR, result VARCHAR) ### Question: What location did the team win before 1998 in the europe/africa zone, group i, round robin? ### Answer: SELECT location FROM table_name_96 WHERE competition = "europe/africa zone, group i, round robin" AND result = "win" AND year < 1998
What day did they record a score of 1-2 in 1994?
CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR, year VARCHAR)
SELECT date FROM table_name_55 WHERE score = "1-2" AND year = 1994
### Context: CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR, year VARCHAR) ### Question: What day did they record a score of 1-2 in 1994? ### Answer: SELECT date FROM table_name_55 WHERE score = "1-2" AND year = 1994
When the country is austria germany and the rank is kept under 5, what's the average number of matches played?
CREATE TABLE table_name_91 (matches INTEGER, country VARCHAR, rank VARCHAR)
SELECT AVG(matches) FROM table_name_91 WHERE country = "austria germany" AND rank < 5
### Context: CREATE TABLE table_name_91 (matches INTEGER, country VARCHAR, rank VARCHAR) ### Question: When the country is austria germany and the rank is kept under 5, what's the average number of matches played? ### Answer: SELECT AVG(matches) FROM table_name_91 WHERE country = "austria germany" AND rank < 5
Which country does the player pele belong to?
CREATE TABLE table_name_85 (country VARCHAR, name VARCHAR)
SELECT country FROM table_name_85 WHERE name = "pele"
### Context: CREATE TABLE table_name_85 (country VARCHAR, name VARCHAR) ### Question: Which country does the player pele belong to? ### Answer: SELECT country FROM table_name_85 WHERE name = "pele"
What is the earliest game that had 42,707 attending?
CREATE TABLE table_name_94 (game INTEGER, attendance VARCHAR)
SELECT MIN(game) FROM table_name_94 WHERE attendance = 42 OFFSET 707
### Context: CREATE TABLE table_name_94 (game INTEGER, attendance VARCHAR) ### Question: What is the earliest game that had 42,707 attending? ### Answer: SELECT MIN(game) FROM table_name_94 WHERE attendance = 42 OFFSET 707
What is the sum of the figure skating scores whose total is less than 117.78?
CREATE TABLE table_name_13 (figures INTEGER, total INTEGER)
SELECT SUM(figures) FROM table_name_13 WHERE total < 117.78
### Context: CREATE TABLE table_name_13 (figures INTEGER, total INTEGER) ### Question: What is the sum of the figure skating scores whose total is less than 117.78? ### Answer: SELECT SUM(figures) FROM table_name_13 WHERE total < 117.78
What is the lowest total score among skaters from West Germany with a rank of 20 and a figure skating score less than 74.85?
CREATE TABLE table_name_81 (total INTEGER, figures VARCHAR, nation VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_81 WHERE nation = "west germany" AND rank = 20 AND figures < 74.85
### Context: CREATE TABLE table_name_81 (total INTEGER, figures VARCHAR, nation VARCHAR, rank VARCHAR) ### Question: What is the lowest total score among skaters from West Germany with a rank of 20 and a figure skating score less than 74.85? ### Answer: SELECT MIN(total) FROM table_name_81 WHERE nation = "west germany" AND rank = 20 AND figures < 74.85
How many placings did Jacqueline du Bief earn where her total score is greater than 131.26?
CREATE TABLE table_name_72 (placings VARCHAR, total VARCHAR, name VARCHAR)
SELECT placings FROM table_name_72 WHERE total > 131.26 AND name = "jacqueline du bief"
### Context: CREATE TABLE table_name_72 (placings VARCHAR, total VARCHAR, name VARCHAR) ### Question: How many placings did Jacqueline du Bief earn where her total score is greater than 131.26? ### Answer: SELECT placings FROM table_name_72 WHERE total > 131.26 AND name = "jacqueline du bief"
Can you tell me the Placings that hasthe Free smaller than 524.3, and the Total smaller than 1170.1, and the Name of per cock-clausen?
CREATE TABLE table_name_34 (placings VARCHAR, name VARCHAR, free VARCHAR, total VARCHAR)
SELECT placings FROM table_name_34 WHERE free < 524.3 AND total < 1170.1 AND name = "per cock-clausen"
### Context: CREATE TABLE table_name_34 (placings VARCHAR, name VARCHAR, free VARCHAR, total VARCHAR) ### Question: Can you tell me the Placings that hasthe Free smaller than 524.3, and the Total smaller than 1170.1, and the Name of per cock-clausen? ### Answer: SELECT placings FROM table_name_34 WHERE free < 524.3 AND total < 1170.1 AND name = "per cock-clausen"
Can you tell me the average Figures that has the Placings of 34, and the Total larger than 1247.51?
CREATE TABLE table_name_63 (figures INTEGER, placings VARCHAR, total VARCHAR)
SELECT AVG(figures) FROM table_name_63 WHERE placings = 34 AND total > 1247.51
### Context: CREATE TABLE table_name_63 (figures INTEGER, placings VARCHAR, total VARCHAR) ### Question: Can you tell me the average Figures that has the Placings of 34, and the Total larger than 1247.51? ### Answer: SELECT AVG(figures) FROM table_name_63 WHERE placings = 34 AND total > 1247.51
What is the result where the opponent is Columbus Destroyers?
CREATE TABLE table_name_99 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_99 WHERE opponent = "columbus destroyers"
### Context: CREATE TABLE table_name_99 (result VARCHAR, opponent VARCHAR) ### Question: What is the result where the opponent is Columbus Destroyers? ### Answer: SELECT result FROM table_name_99 WHERE opponent = "columbus destroyers"
What is the date of the away game in week 8?
CREATE TABLE table_name_2 (date VARCHAR, home_away_game VARCHAR, week VARCHAR)
SELECT date FROM table_name_2 WHERE home_away_game = "away" AND week = 8
### Context: CREATE TABLE table_name_2 (date VARCHAR, home_away_game VARCHAR, week VARCHAR) ### Question: What is the date of the away game in week 8? ### Answer: SELECT date FROM table_name_2 WHERE home_away_game = "away" AND week = 8
Which grand prix had gerhard berger in his fastest lap and a jacques villeneuve pole position?
CREATE TABLE table_name_24 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
SELECT grand_prix FROM table_name_24 WHERE fastest_lap = "gerhard berger" AND pole_position = "jacques villeneuve"
### Context: CREATE TABLE table_name_24 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### Question: Which grand prix had gerhard berger in his fastest lap and a jacques villeneuve pole position? ### Answer: SELECT grand_prix FROM table_name_24 WHERE fastest_lap = "gerhard berger" AND pole_position = "jacques villeneuve"
What's the 2003 result for the falkirk council?
CREATE TABLE table_name_97 (council VARCHAR)
SELECT 2003 AS _result FROM table_name_97 WHERE council = "falkirk"
### Context: CREATE TABLE table_name_97 (council VARCHAR) ### Question: What's the 2003 result for the falkirk council? ### Answer: SELECT 2003 AS _result FROM table_name_97 WHERE council = "falkirk"
On which date was the manager fired and replaced by Albert Cartier?
CREATE TABLE table_name_70 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_name_70 WHERE manner_of_departure = "fired" AND replaced_by = "albert cartier"
### Context: CREATE TABLE table_name_70 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR) ### Question: On which date was the manager fired and replaced by Albert Cartier? ### Answer: SELECT date_of_vacancy FROM table_name_70 WHERE manner_of_departure = "fired" AND replaced_by = "albert cartier"
What was the manner of departure for the team Anderlecht?
CREATE TABLE table_name_70 (manner_of_departure VARCHAR, team VARCHAR)
SELECT manner_of_departure FROM table_name_70 WHERE team = "anderlecht"
### Context: CREATE TABLE table_name_70 (manner_of_departure VARCHAR, team VARCHAR) ### Question: What was the manner of departure for the team Anderlecht? ### Answer: SELECT manner_of_departure FROM table_name_70 WHERE team = "anderlecht"
What was the manner of depature when the date of appointment was 27 December 2007?
CREATE TABLE table_name_52 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
SELECT manner_of_departure FROM table_name_52 WHERE date_of_appointment = "27 december 2007"
### Context: CREATE TABLE table_name_52 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) ### Question: What was the manner of depature when the date of appointment was 27 December 2007? ### Answer: SELECT manner_of_departure FROM table_name_52 WHERE date_of_appointment = "27 december 2007"
Who was the replacement for the Brussels team with a date of vacancy of 22 December 2007?
CREATE TABLE table_name_46 (replaced_by VARCHAR, team VARCHAR, date_of_vacancy VARCHAR)
SELECT replaced_by FROM table_name_46 WHERE team = "brussels" AND date_of_vacancy = "22 december 2007"
### Context: CREATE TABLE table_name_46 (replaced_by VARCHAR, team VARCHAR, date_of_vacancy VARCHAR) ### Question: Who was the replacement for the Brussels team with a date of vacancy of 22 December 2007? ### Answer: SELECT replaced_by FROM table_name_46 WHERE team = "brussels" AND date_of_vacancy = "22 december 2007"
What was the date of vacancy where the replacement was Albert Cartier and the manager was fired?
CREATE TABLE table_name_9 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_name_9 WHERE manner_of_departure = "fired" AND replaced_by = "albert cartier"
### Context: CREATE TABLE table_name_9 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR) ### Question: What was the date of vacancy where the replacement was Albert Cartier and the manager was fired? ### Answer: SELECT date_of_vacancy FROM table_name_9 WHERE manner_of_departure = "fired" AND replaced_by = "albert cartier"
What is the Tallangatta DFL losses greater than 2 and an against greater than 1013
CREATE TABLE table_name_49 (tallangatta_dfl VARCHAR, against VARCHAR, losses VARCHAR)
SELECT tallangatta_dfl FROM table_name_49 WHERE against > 1013 AND losses > 2
### Context: CREATE TABLE table_name_49 (tallangatta_dfl VARCHAR, against VARCHAR, losses VARCHAR) ### Question: What is the Tallangatta DFL losses greater than 2 and an against greater than 1013 ### Answer: SELECT tallangatta_dfl FROM table_name_49 WHERE against > 1013 AND losses > 2
What are the average byes that are greater than 1479, wins greater than 5 and 0 draws?
CREATE TABLE table_name_5 (byes INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)
SELECT AVG(byes) FROM table_name_5 WHERE against > 1479 AND wins > 5 AND draws < 0
### Context: CREATE TABLE table_name_5 (byes INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR) ### Question: What are the average byes that are greater than 1479, wins greater than 5 and 0 draws? ### Answer: SELECT AVG(byes) FROM table_name_5 WHERE against > 1479 AND wins > 5 AND draws < 0
Tell me the average year for rank more than 3 and 28 floors
CREATE TABLE table_name_84 (year INTEGER, rank VARCHAR, floors VARCHAR)
SELECT AVG(year) FROM table_name_84 WHERE rank > 3 AND floors = 28
### Context: CREATE TABLE table_name_84 (year INTEGER, rank VARCHAR, floors VARCHAR) ### Question: Tell me the average year for rank more than 3 and 28 floors ### Answer: SELECT AVG(year) FROM table_name_84 WHERE rank > 3 AND floors = 28
I want the name for rank less than 6 and year more than 1974
CREATE TABLE table_name_75 (name VARCHAR, rank VARCHAR, year VARCHAR)
SELECT name FROM table_name_75 WHERE rank < 6 AND year > 1974
### Context: CREATE TABLE table_name_75 (name VARCHAR, rank VARCHAR, year VARCHAR) ### Question: I want the name for rank less than 6 and year more than 1974 ### Answer: SELECT name FROM table_name_75 WHERE rank < 6 AND year > 1974
What is the average rank of Great Britain when their total is over 4?
CREATE TABLE table_name_80 (rank INTEGER, total VARCHAR, nation VARCHAR)
SELECT AVG(rank) FROM table_name_80 WHERE total > 4 AND nation = "great britain"
### Context: CREATE TABLE table_name_80 (rank INTEGER, total VARCHAR, nation VARCHAR) ### Question: What is the average rank of Great Britain when their total is over 4? ### Answer: SELECT AVG(rank) FROM table_name_80 WHERE total > 4 AND nation = "great britain"
What is the total number of Silvers held by France when their rank was over 14?
CREATE TABLE table_name_63 (silver VARCHAR, nation VARCHAR, rank VARCHAR)
SELECT COUNT(silver) FROM table_name_63 WHERE nation = "france" AND rank > 14
### Context: CREATE TABLE table_name_63 (silver VARCHAR, nation VARCHAR, rank VARCHAR) ### Question: What is the total number of Silvers held by France when their rank was over 14? ### Answer: SELECT COUNT(silver) FROM table_name_63 WHERE nation = "france" AND rank > 14
Who was the home team at the game held at Princes Park?
CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_76 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team at the game held at Princes Park? ### Answer: SELECT home_team FROM table_name_76 WHERE venue = "princes park"
Who was the home team when Hawthorn was the away team?
CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_39 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team when Hawthorn was the away team? ### Answer: SELECT home_team FROM table_name_39 WHERE away_team = "hawthorn"
What was the Rockies record at their game that had a loss of Hernandez (3–5)?
CREATE TABLE table_name_21 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_21 WHERE loss = "hernandez (3–5)"
### Context: CREATE TABLE table_name_21 (record VARCHAR, loss VARCHAR) ### Question: What was the Rockies record at their game that had a loss of Hernandez (3–5)? ### Answer: SELECT record FROM table_name_21 WHERE loss = "hernandez (3–5)"
What engine has g tyres and is driven by elio de angelis?
CREATE TABLE table_name_30 (engine VARCHAR, tyres VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_30 WHERE tyres = "g" AND driver = "elio de angelis"
### Context: CREATE TABLE table_name_30 (engine VARCHAR, tyres VARCHAR, driver VARCHAR) ### Question: What engine has g tyres and is driven by elio de angelis? ### Answer: SELECT engine FROM table_name_30 WHERE tyres = "g" AND driver = "elio de angelis"
What rounds does elio de angelis drive?
CREATE TABLE table_name_8 (rounds VARCHAR, driver VARCHAR)
SELECT rounds FROM table_name_8 WHERE driver = "elio de angelis"
### Context: CREATE TABLE table_name_8 (rounds VARCHAR, driver VARCHAR) ### Question: What rounds does elio de angelis drive? ### Answer: SELECT rounds FROM table_name_8 WHERE driver = "elio de angelis"
Who is the constructor for driver alan jones using a chassis of fw06 fw07?
CREATE TABLE table_name_93 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_93 WHERE chassis = "fw06 fw07" AND driver = "alan jones"
### Context: CREATE TABLE table_name_93 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR) ### Question: Who is the constructor for driver alan jones using a chassis of fw06 fw07? ### Answer: SELECT constructor FROM table_name_93 WHERE chassis = "fw06 fw07" AND driver = "alan jones"
What engine does driver james hunt have?
CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_94 WHERE driver = "james hunt"
### Context: CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR) ### Question: What engine does driver james hunt have? ### Answer: SELECT engine FROM table_name_94 WHERE driver = "james hunt"
What's the engine used for rounds 5-6?
CREATE TABLE table_name_1 (engine VARCHAR, rounds VARCHAR)
SELECT engine FROM table_name_1 WHERE rounds = "5-6"
### Context: CREATE TABLE table_name_1 (engine VARCHAR, rounds VARCHAR) ### Question: What's the engine used for rounds 5-6? ### Answer: SELECT engine FROM table_name_1 WHERE rounds = "5-6"
Who was the home team at Princes Park?
CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_41 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team at Princes Park? ### Answer: SELECT home_team AS score FROM table_name_41 WHERE venue = "princes park"
Tell me the city/state for the holden racing team with winner of mark skaife todd kelly
CREATE TABLE table_name_33 (city___state VARCHAR, team VARCHAR, winner VARCHAR)
SELECT city___state FROM table_name_33 WHERE team = "holden racing team" AND winner = "mark skaife todd kelly"
### Context: CREATE TABLE table_name_33 (city___state VARCHAR, team VARCHAR, winner VARCHAR) ### Question: Tell me the city/state for the holden racing team with winner of mark skaife todd kelly ### Answer: SELECT city___state FROM table_name_33 WHERE team = "holden racing team" AND winner = "mark skaife todd kelly"
What is the engine configuration of the 1.2 mpi engine?
CREATE TABLE table_name_80 (engine_configuration VARCHAR, engine_name VARCHAR)
SELECT engine_configuration FROM table_name_80 WHERE engine_name = "1.2 mpi"
### Context: CREATE TABLE table_name_80 (engine_configuration VARCHAR, engine_name VARCHAR) ### Question: What is the engine configuration of the 1.2 mpi engine? ### Answer: SELECT engine_configuration FROM table_name_80 WHERE engine_name = "1.2 mpi"
What is the max torque of the 1.2 mpi engine?
CREATE TABLE table_name_11 (max_torque_at_rpm VARCHAR, engine_name VARCHAR)
SELECT max_torque_at_rpm FROM table_name_11 WHERE engine_name = "1.2 mpi"
### Context: CREATE TABLE table_name_11 (max_torque_at_rpm VARCHAR, engine_name VARCHAR) ### Question: What is the max torque of the 1.2 mpi engine? ### Answer: SELECT max_torque_at_rpm FROM table_name_11 WHERE engine_name = "1.2 mpi"
Tell me the long for charles frederick
CREATE TABLE table_name_93 (long VARCHAR, player VARCHAR)
SELECT long FROM table_name_93 WHERE player = "charles frederick"
### Context: CREATE TABLE table_name_93 (long VARCHAR, player VARCHAR) ### Question: Tell me the long for charles frederick ### Answer: SELECT long FROM table_name_93 WHERE player = "charles frederick"
Tell me the average for 1 yards
CREATE TABLE table_name_65 (avg VARCHAR, yards VARCHAR)
SELECT avg FROM table_name_65 WHERE yards = "1"
### Context: CREATE TABLE table_name_65 (avg VARCHAR, yards VARCHAR) ### Question: Tell me the average for 1 yards ### Answer: SELECT avg FROM table_name_65 WHERE yards = "1"
Which time/retired had 75 laps and Pedro de la Rosa as a driver?
CREATE TABLE table_name_86 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_86 WHERE laps = 75 AND driver = "pedro de la rosa"
### Context: CREATE TABLE table_name_86 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) ### Question: Which time/retired had 75 laps and Pedro de la Rosa as a driver? ### Answer: SELECT time_retired FROM table_name_86 WHERE laps = 75 AND driver = "pedro de la rosa"
What is the total number in the season for the #30 Robert Berlinger series?
CREATE TABLE table_name_73 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
SELECT COUNT(no_in_season) FROM table_name_73 WHERE directed_by = "robert berlinger" AND no_in_series = 30
### Context: CREATE TABLE table_name_73 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) ### Question: What is the total number in the season for the #30 Robert Berlinger series? ### Answer: SELECT COUNT(no_in_season) FROM table_name_73 WHERE directed_by = "robert berlinger" AND no_in_series = 30
When did Julie gets Validated originally air?
CREATE TABLE table_name_84 (original_air_date VARCHAR, title VARCHAR)
SELECT original_air_date FROM table_name_84 WHERE title = "julie gets validated"
### Context: CREATE TABLE table_name_84 (original_air_date VARCHAR, title VARCHAR) ### Question: When did Julie gets Validated originally air? ### Answer: SELECT original_air_date FROM table_name_84 WHERE title = "julie gets validated"
Who was the number 24 series written by?
CREATE TABLE table_name_36 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_name_36 WHERE no_in_series = 24
### Context: CREATE TABLE table_name_36 (written_by VARCHAR, no_in_series VARCHAR) ### Question: Who was the number 24 series written by? ### Answer: SELECT written_by FROM table_name_36 WHERE no_in_series = 24
When did Boyd Hale's Julie gets Validated originally air?
CREATE TABLE table_name_87 (original_air_date VARCHAR, written_by VARCHAR, title VARCHAR)
SELECT original_air_date FROM table_name_87 WHERE written_by = "boyd hale" AND title = "julie gets validated"
### Context: CREATE TABLE table_name_87 (original_air_date VARCHAR, written_by VARCHAR, title VARCHAR) ### Question: When did Boyd Hale's Julie gets Validated originally air? ### Answer: SELECT original_air_date FROM table_name_87 WHERE written_by = "boyd hale" AND title = "julie gets validated"
What was the Queens number when Brooklyn was 201,866?
CREATE TABLE table_name_57 (queens VARCHAR, brooklyn VARCHAR)
SELECT queens FROM table_name_57 WHERE brooklyn = "201,866"
### Context: CREATE TABLE table_name_57 (queens VARCHAR, brooklyn VARCHAR) ### Question: What was the Queens number when Brooklyn was 201,866? ### Answer: SELECT queens FROM table_name_57 WHERE brooklyn = "201,866"
Which Manhattan number appeared when Richmond (Staten Island) was 78%?
CREATE TABLE table_name_21 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
SELECT manhattan FROM table_name_21 WHERE richmond_[staten_is] = "78%"
### Context: CREATE TABLE table_name_21 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR) ### Question: Which Manhattan number appeared when Richmond (Staten Island) was 78%? ### Answer: SELECT manhattan FROM table_name_21 WHERE richmond_[staten_is] = "78%"
What did the home team score against Fitzroy?
CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_61 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR) ### Question: What did the home team score against Fitzroy? ### Answer: SELECT home_team AS score FROM table_name_61 WHERE away_team = "fitzroy"
Who is the listed opponent in Week 2?
CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_24 WHERE week = 2
### Context: CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR) ### Question: Who is the listed opponent in Week 2? ### Answer: SELECT opponent FROM table_name_24 WHERE week = 2
What date has attendance listed as 45,024?
CREATE TABLE table_name_11 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_11 WHERE attendance = "45,024"
### Context: CREATE TABLE table_name_11 (date VARCHAR, attendance VARCHAR) ### Question: What date has attendance listed as 45,024? ### Answer: SELECT date FROM table_name_11 WHERE attendance = "45,024"
What numbered pick was mattias ohlund, with over 52 PL GP, and also a round under 11?
CREATE TABLE table_name_82 (pick__number INTEGER, pl_gp VARCHAR, rd__number VARCHAR, player VARCHAR)
SELECT SUM(pick__number) FROM table_name_82 WHERE rd__number < 11 AND player = "mattias ohlund" AND pl_gp > 52
### Context: CREATE TABLE table_name_82 (pick__number INTEGER, pl_gp VARCHAR, rd__number VARCHAR, player VARCHAR) ### Question: What numbered pick was mattias ohlund, with over 52 PL GP, and also a round under 11? ### Answer: SELECT SUM(pick__number) FROM table_name_82 WHERE rd__number < 11 AND player = "mattias ohlund" AND pl_gp > 52
How many reg GP for mattias ohlund?
CREATE TABLE table_name_35 (reg_gp VARCHAR, player VARCHAR)
SELECT COUNT(reg_gp) FROM table_name_35 WHERE player = "mattias ohlund"
### Context: CREATE TABLE table_name_35 (reg_gp VARCHAR, player VARCHAR) ### Question: How many reg GP for mattias ohlund? ### Answer: SELECT COUNT(reg_gp) FROM table_name_35 WHERE player = "mattias ohlund"
What is the average attendance against the expos?
CREATE TABLE table_name_57 (attendance INTEGER, opponent VARCHAR)
SELECT AVG(attendance) FROM table_name_57 WHERE opponent = "expos"
### Context: CREATE TABLE table_name_57 (attendance INTEGER, opponent VARCHAR) ### Question: What is the average attendance against the expos? ### Answer: SELECT AVG(attendance) FROM table_name_57 WHERE opponent = "expos"
What is the team's record on april 12?
CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_11 WHERE date = "april 12"
### Context: CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR) ### Question: What is the team's record on april 12? ### Answer: SELECT record FROM table_name_11 WHERE date = "april 12"