question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
How many teams drew the widnes vikings? | CREATE TABLE table_13018091_1 (drawn VARCHAR, club VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT MAX(round) FROM table_13079788_3 WHERE gt3_winner = \"Hector Lester Tim Mullen\" AND pole_position = \"Jonny Cocker Paul Drayson\""
} |
what are all the date for gt3 winner oliver bryant matt harris | CREATE TABLE table_13079788_3 (date VARCHAR, gt3_winner VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT date FROM table_13079788_3 WHERE gtc_winner = \"Graeme Mundy Jamie Smyth\" AND gt3_winner = \"Hector Lester Tim Mullen\""
} |
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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT circuit FROM table_13079788_3 WHERE gtc_winner = \"Graeme Mundy Jamie Smyth\" AND pole_position = \"Bradley Ellis Alex Mortimer\""
} |
what are all the gtc winners for pole position no. 21 team modena | CREATE TABLE table_13079788_3 (gtc_winner VARCHAR, pole_position VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT MAX(qualifying_rank) FROM table_13114949_3 WHERE competition = \"Olympic Trials\" AND final_rank = \"4\" AND qualifying_score = \"15.100\""
} |
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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT MAX(year) FROM table_13169136_1"
} |
What year is Jiyai Shin the champion? | CREATE TABLE table_13169136_1 (year VARCHAR, champion VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT COUNT(michelob_ultra_mountains_classification_gold_polka_dot_jersey) FROM table_13223187_1 WHERE drury_hotels_most_aggressive_rider_red_jersey = \"Darren Lill\""
} |
What was the release date of Sonic Adventure 2? | CREATE TABLE table_1322904_1 (release VARCHAR, title VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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.