question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many teams drew the widnes vikings? | CREATE TABLE table_13018091_1 (drawn VARCHAR, club VARCHAR) | SELECT COUNT(drawn) FROM table_13018091_1 WHERE club = "Widnes Vikings" | ### Context: CREATE TABLE table_13018091_1 (drawn VARCHAR, club VARCHAR) ### Question: How many teams drew the widnes vikings? ### Answer: SELECT COUNT(drawn) FROM table_13018091_1 WHERE club = "Widnes Vikings" |
How many games did whitehaven win? | CREATE TABLE table_13018091_1 (won INTEGER, club VARCHAR) | SELECT MIN(won) FROM table_13018091_1 WHERE club = "Whitehaven" | ### Context: CREATE TABLE table_13018091_1 (won INTEGER, club VARCHAR) ### Question: How many games did whitehaven win? ### Answer: SELECT MIN(won) FROM table_13018091_1 WHERE club = "Whitehaven" |
What position did the sheffield eagles finish in? | CREATE TABLE table_13018091_1 (position INTEGER, club VARCHAR) | SELECT MAX(position) FROM table_13018091_1 WHERE club = "Sheffield Eagles" | ### Context: CREATE TABLE table_13018091_1 (position INTEGER, club VARCHAR) ### Question: What position did the sheffield eagles finish in? ### Answer: SELECT MAX(position) FROM table_13018091_1 WHERE club = "Sheffield Eagles" |
What was the date of the game in week 14? | CREATE TABLE table_13023925_2 (date VARCHAR, week VARCHAR) | SELECT date FROM table_13023925_2 WHERE week = 14 | ### Context: CREATE TABLE table_13023925_2 (date VARCHAR, week VARCHAR) ### Question: What was the date of the game in week 14? ### Answer: SELECT date FROM table_13023925_2 WHERE week = 14 |
What is the total points for the tean with 8 losses? | CREATE TABLE table_13015539_1 (points VARCHAR, lost VARCHAR) | SELECT COUNT(points) FROM table_13015539_1 WHERE lost = 8 | ### Context: CREATE TABLE table_13015539_1 (points VARCHAR, lost VARCHAR) ### Question: What is the total points for the tean with 8 losses? ### Answer: SELECT COUNT(points) FROM table_13015539_1 WHERE lost = 8 |
How many numbers are given for losses by the Keighley Cougars? | CREATE TABLE table_13015539_1 (lost VARCHAR, club VARCHAR) | SELECT COUNT(lost) FROM table_13015539_1 WHERE club = "Keighley Cougars" | ### Context: CREATE TABLE table_13015539_1 (lost VARCHAR, club VARCHAR) ### Question: How many numbers are given for losses by the Keighley Cougars? ### Answer: SELECT COUNT(lost) FROM table_13015539_1 WHERE club = "Keighley Cougars" |
Name the australian marquee for alessandro del piero | CREATE TABLE table_1301373_7 (australian_marquee VARCHAR, international_marquee VARCHAR) | SELECT australian_marquee FROM table_1301373_7 WHERE international_marquee = "Alessandro Del Piero" | ### Context: CREATE TABLE table_1301373_7 (australian_marquee VARCHAR, international_marquee VARCHAR) ### Question: Name the australian marquee for alessandro del piero ### Answer: SELECT australian_marquee FROM table_1301373_7 WHERE international_marquee = "Alessandro Del Piero" |
Name the vice captain for melbourne victory | CREATE TABLE table_1301373_7 (Vice VARCHAR, captain VARCHAR, club VARCHAR) | SELECT Vice - captain FROM table_1301373_7 WHERE club = "Melbourne Victory" | ### Context: CREATE TABLE table_1301373_7 (Vice VARCHAR, captain VARCHAR, club VARCHAR) ### Question: Name the vice captain for melbourne victory ### Answer: SELECT Vice - captain FROM table_1301373_7 WHERE club = "Melbourne Victory" |
Name the captain for emile heskey | CREATE TABLE table_1301373_7 (captain VARCHAR, international_marquee VARCHAR) | SELECT captain FROM table_1301373_7 WHERE international_marquee = "Emile Heskey" | ### Context: CREATE TABLE table_1301373_7 (captain VARCHAR, international_marquee VARCHAR) ### Question: Name the captain for emile heskey ### Answer: SELECT captain FROM table_1301373_7 WHERE international_marquee = "Emile Heskey" |
What championship had a margin of playoff 2? | CREATE TABLE table_13026799_1 (championship VARCHAR, margin VARCHAR) | SELECT championship FROM table_13026799_1 WHERE margin = "Playoff 2" | ### Context: CREATE TABLE table_13026799_1 (championship VARCHAR, margin VARCHAR) ### Question: What championship had a margin of playoff 2? ### Answer: SELECT championship FROM table_13026799_1 WHERE margin = "Playoff 2" |
What was the margin of the Masters Tournament? | CREATE TABLE table_13026799_1 (margin VARCHAR, championship VARCHAR) | SELECT margin FROM table_13026799_1 WHERE championship = "Masters Tournament" | ### Context: CREATE TABLE table_13026799_1 (margin VARCHAR, championship VARCHAR) ### Question: What was the margin of the Masters Tournament? ### Answer: SELECT margin FROM table_13026799_1 WHERE championship = "Masters Tournament" |
What was the winning score of the Masters Tournament? | CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR) | SELECT winning_score FROM table_13026799_1 WHERE championship = "Masters Tournament" | ### Context: CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR) ### Question: What was the winning score of the Masters Tournament? ### Answer: SELECT winning_score FROM table_13026799_1 WHERE championship = "Masters Tournament" |
What was the winning score of the PGA Championship (3)? | CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR) | SELECT winning_score FROM table_13026799_1 WHERE championship = "PGA championship (3)" | ### Context: CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR) ### Question: What was the winning score of the PGA Championship (3)? ### Answer: SELECT winning_score FROM table_13026799_1 WHERE championship = "PGA championship (3)" |
What is the number of starts for 1987? | CREATE TABLE table_13026799_3 (starts VARCHAR, year VARCHAR) | SELECT COUNT(starts) FROM table_13026799_3 WHERE year = 1987 | ### Context: CREATE TABLE table_13026799_3 (starts VARCHAR, year VARCHAR) ### Question: What is the number of starts for 1987? ### Answer: SELECT COUNT(starts) FROM table_13026799_3 WHERE year = 1987 |
What is the scoring aerage for 111419? | CREATE TABLE table_13026799_3 (scoring_average VARCHAR, earnings__$_ VARCHAR) | SELECT scoring_average FROM table_13026799_3 WHERE earnings__$_ = 111419 | ### Context: CREATE TABLE table_13026799_3 (scoring_average VARCHAR, earnings__$_ VARCHAR) ### Question: What is the scoring aerage for 111419? ### Answer: SELECT scoring_average FROM table_13026799_3 WHERE earnings__$_ = 111419 |
What is the money list rank for 1966? | CREATE TABLE table_13026799_3 (money_list_rank VARCHAR, year VARCHAR) | SELECT money_list_rank FROM table_13026799_3 WHERE year = 1966 | ### Context: CREATE TABLE table_13026799_3 (money_list_rank VARCHAR, year VARCHAR) ### Question: What is the money list rank for 1966? ### Answer: SELECT money_list_rank FROM table_13026799_3 WHERE year = 1966 |
Name the total number of scoring average for money list rank of 174 | CREATE TABLE table_13026799_3 (scoring_average VARCHAR, money_list_rank VARCHAR) | SELECT COUNT(scoring_average) FROM table_13026799_3 WHERE money_list_rank = "174" | ### Context: CREATE TABLE table_13026799_3 (scoring_average VARCHAR, money_list_rank VARCHAR) ### Question: Name the total number of scoring average for money list rank of 174 ### Answer: SELECT COUNT(scoring_average) FROM table_13026799_3 WHERE money_list_rank = "174" |
What is the county where kerry# is 59740? | CREATE TABLE table_1302886_1 (county VARCHAR, kerry_number VARCHAR) | SELECT county FROM table_1302886_1 WHERE kerry_number = 59740 | ### Context: CREATE TABLE table_1302886_1 (county VARCHAR, kerry_number VARCHAR) ### Question: What is the county where kerry# is 59740? ### Answer: SELECT county FROM table_1302886_1 WHERE kerry_number = 59740 |
In cook county Kerry# is? | CREATE TABLE table_1302886_1 (kerry_number VARCHAR, county VARCHAR) | SELECT kerry_number FROM table_1302886_1 WHERE county = "Cook" | ### Context: CREATE TABLE table_1302886_1 (kerry_number VARCHAR, county VARCHAR) ### Question: In cook county Kerry# is? ### Answer: SELECT kerry_number FROM table_1302886_1 WHERE county = "Cook" |
When bush# is 3907, what is Kerry#? | CREATE TABLE table_1302886_1 (kerry_number VARCHAR, bush_number VARCHAR) | SELECT kerry_number FROM table_1302886_1 WHERE bush_number = 3907 | ### Context: CREATE TABLE table_1302886_1 (kerry_number VARCHAR, bush_number VARCHAR) ### Question: When bush# is 3907, what is Kerry#? ### Answer: SELECT kerry_number FROM table_1302886_1 WHERE bush_number = 3907 |
What is the others# when bush% is 57.0%? | CREATE TABLE table_1302886_1 (others_number INTEGER, bush_percentage VARCHAR) | SELECT MAX(others_number) FROM table_1302886_1 WHERE bush_percentage = "57.0%" | ### Context: CREATE TABLE table_1302886_1 (others_number INTEGER, bush_percentage VARCHAR) ### Question: What is the others# when bush% is 57.0%? ### Answer: SELECT MAX(others_number) FROM table_1302886_1 WHERE bush_percentage = "57.0%" |
what's the mole with airdate being 8 january 2009 | CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR) | SELECT the_mole FROM table_13036251_1 WHERE airdate = "8 January 2009" | ### Context: CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR) ### Question: what's the mole with airdate being 8 january 2009 ### Answer: SELECT the_mole FROM table_13036251_1 WHERE airdate = "8 January 2009" |
what's the mole with prize money being €24,475 | CREATE TABLE table_13036251_1 (the_mole VARCHAR, prize_money VARCHAR) | SELECT the_mole FROM table_13036251_1 WHERE prize_money = "€24,475" | ### Context: CREATE TABLE table_13036251_1 (the_mole VARCHAR, prize_money VARCHAR) ### Question: what's the mole with prize money being €24,475 ### Answer: SELECT the_mole FROM table_13036251_1 WHERE prize_money = "€24,475" |
what's the the mole with airdate being 5 january 2012 | CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR) | SELECT COUNT(the_mole) FROM table_13036251_1 WHERE airdate = "5 January 2012" | ### Context: CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR) ### Question: what's the the mole with airdate being 5 january 2012 ### Answer: SELECT COUNT(the_mole) FROM table_13036251_1 WHERE airdate = "5 January 2012" |
what's airdate with international destination being scotland | CREATE TABLE table_13036251_1 (airdate VARCHAR, international_destination VARCHAR) | SELECT airdate FROM table_13036251_1 WHERE international_destination = "Scotland" | ### Context: CREATE TABLE table_13036251_1 (airdate VARCHAR, international_destination VARCHAR) ### Question: what's airdate with international destination being scotland ### Answer: SELECT airdate FROM table_13036251_1 WHERE international_destination = "Scotland" |
what's the mole with winner being frédérique huydts | CREATE TABLE table_13036251_1 (the_mole VARCHAR, winner VARCHAR) | SELECT the_mole FROM table_13036251_1 WHERE winner = "Frédérique Huydts" | ### Context: CREATE TABLE table_13036251_1 (the_mole VARCHAR, winner VARCHAR) ### Question: what's the mole with winner being frédérique huydts ### Answer: SELECT the_mole FROM table_13036251_1 WHERE winner = "Frédérique Huydts" |
what's runner-up with season being season 13 | CREATE TABLE table_13036251_1 (runner_up VARCHAR, season VARCHAR) | SELECT runner_up FROM table_13036251_1 WHERE season = "season 13" | ### Context: CREATE TABLE table_13036251_1 (runner_up VARCHAR, season VARCHAR) ### Question: what's runner-up with season being season 13 ### Answer: SELECT runner_up FROM table_13036251_1 WHERE season = "season 13" |
In what county did 29231 people vote for Kerry? | CREATE TABLE table_1304443_2 (county VARCHAR, kerry_number VARCHAR) | SELECT county FROM table_1304443_2 WHERE kerry_number = 29231 | ### Context: CREATE TABLE table_1304443_2 (county VARCHAR, kerry_number VARCHAR) ### Question: In what county did 29231 people vote for Kerry? ### Answer: SELECT county FROM table_1304443_2 WHERE kerry_number = 29231 |
What's the name of the county where 48.3% voted for Bush? | CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR) | SELECT county FROM table_1304443_2 WHERE bush_percentage = "48.3%" | ### Context: CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR) ### Question: What's the name of the county where 48.3% voted for Bush? ### Answer: SELECT county FROM table_1304443_2 WHERE bush_percentage = "48.3%" |
What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes? | CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR) | SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = "51.6%" | ### Context: CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR) ### Question: What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes? ### Answer: SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = "51.6%" |
What's the name of the county where 54.6% voted for Bush? | CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR) | SELECT county FROM table_1304443_2 WHERE bush_percentage = "54.6%" | ### Context: CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR) ### Question: What's the name of the county where 54.6% voted for Bush? ### Answer: SELECT county FROM table_1304443_2 WHERE bush_percentage = "54.6%" |
What is the number of steals for 2012 | CREATE TABLE table_13050003_3 (steals VARCHAR, year VARCHAR) | SELECT COUNT(steals) FROM table_13050003_3 WHERE year = 2012 | ### Context: CREATE TABLE table_13050003_3 (steals VARCHAR, year VARCHAR) ### Question: What is the number of steals for 2012 ### Answer: SELECT COUNT(steals) FROM table_13050003_3 WHERE year = 2012 |
Who are the blockers where points are scored by Zach Randolph (24)? | CREATE TABLE table_13050003_2 (blocks VARCHAR, points VARCHAR) | SELECT blocks FROM table_13050003_2 WHERE points = "Zach Randolph (24)" | ### Context: CREATE TABLE table_13050003_2 (blocks VARCHAR, points VARCHAR) ### Question: Who are the blockers where points are scored by Zach Randolph (24)? ### Answer: SELECT blocks FROM table_13050003_2 WHERE points = "Zach Randolph (24)" |
How many rebounds were there in 2008? | CREATE TABLE table_13050003_2 (rebounds VARCHAR, year VARCHAR) | SELECT COUNT(rebounds) FROM table_13050003_2 WHERE year = 2008 | ### Context: CREATE TABLE table_13050003_2 (rebounds VARCHAR, year VARCHAR) ### Question: How many rebounds were there in 2008? ### Answer: SELECT COUNT(rebounds) FROM table_13050003_2 WHERE year = 2008 |
Who had all of the blocks in 2012? | CREATE TABLE table_13050003_2 (blocks VARCHAR, year VARCHAR) | SELECT blocks FROM table_13050003_2 WHERE year = 2012 | ### Context: CREATE TABLE table_13050003_2 (blocks VARCHAR, year VARCHAR) ### Question: Who had all of the blocks in 2012? ### Answer: SELECT blocks FROM table_13050003_2 WHERE year = 2012 |
What year has Nerlens Noel (4) as blocker? | CREATE TABLE table_13050003_2 (year INTEGER, blocks VARCHAR) | SELECT MIN(year) FROM table_13050003_2 WHERE blocks = "Nerlens Noel (4)" | ### Context: CREATE TABLE table_13050003_2 (year INTEGER, blocks VARCHAR) ### Question: What year has Nerlens Noel (4) as blocker? ### Answer: SELECT MIN(year) FROM table_13050003_2 WHERE blocks = "Nerlens Noel (4)" |
What is the most silver medals? | CREATE TABLE table_1305623_18 (silver_medals INTEGER) | SELECT MAX(silver_medals) FROM table_1305623_18 | ### Context: CREATE TABLE table_1305623_18 (silver_medals INTEGER) ### Question: What is the most silver medals? ### Answer: SELECT MAX(silver_medals) FROM table_1305623_18 |
what are all the gold medals when the silver medals is smaller than 1.0? | CREATE TABLE table_1305623_18 (gold_medals VARCHAR, silver_medals INTEGER) | SELECT gold_medals FROM table_1305623_18 WHERE silver_medals < 1.0 | ### Context: CREATE TABLE table_1305623_18 (gold_medals VARCHAR, silver_medals INTEGER) ### Question: what are all the gold medals when the silver medals is smaller than 1.0? ### Answer: SELECT gold_medals FROM table_1305623_18 WHERE silver_medals < 1.0 |
How many numbers were listed under Silver Medals for Portsmouth HS? | CREATE TABLE table_1305623_20 (silver_medals VARCHAR, ensemble VARCHAR) | SELECT COUNT(silver_medals) FROM table_1305623_20 WHERE ensemble = "Portsmouth HS" | ### Context: CREATE TABLE table_1305623_20 (silver_medals VARCHAR, ensemble VARCHAR) ### Question: How many numbers were listed under Silver Medals for Portsmouth HS? ### Answer: SELECT COUNT(silver_medals) FROM table_1305623_20 WHERE ensemble = "Portsmouth HS" |
What was the smallest total number of medals? | CREATE TABLE table_1305623_20 (total_medals INTEGER) | SELECT MIN(total_medals) FROM table_1305623_20 | ### Context: CREATE TABLE table_1305623_20 (total_medals INTEGER) ### Question: What was the smallest total number of medals? ### Answer: SELECT MIN(total_medals) FROM table_1305623_20 |
What is the highest number of gold medals Naugatuck HS won? | CREATE TABLE table_1305623_20 (gold_medals INTEGER, ensemble VARCHAR) | SELECT MAX(gold_medals) FROM table_1305623_20 WHERE ensemble = "Naugatuck HS" | ### Context: CREATE TABLE table_1305623_20 (gold_medals INTEGER, ensemble VARCHAR) ### Question: What is the highest number of gold medals Naugatuck HS won? ### Answer: SELECT MAX(gold_medals) FROM table_1305623_20 WHERE ensemble = "Naugatuck HS" |
what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson | CREATE TABLE table_13079788_3 (round INTEGER, gt3_winner VARCHAR, pole_position VARCHAR) | SELECT MAX(round) FROM table_13079788_3 WHERE gt3_winner = "Hector Lester Tim Mullen" AND pole_position = "Jonny Cocker Paul Drayson" | ### Context: CREATE TABLE table_13079788_3 (round INTEGER, gt3_winner VARCHAR, pole_position VARCHAR) ### Question: what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson ### Answer: SELECT MAX(round) FROM table_13079788_3 WHERE gt3_winner = "Hector Lester Tim M... |
what are all the date for gt3 winner oliver bryant matt harris | CREATE TABLE table_13079788_3 (date VARCHAR, gt3_winner VARCHAR) | SELECT date FROM table_13079788_3 WHERE gt3_winner = "Oliver Bryant Matt Harris" | ### Context: CREATE TABLE table_13079788_3 (date VARCHAR, gt3_winner VARCHAR) ### Question: what are all the date for gt3 winner oliver bryant matt harris ### Answer: SELECT date FROM table_13079788_3 WHERE gt3_winner = "Oliver Bryant Matt Harris" |
what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen | CREATE TABLE table_13079788_3 (date VARCHAR, gtc_winner VARCHAR, gt3_winner VARCHAR) | SELECT date FROM table_13079788_3 WHERE gtc_winner = "Graeme Mundy Jamie Smyth" AND gt3_winner = "Hector Lester Tim Mullen" | ### Context: CREATE TABLE table_13079788_3 (date VARCHAR, gtc_winner VARCHAR, gt3_winner VARCHAR) ### Question: what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen ### Answer: SELECT date FROM table_13079788_3 WHERE gtc_winner = "Graeme Mundy Jamie Smyth" AND gt3_winn... |
what are all the circuit for 9 september and gt3 winner hector lester allan simonsen | CREATE TABLE table_13079788_3 (circuit VARCHAR, date VARCHAR, gt3_winner VARCHAR) | SELECT circuit FROM table_13079788_3 WHERE date = "9 September" AND gt3_winner = "Hector Lester Allan Simonsen" | ### Context: CREATE TABLE table_13079788_3 (circuit VARCHAR, date VARCHAR, gt3_winner VARCHAR) ### Question: what are all the circuit for 9 september and gt3 winner hector lester allan simonsen ### Answer: SELECT circuit FROM table_13079788_3 WHERE date = "9 September" AND gt3_winner = "Hector Lester Allan Simonsen" |
what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer | CREATE TABLE table_13079788_3 (circuit VARCHAR, gtc_winner VARCHAR, pole_position VARCHAR) | SELECT circuit FROM table_13079788_3 WHERE gtc_winner = "Graeme Mundy Jamie Smyth" AND pole_position = "Bradley Ellis Alex Mortimer" | ### Context: CREATE TABLE table_13079788_3 (circuit VARCHAR, gtc_winner VARCHAR, pole_position VARCHAR) ### Question: what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer ### Answer: SELECT circuit FROM table_13079788_3 WHERE gtc_winner = "Graeme Mundy Jamie Smy... |
what are all the gtc winners for pole position no. 21 team modena | CREATE TABLE table_13079788_3 (gtc_winner VARCHAR, pole_position VARCHAR) | SELECT gtc_winner FROM table_13079788_3 WHERE pole_position = "No. 21 Team Modena" | ### Context: CREATE TABLE table_13079788_3 (gtc_winner VARCHAR, pole_position VARCHAR) ### Question: what are all the gtc winners for pole position no. 21 team modena ### Answer: SELECT gtc_winner FROM table_13079788_3 WHERE pole_position = "No. 21 Team Modena" |
What material is made with a rounded, plain edge? | CREATE TABLE table_1307572_1 (composition VARCHAR, edge VARCHAR) | SELECT composition FROM table_1307572_1 WHERE edge = "Rounded, plain" | ### Context: CREATE TABLE table_1307572_1 (composition VARCHAR, edge VARCHAR) ### Question: What material is made with a rounded, plain edge? ### Answer: SELECT composition FROM table_1307572_1 WHERE edge = "Rounded, plain" |
How many coins have a diameter of 23mm? | CREATE TABLE table_1307572_1 (reverse VARCHAR, diameter VARCHAR) | SELECT COUNT(reverse) FROM table_1307572_1 WHERE diameter = "23mm" | ### Context: CREATE TABLE table_1307572_1 (reverse VARCHAR, diameter VARCHAR) ### Question: How many coins have a diameter of 23mm? ### Answer: SELECT COUNT(reverse) FROM table_1307572_1 WHERE diameter = "23mm" |
When was the coin with the mass of 3.7 g first minted? | CREATE TABLE table_1307572_1 (first_minting VARCHAR, mass VARCHAR) | SELECT first_minting FROM table_1307572_1 WHERE mass = "3.7 g" | ### Context: CREATE TABLE table_1307572_1 (first_minting VARCHAR, mass VARCHAR) ### Question: When was the coin with the mass of 3.7 g first minted? ### Answer: SELECT first_minting FROM table_1307572_1 WHERE mass = "3.7 g" |
What is the number of population for lithuania? | CREATE TABLE table_1307842_7 (population VARCHAR, member_countries VARCHAR) | SELECT COUNT(population) FROM table_1307842_7 WHERE member_countries = "Lithuania" | ### Context: CREATE TABLE table_1307842_7 (population VARCHAR, member_countries VARCHAR) ### Question: What is the number of population for lithuania? ### Answer: SELECT COUNT(population) FROM table_1307842_7 WHERE member_countries = "Lithuania" |
Name the gdp where gdp per capita 20200 | CREATE TABLE table_1307842_7 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR) | SELECT gdp__billion_us$_ FROM table_1307842_7 WHERE gdp_per_capita__us$_ = 20200 | ### Context: CREATE TABLE table_1307842_7 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR) ### Question: Name the gdp where gdp per capita 20200 ### Answer: SELECT gdp__billion_us$_ FROM table_1307842_7 WHERE gdp_per_capita__us$_ = 20200 |
Name the total number of area for 775927 population | CREATE TABLE table_1307842_7 (area__km²_ VARCHAR, population VARCHAR) | SELECT COUNT(area__km²_) FROM table_1307842_7 WHERE population = 775927 | ### Context: CREATE TABLE table_1307842_7 (area__km²_ VARCHAR, population VARCHAR) ### Question: Name the total number of area for 775927 population ### Answer: SELECT COUNT(area__km²_) FROM table_1307842_7 WHERE population = 775927 |
What is the gdp of the country with an area of 83871 (km2)? | CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, area__km²_ VARCHAR) | SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE area__km²_ = 83871 | ### Context: CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, area__km²_ VARCHAR) ### Question: What is the gdp of the country with an area of 83871 (km2)? ### Answer: SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE area__km²_ = 83871 |
What was the gdp of the country with a gdp per capita of $18048? | CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR) | SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE gdp_per_capita__us$_ = 18048 | ### Context: CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR) ### Question: What was the gdp of the country with a gdp per capita of $18048? ### Answer: SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE gdp_per_capita__us$_ = 18048 |
What is Austria's maximum area (km2)? | CREATE TABLE table_1307842_6 (area__km²_ INTEGER, member_countries VARCHAR) | SELECT MAX(area__km²_) FROM table_1307842_6 WHERE member_countries = "Austria" | ### Context: CREATE TABLE table_1307842_6 (area__km²_ INTEGER, member_countries VARCHAR) ### Question: What is Austria's maximum area (km2)? ### Answer: SELECT MAX(area__km²_) FROM table_1307842_6 WHERE member_countries = "Austria" |
What is the season for no award given for rookie of the year? | CREATE TABLE table_13082900_1 (season VARCHAR, rookie_of_the_year VARCHAR) | SELECT season FROM table_13082900_1 WHERE rookie_of_the_year = "No award given" | ### Context: CREATE TABLE table_13082900_1 (season VARCHAR, rookie_of_the_year VARCHAR) ### Question: What is the season for no award given for rookie of the year? ### Answer: SELECT season FROM table_13082900_1 WHERE rookie_of_the_year = "No award given" |
how many air date with overall being 83/95 | CREATE TABLE table_13110459_2 (air_date VARCHAR, overall VARCHAR) | SELECT COUNT(air_date) FROM table_13110459_2 WHERE overall = "83/95" | ### Context: CREATE TABLE table_13110459_2 (air_date VARCHAR, overall VARCHAR) ### Question: how many air date with overall being 83/95 ### Answer: SELECT COUNT(air_date) FROM table_13110459_2 WHERE overall = "83/95" |
how many viewers (m) with overall being 91/101 | CREATE TABLE table_13110459_2 (viewers__m_ VARCHAR, overall VARCHAR) | SELECT COUNT(viewers__m_) FROM table_13110459_2 WHERE overall = "91/101" | ### Context: CREATE TABLE table_13110459_2 (viewers__m_ VARCHAR, overall VARCHAR) ### Question: how many viewers (m) with overall being 91/101 ### Answer: SELECT COUNT(viewers__m_) FROM table_13110459_2 WHERE overall = "91/101" |
what are all the rating with viewers (m) being 2.89 | CREATE TABLE table_13110459_2 (rating VARCHAR, viewers__m_ VARCHAR) | SELECT rating FROM table_13110459_2 WHERE viewers__m_ = "2.89" | ### Context: CREATE TABLE table_13110459_2 (rating VARCHAR, viewers__m_ VARCHAR) ### Question: what are all the rating with viewers (m) being 2.89 ### Answer: SELECT rating FROM table_13110459_2 WHERE viewers__m_ = "2.89" |
what are all the overall with rating being 1.4 | CREATE TABLE table_13110459_2 (overall VARCHAR, rating VARCHAR) | SELECT overall FROM table_13110459_2 WHERE rating = "1.4" | ### Context: CREATE TABLE table_13110459_2 (overall VARCHAR, rating VARCHAR) ### Question: what are all the overall with rating being 1.4 ### Answer: SELECT overall FROM table_13110459_2 WHERE rating = "1.4" |
what are all the overall with viewers (m) being 2.61 | CREATE TABLE table_13110459_2 (overall VARCHAR, viewers__m_ VARCHAR) | SELECT overall FROM table_13110459_2 WHERE viewers__m_ = "2.61" | ### Context: CREATE TABLE table_13110459_2 (overall VARCHAR, viewers__m_ VARCHAR) ### Question: what are all the overall with viewers (m) being 2.61 ### Answer: SELECT overall FROM table_13110459_2 WHERE viewers__m_ = "2.61" |
what are all the rating with viewers (m) being 2.61 | CREATE TABLE table_13110459_2 (rating VARCHAR, viewers__m_ VARCHAR) | SELECT rating FROM table_13110459_2 WHERE viewers__m_ = "2.61" | ### Context: CREATE TABLE table_13110459_2 (rating VARCHAR, viewers__m_ VARCHAR) ### Question: what are all the rating with viewers (m) being 2.61 ### Answer: SELECT rating FROM table_13110459_2 WHERE viewers__m_ = "2.61" |
what is the year where the qualifying score was 15.150? | CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR) | SELECT year FROM table_13114949_3 WHERE qualifying_score = "15.150" | ### Context: CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR) ### Question: what is the year where the qualifying score was 15.150? ### Answer: SELECT year FROM table_13114949_3 WHERE qualifying_score = "15.150" |
how many times was the qualifying score 60.750? | CREATE TABLE table_13114949_3 (event VARCHAR, qualifying_score VARCHAR) | SELECT COUNT(event) FROM table_13114949_3 WHERE qualifying_score = "60.750" | ### Context: CREATE TABLE table_13114949_3 (event VARCHAR, qualifying_score VARCHAR) ### Question: how many times was the qualifying score 60.750? ### Answer: SELECT COUNT(event) FROM table_13114949_3 WHERE qualifying_score = "60.750" |
how many times is the qualifying score 61.400? | CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR) | SELECT COUNT(year) FROM table_13114949_3 WHERE qualifying_score = "61.400" | ### Context: CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR) ### Question: how many times is the qualifying score 61.400? ### Answer: SELECT COUNT(year) FROM table_13114949_3 WHERE qualifying_score = "61.400" |
what is the final-rank for the uneven bars and the competition is u.s. championships? | CREATE TABLE table_13114949_3 (final_rank VARCHAR, event VARCHAR, competition VARCHAR) | SELECT final_rank FROM table_13114949_3 WHERE event = "Uneven Bars" AND competition = "U.S. Championships" | ### Context: CREATE TABLE table_13114949_3 (final_rank VARCHAR, event VARCHAR, competition VARCHAR) ### Question: what is the final-rank for the uneven bars and the competition is u.s. championships? ### Answer: SELECT final_rank FROM table_13114949_3 WHERE event = "Uneven Bars" AND competition = "U.S. Championships" |
what is the lowest qualifying rank? | CREATE TABLE table_13114949_3 (qualifying_rank INTEGER) | SELECT MIN(qualifying_rank) FROM table_13114949_3 | ### Context: CREATE TABLE table_13114949_3 (qualifying_rank INTEGER) ### Question: what is the lowest qualifying rank? ### Answer: SELECT MIN(qualifying_rank) FROM table_13114949_3 |
what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100? | CREATE TABLE table_13114949_3 (qualifying_rank INTEGER, qualifying_score VARCHAR, competition VARCHAR, final_rank VARCHAR) | SELECT MAX(qualifying_rank) FROM table_13114949_3 WHERE competition = "Olympic Trials" AND final_rank = "4" AND qualifying_score = "15.100" | ### Context: CREATE TABLE table_13114949_3 (qualifying_rank INTEGER, qualifying_score VARCHAR, competition VARCHAR, final_rank VARCHAR) ### Question: what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100? ### Answer: SELECT MAX(qualifying_rank) F... |
In what number kōhaku was the red team host Peggy Hayama? | CREATE TABLE table_1315616_1 (kōhaku__number VARCHAR, red_team_host VARCHAR) | SELECT kōhaku__number FROM table_1315616_1 WHERE red_team_host = "Peggy Hayama" | ### Context: CREATE TABLE table_1315616_1 (kōhaku__number VARCHAR, red_team_host VARCHAR) ### Question: In what number kōhaku was the red team host Peggy Hayama? ### Answer: SELECT kōhaku__number FROM table_1315616_1 WHERE red_team_host = "Peggy Hayama" |
Who was the mediator in kōhaku number 53? | CREATE TABLE table_1315616_1 (mediator VARCHAR, kōhaku__number VARCHAR) | SELECT mediator FROM table_1315616_1 WHERE kōhaku__number = 53 | ### Context: CREATE TABLE table_1315616_1 (mediator VARCHAR, kōhaku__number VARCHAR) ### Question: Who was the mediator in kōhaku number 53? ### Answer: SELECT mediator FROM table_1315616_1 WHERE kōhaku__number = 53 |
On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host? | CREATE TABLE table_1315616_1 (date VARCHAR, mediator VARCHAR, red_team_host VARCHAR) | SELECT date FROM table_1315616_1 WHERE mediator = "Keiichi Ubukata" AND red_team_host = "Mitsuko Mori" | ### Context: CREATE TABLE table_1315616_1 (date VARCHAR, mediator VARCHAR, red_team_host VARCHAR) ### Question: On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host? ### Answer: SELECT date FROM table_1315616_1 WHERE mediator = "Keiichi Ubukata" AND red_team_host = "Mitsuko Mori" |
What is the most recent year? | CREATE TABLE table_13169136_1 (year INTEGER) | SELECT MAX(year) FROM table_13169136_1 | ### Context: CREATE TABLE table_13169136_1 (year INTEGER) ### Question: What is the most recent year? ### Answer: SELECT MAX(year) FROM table_13169136_1 |
What year is Jiyai Shin the champion? | CREATE TABLE table_13169136_1 (year VARCHAR, champion VARCHAR) | SELECT COUNT(year) FROM table_13169136_1 WHERE champion = "Jiyai Shin" | ### Context: CREATE TABLE table_13169136_1 (year VARCHAR, champion VARCHAR) ### Question: What year is Jiyai Shin the champion? ### Answer: SELECT COUNT(year) FROM table_13169136_1 WHERE champion = "Jiyai Shin" |
What is the # for the episode with a Production code of 3T7057? | CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR) | SELECT _number FROM table_13183076_3 WHERE production_code = "3T7057" | ### Context: CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR) ### Question: What is the # for the episode with a Production code of 3T7057? ### Answer: SELECT _number FROM table_13183076_3 WHERE production_code = "3T7057" |
What is the Original air date for the episode directed by Tricia Brock? | CREATE TABLE table_13183076_3 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_13183076_3 WHERE directed_by = "Tricia Brock" | ### Context: CREATE TABLE table_13183076_3 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: What is the Original air date for the episode directed by Tricia Brock? ### Answer: SELECT original_air_date FROM table_13183076_3 WHERE directed_by = "Tricia Brock" |
What is the Original air date for the episode written by Peter Ocko? | CREATE TABLE table_13183076_3 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_13183076_3 WHERE written_by = "Peter Ocko" | ### Context: CREATE TABLE table_13183076_3 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the Original air date for the episode written by Peter Ocko? ### Answer: SELECT original_air_date FROM table_13183076_3 WHERE written_by = "Peter Ocko" |
How many U.S. viewers (million) are there for the episode whose Production code is 3T7051? | CREATE TABLE table_13183076_3 (us_viewers__million_ VARCHAR, production_code VARCHAR) | SELECT us_viewers__million_ FROM table_13183076_3 WHERE production_code = "3T7051" | ### Context: CREATE TABLE table_13183076_3 (us_viewers__million_ VARCHAR, production_code VARCHAR) ### Question: How many U.S. viewers (million) are there for the episode whose Production code is 3T7051? ### Answer: SELECT us_viewers__million_ FROM table_13183076_3 WHERE production_code = "3T7051" |
How many michelob ultra mountains classification for darren lill | CREATE TABLE table_13223187_1 (michelob_ultra_mountains_classification_gold_polka_dot_jersey VARCHAR, drury_hotels_most_aggressive_rider_red_jersey VARCHAR) | SELECT COUNT(michelob_ultra_mountains_classification_gold_polka_dot_jersey) FROM table_13223187_1 WHERE drury_hotels_most_aggressive_rider_red_jersey = "Darren Lill" | ### Context: CREATE TABLE table_13223187_1 (michelob_ultra_mountains_classification_gold_polka_dot_jersey VARCHAR, drury_hotels_most_aggressive_rider_red_jersey VARCHAR) ### Question: How many michelob ultra mountains classification for darren lill ### Answer: SELECT COUNT(michelob_ultra_mountains_classification_gold_p... |
What was the release date of Sonic Adventure 2? | CREATE TABLE table_1322904_1 (release VARCHAR, title VARCHAR) | SELECT release FROM table_1322904_1 WHERE title = "Sonic Adventure 2" | ### Context: CREATE TABLE table_1322904_1 (release VARCHAR, title VARCHAR) ### Question: What was the release date of Sonic Adventure 2? ### Answer: SELECT release FROM table_1322904_1 WHERE title = "Sonic Adventure 2" |
Was the release on April 8 available on Windows? | CREATE TABLE table_1322904_1 (windows VARCHAR, release VARCHAR) | SELECT windows FROM table_1322904_1 WHERE release = "April 8" | ### Context: CREATE TABLE table_1322904_1 (windows VARCHAR, release VARCHAR) ### Question: Was the release on April 8 available on Windows? ### Answer: SELECT windows FROM table_1322904_1 WHERE release = "April 8" |
What title was released on August 27? | CREATE TABLE table_1322904_1 (title VARCHAR, release VARCHAR) | SELECT title FROM table_1322904_1 WHERE release = "August 27" | ### Context: CREATE TABLE table_1322904_1 (title VARCHAR, release VARCHAR) ### Question: What title was released on August 27? ### Answer: SELECT title FROM table_1322904_1 WHERE release = "August 27" |
Is icewind dale available for windows | CREATE TABLE table_1322914_1 (windows VARCHAR, title VARCHAR) | SELECT windows FROM table_1322914_1 WHERE title = "Icewind Dale" | ### Context: CREATE TABLE table_1322914_1 (windows VARCHAR, title VARCHAR) ### Question: Is icewind dale available for windows ### Answer: SELECT windows FROM table_1322914_1 WHERE title = "Icewind Dale" |
List all number of yards with an AST of 8. | CREATE TABLE table_13237088_28 (no_yds VARCHAR, ast VARCHAR) | SELECT no_yds FROM table_13237088_28 WHERE ast = 8 | ### Context: CREATE TABLE table_13237088_28 (no_yds VARCHAR, ast VARCHAR) ### Question: List all number of yards with an AST of 8. ### Answer: SELECT no_yds FROM table_13237088_28 WHERE ast = 8 |
Who did the Seahawks play when the listed attendance was 61615? | CREATE TABLE table_13258876_2 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_13258876_2 WHERE attendance = 61615 | ### Context: CREATE TABLE table_13258876_2 (opponent VARCHAR, attendance VARCHAR) ### Question: Who did the Seahawks play when the listed attendance was 61615? ### Answer: SELECT opponent FROM table_13258876_2 WHERE attendance = 61615 |
What was the Seahawks record on September 18, 1983? | CREATE TABLE table_13258876_2 (record VARCHAR, date VARCHAR) | SELECT record FROM table_13258876_2 WHERE date = "September 18, 1983" | ### Context: CREATE TABLE table_13258876_2 (record VARCHAR, date VARCHAR) ### Question: What was the Seahawks record on September 18, 1983? ### Answer: SELECT record FROM table_13258876_2 WHERE date = "September 18, 1983" |
What week did the Seahawks play at los angeles memorial coliseum? | CREATE TABLE table_13258876_2 (week INTEGER, game_site VARCHAR) | SELECT MIN(week) FROM table_13258876_2 WHERE game_site = "Los Angeles Memorial Coliseum" | ### Context: CREATE TABLE table_13258876_2 (week INTEGER, game_site VARCHAR) ### Question: What week did the Seahawks play at los angeles memorial coliseum? ### Answer: SELECT MIN(week) FROM table_13258876_2 WHERE game_site = "Los Angeles Memorial Coliseum" |
What was the score of the game when the attendance was 48945? | CREATE TABLE table_13258876_2 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_13258876_2 WHERE attendance = 48945 | ### Context: CREATE TABLE table_13258876_2 (result VARCHAR, attendance VARCHAR) ### Question: What was the score of the game when the attendance was 48945? ### Answer: SELECT result FROM table_13258876_2 WHERE attendance = 48945 |
Who did the Seahawks play on September 4, 1983? | CREATE TABLE table_13258876_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_13258876_2 WHERE date = "September 4, 1983" | ### Context: CREATE TABLE table_13258876_2 (opponent VARCHAR, date VARCHAR) ### Question: Who did the Seahawks play on September 4, 1983? ### Answer: SELECT opponent FROM table_13258876_2 WHERE date = "September 4, 1983" |
What was the record set during the game played at Hubert H. Humphrey Metrodome? | CREATE TABLE table_13258851_2 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_13258851_2 WHERE game_site = "Hubert H. Humphrey Metrodome" | ### Context: CREATE TABLE table_13258851_2 (record VARCHAR, game_site VARCHAR) ### Question: What was the record set during the game played at Hubert H. Humphrey Metrodome? ### Answer: SELECT record FROM table_13258851_2 WHERE game_site = "Hubert H. Humphrey Metrodome" |
On what date was the game against San Diego Chargers played? | CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_13258851_2 WHERE opponent = "San Diego Chargers" | ### Context: CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR) ### Question: On what date was the game against San Diego Chargers played? ### Answer: SELECT date FROM table_13258851_2 WHERE opponent = "San Diego Chargers" |
What was the date of the game against Kansas City Chiefs? | CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_13258851_2 WHERE opponent = "Kansas City Chiefs" | ### Context: CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR) ### Question: What was the date of the game against Kansas City Chiefs? ### Answer: SELECT date FROM table_13258851_2 WHERE opponent = "Kansas City Chiefs" |
What was the result of the game played on September 16, 1984? | CREATE TABLE table_13258851_2 (result VARCHAR, date VARCHAR) | SELECT result FROM table_13258851_2 WHERE date = "September 16, 1984" | ### Context: CREATE TABLE table_13258851_2 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game played on September 16, 1984? ### Answer: SELECT result FROM table_13258851_2 WHERE date = "September 16, 1984" |
On what date did the game end with the result w 43-14? | CREATE TABLE table_13258806_2 (date VARCHAR, result VARCHAR) | SELECT date FROM table_13258806_2 WHERE result = "W 43-14" | ### Context: CREATE TABLE table_13258806_2 (date VARCHAR, result VARCHAR) ### Question: On what date did the game end with the result w 43-14? ### Answer: SELECT date FROM table_13258806_2 WHERE result = "W 43-14" |
What was the attendance at the game that resulted in w 24-20? | CREATE TABLE table_13258806_2 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_13258806_2 WHERE result = "W 24-20" | ### Context: CREATE TABLE table_13258806_2 (attendance VARCHAR, result VARCHAR) ### Question: What was the attendance at the game that resulted in w 24-20? ### Answer: SELECT attendance FROM table_13258806_2 WHERE result = "W 24-20" |
Who did they play against in the game that ended in 2-2? | CREATE TABLE table_13258806_2 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_13258806_2 WHERE record = "2-2" | ### Context: CREATE TABLE table_13258806_2 (opponent VARCHAR, record VARCHAR) ### Question: Who did they play against in the game that ended in 2-2? ### Answer: SELECT opponent FROM table_13258806_2 WHERE record = "2-2" |
When was the record of 0-1 set? | CREATE TABLE table_13258806_2 (date VARCHAR, record VARCHAR) | SELECT date FROM table_13258806_2 WHERE record = "0-1" | ### Context: CREATE TABLE table_13258806_2 (date VARCHAR, record VARCHAR) ### Question: When was the record of 0-1 set? ### Answer: SELECT date FROM table_13258806_2 WHERE record = "0-1" |
During what weak of the season was the game played on october 4, 1987? | CREATE TABLE table_13258806_2 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_13258806_2 WHERE date = "October 4, 1987" | ### Context: CREATE TABLE table_13258806_2 (week INTEGER, date VARCHAR) ### Question: During what weak of the season was the game played on october 4, 1987? ### Answer: SELECT MAX(week) FROM table_13258806_2 WHERE date = "October 4, 1987" |
What was the attendance when the record was 1-1? | CREATE TABLE table_13258972_2 (attendance VARCHAR, record VARCHAR) | SELECT attendance FROM table_13258972_2 WHERE record = "1-1" | ### Context: CREATE TABLE table_13258972_2 (attendance VARCHAR, record VARCHAR) ### Question: What was the attendance when the record was 1-1? ### Answer: SELECT attendance FROM table_13258972_2 WHERE record = "1-1" |
In what week was the record 5-9? | CREATE TABLE table_13258972_2 (week INTEGER, record VARCHAR) | SELECT MAX(week) FROM table_13258972_2 WHERE record = "5-9" | ### Context: CREATE TABLE table_13258972_2 (week INTEGER, record VARCHAR) ### Question: In what week was the record 5-9? ### Answer: SELECT MAX(week) FROM table_13258972_2 WHERE record = "5-9" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.