question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What season had Kanto Gakuin University as the winner, with an attendance of n/a, and a title of 37th?
CREATE TABLE table_name_62 (season VARCHAR, title VARCHAR, winner VARCHAR, attendance VARCHAR)
SELECT season FROM table_name_62 WHERE winner = "kanto gakuin university" AND attendance = "n/a" AND title = "37th"
### Context: CREATE TABLE table_name_62 (season VARCHAR, title VARCHAR, winner VARCHAR, attendance VARCHAR) ### Question: What season had Kanto Gakuin University as the winner, with an attendance of n/a, and a title of 37th? ### Answer: SELECT season FROM table_name_62 WHERE winner = "kanto gakuin university" AND attendance = "n/a" AND title = "37th"
What was the title for the game with an attendance of n/a with the runner-up being Waseda, and a season of 1995-6 details?
CREATE TABLE table_name_91 (title VARCHAR, season VARCHAR, attendance VARCHAR, runner_up VARCHAR)
SELECT title FROM table_name_91 WHERE attendance = "n/a" AND runner_up = "waseda" AND season = "1995-6 details"
### Context: CREATE TABLE table_name_91 (title VARCHAR, season VARCHAR, attendance VARCHAR, runner_up VARCHAR) ### Question: What was the title for the game with an attendance of n/a with the runner-up being Waseda, and a season of 1995-6 details? ### Answer: SELECT title FROM table_name_91 WHERE attendance = "n/a" AND runner_up = "waseda" AND season = "1995-6 details"
What season has a runner-up of waseda, and a title of 47th?
CREATE TABLE table_name_25 (season VARCHAR, runner_up VARCHAR, title VARCHAR)
SELECT season FROM table_name_25 WHERE runner_up = "waseda" AND title = "47th"
### Context: CREATE TABLE table_name_25 (season VARCHAR, runner_up VARCHAR, title VARCHAR) ### Question: What season has a runner-up of waseda, and a title of 47th? ### Answer: SELECT season FROM table_name_25 WHERE runner_up = "waseda" AND title = "47th"
Who was the winner in the game that had Teikyo as the runner-up?
CREATE TABLE table_name_94 (winner VARCHAR, runner_up VARCHAR)
SELECT winner FROM table_name_94 WHERE runner_up = "teikyo"
### Context: CREATE TABLE table_name_94 (winner VARCHAR, runner_up VARCHAR) ### Question: Who was the winner in the game that had Teikyo as the runner-up? ### Answer: SELECT winner FROM table_name_94 WHERE runner_up = "teikyo"
Who was the winner in the game that had a title of 32nd, and Waseda as the runner-up?
CREATE TABLE table_name_56 (winner VARCHAR, runner_up VARCHAR, title VARCHAR)
SELECT winner FROM table_name_56 WHERE runner_up = "waseda" AND title = "32nd"
### Context: CREATE TABLE table_name_56 (winner VARCHAR, runner_up VARCHAR, title VARCHAR) ### Question: Who was the winner in the game that had a title of 32nd, and Waseda as the runner-up? ### Answer: SELECT winner FROM table_name_56 WHERE runner_up = "waseda" AND title = "32nd"
what is the date on week 6
CREATE TABLE table_name_97 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_97 WHERE week = 6
### Context: CREATE TABLE table_name_97 (date VARCHAR, week VARCHAR) ### Question: what is the date on week 6 ### Answer: SELECT date FROM table_name_97 WHERE week = 6
Which City has 600kw 500kw ERP (Analog/ Digital)?
CREATE TABLE table_name_41 (city VARCHAR, erp__analog__digital_ VARCHAR)
SELECT city FROM table_name_41 WHERE erp__analog__digital_ = "600kw 500kw"
### Context: CREATE TABLE table_name_41 (city VARCHAR, erp__analog__digital_ VARCHAR) ### Question: Which City has 600kw 500kw ERP (Analog/ Digital)? ### Answer: SELECT city FROM table_name_41 WHERE erp__analog__digital_ = "600kw 500kw"
Which Region served has of 1176 m 1190 m HAAT (Analog/ Digital) 1?
CREATE TABLE table_name_43 (region_served VARCHAR, haat__analog__digital__1 VARCHAR)
SELECT region_served FROM table_name_43 WHERE haat__analog__digital__1 = "1176 m 1190 m"
### Context: CREATE TABLE table_name_43 (region_served VARCHAR, haat__analog__digital__1 VARCHAR) ### Question: Which Region served has of 1176 m 1190 m HAAT (Analog/ Digital) 1? ### Answer: SELECT region_served FROM table_name_43 WHERE haat__analog__digital__1 = "1176 m 1190 m"
Which City has 600kw 500kw ERP ?
CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR)
SELECT city FROM table_name_86 WHERE erp__analog__digital_ = "600kw 500kw"
### Context: CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR) ### Question: Which City has 600kw 500kw ERP ? ### Answer: SELECT city FROM table_name_86 WHERE erp__analog__digital_ = "600kw 500kw"
Which City has a 360kw 90kw ERP?
CREATE TABLE table_name_32 (city VARCHAR, erp__analog__digital_ VARCHAR)
SELECT city FROM table_name_32 WHERE erp__analog__digital_ = "360kw 90kw"
### Context: CREATE TABLE table_name_32 (city VARCHAR, erp__analog__digital_ VARCHAR) ### Question: Which City has a 360kw 90kw ERP? ### Answer: SELECT city FROM table_name_32 WHERE erp__analog__digital_ = "360kw 90kw"
What was the series standing for games over 4?
CREATE TABLE table_name_2 (series VARCHAR, game INTEGER)
SELECT series FROM table_name_2 WHERE game > 4
### Context: CREATE TABLE table_name_2 (series VARCHAR, game INTEGER) ### Question: What was the series standing for games over 4? ### Answer: SELECT series FROM table_name_2 WHERE game > 4
What is the game number held on May 20?
CREATE TABLE table_name_52 (game INTEGER, date VARCHAR)
SELECT AVG(game) FROM table_name_52 WHERE date = "may 20"
### Context: CREATE TABLE table_name_52 (game INTEGER, date VARCHAR) ### Question: What is the game number held on May 20? ### Answer: SELECT AVG(game) FROM table_name_52 WHERE date = "may 20"
What was the score of the game when the Indians ended up with a record of 55-51?
CREATE TABLE table_name_33 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_33 WHERE record = "55-51"
### Context: CREATE TABLE table_name_33 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game when the Indians ended up with a record of 55-51? ### Answer: SELECT score FROM table_name_33 WHERE record = "55-51"
On which date did the Indians have a record of 67-58
CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_92 WHERE record = "67-58"
### Context: CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR) ### Question: On which date did the Indians have a record of 67-58 ### Answer: SELECT date FROM table_name_92 WHERE record = "67-58"
Which Work has a Result of nominated, and an Award of contigo award, and a Year smaller than 2002?
CREATE TABLE table_name_36 (work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR)
SELECT work FROM table_name_36 WHERE result = "nominated" AND award = "contigo award" AND year < 2002
### Context: CREATE TABLE table_name_36 (work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR) ### Question: Which Work has a Result of nominated, and an Award of contigo award, and a Year smaller than 2002? ### Answer: SELECT work FROM table_name_36 WHERE result = "nominated" AND award = "contigo award" AND year < 2002
How many years have an Award of press award?
CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR)
SELECT COUNT(year) FROM table_name_47 WHERE award = "press award"
### Context: CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR) ### Question: How many years have an Award of press award? ### Answer: SELECT COUNT(year) FROM table_name_47 WHERE award = "press award"
Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress?
CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR)
SELECT award FROM table_name_45 WHERE year < 2004 AND work = "the clone" AND result = "won" AND category = "favourite actress"
### Context: CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR) ### Question: Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress? ### Answer: SELECT award FROM table_name_45 WHERE year < 2004 AND work = "the clone" AND result = "won" AND category = "favourite actress"
Which Year is the highest one that has a Work of the clone, and an Award of contigo award?
CREATE TABLE table_name_8 (year INTEGER, work VARCHAR, award VARCHAR)
SELECT MAX(year) FROM table_name_8 WHERE work = "the clone" AND award = "contigo award"
### Context: CREATE TABLE table_name_8 (year INTEGER, work VARCHAR, award VARCHAR) ### Question: Which Year is the highest one that has a Work of the clone, and an Award of contigo award? ### Answer: SELECT MAX(year) FROM table_name_8 WHERE work = "the clone" AND award = "contigo award"
With the Destination of Jupiter and the Closest approach of 4 February 2004, what is the Time elapsed?
CREATE TABLE table_name_11 (time_elapsed VARCHAR, destination VARCHAR, closest_approach VARCHAR)
SELECT time_elapsed FROM table_name_11 WHERE destination = "jupiter" AND closest_approach = "4 february 2004"
### Context: CREATE TABLE table_name_11 (time_elapsed VARCHAR, destination VARCHAR, closest_approach VARCHAR) ### Question: With the Destination of Jupiter and the Closest approach of 4 February 2004, what is the Time elapsed? ### Answer: SELECT time_elapsed FROM table_name_11 WHERE destination = "jupiter" AND closest_approach = "4 february 2004"
What Time elapsed has both the Launched of 15 October 1997 and the Closest approach of 24 June 1999?
CREATE TABLE table_name_52 (time_elapsed VARCHAR, launched VARCHAR, closest_approach VARCHAR)
SELECT time_elapsed FROM table_name_52 WHERE launched = "15 october 1997" AND closest_approach = "24 june 1999"
### Context: CREATE TABLE table_name_52 (time_elapsed VARCHAR, launched VARCHAR, closest_approach VARCHAR) ### Question: What Time elapsed has both the Launched of 15 October 1997 and the Closest approach of 24 June 1999? ### Answer: SELECT time_elapsed FROM table_name_52 WHERE launched = "15 october 1997" AND closest_approach = "24 june 1999"
What Time elapsed has 14 February 2011 as the Closest approach?
CREATE TABLE table_name_11 (time_elapsed VARCHAR, closest_approach VARCHAR)
SELECT time_elapsed FROM table_name_11 WHERE closest_approach = "14 february 2011"
### Context: CREATE TABLE table_name_11 (time_elapsed VARCHAR, closest_approach VARCHAR) ### Question: What Time elapsed has 14 February 2011 as the Closest approach? ### Answer: SELECT time_elapsed FROM table_name_11 WHERE closest_approach = "14 february 2011"
What Launched has Time elapsed of 1991 days (5 yr, 5 mo, 12 d)?
CREATE TABLE table_name_31 (launched VARCHAR, time_elapsed VARCHAR)
SELECT launched FROM table_name_31 WHERE time_elapsed = "1991 days (5 yr, 5 mo, 12 d)"
### Context: CREATE TABLE table_name_31 (launched VARCHAR, time_elapsed VARCHAR) ### Question: What Launched has Time elapsed of 1991 days (5 yr, 5 mo, 12 d)? ### Answer: SELECT launched FROM table_name_31 WHERE time_elapsed = "1991 days (5 yr, 5 mo, 12 d)"
With a Launched of 3 July 1998 what is the Closest approach?
CREATE TABLE table_name_54 (closest_approach VARCHAR, launched VARCHAR)
SELECT closest_approach FROM table_name_54 WHERE launched = "3 july 1998"
### Context: CREATE TABLE table_name_54 (closest_approach VARCHAR, launched VARCHAR) ### Question: With a Launched of 3 July 1998 what is the Closest approach? ### Answer: SELECT closest_approach FROM table_name_54 WHERE launched = "3 july 1998"
What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed?
CREATE TABLE table_name_56 (launched VARCHAR, spacecraft VARCHAR, time_elapsed VARCHAR)
SELECT launched FROM table_name_56 WHERE spacecraft = "ulysses" AND time_elapsed = "491 days (1 yr, 4 mo, 3 d)"
### Context: CREATE TABLE table_name_56 (launched VARCHAR, spacecraft VARCHAR, time_elapsed VARCHAR) ### Question: What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed? ### Answer: SELECT launched FROM table_name_56 WHERE spacecraft = "ulysses" AND time_elapsed = "491 days (1 yr, 4 mo, 3 d)"
What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%?
CREATE TABLE table_name_45 (karen_handel VARCHAR, eric_johnson VARCHAR, undecided VARCHAR)
SELECT karen_handel FROM table_name_45 WHERE eric_johnson = "13%" AND undecided = "22%"
### Context: CREATE TABLE table_name_45 (karen_handel VARCHAR, eric_johnson VARCHAR, undecided VARCHAR) ### Question: What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%? ### Answer: SELECT karen_handel FROM table_name_45 WHERE eric_johnson = "13%" AND undecided = "22%"
In what poll is Nathan Deal at 13% and John Oxendine at 28%?
CREATE TABLE table_name_49 (poll_source VARCHAR, nathan_deal VARCHAR, john_oxendine VARCHAR)
SELECT poll_source FROM table_name_49 WHERE nathan_deal = "13%" AND john_oxendine = "28%"
### Context: CREATE TABLE table_name_49 (poll_source VARCHAR, nathan_deal VARCHAR, john_oxendine VARCHAR) ### Question: In what poll is Nathan Deal at 13% and John Oxendine at 28%? ### Answer: SELECT poll_source FROM table_name_49 WHERE nathan_deal = "13%" AND john_oxendine = "28%"
What is Eric Johnson at in the poll where Karen Handel is at 12%?
CREATE TABLE table_name_38 (eric_johnson VARCHAR, karen_handel VARCHAR)
SELECT eric_johnson FROM table_name_38 WHERE karen_handel = "12%"
### Context: CREATE TABLE table_name_38 (eric_johnson VARCHAR, karen_handel VARCHAR) ### Question: What is Eric Johnson at in the poll where Karen Handel is at 12%? ### Answer: SELECT eric_johnson FROM table_name_38 WHERE karen_handel = "12%"
In what poll is John Oxendine at 32%?
CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR)
SELECT poll_source FROM table_name_67 WHERE john_oxendine = "32%"
### Context: CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR) ### Question: In what poll is John Oxendine at 32%? ### Answer: SELECT poll_source FROM table_name_67 WHERE john_oxendine = "32%"
What is John Oxendine at in the poll where Karen Handel is at 38%?
CREATE TABLE table_name_75 (john_oxendine VARCHAR, karen_handel VARCHAR)
SELECT john_oxendine FROM table_name_75 WHERE karen_handel = "38%"
### Context: CREATE TABLE table_name_75 (john_oxendine VARCHAR, karen_handel VARCHAR) ### Question: What is John Oxendine at in the poll where Karen Handel is at 38%? ### Answer: SELECT john_oxendine FROM table_name_75 WHERE karen_handel = "38%"
What is Karen Handel polling at in the Insideradvantage poll where John Oxendine is at 15%?
CREATE TABLE table_name_78 (karen_handel VARCHAR, poll_source VARCHAR, john_oxendine VARCHAR)
SELECT karen_handel FROM table_name_78 WHERE poll_source = "insideradvantage" AND john_oxendine = "15%"
### Context: CREATE TABLE table_name_78 (karen_handel VARCHAR, poll_source VARCHAR, john_oxendine VARCHAR) ### Question: What is Karen Handel polling at in the Insideradvantage poll where John Oxendine is at 15%? ### Answer: SELECT karen_handel FROM table_name_78 WHERE poll_source = "insideradvantage" AND john_oxendine = "15%"
What was the 1991 score?
CREATE TABLE table_name_6 (score VARCHAR, year VARCHAR)
SELECT score FROM table_name_6 WHERE year = "1991"
### Context: CREATE TABLE table_name_6 (score VARCHAR, year VARCHAR) ### Question: What was the 1991 score? ### Answer: SELECT score FROM table_name_6 WHERE year = "1991"
Where was the 1966 competition with a winner of Gary Cowan held?
CREATE TABLE table_name_18 (venue VARCHAR, winner VARCHAR, year VARCHAR)
SELECT venue FROM table_name_18 WHERE winner = "gary cowan" AND year = "1966"
### Context: CREATE TABLE table_name_18 (venue VARCHAR, winner VARCHAR, year VARCHAR) ### Question: Where was the 1966 competition with a winner of Gary Cowan held? ### Answer: SELECT venue FROM table_name_18 WHERE winner = "gary cowan" AND year = "1966"
Who was the runner-up of the competition played at Minikahda Club?
CREATE TABLE table_name_55 (runner_up VARCHAR, venue VARCHAR)
SELECT runner_up FROM table_name_55 WHERE venue = "minikahda club"
### Context: CREATE TABLE table_name_55 (runner_up VARCHAR, venue VARCHAR) ### Question: Who was the runner-up of the competition played at Minikahda Club? ### Answer: SELECT runner_up FROM table_name_55 WHERE venue = "minikahda club"
Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1?
CREATE TABLE table_name_16 (year INTEGER, us_cham_rank VARCHAR, next_highest_spender VARCHAR, us_cham_spending VARCHAR)
SELECT MAX(year) FROM table_name_16 WHERE next_highest_spender = "aarp" AND us_cham_spending = "$39,805,000" AND us_cham_rank > 1
### Context: CREATE TABLE table_name_16 (year INTEGER, us_cham_rank VARCHAR, next_highest_spender VARCHAR, us_cham_spending VARCHAR) ### Question: Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1? ### Answer: SELECT MAX(year) FROM table_name_16 WHERE next_highest_spender = "aarp" AND us_cham_spending = "$39,805,000" AND us_cham_rank > 1
Which US Cham Rank is the lowest one that has a Next Highest Spender of national assn of realtors, and a Year smaller than 2012?
CREATE TABLE table_name_94 (us_cham_rank INTEGER, next_highest_spender VARCHAR, year VARCHAR)
SELECT MIN(us_cham_rank) FROM table_name_94 WHERE next_highest_spender = "national assn of realtors" AND year < 2012
### Context: CREATE TABLE table_name_94 (us_cham_rank INTEGER, next_highest_spender VARCHAR, year VARCHAR) ### Question: Which US Cham Rank is the lowest one that has a Next Highest Spender of national assn of realtors, and a Year smaller than 2012? ### Answer: SELECT MIN(us_cham_rank) FROM table_name_94 WHERE next_highest_spender = "national assn of realtors" AND year < 2012
Which Year is the lowest one that has a US Cham Rank smaller than 1?
CREATE TABLE table_name_16 (year INTEGER, us_cham_rank INTEGER)
SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1
### Context: CREATE TABLE table_name_16 (year INTEGER, us_cham_rank INTEGER) ### Question: Which Year is the lowest one that has a US Cham Rank smaller than 1? ### Answer: SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1
What was the Score in Final of the Eckerd Open Tournament?
CREATE TABLE table_name_21 (score_in_final VARCHAR, tournament_name VARCHAR)
SELECT score_in_final FROM table_name_21 WHERE tournament_name = "eckerd open"
### Context: CREATE TABLE table_name_21 (score_in_final VARCHAR, tournament_name VARCHAR) ### Question: What was the Score in Final of the Eckerd Open Tournament? ### Answer: SELECT score_in_final FROM table_name_21 WHERE tournament_name = "eckerd open"
Who was the Partner in the United Airlines Tournament (1)?
CREATE TABLE table_name_62 (partner VARCHAR, tournament_name VARCHAR)
SELECT partner FROM table_name_62 WHERE tournament_name = "united airlines tournament (1)"
### Context: CREATE TABLE table_name_62 (partner VARCHAR, tournament_name VARCHAR) ### Question: Who was the Partner in the United Airlines Tournament (1)? ### Answer: SELECT partner FROM table_name_62 WHERE tournament_name = "united airlines tournament (1)"
What was the Score in Final on February 19, 1989?
CREATE TABLE table_name_59 (score_in_final VARCHAR, date VARCHAR)
SELECT score_in_final FROM table_name_59 WHERE date = "february 19, 1989"
### Context: CREATE TABLE table_name_59 (score_in_final VARCHAR, date VARCHAR) ### Question: What was the Score in Final on February 19, 1989? ### Answer: SELECT score_in_final FROM table_name_59 WHERE date = "february 19, 1989"
What are the Points when the Place is 9?
CREATE TABLE table_name_91 (points VARCHAR, place VARCHAR)
SELECT points FROM table_name_91 WHERE place = 9
### Context: CREATE TABLE table_name_91 (points VARCHAR, place VARCHAR) ### Question: What are the Points when the Place is 9? ### Answer: SELECT points FROM table_name_91 WHERE place = 9
What is the total for the place when the singer is Mariza Ikonomi when points are larger than 20?
CREATE TABLE table_name_88 (place VARCHAR, singer VARCHAR, points VARCHAR)
SELECT COUNT(place) FROM table_name_88 WHERE singer = "mariza ikonomi" AND points > 20
### Context: CREATE TABLE table_name_88 (place VARCHAR, singer VARCHAR, points VARCHAR) ### Question: What is the total for the place when the singer is Mariza Ikonomi when points are larger than 20? ### Answer: SELECT COUNT(place) FROM table_name_88 WHERE singer = "mariza ikonomi" AND points > 20
With a Suited Match of 13:1, what is the Double Non-Suited Match?
CREATE TABLE table_name_74 (Double VARCHAR, suited_match VARCHAR)
SELECT Double AS non_suited_match FROM table_name_74 WHERE suited_match = "13:1"
### Context: CREATE TABLE table_name_74 (Double VARCHAR, suited_match VARCHAR) ### Question: With a Suited Match of 13:1, what is the Double Non-Suited Match? ### Answer: SELECT Double AS non_suited_match FROM table_name_74 WHERE suited_match = "13:1"
What's the Suited Match with a 2.99% House Edge?
CREATE TABLE table_name_44 (suited_match VARCHAR, house_edge VARCHAR)
SELECT suited_match FROM table_name_44 WHERE house_edge = "2.99%"
### Context: CREATE TABLE table_name_44 (suited_match VARCHAR, house_edge VARCHAR) ### Question: What's the Suited Match with a 2.99% House Edge? ### Answer: SELECT suited_match FROM table_name_44 WHERE house_edge = "2.99%"
With a house edge of 3.53% and a Non-Suited Matched of 3:1, name the Double Non-Suited Match.
CREATE TABLE table_name_99 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
SELECT Double AS non_suited_match FROM table_name_99 WHERE non_suited_match = "3:1" AND house_edge = "3.53%"
### Context: CREATE TABLE table_name_99 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR) ### Question: With a house edge of 3.53% and a Non-Suited Matched of 3:1, name the Double Non-Suited Match. ### Answer: SELECT Double AS non_suited_match FROM table_name_99 WHERE non_suited_match = "3:1" AND house_edge = "3.53%"
Name the Non-Suited Match that has greater than 6 Number of Decks.
CREATE TABLE table_name_60 (non_suited_match VARCHAR, number_of_decks INTEGER)
SELECT non_suited_match FROM table_name_60 WHERE number_of_decks > 6
### Context: CREATE TABLE table_name_60 (non_suited_match VARCHAR, number_of_decks INTEGER) ### Question: Name the Non-Suited Match that has greater than 6 Number of Decks. ### Answer: SELECT non_suited_match FROM table_name_60 WHERE number_of_decks > 6
Name the Suited & Non-Suited Match with a 2.99% for House Edge.
CREATE TABLE table_name_80 (Suited VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
SELECT Suited + non_suited_match FROM table_name_80 WHERE house_edge = "2.99%"
### Context: CREATE TABLE table_name_80 (Suited VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR) ### Question: Name the Suited & Non-Suited Match with a 2.99% for House Edge. ### Answer: SELECT Suited + non_suited_match FROM table_name_80 WHERE house_edge = "2.99%"
With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match?
CREATE TABLE table_name_1 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
SELECT Double AS non_suited_match FROM table_name_1 WHERE non_suited_match = "4:1" AND house_edge = "3.63%"
### Context: CREATE TABLE table_name_1 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR) ### Question: With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match? ### Answer: SELECT Double AS non_suited_match FROM table_name_1 WHERE non_suited_match = "4:1" AND house_edge = "3.63%"
Wins smaller than 0 had what sum of year?
CREATE TABLE table_name_16 (year INTEGER, wins INTEGER)
SELECT SUM(year) FROM table_name_16 WHERE wins < 0
### Context: CREATE TABLE table_name_16 (year INTEGER, wins INTEGER) ### Question: Wins smaller than 0 had what sum of year? ### Answer: SELECT SUM(year) FROM table_name_16 WHERE wins < 0
Class of 125cc, and a Year smaller than 1966 had what lowest wins?
CREATE TABLE table_name_95 (wins INTEGER, class VARCHAR, year VARCHAR)
SELECT MIN(wins) FROM table_name_95 WHERE class = "125cc" AND year < 1966
### Context: CREATE TABLE table_name_95 (wins INTEGER, class VARCHAR, year VARCHAR) ### Question: Class of 125cc, and a Year smaller than 1966 had what lowest wins? ### Answer: SELECT MIN(wins) FROM table_name_95 WHERE class = "125cc" AND year < 1966
Class of 500cc, and a Wins smaller than 0 had what average year?
CREATE TABLE table_name_75 (year INTEGER, class VARCHAR, wins VARCHAR)
SELECT AVG(year) FROM table_name_75 WHERE class = "500cc" AND wins < 0
### Context: CREATE TABLE table_name_75 (year INTEGER, class VARCHAR, wins VARCHAR) ### Question: Class of 500cc, and a Wins smaller than 0 had what average year? ### Answer: SELECT AVG(year) FROM table_name_75 WHERE class = "500cc" AND wins < 0
What are the highest laps Kazuki Nakajima did with a Grid larger than 19?
CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR, grid VARCHAR)
SELECT MAX(laps) FROM table_name_58 WHERE driver = "kazuki nakajima" AND grid > 19
### Context: CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### Question: What are the highest laps Kazuki Nakajima did with a Grid larger than 19? ### Answer: SELECT MAX(laps) FROM table_name_58 WHERE driver = "kazuki nakajima" AND grid > 19
Which Constructor has a Grid of 17?
CREATE TABLE table_name_87 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_87 WHERE grid = 17
### Context: CREATE TABLE table_name_87 (constructor VARCHAR, grid VARCHAR) ### Question: Which Constructor has a Grid of 17? ### Answer: SELECT constructor FROM table_name_87 WHERE grid = 17
Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037?
CREATE TABLE table_name_37 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR)
SELECT driver FROM table_name_37 WHERE grid > 2 AND constructor = "bmw sauber" AND time_retired = "+15.037"
### Context: CREATE TABLE table_name_37 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR) ### Question: Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037? ### Answer: SELECT driver FROM table_name_37 WHERE grid > 2 AND constructor = "bmw sauber" AND time_retired = "+15.037"
Participation as of actor, film editor has what average year?
CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR)
SELECT AVG(year) FROM table_name_11 WHERE participation_as = "actor, film editor"
### Context: CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR) ### Question: Participation as of actor, film editor has what average year? ### Answer: SELECT AVG(year) FROM table_name_11 WHERE participation_as = "actor, film editor"
What were the odds for the finish of 1/4h?
CREATE TABLE table_name_14 (odds VARCHAR, finish VARCHAR)
SELECT odds FROM table_name_14 WHERE finish = "1/4h"
### Context: CREATE TABLE table_name_14 (odds VARCHAR, finish VARCHAR) ### Question: What were the odds for the finish of 1/4h? ### Answer: SELECT odds FROM table_name_14 WHERE finish = "1/4h"
What is the lowest last quarter with a time of 1:53.2 and odds of *1.30?
CREATE TABLE table_name_30 (last_1_4 INTEGER, time VARCHAR, odds VARCHAR)
SELECT MIN(last_1_4) FROM table_name_30 WHERE time = "1:53.2" AND odds = "*1.30"
### Context: CREATE TABLE table_name_30 (last_1_4 INTEGER, time VARCHAR, odds VARCHAR) ### Question: What is the lowest last quarter with a time of 1:53.2 and odds of *1.30? ### Answer: SELECT MIN(last_1_4) FROM table_name_30 WHERE time = "1:53.2" AND odds = "*1.30"
What is the average number of Gold when the total is 11 with more than 2 silver?
CREATE TABLE table_name_3 (gold INTEGER, total VARCHAR, silver VARCHAR)
SELECT AVG(gold) FROM table_name_3 WHERE total = 11 AND silver > 2
### Context: CREATE TABLE table_name_3 (gold INTEGER, total VARCHAR, silver VARCHAR) ### Question: What is the average number of Gold when the total is 11 with more than 2 silver? ### Answer: SELECT AVG(gold) FROM table_name_3 WHERE total = 11 AND silver > 2
What is the total rank with more than 0 silver and less than 2 medals total?
CREATE TABLE table_name_88 (rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT COUNT(rank) FROM table_name_88 WHERE total < 2 AND silver > 0
### Context: CREATE TABLE table_name_88 (rank VARCHAR, total VARCHAR, silver VARCHAR) ### Question: What is the total rank with more than 0 silver and less than 2 medals total? ### Answer: SELECT COUNT(rank) FROM table_name_88 WHERE total < 2 AND silver > 0
What is the value of bronze with less than 2 in total?
CREATE TABLE table_name_91 (bronze VARCHAR, total INTEGER)
SELECT bronze FROM table_name_91 WHERE total < 2
### Context: CREATE TABLE table_name_91 (bronze VARCHAR, total INTEGER) ### Question: What is the value of bronze with less than 2 in total? ### Answer: SELECT bronze FROM table_name_91 WHERE total < 2
What number of rank has more than 2 medals in total with less than 4 bronze?
CREATE TABLE table_name_26 (rank VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT COUNT(rank) FROM table_name_26 WHERE total > 2 AND bronze < 4
### Context: CREATE TABLE table_name_26 (rank VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: What number of rank has more than 2 medals in total with less than 4 bronze? ### Answer: SELECT COUNT(rank) FROM table_name_26 WHERE total > 2 AND bronze < 4
what is a building that is proposed and will have 32 floors?
CREATE TABLE table_name_22 (building VARCHAR, status VARCHAR, floors VARCHAR)
SELECT building FROM table_name_22 WHERE status = "proposed" AND floors = 32
### Context: CREATE TABLE table_name_22 (building VARCHAR, status VARCHAR, floors VARCHAR) ### Question: what is a building that is proposed and will have 32 floors? ### Answer: SELECT building FROM table_name_22 WHERE status = "proposed" AND floors = 32
What is the best time for marcus marshall?
CREATE TABLE table_name_21 (best INTEGER, name VARCHAR)
SELECT AVG(best) FROM table_name_21 WHERE name = "marcus marshall"
### Context: CREATE TABLE table_name_21 (best INTEGER, name VARCHAR) ### Question: What is the best time for marcus marshall? ### Answer: SELECT AVG(best) FROM table_name_21 WHERE name = "marcus marshall"
What is the best time for a rusport driver with a qual 2 time of 1:10.166?
CREATE TABLE table_name_58 (best INTEGER, team VARCHAR, qual_2 VARCHAR)
SELECT MAX(best) FROM table_name_58 WHERE team = "rusport" AND qual_2 = "1:10.166"
### Context: CREATE TABLE table_name_58 (best INTEGER, team VARCHAR, qual_2 VARCHAR) ### Question: What is the best time for a rusport driver with a qual 2 time of 1:10.166? ### Answer: SELECT MAX(best) FROM table_name_58 WHERE team = "rusport" AND qual_2 = "1:10.166"
What team had a qual 2 time of 58.385?
CREATE TABLE table_name_92 (team VARCHAR, qual_2 VARCHAR)
SELECT team FROM table_name_92 WHERE qual_2 = "58.385"
### Context: CREATE TABLE table_name_92 (team VARCHAR, qual_2 VARCHAR) ### Question: What team had a qual 2 time of 58.385? ### Answer: SELECT team FROM table_name_92 WHERE qual_2 = "58.385"
What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0?
CREATE TABLE table_name_94 (university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)
SELECT COUNT(university_of_dublin) FROM table_name_94 WHERE agricultural_panel = 0 AND nominated_by_the_taoiseach > 0 AND industrial_and_commercial_panel < 0
### Context: CREATE TABLE table_name_94 (university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR, nominated_by_the_taoiseach VARCHAR) ### Question: What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0? ### Answer: SELECT COUNT(university_of_dublin) FROM table_name_94 WHERE agricultural_panel = 0 AND nominated_by_the_taoiseach > 0 AND industrial_and_commercial_panel < 0
What is the average for the agricultural panel that has a National University of Ireland less than 0?
CREATE TABLE table_name_16 (agricultural_panel INTEGER, national_university_of_ireland INTEGER)
SELECT AVG(agricultural_panel) FROM table_name_16 WHERE national_university_of_ireland < 0
### Context: CREATE TABLE table_name_16 (agricultural_panel INTEGER, national_university_of_ireland INTEGER) ### Question: What is the average for the agricultural panel that has a National University of Ireland less than 0? ### Answer: SELECT AVG(agricultural_panel) FROM table_name_16 WHERE national_university_of_ireland < 0
What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2?
CREATE TABLE table_name_93 (university_of_dublin INTEGER, administrative_panel VARCHAR, cultural_and_educational_panel VARCHAR)
SELECT MIN(university_of_dublin) FROM table_name_93 WHERE administrative_panel = 3 AND cultural_and_educational_panel < 2
### Context: CREATE TABLE table_name_93 (university_of_dublin INTEGER, administrative_panel VARCHAR, cultural_and_educational_panel VARCHAR) ### Question: What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2? ### Answer: SELECT MIN(university_of_dublin) FROM table_name_93 WHERE administrative_panel = 3 AND cultural_and_educational_panel < 2
What was the record at Memorial Stadium on September 19, 1965?
CREATE TABLE table_name_59 (record VARCHAR, game_site VARCHAR, date VARCHAR)
SELECT record FROM table_name_59 WHERE game_site = "memorial stadium" AND date = "september 19, 1965"
### Context: CREATE TABLE table_name_59 (record VARCHAR, game_site VARCHAR, date VARCHAR) ### Question: What was the record at Memorial Stadium on September 19, 1965? ### Answer: SELECT record FROM table_name_59 WHERE game_site = "memorial stadium" AND date = "september 19, 1965"
What is the largest attendance at Memorial Stadium on December 12, 1965?
CREATE TABLE table_name_51 (attendance INTEGER, game_site VARCHAR, date VARCHAR)
SELECT MAX(attendance) FROM table_name_51 WHERE game_site = "memorial stadium" AND date = "december 12, 1965"
### Context: CREATE TABLE table_name_51 (attendance INTEGER, game_site VARCHAR, date VARCHAR) ### Question: What is the largest attendance at Memorial Stadium on December 12, 1965? ### Answer: SELECT MAX(attendance) FROM table_name_51 WHERE game_site = "memorial stadium" AND date = "december 12, 1965"
Which Extra points is the highest one that has a Player of herman everhardus, and a Field goals larger than 0?
CREATE TABLE table_name_97 (extra_points INTEGER, player VARCHAR, field_goals VARCHAR)
SELECT MAX(extra_points) FROM table_name_97 WHERE player = "herman everhardus" AND field_goals > 0
### Context: CREATE TABLE table_name_97 (extra_points INTEGER, player VARCHAR, field_goals VARCHAR) ### Question: Which Extra points is the highest one that has a Player of herman everhardus, and a Field goals larger than 0? ### Answer: SELECT MAX(extra_points) FROM table_name_97 WHERE player = "herman everhardus" AND field_goals > 0
Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1?
CREATE TABLE table_name_45 (extra_points INTEGER, touchdowns VARCHAR, points VARCHAR, player VARCHAR)
SELECT SUM(extra_points) FROM table_name_45 WHERE points < 12 AND player = "chuck bernard" AND touchdowns > 1
### Context: CREATE TABLE table_name_45 (extra_points INTEGER, touchdowns VARCHAR, points VARCHAR, player VARCHAR) ### Question: Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1? ### Answer: SELECT SUM(extra_points) FROM table_name_45 WHERE points < 12 AND player = "chuck bernard" AND touchdowns > 1
How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0?
CREATE TABLE table_name_45 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR, player VARCHAR)
SELECT SUM(field_goals) FROM table_name_45 WHERE touchdowns < 3 AND player = "willis ward" AND extra_points < 0
### Context: CREATE TABLE table_name_45 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR, player VARCHAR) ### Question: How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0? ### Answer: SELECT SUM(field_goals) FROM table_name_45 WHERE touchdowns < 3 AND player = "willis ward" AND extra_points < 0
Whicih Extra points are the average ones that have Points smaller than 6?
CREATE TABLE table_name_35 (extra_points INTEGER, points INTEGER)
SELECT AVG(extra_points) FROM table_name_35 WHERE points < 6
### Context: CREATE TABLE table_name_35 (extra_points INTEGER, points INTEGER) ### Question: Whicih Extra points are the average ones that have Points smaller than 6? ### Answer: SELECT AVG(extra_points) FROM table_name_35 WHERE points < 6
Which position is round 7?
CREATE TABLE table_name_27 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_27 WHERE round = 7
### Context: CREATE TABLE table_name_27 (position VARCHAR, round VARCHAR) ### Question: Which position is round 7? ### Answer: SELECT position FROM table_name_27 WHERE round = 7
Which college has a position of goaltender?
CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, position VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_92 WHERE position = "goaltender"
### Context: CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, position VARCHAR) ### Question: Which college has a position of goaltender? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_92 WHERE position = "goaltender"
What is Darryl Fedorak's highest round?
CREATE TABLE table_name_91 (round INTEGER, player VARCHAR)
SELECT MAX(round) FROM table_name_91 WHERE player = "darryl fedorak"
### Context: CREATE TABLE table_name_91 (round INTEGER, player VARCHAR) ### Question: What is Darryl Fedorak's highest round? ### Answer: SELECT MAX(round) FROM table_name_91 WHERE player = "darryl fedorak"
What nationality has a higher round than 8?
CREATE TABLE table_name_86 (nationality VARCHAR, round INTEGER)
SELECT nationality FROM table_name_86 WHERE round > 8
### Context: CREATE TABLE table_name_86 (nationality VARCHAR, round INTEGER) ### Question: What nationality has a higher round than 8? ### Answer: SELECT nationality FROM table_name_86 WHERE round > 8
What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen?
CREATE TABLE table_name_74 (connection_with_australia VARCHAR, connection_with_america VARCHAR)
SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = "born in the u.s.; mother is u.s. citizen"
### Context: CREATE TABLE table_name_74 (connection_with_australia VARCHAR, connection_with_america VARCHAR) ### Question: What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen? ### Answer: SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = "born in the u.s.; mother is u.s. citizen"
What is the person born in Australia, rick springfield notable for?
CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR)
SELECT notable_for FROM table_name_23 WHERE connection_with_australia = "born in australia" AND name = "rick springfield"
### Context: CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR) ### Question: What is the person born in Australia, rick springfield notable for? ### Answer: SELECT notable_for FROM table_name_23 WHERE connection_with_australia = "born in australia" AND name = "rick springfield"
What is the Born–Died for the person whose family moved to Australia at age 6?
CREATE TABLE table_name_93 (born___died VARCHAR, connection_with_australia VARCHAR)
SELECT born___died FROM table_name_93 WHERE connection_with_australia = "family moved to australia at age 6"
### Context: CREATE TABLE table_name_93 (born___died VARCHAR, connection_with_australia VARCHAR) ### Question: What is the Born–Died for the person whose family moved to Australia at age 6? ### Answer: SELECT born___died FROM table_name_93 WHERE connection_with_australia = "family moved to australia at age 6"
What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz?
CREATE TABLE table_name_64 (date INTEGER, cores_per_die___dies_per_module VARCHAR, clock VARCHAR)
SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = "2 / 1" AND clock = "1.4-1.6ghz"
### Context: CREATE TABLE table_name_64 (date INTEGER, cores_per_die___dies_per_module VARCHAR, clock VARCHAR) ### Question: What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz? ### Answer: SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = "2 / 1" AND clock = "1.4-1.6ghz"
Which process has a date later than 2000 and a Clock of 1.4-1.6ghz?
CREATE TABLE table_name_61 (process VARCHAR, date VARCHAR, clock VARCHAR)
SELECT process FROM table_name_61 WHERE date > 2000 AND clock = "1.4-1.6ghz"
### Context: CREATE TABLE table_name_61 (process VARCHAR, date VARCHAR, clock VARCHAR) ### Question: Which process has a date later than 2000 and a Clock of 1.4-1.6ghz? ### Answer: SELECT process FROM table_name_61 WHERE date > 2000 AND clock = "1.4-1.6ghz"
Which date has a Clock of 0.8-1.6ghz?
CREATE TABLE table_name_61 (date VARCHAR, clock VARCHAR)
SELECT date FROM table_name_61 WHERE clock = "0.8-1.6ghz"
### Context: CREATE TABLE table_name_61 (date VARCHAR, clock VARCHAR) ### Question: Which date has a Clock of 0.8-1.6ghz? ### Answer: SELECT date FROM table_name_61 WHERE clock = "0.8-1.6ghz"
What was the record on May 21?
CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_15 WHERE date = "may 21"
### Context: CREATE TABLE table_name_15 (record VARCHAR, date VARCHAR) ### Question: What was the record on May 21? ### Answer: SELECT record FROM table_name_15 WHERE date = "may 21"
On what date was the attendance 24,976?
CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_98 WHERE attendance = "24,976"
### Context: CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR) ### Question: On what date was the attendance 24,976? ### Answer: SELECT date FROM table_name_98 WHERE attendance = "24,976"
On what date was the record 21-26?
CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_79 WHERE record = "21-26"
### Context: CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 21-26? ### Answer: SELECT date FROM table_name_79 WHERE record = "21-26"
How many were in attendance with a loss of Prokopec (2-7)?
CREATE TABLE table_name_21 (attendance VARCHAR, loss VARCHAR)
SELECT attendance FROM table_name_21 WHERE loss = "prokopec (2-7)"
### Context: CREATE TABLE table_name_21 (attendance VARCHAR, loss VARCHAR) ### Question: How many were in attendance with a loss of Prokopec (2-7)? ### Answer: SELECT attendance FROM table_name_21 WHERE loss = "prokopec (2-7)"
Who was the opponent on May 20?
CREATE TABLE table_name_74 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_74 WHERE date = "may 20"
### Context: CREATE TABLE table_name_74 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on May 20? ### Answer: SELECT opponent FROM table_name_74 WHERE date = "may 20"
What is the tournament on Apr 6?
CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_13 WHERE date = "apr 6"
### Context: CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR) ### Question: What is the tournament on Apr 6? ### Answer: SELECT tournament FROM table_name_13 WHERE date = "apr 6"
What is the 1st prize of the tournament in Scotland?
CREATE TABLE table_name_95 (location VARCHAR)
SELECT 1 AS st_prize___$__ FROM table_name_95 WHERE location = "scotland"
### Context: CREATE TABLE table_name_95 (location VARCHAR) ### Question: What is the 1st prize of the tournament in Scotland? ### Answer: SELECT 1 AS st_prize___$__ FROM table_name_95 WHERE location = "scotland"
What is the location of the Sea Pines Heritage Classic tournament?
CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_68 WHERE tournament = "sea pines heritage classic"
### Context: CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR) ### Question: What is the location of the Sea Pines Heritage Classic tournament? ### Answer: SELECT location FROM table_name_68 WHERE tournament = "sea pines heritage classic"
What is the score of the Tournament Players Championship?
CREATE TABLE table_name_16 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_16 WHERE tournament = "tournament players championship"
### Context: CREATE TABLE table_name_16 (score VARCHAR, tournament VARCHAR) ### Question: What is the score of the Tournament Players Championship? ### Answer: SELECT score FROM table_name_16 WHERE tournament = "tournament players championship"
What is the 1st prize at the U.S. Open?
CREATE TABLE table_name_69 (tournament VARCHAR)
SELECT 1 AS st_prize___$__ FROM table_name_69 WHERE tournament = "u.s. open"
### Context: CREATE TABLE table_name_69 (tournament VARCHAR) ### Question: What is the 1st prize at the U.S. Open? ### Answer: SELECT 1 AS st_prize___$__ FROM table_name_69 WHERE tournament = "u.s. open"
What is the average first prize of the tournament with a score of 279 (–9)?
CREATE TABLE table_name_47 (score VARCHAR)
SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_47 WHERE score = "279 (–9)"
### Context: CREATE TABLE table_name_47 (score VARCHAR) ### Question: What is the average first prize of the tournament with a score of 279 (–9)? ### Answer: SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_47 WHERE score = "279 (–9)"
What is the lowest first prize of the Mercedes Championships tournament in California?
CREATE TABLE table_name_18 (location VARCHAR, tournament VARCHAR)
SELECT MIN(1 AS st_prize___) AS $__ FROM table_name_18 WHERE location = "california" AND tournament = "mercedes championships"
### Context: CREATE TABLE table_name_18 (location VARCHAR, tournament VARCHAR) ### Question: What is the lowest first prize of the Mercedes Championships tournament in California? ### Answer: SELECT MIN(1 AS st_prize___) AS $__ FROM table_name_18 WHERE location = "california" AND tournament = "mercedes championships"
What is the average capacity for the venue where the team kommunalnik played?
CREATE TABLE table_name_29 (capacity INTEGER, team VARCHAR)
SELECT AVG(capacity) FROM table_name_29 WHERE team = "kommunalnik"
### Context: CREATE TABLE table_name_29 (capacity INTEGER, team VARCHAR) ### Question: What is the average capacity for the venue where the team kommunalnik played? ### Answer: SELECT AVG(capacity) FROM table_name_29 WHERE team = "kommunalnik"
What is the position of the team that played at the venue, Central, Gomel?
CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR)
SELECT position_in_1999 FROM table_name_71 WHERE venue = "central, gomel"
### Context: CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR) ### Question: What is the position of the team that played at the venue, Central, Gomel? ### Answer: SELECT position_in_1999 FROM table_name_71 WHERE venue = "central, gomel"
What is the position of the team that played at the venue with more than 6,500 capacity?
CREATE TABLE table_name_70 (position_in_1999 VARCHAR, capacity INTEGER)
SELECT position_in_1999 FROM table_name_70 WHERE capacity > 6 OFFSET 500
### Context: CREATE TABLE table_name_70 (position_in_1999 VARCHAR, capacity INTEGER) ### Question: What is the position of the team that played at the venue with more than 6,500 capacity? ### Answer: SELECT position_in_1999 FROM table_name_70 WHERE capacity > 6 OFFSET 500
What is the smallest number of assists with 70 Pims and less than 19 goals?
CREATE TABLE table_name_71 (assists INTEGER, pims VARCHAR, goals VARCHAR)
SELECT MIN(assists) FROM table_name_71 WHERE pims = 70 AND goals < 19
### Context: CREATE TABLE table_name_71 (assists INTEGER, pims VARCHAR, goals VARCHAR) ### Question: What is the smallest number of assists with 70 Pims and less than 19 goals? ### Answer: SELECT MIN(assists) FROM table_name_71 WHERE pims = 70 AND goals < 19
What is the smallest number of assists for Ben Duggan with less than 7 points?
CREATE TABLE table_name_17 (assists INTEGER, name VARCHAR, points VARCHAR)
SELECT MIN(assists) FROM table_name_17 WHERE name = "ben duggan" AND points < 7
### Context: CREATE TABLE table_name_17 (assists INTEGER, name VARCHAR, points VARCHAR) ### Question: What is the smallest number of assists for Ben Duggan with less than 7 points? ### Answer: SELECT MIN(assists) FROM table_name_17 WHERE name = "ben duggan" AND points < 7