question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the city with september of 83 °f / 28.3 °c
CREATE TABLE table_name_15 (city VARCHAR, sep VARCHAR)
SELECT city FROM table_name_15 WHERE sep = "83 °f / 28.3 °c"
### Context: CREATE TABLE table_name_15 (city VARCHAR, sep VARCHAR) ### Question: Name the city with september of 83 °f / 28.3 °c ### Answer: SELECT city FROM table_name_15 WHERE sep = "83 °f / 28.3 °c"
Name the june when it has july of 84 °f / 28.9 °c
CREATE TABLE table_name_28 (jun VARCHAR, jul VARCHAR)
SELECT jun FROM table_name_28 WHERE jul = "84 °f / 28.9 °c"
### Context: CREATE TABLE table_name_28 (jun VARCHAR, jul VARCHAR) ### Question: Name the june when it has july of 84 °f / 28.9 °c ### Answer: SELECT jun FROM table_name_28 WHERE jul = "84 °f / 28.9 °c"
What Time has Date of May 9?
CREATE TABLE table_name_84 (time VARCHAR, date VARCHAR)
SELECT time FROM table_name_84 WHERE date = "may 9"
### Context: CREATE TABLE table_name_84 (time VARCHAR, date VARCHAR) ### Question: What Time has Date of May 9? ### Answer: SELECT time FROM table_name_84 WHERE date = "may 9"
What is the lowest roll number of Katikati college?
CREATE TABLE table_name_37 (roll INTEGER, name VARCHAR)
SELECT MIN(roll) FROM table_name_37 WHERE name = "katikati college"
### Context: CREATE TABLE table_name_37 (roll INTEGER, name VARCHAR) ### Question: What is the lowest roll number of Katikati college? ### Answer: SELECT MIN(roll) FROM table_name_37 WHERE name = "katikati college"
What is the highest roll number of the school in Te puna with a decile larger than 2?
CREATE TABLE table_name_85 (roll INTEGER, decile VARCHAR, area VARCHAR)
SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area = "te puna"
### Context: CREATE TABLE table_name_85 (roll INTEGER, decile VARCHAR, area VARCHAR) ### Question: What is the highest roll number of the school in Te puna with a decile larger than 2? ### Answer: SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area = "te puna"
What is the roll number of Te Puke Intermediate, which has a decile of 4?
CREATE TABLE table_name_62 (roll VARCHAR, decile VARCHAR, name VARCHAR)
SELECT roll FROM table_name_62 WHERE decile = 4 AND name = "te puke intermediate"
### Context: CREATE TABLE table_name_62 (roll VARCHAR, decile VARCHAR, name VARCHAR) ### Question: What is the roll number of Te Puke Intermediate, which has a decile of 4? ### Answer: SELECT roll FROM table_name_62 WHERE decile = 4 AND name = "te puke intermediate"
What is the highest roll number of the school with a state authority and a decile smaller than 8?
CREATE TABLE table_name_79 (roll INTEGER, authority VARCHAR, decile VARCHAR)
SELECT MAX(roll) FROM table_name_79 WHERE authority = "state" AND decile < 8
### Context: CREATE TABLE table_name_79 (roll INTEGER, authority VARCHAR, decile VARCHAR) ### Question: What is the highest roll number of the school with a state authority and a decile smaller than 8? ### Answer: SELECT MAX(roll) FROM table_name_79 WHERE authority = "state" AND decile < 8
What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2?
CREATE TABLE table_name_10 (lost INTEGER, points VARCHAR, draw VARCHAR)
SELECT SUM(lost) FROM table_name_10 WHERE points > 21 AND draw = 2
### Context: CREATE TABLE table_name_10 (lost INTEGER, points VARCHAR, draw VARCHAR) ### Question: What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2? ### Answer: SELECT SUM(lost) FROM table_name_10 WHERE points > 21 AND draw = 2
What is the total number of Goals Scored, when the Team is San Salvador F.C., and when the Points are less than 10?
CREATE TABLE table_name_33 (goals_scored INTEGER, team VARCHAR, points VARCHAR)
SELECT MAX(goals_scored) FROM table_name_33 WHERE team = "san salvador f.c." AND points < 10
### Context: CREATE TABLE table_name_33 (goals_scored INTEGER, team VARCHAR, points VARCHAR) ### Question: What is the total number of Goals Scored, when the Team is San Salvador F.C., and when the Points are less than 10? ### Answer: SELECT MAX(goals_scored) FROM table_name_33 WHERE team = "san salvador f.c." AND points < 10
What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?
CREATE TABLE table_name_86 (goals_conceded INTEGER, points VARCHAR, played VARCHAR)
SELECT SUM(goals_conceded) FROM table_name_86 WHERE points < 26 AND played < 18
### Context: CREATE TABLE table_name_86 (goals_conceded INTEGER, points VARCHAR, played VARCHAR) ### Question: What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18? ### Answer: SELECT SUM(goals_conceded) FROM table_name_86 WHERE points < 26 AND played < 18
What is the average value for Lost, when the value for Goals Scored is greater than 20, and when the value for Played is less than 18?
CREATE TABLE table_name_95 (lost INTEGER, goals_scored VARCHAR, played VARCHAR)
SELECT AVG(lost) FROM table_name_95 WHERE goals_scored > 20 AND played < 18
### Context: CREATE TABLE table_name_95 (lost INTEGER, goals_scored VARCHAR, played VARCHAR) ### Question: What is the average value for Lost, when the value for Goals Scored is greater than 20, and when the value for Played is less than 18? ### Answer: SELECT AVG(lost) FROM table_name_95 WHERE goals_scored > 20 AND played < 18
What is score of the game played in place t8 with Byron Nelson playing?
CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_20 WHERE place = "t8" AND player = "byron nelson"
### Context: CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is score of the game played in place t8 with Byron Nelson playing? ### Answer: SELECT score FROM table_name_20 WHERE place = "t8" AND player = "byron nelson"
What is the sum of Money of the game that was played in the United States with Sam Snead as a player?
CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR)
SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = "united states" AND player = "sam snead"
### Context: CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR) ### Question: What is the sum of Money of the game that was played in the United States with Sam Snead as a player? ### Answer: SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = "united states" AND player = "sam snead"
What is the Money ($) of the game with a score of 69-74-70-73=286?
CREATE TABLE table_name_57 (money___ INTEGER, score VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_57 WHERE score = 69 - 74 - 70 - 73 = 286
### Context: CREATE TABLE table_name_57 (money___ INTEGER, score VARCHAR) ### Question: What is the Money ($) of the game with a score of 69-74-70-73=286? ### Answer: SELECT MAX(money___) AS $__ FROM table_name_57 WHERE score = 69 - 74 - 70 - 73 = 286
Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2
CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR)
SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = "francesco casagrande" AND intergiro_classification = "not awarded" AND stage = "2"
### Context: CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR) ### Question: Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2 ### Answer: SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = "francesco casagrande" AND intergiro_classification = "not awarded" AND stage = "2"
Name the winner for adriano baffi and integiro classification of ján svorada for stage of 13
CREATE TABLE table_name_89 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, intergiro_classification VARCHAR)
SELECT winner FROM table_name_89 WHERE points_classification = "adriano baffi" AND intergiro_classification = "ján svorada" AND stage = "13"
### Context: CREATE TABLE table_name_89 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, intergiro_classification VARCHAR) ### Question: Name the winner for adriano baffi and integiro classification of ján svorada for stage of 13 ### Answer: SELECT winner FROM table_name_89 WHERE points_classification = "adriano baffi" AND intergiro_classification = "ján svorada" AND stage = "13"
Name trofeo fast team with young rider classification of francesco casagrande and stage of 10
CREATE TABLE table_name_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)
SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = "francesco casagrande" AND stage = "10"
### Context: CREATE TABLE table_name_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR) ### Question: Name trofeo fast team with young rider classification of francesco casagrande and stage of 10 ### Answer: SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = "francesco casagrande" AND stage = "10"
What is the sum of the total for a routine score of 26.6?
CREATE TABLE table_name_69 (total INTEGER, routine_score VARCHAR)
SELECT SUM(total) FROM table_name_69 WHERE routine_score = 26.6
### Context: CREATE TABLE table_name_69 (total INTEGER, routine_score VARCHAR) ### Question: What is the sum of the total for a routine score of 26.6? ### Answer: SELECT SUM(total) FROM table_name_69 WHERE routine_score = 26.6
Name the january when april is courtney rachel culkin
CREATE TABLE table_name_53 (january VARCHAR, april VARCHAR)
SELECT january FROM table_name_53 WHERE april = "courtney rachel culkin"
### Context: CREATE TABLE table_name_53 (january VARCHAR, april VARCHAR) ### Question: Name the january when april is courtney rachel culkin ### Answer: SELECT january FROM table_name_53 WHERE april = "courtney rachel culkin"
Name the october when november is buffy tyler
CREATE TABLE table_name_17 (october VARCHAR, november VARCHAR)
SELECT october FROM table_name_17 WHERE november = "buffy tyler"
### Context: CREATE TABLE table_name_17 (october VARCHAR, november VARCHAR) ### Question: Name the october when november is buffy tyler ### Answer: SELECT october FROM table_name_17 WHERE november = "buffy tyler"
Name the october when the september is dalene kurtis
CREATE TABLE table_name_47 (october VARCHAR, september VARCHAR)
SELECT october FROM table_name_47 WHERE september = "dalene kurtis"
### Context: CREATE TABLE table_name_47 (october VARCHAR, september VARCHAR) ### Question: Name the october when the september is dalene kurtis ### Answer: SELECT october FROM table_name_47 WHERE september = "dalene kurtis"
Name the april for candice cassidy
CREATE TABLE table_name_41 (april VARCHAR, june VARCHAR)
SELECT april FROM table_name_41 WHERE june = "candice cassidy"
### Context: CREATE TABLE table_name_41 (april VARCHAR, june VARCHAR) ### Question: Name the april for candice cassidy ### Answer: SELECT april FROM table_name_41 WHERE june = "candice cassidy"
Name the october for july of kimberley stanfield
CREATE TABLE table_name_71 (october VARCHAR, july VARCHAR)
SELECT october FROM table_name_71 WHERE july = "kimberley stanfield"
### Context: CREATE TABLE table_name_71 (october VARCHAR, july VARCHAR) ### Question: Name the october for july of kimberley stanfield ### Answer: SELECT october FROM table_name_71 WHERE july = "kimberley stanfield"
Which Representative was from Kentucky during the years of 1855–1859?
CREATE TABLE table_name_25 (representative VARCHAR, state VARCHAR, years VARCHAR)
SELECT representative FROM table_name_25 WHERE state = "kentucky" AND years = "1855–1859"
### Context: CREATE TABLE table_name_25 (representative VARCHAR, state VARCHAR, years VARCHAR) ### Question: Which Representative was from Kentucky during the years of 1855–1859? ### Answer: SELECT representative FROM table_name_25 WHERE state = "kentucky" AND years = "1855–1859"
What was the lifespan of the Representative from the Republican Party during the years of 1953–1970?
CREATE TABLE table_name_31 (lifespan VARCHAR, party VARCHAR, years VARCHAR)
SELECT lifespan FROM table_name_31 WHERE party = "republican" AND years = "1953–1970"
### Context: CREATE TABLE table_name_31 (lifespan VARCHAR, party VARCHAR, years VARCHAR) ### Question: What was the lifespan of the Representative from the Republican Party during the years of 1953–1970? ### Answer: SELECT lifespan FROM table_name_31 WHERE party = "republican" AND years = "1953–1970"
What years did the Representative from Iowa with a lifespan of 1880–1942 serve?
CREATE TABLE table_name_20 (years VARCHAR, state VARCHAR, lifespan VARCHAR)
SELECT years FROM table_name_20 WHERE state = "iowa" AND lifespan = "1880–1942"
### Context: CREATE TABLE table_name_20 (years VARCHAR, state VARCHAR, lifespan VARCHAR) ### Question: What years did the Representative from Iowa with a lifespan of 1880–1942 serve? ### Answer: SELECT years FROM table_name_20 WHERE state = "iowa" AND lifespan = "1880–1942"
Which Representative had a Lifespan of 1795–1866?
CREATE TABLE table_name_71 (representative VARCHAR, lifespan VARCHAR)
SELECT representative FROM table_name_71 WHERE lifespan = "1795–1866"
### Context: CREATE TABLE table_name_71 (representative VARCHAR, lifespan VARCHAR) ### Question: Which Representative had a Lifespan of 1795–1866? ### Answer: SELECT representative FROM table_name_71 WHERE lifespan = "1795–1866"
When did the Chiefs have their first bye?
CREATE TABLE table_name_47 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_47 WHERE attendance = "bye"
### Context: CREATE TABLE table_name_47 (week INTEGER, attendance VARCHAR) ### Question: When did the Chiefs have their first bye? ### Answer: SELECT MIN(week) FROM table_name_47 WHERE attendance = "bye"
What is the position played for the player drafted in round 2?
CREATE TABLE table_name_76 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_76 WHERE round = 2
### Context: CREATE TABLE table_name_76 (position VARCHAR, round VARCHAR) ### Question: What is the position played for the player drafted in round 2? ### Answer: SELECT position FROM table_name_76 WHERE round = 2
what is the name of the player that played position 3b?
CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR)
SELECT name FROM table_name_54 WHERE position = "3b"
### Context: CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR) ### Question: what is the name of the player that played position 3b? ### Answer: SELECT name FROM table_name_54 WHERE position = "3b"
what is the school for Ivey armstrong?
CREATE TABLE table_name_90 (school VARCHAR, name VARCHAR)
SELECT school FROM table_name_90 WHERE name = "ivey armstrong"
### Context: CREATE TABLE table_name_90 (school VARCHAR, name VARCHAR) ### Question: what is the school for Ivey armstrong? ### Answer: SELECT school FROM table_name_90 WHERE name = "ivey armstrong"
what is the position for the player from university of alabama?
CREATE TABLE table_name_37 (position VARCHAR, school VARCHAR)
SELECT position FROM table_name_37 WHERE school = "university of alabama"
### Context: CREATE TABLE table_name_37 (position VARCHAR, school VARCHAR) ### Question: what is the position for the player from university of alabama? ### Answer: SELECT position FROM table_name_37 WHERE school = "university of alabama"
How many days with frost were there in the City/Town of Lugo have?
CREATE TABLE table_name_22 (days_with_frost INTEGER, city_town VARCHAR)
SELECT SUM(days_with_frost) FROM table_name_22 WHERE city_town = "lugo"
### Context: CREATE TABLE table_name_22 (days_with_frost INTEGER, city_town VARCHAR) ### Question: How many days with frost were there in the City/Town of Lugo have? ### Answer: SELECT SUM(days_with_frost) FROM table_name_22 WHERE city_town = "lugo"
What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?
CREATE TABLE table_name_98 (sunlight_hours INTEGER, city_town VARCHAR, days_with_frost VARCHAR)
SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = "ourense" AND days_with_frost > 30
### Context: CREATE TABLE table_name_98 (sunlight_hours INTEGER, city_town VARCHAR, days_with_frost VARCHAR) ### Question: What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense? ### Answer: SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = "ourense" AND days_with_frost > 30
What is the largest amount of sunlight hours for the City of Pontevedra?
CREATE TABLE table_name_23 (sunlight_hours INTEGER, city_town VARCHAR)
SELECT MAX(sunlight_hours) FROM table_name_23 WHERE city_town = "pontevedra"
### Context: CREATE TABLE table_name_23 (sunlight_hours INTEGER, city_town VARCHAR) ### Question: What is the largest amount of sunlight hours for the City of Pontevedra? ### Answer: SELECT MAX(sunlight_hours) FROM table_name_23 WHERE city_town = "pontevedra"
for the rank of 3 for the united states, what is the average lane?
CREATE TABLE table_name_8 (lane INTEGER, nationality VARCHAR, rank VARCHAR)
SELECT AVG(lane) FROM table_name_8 WHERE nationality = "united states" AND rank = 3
### Context: CREATE TABLE table_name_8 (lane INTEGER, nationality VARCHAR, rank VARCHAR) ### Question: for the rank of 3 for the united states, what is the average lane? ### Answer: SELECT AVG(lane) FROM table_name_8 WHERE nationality = "united states" AND rank = 3
for the rank more than 1 and nationality of netherlands, what is the lane?
CREATE TABLE table_name_30 (lane INTEGER, nationality VARCHAR, rank VARCHAR)
SELECT AVG(lane) FROM table_name_30 WHERE nationality = "netherlands" AND rank > 1
### Context: CREATE TABLE table_name_30 (lane INTEGER, nationality VARCHAR, rank VARCHAR) ### Question: for the rank more than 1 and nationality of netherlands, what is the lane? ### Answer: SELECT AVG(lane) FROM table_name_30 WHERE nationality = "netherlands" AND rank > 1
for the time of 49.04 and lane less than 3, what is the nationality?
CREATE TABLE table_name_27 (nationality VARCHAR, lane VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_27 WHERE lane < 3 AND time = 49.04
### Context: CREATE TABLE table_name_27 (nationality VARCHAR, lane VARCHAR, time VARCHAR) ### Question: for the time of 49.04 and lane less than 3, what is the nationality? ### Answer: SELECT nationality FROM table_name_27 WHERE lane < 3 AND time = 49.04
for the rank of 8 and lane less than 3 what is the name?
CREATE TABLE table_name_99 (name VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT name FROM table_name_99 WHERE lane < 3 AND rank = 8
### Context: CREATE TABLE table_name_99 (name VARCHAR, lane VARCHAR, rank VARCHAR) ### Question: for the rank of 8 and lane less than 3 what is the name? ### Answer: SELECT name FROM table_name_99 WHERE lane < 3 AND rank = 8
What play has a loss of 2?
CREATE TABLE table_name_1 (played VARCHAR, lost VARCHAR)
SELECT played FROM table_name_1 WHERE lost = "2"
### Context: CREATE TABLE table_name_1 (played VARCHAR, lost VARCHAR) ### Question: What play has a loss of 2? ### Answer: SELECT played FROM table_name_1 WHERE lost = "2"
What try bonus has a club of caerphilly rfc?
CREATE TABLE table_name_27 (try_bonus VARCHAR, club VARCHAR)
SELECT try_bonus FROM table_name_27 WHERE club = "caerphilly rfc"
### Context: CREATE TABLE table_name_27 (try_bonus VARCHAR, club VARCHAR) ### Question: What try bonus has a club of caerphilly rfc? ### Answer: SELECT try_bonus FROM table_name_27 WHERE club = "caerphilly rfc"
What club has a play of 22, and losing bonus of 7?
CREATE TABLE table_name_38 (club VARCHAR, played VARCHAR, losing_bonus VARCHAR)
SELECT club FROM table_name_38 WHERE played = "22" AND losing_bonus = "7"
### Context: CREATE TABLE table_name_38 (club VARCHAR, played VARCHAR, losing_bonus VARCHAR) ### Question: What club has a play of 22, and losing bonus of 7? ### Answer: SELECT club FROM table_name_38 WHERE played = "22" AND losing_bonus = "7"
What point against has tries against of 77, and a lost of 16?
CREATE TABLE table_name_93 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR)
SELECT points_against FROM table_name_93 WHERE tries_against = "77" AND lost = "16"
### Context: CREATE TABLE table_name_93 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR) ### Question: What point against has tries against of 77, and a lost of 16? ### Answer: SELECT points_against FROM table_name_93 WHERE tries_against = "77" AND lost = "16"
The nll participate in what sport?
CREATE TABLE table_name_64 (sport VARCHAR, league VARCHAR)
SELECT sport FROM table_name_64 WHERE league = "nll"
### Context: CREATE TABLE table_name_64 (sport VARCHAR, league VARCHAR) ### Question: The nll participate in what sport? ### Answer: SELECT sport FROM table_name_64 WHERE league = "nll"
When did the Club of western new york flash begin to play?
CREATE TABLE table_name_50 (began_play VARCHAR, club VARCHAR)
SELECT began_play FROM table_name_50 WHERE club = "western new york flash"
### Context: CREATE TABLE table_name_50 (began_play VARCHAR, club VARCHAR) ### Question: When did the Club of western new york flash begin to play? ### Answer: SELECT began_play FROM table_name_50 WHERE club = "western new york flash"
Which club plays soccer in the nwsl?
CREATE TABLE table_name_61 (club VARCHAR, sport VARCHAR, league VARCHAR)
SELECT club FROM table_name_61 WHERE sport = "soccer" AND league = "nwsl"
### Context: CREATE TABLE table_name_61 (club VARCHAR, sport VARCHAR, league VARCHAR) ### Question: Which club plays soccer in the nwsl? ### Answer: SELECT club FROM table_name_61 WHERE sport = "soccer" AND league = "nwsl"
When did the Rochester Rhinos begin to play?
CREATE TABLE table_name_48 (began_play VARCHAR, club VARCHAR)
SELECT began_play FROM table_name_48 WHERE club = "rochester rhinos"
### Context: CREATE TABLE table_name_48 (began_play VARCHAR, club VARCHAR) ### Question: When did the Rochester Rhinos begin to play? ### Answer: SELECT began_play FROM table_name_48 WHERE club = "rochester rhinos"
The sun of total that has a tour of 7 and a Giro smaller than 3 is 12.
CREATE TABLE table_name_51 (total INTEGER, tour VARCHAR, giro VARCHAR)
SELECT SUM(total) FROM table_name_51 WHERE tour = 7 AND giro < 3
### Context: CREATE TABLE table_name_51 (total INTEGER, tour VARCHAR, giro VARCHAR) ### Question: The sun of total that has a tour of 7 and a Giro smaller than 3 is 12. ### Answer: SELECT SUM(total) FROM table_name_51 WHERE tour = 7 AND giro < 3
What genders did Lynmore Primary School take?
CREATE TABLE table_name_68 (gender VARCHAR, name VARCHAR)
SELECT gender FROM table_name_68 WHERE name = "lynmore primary school"
### Context: CREATE TABLE table_name_68 (gender VARCHAR, name VARCHAR) ### Question: What genders did Lynmore Primary School take? ### Answer: SELECT gender FROM table_name_68 WHERE name = "lynmore primary school"
Which area served coed genders at Kaharoa school and had a Decile of 9?
CREATE TABLE table_name_45 (area VARCHAR, name VARCHAR, gender VARCHAR, decile VARCHAR)
SELECT area FROM table_name_45 WHERE gender = "coed" AND decile = "9" AND name = "kaharoa school"
### Context: CREATE TABLE table_name_45 (area VARCHAR, name VARCHAR, gender VARCHAR, decile VARCHAR) ### Question: Which area served coed genders at Kaharoa school and had a Decile of 9? ### Answer: SELECT area FROM table_name_45 WHERE gender = "coed" AND decile = "9" AND name = "kaharoa school"
What was the gender for the integrated authority with a roll of 142?
CREATE TABLE table_name_15 (gender VARCHAR, authority VARCHAR, roll VARCHAR)
SELECT gender FROM table_name_15 WHERE authority = "integrated" AND roll = 142
### Context: CREATE TABLE table_name_15 (gender VARCHAR, authority VARCHAR, roll VARCHAR) ### Question: What was the gender for the integrated authority with a roll of 142? ### Answer: SELECT gender FROM table_name_15 WHERE authority = "integrated" AND roll = 142
Who is the authority for the coed Eastbourne school?
CREATE TABLE table_name_46 (authority VARCHAR, area VARCHAR, gender VARCHAR)
SELECT authority FROM table_name_46 WHERE area = "eastbourne" AND gender = "coed"
### Context: CREATE TABLE table_name_46 (authority VARCHAR, area VARCHAR, gender VARCHAR) ### Question: Who is the authority for the coed Eastbourne school? ### Answer: SELECT authority FROM table_name_46 WHERE area = "eastbourne" AND gender = "coed"
What is the sum of all laps with rank 3?
CREATE TABLE table_name_99 (laps VARCHAR, rank VARCHAR)
SELECT COUNT(laps) FROM table_name_99 WHERE rank = "3"
### Context: CREATE TABLE table_name_99 (laps VARCHAR, rank VARCHAR) ### Question: What is the sum of all laps with rank 3? ### Answer: SELECT COUNT(laps) FROM table_name_99 WHERE rank = "3"
What is the sum of all laps starting at 10 and finishing at 20?
CREATE TABLE table_name_32 (laps INTEGER, start VARCHAR, finish VARCHAR)
SELECT SUM(laps) FROM table_name_32 WHERE start = "10" AND finish = "20"
### Context: CREATE TABLE table_name_32 (laps INTEGER, start VARCHAR, finish VARCHAR) ### Question: What is the sum of all laps starting at 10 and finishing at 20? ### Answer: SELECT SUM(laps) FROM table_name_32 WHERE start = "10" AND finish = "20"
What's the rank when the start is 10 and the laps are fewer than 192?
CREATE TABLE table_name_90 (rank VARCHAR, start VARCHAR, laps VARCHAR)
SELECT rank FROM table_name_90 WHERE start = "10" AND laps < 192
### Context: CREATE TABLE table_name_90 (rank VARCHAR, start VARCHAR, laps VARCHAR) ### Question: What's the rank when the start is 10 and the laps are fewer than 192? ### Answer: SELECT rank FROM table_name_90 WHERE start = "10" AND laps < 192
What's the rank when the laps are fewer than 137 and the qual is 116.470?
CREATE TABLE table_name_99 (rank VARCHAR, laps VARCHAR, qual VARCHAR)
SELECT rank FROM table_name_99 WHERE laps < 137 AND qual = "116.470"
### Context: CREATE TABLE table_name_99 (rank VARCHAR, laps VARCHAR, qual VARCHAR) ### Question: What's the rank when the laps are fewer than 137 and the qual is 116.470? ### Answer: SELECT rank FROM table_name_99 WHERE laps < 137 AND qual = "116.470"
What director worked with Al Mackay as writer?
CREATE TABLE table_name_61 (director_s_ VARCHAR, writer_s_ VARCHAR)
SELECT director_s_ FROM table_name_61 WHERE writer_s_ = "al mackay"
### Context: CREATE TABLE table_name_61 (director_s_ VARCHAR, writer_s_ VARCHAR) ### Question: What director worked with Al Mackay as writer? ### Answer: SELECT director_s_ FROM table_name_61 WHERE writer_s_ = "al mackay"
Which producer worked with Robert Sproul-cran as writer?
CREATE TABLE table_name_94 (producer_s_ VARCHAR, writer_s_ VARCHAR)
SELECT producer_s_ FROM table_name_94 WHERE writer_s_ = "robert sproul-cran"
### Context: CREATE TABLE table_name_94 (producer_s_ VARCHAR, writer_s_ VARCHAR) ### Question: Which producer worked with Robert Sproul-cran as writer? ### Answer: SELECT producer_s_ FROM table_name_94 WHERE writer_s_ = "robert sproul-cran"
Which film did Al Mackay write?
CREATE TABLE table_name_8 (film VARCHAR, writer_s_ VARCHAR)
SELECT film FROM table_name_8 WHERE writer_s_ = "al mackay"
### Context: CREATE TABLE table_name_8 (film VARCHAR, writer_s_ VARCHAR) ### Question: Which film did Al Mackay write? ### Answer: SELECT film FROM table_name_8 WHERE writer_s_ = "al mackay"
Who directed the film 'The Chapel'?
CREATE TABLE table_name_22 (director_s_ VARCHAR, film VARCHAR)
SELECT director_s_ FROM table_name_22 WHERE film = "the chapel"
### Context: CREATE TABLE table_name_22 (director_s_ VARCHAR, film VARCHAR) ### Question: Who directed the film 'The Chapel'? ### Answer: SELECT director_s_ FROM table_name_22 WHERE film = "the chapel"
What award did Andrew Ryder win as producer?
CREATE TABLE table_name_40 (award VARCHAR, producer_s_ VARCHAR)
SELECT award FROM table_name_40 WHERE producer_s_ = "andrew ryder"
### Context: CREATE TABLE table_name_40 (award VARCHAR, producer_s_ VARCHAR) ### Question: What award did Andrew Ryder win as producer? ### Answer: SELECT award FROM table_name_40 WHERE producer_s_ = "andrew ryder"
What is the total national rank of Canada with lanes larger than 3?
CREATE TABLE table_name_72 (rank INTEGER, nationality VARCHAR, lane VARCHAR)
SELECT SUM(rank) FROM table_name_72 WHERE nationality = "canada" AND lane > 3
### Context: CREATE TABLE table_name_72 (rank INTEGER, nationality VARCHAR, lane VARCHAR) ### Question: What is the total national rank of Canada with lanes larger than 3? ### Answer: SELECT SUM(rank) FROM table_name_72 WHERE nationality = "canada" AND lane > 3
For the team with 39+1 points and fewer than 7 draws, how many wins were scored?
CREATE TABLE table_name_32 (wins VARCHAR, points VARCHAR, draws VARCHAR)
SELECT COUNT(wins) FROM table_name_32 WHERE points = "39+1" AND draws < 7
### Context: CREATE TABLE table_name_32 (wins VARCHAR, points VARCHAR, draws VARCHAR) ### Question: For the team with 39+1 points and fewer than 7 draws, how many wins were scored? ### Answer: SELECT COUNT(wins) FROM table_name_32 WHERE points = "39+1" AND draws < 7
For a goal difference greater than 3 and fewer than 8 losses, what is the most draws scored?
CREATE TABLE table_name_94 (draws INTEGER, goal_difference VARCHAR, losses VARCHAR)
SELECT MAX(draws) FROM table_name_94 WHERE goal_difference > 3 AND losses < 8
### Context: CREATE TABLE table_name_94 (draws INTEGER, goal_difference VARCHAR, losses VARCHAR) ### Question: For a goal difference greater than 3 and fewer than 8 losses, what is the most draws scored? ### Answer: SELECT MAX(draws) FROM table_name_94 WHERE goal_difference > 3 AND losses < 8
Which club had fewer than 29 goals against and a difference smaller than 26?
CREATE TABLE table_name_47 (club VARCHAR, goals_against VARCHAR, goal_difference VARCHAR)
SELECT club FROM table_name_47 WHERE goals_against < 29 AND goal_difference < 26
### Context: CREATE TABLE table_name_47 (club VARCHAR, goals_against VARCHAR, goal_difference VARCHAR) ### Question: Which club had fewer than 29 goals against and a difference smaller than 26? ### Answer: SELECT club FROM table_name_47 WHERE goals_against < 29 AND goal_difference < 26
What was the score when the Rangers' attendance was 23,493?
CREATE TABLE table_name_70 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_70 WHERE attendance = "23,493"
### Context: CREATE TABLE table_name_70 (score VARCHAR, attendance VARCHAR) ### Question: What was the score when the Rangers' attendance was 23,493? ### Answer: SELECT score FROM table_name_70 WHERE attendance = "23,493"
Who was the opponent on the game on April 14, 2007?
CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_60 WHERE date = "april 14, 2007"
### Context: CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on the game on April 14, 2007? ### Answer: SELECT opponent FROM table_name_60 WHERE date = "april 14, 2007"
How many people were in attendance on the game on April 8, 2007?
CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_15 WHERE date = "april 8, 2007"
### Context: CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR) ### Question: How many people were in attendance on the game on April 8, 2007? ### Answer: SELECT attendance FROM table_name_15 WHERE date = "april 8, 2007"
What was the date of the game with 16,404 people?
CREATE TABLE table_name_18 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_18 WHERE attendance = "16,404"
### Context: CREATE TABLE table_name_18 (date VARCHAR, attendance VARCHAR) ### Question: What was the date of the game with 16,404 people? ### Answer: SELECT date FROM table_name_18 WHERE attendance = "16,404"
Which category was Dev Patel nominated for?
CREATE TABLE table_name_61 (category VARCHAR, winner_nominee_s_ VARCHAR)
SELECT category FROM table_name_61 WHERE winner_nominee_s_ = "dev patel"
### Context: CREATE TABLE table_name_61 (category VARCHAR, winner_nominee_s_ VARCHAR) ### Question: Which category was Dev Patel nominated for? ### Answer: SELECT category FROM table_name_61 WHERE winner_nominee_s_ = "dev patel"
Which film was Eddie Murphy nominated for?
CREATE TABLE table_name_19 (film VARCHAR, winner_nominee_s_ VARCHAR, result VARCHAR)
SELECT film FROM table_name_19 WHERE winner_nominee_s_ = "eddie murphy" AND result = "nominated"
### Context: CREATE TABLE table_name_19 (film VARCHAR, winner_nominee_s_ VARCHAR, result VARCHAR) ### Question: Which film was Eddie Murphy nominated for? ### Answer: SELECT film FROM table_name_19 WHERE winner_nominee_s_ = "eddie murphy" AND result = "nominated"
When the start is 22, what is the finish?
CREATE TABLE table_name_71 (finish VARCHAR, start VARCHAR)
SELECT finish FROM table_name_71 WHERE start = "22"
### Context: CREATE TABLE table_name_71 (finish VARCHAR, start VARCHAR) ### Question: When the start is 22, what is the finish? ### Answer: SELECT finish FROM table_name_71 WHERE start = "22"
What year resulted in 54 laps?
CREATE TABLE table_name_39 (year VARCHAR, laps VARCHAR)
SELECT year FROM table_name_39 WHERE laps = 54
### Context: CREATE TABLE table_name_39 (year VARCHAR, laps VARCHAR) ### Question: What year resulted in 54 laps? ### Answer: SELECT year FROM table_name_39 WHERE laps = 54
On what date was the score 2–4?
CREATE TABLE table_name_89 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_89 WHERE score = "2–4"
### Context: CREATE TABLE table_name_89 (date VARCHAR, score VARCHAR) ### Question: On what date was the score 2–4? ### Answer: SELECT date FROM table_name_89 WHERE score = "2–4"
Who was the home team when the score was 4–3?
CREATE TABLE table_name_93 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_93 WHERE score = "4–3"
### Context: CREATE TABLE table_name_93 (home VARCHAR, score VARCHAR) ### Question: Who was the home team when the score was 4–3? ### Answer: SELECT home FROM table_name_93 WHERE score = "4–3"
On what date was the record 2–1?
CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_53 WHERE record = "2–1"
### Context: CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 2–1? ### Answer: SELECT date FROM table_name_53 WHERE record = "2–1"
Who was the winning driver with the winning team Opel Team Holzer 1, and a round under 9 with the fastest lap being Bernd Schneider?
CREATE TABLE table_name_96 (winning_driver VARCHAR, fastest_lap VARCHAR, winning_team VARCHAR, round VARCHAR)
SELECT winning_driver FROM table_name_96 WHERE winning_team = "opel team holzer 1" AND round < 9 AND fastest_lap = "bernd schneider"
### Context: CREATE TABLE table_name_96 (winning_driver VARCHAR, fastest_lap VARCHAR, winning_team VARCHAR, round VARCHAR) ### Question: Who was the winning driver with the winning team Opel Team Holzer 1, and a round under 9 with the fastest lap being Bernd Schneider? ### Answer: SELECT winning_driver FROM table_name_96 WHERE winning_team = "opel team holzer 1" AND round < 9 AND fastest_lap = "bernd schneider"
What was the final number for the winning manufacturer with Mercedes-benz, and a circuit of hockenheimring?
CREATE TABLE table_name_18 (round VARCHAR, winning_manufacturer VARCHAR, circuit VARCHAR)
SELECT COUNT(round) FROM table_name_18 WHERE winning_manufacturer = "mercedes-benz" AND circuit = "hockenheimring"
### Context: CREATE TABLE table_name_18 (round VARCHAR, winning_manufacturer VARCHAR, circuit VARCHAR) ### Question: What was the final number for the winning manufacturer with Mercedes-benz, and a circuit of hockenheimring? ### Answer: SELECT COUNT(round) FROM table_name_18 WHERE winning_manufacturer = "mercedes-benz" AND circuit = "hockenheimring"
What was the date of Circuit Hockenheimring and the winning manufacturer being Mercedes-Benz?
CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR, winning_manufacturer VARCHAR)
SELECT date FROM table_name_34 WHERE circuit = "hockenheimring" AND winning_manufacturer = "mercedes-benz"
### Context: CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR, winning_manufacturer VARCHAR) ### Question: What was the date of Circuit Hockenheimring and the winning manufacturer being Mercedes-Benz? ### Answer: SELECT date FROM table_name_34 WHERE circuit = "hockenheimring" AND winning_manufacturer = "mercedes-benz"
Who was the winning driver of the Circuit of Lausitzring?
CREATE TABLE table_name_15 (winning_driver VARCHAR, circuit VARCHAR)
SELECT winning_driver FROM table_name_15 WHERE circuit = "lausitzring"
### Context: CREATE TABLE table_name_15 (winning_driver VARCHAR, circuit VARCHAR) ### Question: Who was the winning driver of the Circuit of Lausitzring? ### Answer: SELECT winning_driver FROM table_name_15 WHERE circuit = "lausitzring"
What is the city of txdot har?
CREATE TABLE table_name_47 (city_of_license VARCHAR, brand VARCHAR)
SELECT city_of_license FROM table_name_47 WHERE brand = "txdot har"
### Context: CREATE TABLE table_name_47 (city_of_license VARCHAR, brand VARCHAR) ### Question: What is the city of txdot har? ### Answer: SELECT city_of_license FROM table_name_47 WHERE brand = "txdot har"
What was radio mexicana's website?
CREATE TABLE table_name_22 (website VARCHAR, brand VARCHAR)
SELECT website FROM table_name_22 WHERE brand = "radio mexicana"
### Context: CREATE TABLE table_name_22 (website VARCHAR, brand VARCHAR) ### Question: What was radio mexicana's website? ### Answer: SELECT website FROM table_name_22 WHERE brand = "radio mexicana"
Which player ranks higher than 9?
CREATE TABLE table_name_11 (player VARCHAR, rank INTEGER)
SELECT player FROM table_name_11 WHERE rank > 9
### Context: CREATE TABLE table_name_11 (player VARCHAR, rank INTEGER) ### Question: Which player ranks higher than 9? ### Answer: SELECT player FROM table_name_11 WHERE rank > 9
What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?
CREATE TABLE table_name_78 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR)
SELECT gross_revenue__2011_ FROM table_name_78 WHERE gross_revenue__1982_ = "$156,315"
### Context: CREATE TABLE table_name_78 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR) ### Question: What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982? ### Answer: SELECT gross_revenue__2011_ FROM table_name_78 WHERE gross_revenue__1982_ = "$156,315"
What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?
CREATE TABLE table_name_6 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR)
SELECT gross_revenue__2011_ FROM table_name_6 WHERE gross_revenue__1982_ = "$156,315"
### Context: CREATE TABLE table_name_6 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR) ### Question: What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982? ### Answer: SELECT gross_revenue__2011_ FROM table_name_6 WHERE gross_revenue__1982_ = "$156,315"
How many tickets were sold / available for the venue that had a gross revenue of $333,100 in 2011?
CREATE TABLE table_name_51 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)
SELECT tickets_sold___available FROM table_name_51 WHERE gross_revenue__2011_ = "$333,100"
### Context: CREATE TABLE table_name_51 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR) ### Question: How many tickets were sold / available for the venue that had a gross revenue of $333,100 in 2011? ### Answer: SELECT tickets_sold___available FROM table_name_51 WHERE gross_revenue__2011_ = "$333,100"
What is the venue in the city of Brussels, Belgium?
CREATE TABLE table_name_54 (venue VARCHAR, city VARCHAR)
SELECT venue FROM table_name_54 WHERE city = "brussels, belgium"
### Context: CREATE TABLE table_name_54 (venue VARCHAR, city VARCHAR) ### Question: What is the venue in the city of Brussels, Belgium? ### Answer: SELECT venue FROM table_name_54 WHERE city = "brussels, belgium"
What venue had gross revenues of $1,325,153 in 2011?
CREATE TABLE table_name_84 (venue VARCHAR, gross_revenue__2011_ VARCHAR)
SELECT venue FROM table_name_84 WHERE gross_revenue__2011_ = "$1,325,153"
### Context: CREATE TABLE table_name_84 (venue VARCHAR, gross_revenue__2011_ VARCHAR) ### Question: What venue had gross revenues of $1,325,153 in 2011? ### Answer: SELECT venue FROM table_name_84 WHERE gross_revenue__2011_ = "$1,325,153"
What is the sum of people in the total region when more than 5,060 were in Mt. Morgan?
CREATE TABLE table_name_90 (total_region INTEGER, mt_morgan INTEGER)
SELECT SUM(total_region) FROM table_name_90 WHERE mt_morgan > 5 OFFSET 060
### Context: CREATE TABLE table_name_90 (total_region INTEGER, mt_morgan INTEGER) ### Question: What is the sum of people in the total region when more than 5,060 were in Mt. Morgan? ### Answer: SELECT SUM(total_region) FROM table_name_90 WHERE mt_morgan > 5 OFFSET 060
What is the total swimsuit with Preliminaries smaller than 8.27?
CREATE TABLE table_name_48 (swimsuit INTEGER, preliminaries INTEGER)
SELECT SUM(swimsuit) FROM table_name_48 WHERE preliminaries < 8.27
### Context: CREATE TABLE table_name_48 (swimsuit INTEGER, preliminaries INTEGER) ### Question: What is the total swimsuit with Preliminaries smaller than 8.27? ### Answer: SELECT SUM(swimsuit) FROM table_name_48 WHERE preliminaries < 8.27
What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842?
CREATE TABLE table_name_65 (interview INTEGER, average VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)
SELECT AVG(interview) FROM table_name_65 WHERE preliminaries > 8.27 AND evening_gown = 8.85 AND average < 8.842
### Context: CREATE TABLE table_name_65 (interview INTEGER, average VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR) ### Question: What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842? ### Answer: SELECT AVG(interview) FROM table_name_65 WHERE preliminaries > 8.27 AND evening_gown = 8.85 AND average < 8.842
How many swimsuits have an Evening Gown larger than 9, and an Interview larger than 8.405?
CREATE TABLE table_name_32 (swimsuit VARCHAR, evening_gown VARCHAR, interview VARCHAR)
SELECT COUNT(swimsuit) FROM table_name_32 WHERE evening_gown > 9 AND interview > 8.405
### Context: CREATE TABLE table_name_32 (swimsuit VARCHAR, evening_gown VARCHAR, interview VARCHAR) ### Question: How many swimsuits have an Evening Gown larger than 9, and an Interview larger than 8.405? ### Answer: SELECT COUNT(swimsuit) FROM table_name_32 WHERE evening_gown > 9 AND interview > 8.405
What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%?
CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR)
SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = "ok" AND percent_change__1990_2000_ = "a078 +17.22%"
### Context: CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR) ### Question: What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%? ### Answer: SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = "ok" AND percent_change__1990_2000_ = "a078 +17.22%"
How many matches did goalkeeper Wilfredo Caballero have an average less than 1.11?
CREATE TABLE table_name_74 (matches INTEGER, goalkeeper VARCHAR, average VARCHAR)
SELECT SUM(matches) FROM table_name_74 WHERE goalkeeper = "wilfredo caballero" AND average < 1.11
### Context: CREATE TABLE table_name_74 (matches INTEGER, goalkeeper VARCHAR, average VARCHAR) ### Question: How many matches did goalkeeper Wilfredo Caballero have an average less than 1.11? ### Answer: SELECT SUM(matches) FROM table_name_74 WHERE goalkeeper = "wilfredo caballero" AND average < 1.11
What is the average goals less than 41 that goalkeeper Claudio Bravo had?
CREATE TABLE table_name_85 (average VARCHAR, goals VARCHAR, goalkeeper VARCHAR)
SELECT COUNT(average) FROM table_name_85 WHERE goals < 41 AND goalkeeper = "claudio bravo"
### Context: CREATE TABLE table_name_85 (average VARCHAR, goals VARCHAR, goalkeeper VARCHAR) ### Question: What is the average goals less than 41 that goalkeeper Claudio Bravo had? ### Answer: SELECT COUNT(average) FROM table_name_85 WHERE goals < 41 AND goalkeeper = "claudio bravo"
What is the highest average of goals less than 45 for team Real Sociedad?
CREATE TABLE table_name_3 (average INTEGER, goals VARCHAR, team VARCHAR)
SELECT MAX(average) FROM table_name_3 WHERE goals < 45 AND team = "real sociedad"
### Context: CREATE TABLE table_name_3 (average INTEGER, goals VARCHAR, team VARCHAR) ### Question: What is the highest average of goals less than 45 for team Real Sociedad? ### Answer: SELECT MAX(average) FROM table_name_3 WHERE goals < 45 AND team = "real sociedad"
When did the person born on 3 May 1446 cease to be countess?
CREATE TABLE table_name_19 (ceased_to_be_countess VARCHAR, birth VARCHAR)
SELECT ceased_to_be_countess FROM table_name_19 WHERE birth = "3 may 1446"
### Context: CREATE TABLE table_name_19 (ceased_to_be_countess VARCHAR, birth VARCHAR) ### Question: When did the person born on 3 May 1446 cease to be countess? ### Answer: SELECT ceased_to_be_countess FROM table_name_19 WHERE birth = "3 may 1446"
Who was the father of the person born in 1363?
CREATE TABLE table_name_97 (father VARCHAR, birth VARCHAR)
SELECT father FROM table_name_97 WHERE birth = "1363"
### Context: CREATE TABLE table_name_97 (father VARCHAR, birth VARCHAR) ### Question: Who was the father of the person born in 1363? ### Answer: SELECT father FROM table_name_97 WHERE birth = "1363"
When was the marriage of the person who died on 17 December 1471?
CREATE TABLE table_name_90 (marriage VARCHAR, death VARCHAR)
SELECT marriage FROM table_name_90 WHERE death = "17 december 1471"
### Context: CREATE TABLE table_name_90 (marriage VARCHAR, death VARCHAR) ### Question: When was the marriage of the person who died on 17 December 1471? ### Answer: SELECT marriage FROM table_name_90 WHERE death = "17 december 1471"
On what surface did Poland play as the against team?
CREATE TABLE table_name_38 (surface VARCHAR, against VARCHAR)
SELECT surface FROM table_name_38 WHERE against = "poland"
### Context: CREATE TABLE table_name_38 (surface VARCHAR, against VARCHAR) ### Question: On what surface did Poland play as the against team? ### Answer: SELECT surface FROM table_name_38 WHERE against = "poland"