question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what is the date when the score is 115-93?
CREATE TABLE table_name_68 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_68 WHERE score = "115-93"
### Context: CREATE TABLE table_name_68 (date VARCHAR, score VARCHAR) ### Question: what is the date when the score is 115-93? ### Answer: SELECT date FROM table_name_68 WHERE score = "115-93"
what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre?
CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_64 WHERE away_team = "new zealand breakers" AND venue = "cairns convention centre"
### Context: CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR, venue VARCHAR) ### Question: what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre? ### Answer: SELECT AVG(crowd) FROM table_name_64 WHERE away_team = "new zealand breakers" AND venue = "cairns convention centre"
how many times is the home team wollongong hawks?
CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = "wollongong hawks"
### Context: CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR) ### Question: how many times is the home team wollongong hawks? ### Answer: SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = "wollongong hawks"
what is the date when the venue is gold coast convention centre?
CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_70 WHERE venue = "gold coast convention centre"
### Context: CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR) ### Question: what is the date when the venue is gold coast convention centre? ### Answer: SELECT date FROM table_name_70 WHERE venue = "gold coast convention centre"
Which Score has Points smaller than 67, and a Home of calgary flames?
CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR)
SELECT score FROM table_name_45 WHERE points < 67 AND home = "calgary flames"
### Context: CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR) ### Question: Which Score has Points smaller than 67, and a Home of calgary flames? ### Answer: SELECT score FROM table_name_45 WHERE points < 67 AND home = "calgary flames"
Whic Date has a Score of 4–2?
CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_33 WHERE score = "4–2"
### Context: CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR) ### Question: Whic Date has a Score of 4–2? ### Answer: SELECT date FROM table_name_33 WHERE score = "4–2"
Which Decision has a Record of 29–18–6?
CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR)
SELECT decision FROM table_name_53 WHERE record = "29–18–6"
### Context: CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR) ### Question: Which Decision has a Record of 29–18–6? ### Answer: SELECT decision FROM table_name_53 WHERE record = "29–18–6"
Which Date has a Score of 4–2?
CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_14 WHERE score = "4–2"
### Context: CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR) ### Question: Which Date has a Score of 4–2? ### Answer: SELECT date FROM table_name_14 WHERE score = "4–2"
How many losses did the coach who served under 1 season and in 1975 have?
CREATE TABLE table_name_93 (lost VARCHAR, years VARCHAR, seasons VARCHAR)
SELECT COUNT(lost) FROM table_name_93 WHERE years = "1975" AND seasons < 1
### Context: CREATE TABLE table_name_93 (lost VARCHAR, years VARCHAR, seasons VARCHAR) ### Question: How many losses did the coach who served under 1 season and in 1975 have? ### Answer: SELECT COUNT(lost) FROM table_name_93 WHERE years = "1975" AND seasons < 1
What is the number of seasons coached by Kathy Graham?
CREATE TABLE table_name_2 (seasons INTEGER, name VARCHAR)
SELECT MIN(seasons) FROM table_name_2 WHERE name = "kathy graham"
### Context: CREATE TABLE table_name_2 (seasons INTEGER, name VARCHAR) ### Question: What is the number of seasons coached by Kathy Graham? ### Answer: SELECT MIN(seasons) FROM table_name_2 WHERE name = "kathy graham"
What is the result on September 25, 1966?
CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_80 WHERE date = "september 25, 1966"
### Context: CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR) ### Question: What is the result on September 25, 1966? ### Answer: SELECT result FROM table_name_80 WHERE date = "september 25, 1966"
What is the attendance of the game on November 20, 1966 after week 10?
CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_54 WHERE week > 10 AND date = "november 20, 1966"
### Context: CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR) ### Question: What is the attendance of the game on November 20, 1966 after week 10? ### Answer: SELECT attendance FROM table_name_54 WHERE week > 10 AND date = "november 20, 1966"
Who is the opponent on week 2?
CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_73 WHERE week = 2
### Context: CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR) ### Question: Who is the opponent on week 2? ### Answer: SELECT opponent FROM table_name_73 WHERE week = 2
Who is the opponent on November 20, 1966?
CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_88 WHERE date = "november 20, 1966"
### Context: CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR) ### Question: Who is the opponent on November 20, 1966? ### Answer: SELECT opponent FROM table_name_88 WHERE date = "november 20, 1966"
What is the attendance of the game with the NY Islanders as home team?
CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR)
SELECT COUNT(attendance) FROM table_name_59 WHERE home = "ny islanders"
### Context: CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR) ### Question: What is the attendance of the game with the NY Islanders as home team? ### Answer: SELECT COUNT(attendance) FROM table_name_59 WHERE home = "ny islanders"
What was the date of the game against seattle?
CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_52 WHERE opponent = "seattle"
### Context: CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR) ### Question: What was the date of the game against seattle? ### Answer: SELECT date FROM table_name_52 WHERE opponent = "seattle"
Who were the opponents during game 30?
CREATE TABLE table_name_82 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_82 WHERE game = 30
### Context: CREATE TABLE table_name_82 (opponent VARCHAR, game VARCHAR) ### Question: Who were the opponents during game 30? ### Answer: SELECT opponent FROM table_name_82 WHERE game = 30
What was the record during the game with a score of 78-59?
CREATE TABLE table_name_52 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_52 WHERE score = "78-59"
### Context: CREATE TABLE table_name_52 (record VARCHAR, score VARCHAR) ### Question: What was the record during the game with a score of 78-59? ### Answer: SELECT record FROM table_name_52 WHERE score = "78-59"
Which mlb team is located in maryland?
CREATE TABLE table_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR)
SELECT team FROM table_name_95 WHERE state_province = "maryland" AND league = "mlb"
### Context: CREATE TABLE table_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR) ### Question: Which mlb team is located in maryland? ### Answer: SELECT team FROM table_name_95 WHERE state_province = "maryland" AND league = "mlb"
What team is located in brooklyn?
CREATE TABLE table_name_5 (team VARCHAR, city VARCHAR)
SELECT team FROM table_name_5 WHERE city = "brooklyn"
### Context: CREATE TABLE table_name_5 (team VARCHAR, city VARCHAR) ### Question: What team is located in brooklyn? ### Answer: SELECT team FROM table_name_5 WHERE city = "brooklyn"
In what year was the cfl team in edmonton, alberta established?
CREATE TABLE table_name_6 (est VARCHAR, city VARCHAR, state_province VARCHAR, league VARCHAR)
SELECT est FROM table_name_6 WHERE state_province = "alberta" AND league = "cfl" AND city = "edmonton"
### Context: CREATE TABLE table_name_6 (est VARCHAR, city VARCHAR, state_province VARCHAR, league VARCHAR) ### Question: In what year was the cfl team in edmonton, alberta established? ### Answer: SELECT est FROM table_name_6 WHERE state_province = "alberta" AND league = "cfl" AND city = "edmonton"
In what year was the NFL team in chicago illinois established?
CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR)
SELECT est FROM table_name_96 WHERE state_province = "illinois" AND city = "chicago" AND league = "nfl"
### Context: CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR) ### Question: In what year was the NFL team in chicago illinois established? ### Answer: SELECT est FROM table_name_96 WHERE state_province = "illinois" AND city = "chicago" AND league = "nfl"
Which team is located in missouri and was established in 1963?
CREATE TABLE table_name_99 (team VARCHAR, state_province VARCHAR, est VARCHAR)
SELECT team FROM table_name_99 WHERE state_province = "missouri" AND est = "1963"
### Context: CREATE TABLE table_name_99 (team VARCHAR, state_province VARCHAR, est VARCHAR) ### Question: Which team is located in missouri and was established in 1963? ### Answer: SELECT team FROM table_name_99 WHERE state_province = "missouri" AND est = "1963"
Which event was Ye Shiwen in?
CREATE TABLE table_name_23 (event VARCHAR, name VARCHAR)
SELECT event FROM table_name_23 WHERE name = "ye shiwen"
### Context: CREATE TABLE table_name_23 (event VARCHAR, name VARCHAR) ### Question: Which event was Ye Shiwen in? ### Answer: SELECT event FROM table_name_23 WHERE name = "ye shiwen"
Who had a time of 26.11?
CREATE TABLE table_name_39 (name VARCHAR, time VARCHAR)
SELECT name FROM table_name_39 WHERE time = "26.11"
### Context: CREATE TABLE table_name_39 (name VARCHAR, time VARCHAR) ### Question: Who had a time of 26.11? ### Answer: SELECT name FROM table_name_39 WHERE time = "26.11"
What was the date in which the time was 2:16.08?
CREATE TABLE table_name_31 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_31 WHERE time = "2:16.08"
### Context: CREATE TABLE table_name_31 (date VARCHAR, time VARCHAR) ### Question: What was the date in which the time was 2:16.08? ### Answer: SELECT date FROM table_name_31 WHERE time = "2:16.08"
Who was in the women's 200m medley?
CREATE TABLE table_name_22 (name VARCHAR, event VARCHAR)
SELECT name FROM table_name_22 WHERE event = "women's 200m medley"
### Context: CREATE TABLE table_name_22 (name VARCHAR, event VARCHAR) ### Question: Who was in the women's 200m medley? ### Answer: SELECT name FROM table_name_22 WHERE event = "women's 200m medley"
What was the nationality of the swimmer in the semifinal with a time of 29.51?
CREATE TABLE table_name_62 (nationality VARCHAR, round VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_62 WHERE round = "semifinal" AND time = "29.51"
### Context: CREATE TABLE table_name_62 (nationality VARCHAR, round VARCHAR, time VARCHAR) ### Question: What was the nationality of the swimmer in the semifinal with a time of 29.51? ### Answer: SELECT nationality FROM table_name_62 WHERE round = "semifinal" AND time = "29.51"
What country scored 67?
CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_76 WHERE score = 67
### Context: CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR) ### Question: What country scored 67? ### Answer: SELECT country FROM table_name_76 WHERE score = 67
What was the to par for Tino Schuster?
CREATE TABLE table_name_7 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_7 WHERE player = "tino schuster"
### Context: CREATE TABLE table_name_7 (to_par VARCHAR, player VARCHAR) ### Question: What was the to par for Tino Schuster? ### Answer: SELECT to_par FROM table_name_7 WHERE player = "tino schuster"
What country has player Scott Verplank?
CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_64 WHERE player = "scott verplank"
### Context: CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR) ### Question: What country has player Scott Verplank? ### Answer: SELECT country FROM table_name_64 WHERE player = "scott verplank"
What is the type of glycosylase that has an E. coli of Muty?
CREATE TABLE table_name_11 (type VARCHAR, e_coli VARCHAR)
SELECT type FROM table_name_11 WHERE e_coli = "muty"
### Context: CREATE TABLE table_name_11 (type VARCHAR, e_coli VARCHAR) ### Question: What is the type of glycosylase that has an E. coli of Muty? ### Answer: SELECT type FROM table_name_11 WHERE e_coli = "muty"
Which E. coli has a human value of HNEIL1?
CREATE TABLE table_name_78 (e_coli VARCHAR, human VARCHAR)
SELECT e_coli FROM table_name_78 WHERE human = "hneil1"
### Context: CREATE TABLE table_name_78 (e_coli VARCHAR, human VARCHAR) ### Question: Which E. coli has a human value of HNEIL1? ### Answer: SELECT e_coli FROM table_name_78 WHERE human = "hneil1"
Which E. coli has a substrate of uracil?
CREATE TABLE table_name_22 (e_coli VARCHAR, substrates VARCHAR)
SELECT e_coli FROM table_name_22 WHERE substrates = "uracil"
### Context: CREATE TABLE table_name_22 (e_coli VARCHAR, substrates VARCHAR) ### Question: Which E. coli has a substrate of uracil? ### Answer: SELECT e_coli FROM table_name_22 WHERE substrates = "uracil"
The tko (doctor stoppage) method was used in a loss against which opponent?
CREATE TABLE table_name_11 (opponent VARCHAR, method VARCHAR, res VARCHAR)
SELECT opponent FROM table_name_11 WHERE method = "tko (doctor stoppage)" AND res = "loss"
### Context: CREATE TABLE table_name_11 (opponent VARCHAR, method VARCHAR, res VARCHAR) ### Question: The tko (doctor stoppage) method was used in a loss against which opponent? ### Answer: SELECT opponent FROM table_name_11 WHERE method = "tko (doctor stoppage)" AND res = "loss"
How many total rounds used the submission (choke) method?
CREATE TABLE table_name_21 (round INTEGER, method VARCHAR)
SELECT SUM(round) FROM table_name_21 WHERE method = "submission (choke)"
### Context: CREATE TABLE table_name_21 (round INTEGER, method VARCHAR) ### Question: How many total rounds used the submission (choke) method? ### Answer: SELECT SUM(round) FROM table_name_21 WHERE method = "submission (choke)"
What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method?
CREATE TABLE table_name_75 (time VARCHAR, method VARCHAR, record VARCHAR)
SELECT time FROM table_name_75 WHERE method = "tko (doctor stoppage)" AND record = "9-0"
### Context: CREATE TABLE table_name_75 (time VARCHAR, method VARCHAR, record VARCHAR) ### Question: What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method? ### Answer: SELECT time FROM table_name_75 WHERE method = "tko (doctor stoppage)" AND record = "9-0"
What was the lowest round number at the UFC 16 event with a record of 19-1-1?
CREATE TABLE table_name_64 (round INTEGER, event VARCHAR, record VARCHAR)
SELECT MIN(round) FROM table_name_64 WHERE event = "ufc 16" AND record = "19-1-1"
### Context: CREATE TABLE table_name_64 (round INTEGER, event VARCHAR, record VARCHAR) ### Question: What was the lowest round number at the UFC 16 event with a record of 19-1-1? ### Answer: SELECT MIN(round) FROM table_name_64 WHERE event = "ufc 16" AND record = "19-1-1"
What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091?
CREATE TABLE table_name_85 (opponents INTEGER, game VARCHAR, attendance VARCHAR)
SELECT MAX(opponents) FROM table_name_85 WHERE game = 9 AND attendance < 60 OFFSET 091
### Context: CREATE TABLE table_name_85 (opponents INTEGER, game VARCHAR, attendance VARCHAR) ### Question: What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091? ### Answer: SELECT MAX(opponents) FROM table_name_85 WHERE game = 9 AND attendance < 60 OFFSET 091
What event did tedd williams fight bill parker?
CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_94 WHERE opponent = "bill parker"
### Context: CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR) ### Question: What event did tedd williams fight bill parker? ### Answer: SELECT event FROM table_name_94 WHERE opponent = "bill parker"
What round did the fight against travis fulton last?
CREATE TABLE table_name_10 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_10 WHERE opponent = "travis fulton"
### Context: CREATE TABLE table_name_10 (round VARCHAR, opponent VARCHAR) ### Question: What round did the fight against travis fulton last? ### Answer: SELECT round FROM table_name_10 WHERE opponent = "travis fulton"
How many times is the player scott deibert?
CREATE TABLE table_name_72 (pick__number VARCHAR, player VARCHAR)
SELECT COUNT(pick__number) FROM table_name_72 WHERE player = "scott deibert"
### Context: CREATE TABLE table_name_72 (pick__number VARCHAR, player VARCHAR) ### Question: How many times is the player scott deibert? ### Answer: SELECT COUNT(pick__number) FROM table_name_72 WHERE player = "scott deibert"
what is the pick # for william loftus?
CREATE TABLE table_name_68 (pick__number VARCHAR, player VARCHAR)
SELECT pick__number FROM table_name_68 WHERE player = "william loftus"
### Context: CREATE TABLE table_name_68 (pick__number VARCHAR, player VARCHAR) ### Question: what is the pick # for william loftus? ### Answer: SELECT pick__number FROM table_name_68 WHERE player = "william loftus"
what is the cfl team for position d?
CREATE TABLE table_name_68 (cfl_team VARCHAR, position VARCHAR)
SELECT cfl_team FROM table_name_68 WHERE position = "d"
### Context: CREATE TABLE table_name_68 (cfl_team VARCHAR, position VARCHAR) ### Question: what is the cfl team for position d? ### Answer: SELECT cfl_team FROM table_name_68 WHERE position = "d"
what was the total for the Wolverhampton Wanderers?
CREATE TABLE table_name_61 (league_goals VARCHAR, club VARCHAR)
SELECT league_goals FROM table_name_61 WHERE club = "wolverhampton wanderers"
### Context: CREATE TABLE table_name_61 (league_goals VARCHAR, club VARCHAR) ### Question: what was the total for the Wolverhampton Wanderers? ### Answer: SELECT league_goals FROM table_name_61 WHERE club = "wolverhampton wanderers"
How many were in attendance when the result was l 20-17?
CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_42 WHERE result = "l 20-17"
### Context: CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR) ### Question: How many were in attendance when the result was l 20-17? ### Answer: SELECT attendance FROM table_name_42 WHERE result = "l 20-17"
Which Third/Vice skip has a Second of Γ©ric sylvain?
CREATE TABLE table_name_13 (third_vice_skip VARCHAR, second VARCHAR)
SELECT third_vice_skip FROM table_name_13 WHERE second = "Γ©ric sylvain"
### Context: CREATE TABLE table_name_13 (third_vice_skip VARCHAR, second VARCHAR) ### Question: Which Third/Vice skip has a Second of Γ©ric sylvain? ### Answer: SELECT third_vice_skip FROM table_name_13 WHERE second = "Γ©ric sylvain"
Which Lead has a Skip of mike mcewen?
CREATE TABLE table_name_73 (lead VARCHAR, skip VARCHAR)
SELECT lead FROM table_name_73 WHERE skip = "mike mcewen"
### Context: CREATE TABLE table_name_73 (lead VARCHAR, skip VARCHAR) ### Question: Which Lead has a Skip of mike mcewen? ### Answer: SELECT lead FROM table_name_73 WHERE skip = "mike mcewen"
Which City has a Lead of steve gould?
CREATE TABLE table_name_52 (city VARCHAR, lead VARCHAR)
SELECT city FROM table_name_52 WHERE lead = "steve gould"
### Context: CREATE TABLE table_name_52 (city VARCHAR, lead VARCHAR) ### Question: Which City has a Lead of steve gould? ### Answer: SELECT city FROM table_name_52 WHERE lead = "steve gould"
Which Lead has a City of winnipeg, and a Third/Vice skip of kevin park?
CREATE TABLE table_name_17 (lead VARCHAR, city VARCHAR, third_vice_skip VARCHAR)
SELECT lead FROM table_name_17 WHERE city = "winnipeg" AND third_vice_skip = "kevin park"
### Context: CREATE TABLE table_name_17 (lead VARCHAR, city VARCHAR, third_vice_skip VARCHAR) ### Question: Which Lead has a City of winnipeg, and a Third/Vice skip of kevin park? ### Answer: SELECT lead FROM table_name_17 WHERE city = "winnipeg" AND third_vice_skip = "kevin park"
Which City has a Lead of tyler forrest?
CREATE TABLE table_name_95 (city VARCHAR, lead VARCHAR)
SELECT city FROM table_name_95 WHERE lead = "tyler forrest"
### Context: CREATE TABLE table_name_95 (city VARCHAR, lead VARCHAR) ### Question: Which City has a Lead of tyler forrest? ### Answer: SELECT city FROM table_name_95 WHERE lead = "tyler forrest"
Which Lead has a Skip of ted appelman?
CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR)
SELECT lead FROM table_name_95 WHERE skip = "ted appelman"
### Context: CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR) ### Question: Which Lead has a Skip of ted appelman? ### Answer: SELECT lead FROM table_name_95 WHERE skip = "ted appelman"
Which album is #10?
CREATE TABLE table_name_66 (album VARCHAR, number VARCHAR)
SELECT album FROM table_name_66 WHERE number = 10
### Context: CREATE TABLE table_name_66 (album VARCHAR, number VARCHAR) ### Question: Which album is #10? ### Answer: SELECT album FROM table_name_66 WHERE number = 10
What is Ben Hogan's Place?
CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_21 WHERE player = "ben hogan"
### Context: CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR) ### Question: What is Ben Hogan's Place? ### Answer: SELECT place FROM table_name_21 WHERE player = "ben hogan"
What is Jerry Barber's To par?
CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_74 WHERE player = "jerry barber"
### Context: CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR) ### Question: What is Jerry Barber's To par? ### Answer: SELECT to_par FROM table_name_74 WHERE player = "jerry barber"
What is the Score of T2 Place Player Dow Finsterwald?
CREATE TABLE table_name_12 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_12 WHERE place = "t2" AND player = "dow finsterwald"
### Context: CREATE TABLE table_name_12 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is the Score of T2 Place Player Dow Finsterwald? ### Answer: SELECT score FROM table_name_12 WHERE place = "t2" AND player = "dow finsterwald"
What's the to par of the United States with the score of 71-71=142?
CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_1 WHERE country = "united states" AND score = 71 - 71 = 142
### Context: CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, score VARCHAR) ### Question: What's the to par of the United States with the score of 71-71=142? ### Answer: SELECT to_par FROM table_name_1 WHERE country = "united states" AND score = 71 - 71 = 142
What place had a score of 71-70=141?
CREATE TABLE table_name_8 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_8 WHERE score = 71 - 70 = 141
### Context: CREATE TABLE table_name_8 (place VARCHAR, score VARCHAR) ### Question: What place had a score of 71-70=141? ### Answer: SELECT place FROM table_name_8 WHERE score = 71 - 70 = 141
Which player had a score of 72-69=141?
CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_75 WHERE score = 72 - 69 = 141
### Context: CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR) ### Question: Which player had a score of 72-69=141? ### Answer: SELECT player FROM table_name_75 WHERE score = 72 - 69 = 141
What is the score of T7 place?
CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR)
SELECT score FROM table_name_69 WHERE place = "t7"
### Context: CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR) ### Question: What is the score of T7 place? ### Answer: SELECT score FROM table_name_69 WHERE place = "t7"
What place is Ben Hogan?
CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_49 WHERE player = "ben hogan"
### Context: CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR) ### Question: What place is Ben Hogan? ### Answer: SELECT place FROM table_name_49 WHERE player = "ben hogan"
What place has a to par of E?
CREATE TABLE table_name_46 (place VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_46 WHERE to_par = "e"
### Context: CREATE TABLE table_name_46 (place VARCHAR, to_par VARCHAR) ### Question: What place has a to par of E? ### Answer: SELECT place FROM table_name_46 WHERE to_par = "e"
What pick was J.D. Hill?
CREATE TABLE table_name_52 (pick INTEGER, player VARCHAR)
SELECT MIN(pick) FROM table_name_52 WHERE player = "j.d. hill"
### Context: CREATE TABLE table_name_52 (pick INTEGER, player VARCHAR) ### Question: What pick was J.D. Hill? ### Answer: SELECT MIN(pick) FROM table_name_52 WHERE player = "j.d. hill"
What pick was used to select a Defensive End in round 8?
CREATE TABLE table_name_70 (pick INTEGER, position VARCHAR, round VARCHAR)
SELECT SUM(pick) FROM table_name_70 WHERE position = "defensive end" AND round = 8
### Context: CREATE TABLE table_name_70 (pick INTEGER, position VARCHAR, round VARCHAR) ### Question: What pick was used to select a Defensive End in round 8? ### Answer: SELECT SUM(pick) FROM table_name_70 WHERE position = "defensive end" AND round = 8
which winner has a jockery containing jerry bailey and the owner of overbrook farm?
CREATE TABLE table_name_28 (winner VARCHAR, jockey VARCHAR, owner VARCHAR)
SELECT winner FROM table_name_28 WHERE jockey = "jerry bailey" AND owner = "overbrook farm"
### Context: CREATE TABLE table_name_28 (winner VARCHAR, jockey VARCHAR, owner VARCHAR) ### Question: which winner has a jockery containing jerry bailey and the owner of overbrook farm? ### Answer: SELECT winner FROM table_name_28 WHERE jockey = "jerry bailey" AND owner = "overbrook farm"
What time contains the owner of maine chance farm?
CREATE TABLE table_name_55 (time VARCHAR, owner VARCHAR)
SELECT time FROM table_name_55 WHERE owner = "maine chance farm"
### Context: CREATE TABLE table_name_55 (time VARCHAR, owner VARCHAR) ### Question: What time contains the owner of maine chance farm? ### Answer: SELECT time FROM table_name_55 WHERE owner = "maine chance farm"
Which time contains the jockery of isaac murphy as well as the winner of kingman?
CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR)
SELECT time FROM table_name_39 WHERE jockey = "isaac murphy" AND winner = "kingman"
### Context: CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR) ### Question: Which time contains the jockery of isaac murphy as well as the winner of kingman? ### Answer: SELECT time FROM table_name_39 WHERE jockey = "isaac murphy" AND winner = "kingman"
Which owner has the time of 2:02.20 and the year of 1957?
CREATE TABLE table_name_86 (owner VARCHAR, time VARCHAR, year VARCHAR)
SELECT owner FROM table_name_86 WHERE time = "2:02.20" AND year = "1957"
### Context: CREATE TABLE table_name_86 (owner VARCHAR, time VARCHAR, year VARCHAR) ### Question: Which owner has the time of 2:02.20 and the year of 1957? ### Answer: SELECT owner FROM table_name_86 WHERE time = "2:02.20" AND year = "1957"
Which owner has the time 2:03.00 and the year of 1991 kd?
CREATE TABLE table_name_49 (owner VARCHAR, time VARCHAR, year VARCHAR)
SELECT owner FROM table_name_49 WHERE time = "2:03.00" AND year = "1991 kd"
### Context: CREATE TABLE table_name_49 (owner VARCHAR, time VARCHAR, year VARCHAR) ### Question: Which owner has the time 2:03.00 and the year of 1991 kd? ### Answer: SELECT owner FROM table_name_49 WHERE time = "2:03.00" AND year = "1991 kd"
What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8?
CREATE TABLE table_name_13 (played INTEGER, drawn VARCHAR, lost VARCHAR, position VARCHAR)
SELECT SUM(played) FROM table_name_13 WHERE lost > 5 AND position < 8 AND drawn > 1
### Context: CREATE TABLE table_name_13 (played INTEGER, drawn VARCHAR, lost VARCHAR, position VARCHAR) ### Question: What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8? ### Answer: SELECT SUM(played) FROM table_name_13 WHERE lost > 5 AND position < 8 AND drawn > 1
What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich?
CREATE TABLE table_name_86 (points INTEGER, lost VARCHAR, drawn VARCHAR, name VARCHAR)
SELECT AVG(points) FROM table_name_86 WHERE drawn < 1 AND name = "ev aich" AND lost > 11
### Context: CREATE TABLE table_name_86 (points INTEGER, lost VARCHAR, drawn VARCHAR, name VARCHAR) ### Question: What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich? ### Answer: SELECT AVG(points) FROM table_name_86 WHERE drawn < 1 AND name = "ev aich" AND lost > 11
What is the sum of points for a position over 5 with more than 2 draws?
CREATE TABLE table_name_79 (points INTEGER, drawn VARCHAR, position VARCHAR)
SELECT SUM(points) FROM table_name_79 WHERE drawn > 2 AND position > 5
### Context: CREATE TABLE table_name_79 (points INTEGER, drawn VARCHAR, position VARCHAR) ### Question: What is the sum of points for a position over 5 with more than 2 draws? ### Answer: SELECT SUM(points) FROM table_name_79 WHERE drawn > 2 AND position > 5
Which nation won no bronze medals and a 1 medal total?
CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_54 WHERE total = 1 AND bronze < 1
### Context: CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: Which nation won no bronze medals and a 1 medal total? ### Answer: SELECT nation FROM table_name_54 WHERE total = 1 AND bronze < 1
What was the result of the game in week 4?
CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_32 WHERE week = 4
### Context: CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR) ### Question: What was the result of the game in week 4? ### Answer: SELECT result FROM table_name_32 WHERE week = 4
What party has more than 241,310 inhabitants after 2012?
CREATE TABLE table_name_20 (party VARCHAR, election VARCHAR, inhabitants VARCHAR)
SELECT party FROM table_name_20 WHERE election > 2012 AND inhabitants > 241 OFFSET 310
### Context: CREATE TABLE table_name_20 (party VARCHAR, election VARCHAR, inhabitants VARCHAR) ### Question: What party has more than 241,310 inhabitants after 2012? ### Answer: SELECT party FROM table_name_20 WHERE election > 2012 AND inhabitants > 241 OFFSET 310
Highest inhabitants from gela?
CREATE TABLE table_name_86 (inhabitants INTEGER, municipality VARCHAR)
SELECT MAX(inhabitants) FROM table_name_86 WHERE municipality = "gela"
### Context: CREATE TABLE table_name_86 (inhabitants INTEGER, municipality VARCHAR) ### Question: Highest inhabitants from gela? ### Answer: SELECT MAX(inhabitants) FROM table_name_86 WHERE municipality = "gela"
What is the average number of casualties for the convoy with a number of U-844?
CREATE TABLE table_name_5 (casualties INTEGER, number VARCHAR)
SELECT AVG(casualties) FROM table_name_5 WHERE number = "u-844"
### Context: CREATE TABLE table_name_5 (casualties INTEGER, number VARCHAR) ### Question: What is the average number of casualties for the convoy with a number of U-844? ### Answer: SELECT AVG(casualties) FROM table_name_5 WHERE number = "u-844"
On what Surface was the match against Ilija Bozoljac played?
CREATE TABLE table_name_9 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_9 WHERE opponent = "ilija bozoljac"
### Context: CREATE TABLE table_name_9 (surface VARCHAR, opponent VARCHAR) ### Question: On what Surface was the match against Ilija Bozoljac played? ### Answer: SELECT surface FROM table_name_9 WHERE opponent = "ilija bozoljac"
What Tournament was against Daniel Elsner?
CREATE TABLE table_name_63 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_63 WHERE opponent = "daniel elsner"
### Context: CREATE TABLE table_name_63 (tournament VARCHAR, opponent VARCHAR) ### Question: What Tournament was against Daniel Elsner? ### Answer: SELECT tournament FROM table_name_63 WHERE opponent = "daniel elsner"
What is the Date of the Tournament with a Score of 3–6, 7–6(6), 5–7?
CREATE TABLE table_name_72 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_72 WHERE score = "3–6, 7–6(6), 5–7"
### Context: CREATE TABLE table_name_72 (date VARCHAR, score VARCHAR) ### Question: What is the Date of the Tournament with a Score of 3–6, 7–6(6), 5–7? ### Answer: SELECT date FROM table_name_72 WHERE score = "3–6, 7–6(6), 5–7"
What is the Opponent of the Banja Luka Tournament with a Score of 4–6, 4–6?
CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_57 WHERE score = "4–6, 4–6" AND tournament = "banja luka"
### Context: CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR, tournament VARCHAR) ### Question: What is the Opponent of the Banja Luka Tournament with a Score of 4–6, 4–6? ### Answer: SELECT opponent FROM table_name_57 WHERE score = "4–6, 4–6" AND tournament = "banja luka"
On what date was the record set with a time of 1:07.18?
CREATE TABLE table_name_44 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_44 WHERE time = "1:07.18"
### Context: CREATE TABLE table_name_44 (date VARCHAR, time VARCHAR) ### Question: On what date was the record set with a time of 1:07.18? ### Answer: SELECT date FROM table_name_44 WHERE time = "1:07.18"
On what date was a record set in the team pursuit (8 laps) event?
CREATE TABLE table_name_75 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_75 WHERE event = "team pursuit (8 laps)"
### Context: CREATE TABLE table_name_75 (date VARCHAR, event VARCHAR) ### Question: On what date was a record set in the team pursuit (8 laps) event? ### Answer: SELECT date FROM table_name_75 WHERE event = "team pursuit (8 laps)"
What nation did the speed skater that set a record in the 1000 metres event represent?
CREATE TABLE table_name_23 (nation VARCHAR, event VARCHAR)
SELECT nation FROM table_name_23 WHERE event = "1000 metres"
### Context: CREATE TABLE table_name_23 (nation VARCHAR, event VARCHAR) ### Question: What nation did the speed skater that set a record in the 1000 metres event represent? ### Answer: SELECT nation FROM table_name_23 WHERE event = "1000 metres"
What was the record setting time in the team pursuit (8 laps) event?
CREATE TABLE table_name_5 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_5 WHERE event = "team pursuit (8 laps)"
### Context: CREATE TABLE table_name_5 (time VARCHAR, event VARCHAR) ### Question: What was the record setting time in the team pursuit (8 laps) event? ### Answer: SELECT time FROM table_name_5 WHERE event = "team pursuit (8 laps)"
What is the total for the draw with 0 points, and less than 14 lost?
CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, lost VARCHAR)
SELECT SUM(draw) FROM table_name_15 WHERE points = 0 AND lost < 14
### Context: CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, lost VARCHAR) ### Question: What is the total for the draw with 0 points, and less than 14 lost? ### Answer: SELECT SUM(draw) FROM table_name_15 WHERE points = 0 AND lost < 14
What date has @ new orleans as the team?
CREATE TABLE table_name_47 (date VARCHAR, team VARCHAR)
SELECT date FROM table_name_47 WHERE team = "@ new orleans"
### Context: CREATE TABLE table_name_47 (date VARCHAR, team VARCHAR) ### Question: What date has @ new orleans as the team? ### Answer: SELECT date FROM table_name_47 WHERE team = "@ new orleans"
What is the sum of the game with the boston bruins as the opponent?
CREATE TABLE table_name_84 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_84 WHERE opponent = "boston bruins"
### Context: CREATE TABLE table_name_84 (game INTEGER, opponent VARCHAR) ### Question: What is the sum of the game with the boston bruins as the opponent? ### Answer: SELECT SUM(game) FROM table_name_84 WHERE opponent = "boston bruins"
What is the total number of games at Toronto with less than 31 points?
CREATE TABLE table_name_87 (game VARCHAR, location VARCHAR, points VARCHAR)
SELECT COUNT(game) FROM table_name_87 WHERE location = "toronto" AND points < 31
### Context: CREATE TABLE table_name_87 (game VARCHAR, location VARCHAR, points VARCHAR) ### Question: What is the total number of games at Toronto with less than 31 points? ### Answer: SELECT COUNT(game) FROM table_name_87 WHERE location = "toronto" AND points < 31
What years did jersey number 55 play?
CREATE TABLE table_name_81 (years VARCHAR, jersey_number_s_ VARCHAR)
SELECT years FROM table_name_81 WHERE jersey_number_s_ = "55"
### Context: CREATE TABLE table_name_81 (years VARCHAR, jersey_number_s_ VARCHAR) ### Question: What years did jersey number 55 play? ### Answer: SELECT years FROM table_name_81 WHERE jersey_number_s_ = "55"
Before 2007, what was the avg start that had a pole of 0 and in 65th position?
CREATE TABLE table_name_81 (starts INTEGER, year VARCHAR, poles VARCHAR, position VARCHAR)
SELECT AVG(starts) FROM table_name_81 WHERE poles = 0 AND position = "65th" AND year < 2007
### Context: CREATE TABLE table_name_81 (starts INTEGER, year VARCHAR, poles VARCHAR, position VARCHAR) ### Question: Before 2007, what was the avg start that had a pole of 0 and in 65th position? ### Answer: SELECT AVG(starts) FROM table_name_81 WHERE poles = 0 AND position = "65th" AND year < 2007
How many starts had an avg start of less than 37 and won $1,636,827?
CREATE TABLE table_name_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR)
SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37
### Context: CREATE TABLE table_name_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR) ### Question: How many starts had an avg start of less than 37 and won $1,636,827? ### Answer: SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37
in 1990, how many wins had an avg finish of 35 and a start less than 1?
CREATE TABLE table_name_90 (wins INTEGER, starts VARCHAR, avg_finish VARCHAR, year VARCHAR)
SELECT MAX(wins) FROM table_name_90 WHERE avg_finish = 35 AND year = 1990 AND starts < 1
### Context: CREATE TABLE table_name_90 (wins INTEGER, starts VARCHAR, avg_finish VARCHAR, year VARCHAR) ### Question: in 1990, how many wins had an avg finish of 35 and a start less than 1? ### Answer: SELECT MAX(wins) FROM table_name_90 WHERE avg_finish = 35 AND year = 1990 AND starts < 1
What year had a pole smaller than 0 and in 77th position?
CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR)
SELECT MAX(year) FROM table_name_57 WHERE position = "77th" AND poles < 0
### Context: CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR) ### Question: What year had a pole smaller than 0 and in 77th position? ### Answer: SELECT MAX(year) FROM table_name_57 WHERE position = "77th" AND poles < 0
in 2007, what is the avg finish that had a start less than 1?
CREATE TABLE table_name_91 (avg_finish INTEGER, year VARCHAR, starts VARCHAR)
SELECT SUM(avg_finish) FROM table_name_91 WHERE year = 2007 AND starts < 1
### Context: CREATE TABLE table_name_91 (avg_finish INTEGER, year VARCHAR, starts VARCHAR) ### Question: in 2007, what is the avg finish that had a start less than 1? ### Answer: SELECT SUM(avg_finish) FROM table_name_91 WHERE year = 2007 AND starts < 1
What is Score, when Game is greater than 4?
CREATE TABLE table_name_1 (score VARCHAR, game INTEGER)
SELECT score FROM table_name_1 WHERE game > 4
### Context: CREATE TABLE table_name_1 (score VARCHAR, game INTEGER) ### Question: What is Score, when Game is greater than 4? ### Answer: SELECT score FROM table_name_1 WHERE game > 4
What is High Points, when Game is "3"?
CREATE TABLE table_name_81 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_name_81 WHERE game = 3
### Context: CREATE TABLE table_name_81 (high_points VARCHAR, game VARCHAR) ### Question: What is High Points, when Game is "3"? ### Answer: SELECT high_points FROM table_name_81 WHERE game = 3
What is Score, when Location Attendance is "Madison Square Garden Unknown", and when High Rebounds is "Sidney Green (10)"?
CREATE TABLE table_name_9 (score VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_name_9 WHERE location_attendance = "madison square garden unknown" AND high_rebounds = "sidney green (10)"
### Context: CREATE TABLE table_name_9 (score VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR) ### Question: What is Score, when Location Attendance is "Madison Square Garden Unknown", and when High Rebounds is "Sidney Green (10)"? ### Answer: SELECT score FROM table_name_9 WHERE location_attendance = "madison square garden unknown" AND high_rebounds = "sidney green (10)"
What is High Rebounds, when Location Attendance is "Madison Square Garden Unknown", and when Date is "May 18"?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, location_attendance VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE location_attendance = "madison square garden unknown" AND date = "may 18"
### Context: CREATE TABLE table_name_15 (high_rebounds VARCHAR, location_attendance VARCHAR, date VARCHAR) ### Question: What is High Rebounds, when Location Attendance is "Madison Square Garden Unknown", and when Date is "May 18"? ### Answer: SELECT high_rebounds FROM table_name_15 WHERE location_attendance = "madison square garden unknown" AND date = "may 18"
What is Team, when Location Attendance is "Madison Square Garden Unknown", and when High Points is "Alonzo Mourning (24)"?
CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR, high_points VARCHAR)
SELECT team FROM table_name_69 WHERE location_attendance = "madison square garden unknown" AND high_points = "alonzo mourning (24)"
### Context: CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR, high_points VARCHAR) ### Question: What is Team, when Location Attendance is "Madison Square Garden Unknown", and when High Points is "Alonzo Mourning (24)"? ### Answer: SELECT team FROM table_name_69 WHERE location_attendance = "madison square garden unknown" AND high_points = "alonzo mourning (24)"