question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What seasons had a finale on May 25, 2004?
CREATE TABLE table_175980_2 (season VARCHAR, finale VARCHAR)
{ "SQL_Query": "SELECT season FROM table_175980_2 WHERE finale = \"May 25, 2004\"" }
What seasons had a ranking of #47?
CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR)
{ "SQL_Query": "SELECT season FROM table_175980_2 WHERE ranking = \"#47\"" }
What are all values for viewers for 1st season?
CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT viewers__in_millions_ FROM table_175980_2 WHERE season = \"1st\"" }
What is the withdraw date for secr no. 771?
CREATE TABLE table_17607663_1 (date_withdrawn VARCHAR, secr_no VARCHAR)
{ "SQL_Query": "SELECT date_withdrawn FROM table_17607663_1 WHERE secr_no = 771" }
Who is the builder for br no. 31779?
CREATE TABLE table_17607663_1 (builder VARCHAR, br_no VARCHAR)
{ "SQL_Query": "SELECT builder FROM table_17607663_1 WHERE br_no = 31779" }
what ist he country where the loan club is fulham?
CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR)
{ "SQL_Query": "SELECT country FROM table_17596418_5 WHERE loan_club = \"Fulham\"" }
what ist he total number of ages where the start date is 6 november?
CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR)
{ "SQL_Query": "SELECT COUNT(age) FROM table_17596418_5 WHERE started = \"6 November\"" }
What was the name of eipsode 618?
CREATE TABLE table_17624965_1 (title VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT title FROM table_17624965_1 WHERE production_code = 618" }
How many episodes did Alison Maclean direct?
CREATE TABLE table_17624965_1 (written_by VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(written_by) FROM table_17624965_1 WHERE directed_by = \"Alison Maclean\"" }
Name the high points for may 29
CREATE TABLE table_17622423_12 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_17622423_12 WHERE date = \"May 29\"" }
Name the date for series 2-2
CREATE TABLE table_17622423_12 (date VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17622423_12 WHERE series = \"2-2\"" }
Name the high assists for may 21
CREATE TABLE table_17622423_12 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_17622423_12 WHERE date = \"May 21\"" }
How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?
CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR)
{ "SQL_Query": "SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = \"Darren Flutie, Eric Tillman and Greg Frers\"" }
Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?
CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR)
{ "SQL_Query": "SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = \"Brian Williams\" AND sideline_reporters = \"Steve Armitage and Brenda Irving\"" }
Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving?
CREATE TABLE table_17628022_2 (pregame_host VARCHAR, sideline_reporters VARCHAR)
{ "SQL_Query": "SELECT pregame_host FROM table_17628022_2 WHERE sideline_reporters = \"Steve Armitage and Brenda Irving\"" }
Who did pregame analysis in 2002?
CREATE TABLE table_17628022_2 (pregame_analysts VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT pregame_analysts FROM table_17628022_2 WHERE year = 2002" }
Name the state for lake county
CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT state FROM table_1762887_1 WHERE county = \"Lake county\"" }
What is the lowest season?
CREATE TABLE table_17632217_1 (season INTEGER)
{ "SQL_Query": "SELECT MIN(season) FROM table_17632217_1" }
How many values for number of clubs have Shandong as the runner-up?
CREATE TABLE table_17632217_1 (number_of_clubs VARCHAR, runners_up VARCHAR)
{ "SQL_Query": "SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = \"Shandong\"" }
How many total wins with Shanghai as runner-up?
CREATE TABLE table_17632217_1 (total_wins VARCHAR, runners_up VARCHAR)
{ "SQL_Query": "SELECT COUNT(total_wins) FROM table_17632217_1 WHERE runners_up = \"Shanghai\"" }
Name the club for when tries for is 32
CREATE TABLE table_17625749_1 (club VARCHAR, tries_for VARCHAR)
{ "SQL_Query": "SELECT club FROM table_17625749_1 WHERE tries_for = \"32\"" }
Name the number of lost where tries for is 109
CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR)
{ "SQL_Query": "SELECT COUNT(lost) FROM table_17625749_1 WHERE tries_for = \"109\"" }
Name the won when tries against is 72
CREATE TABLE table_17625749_1 (won VARCHAR, tries_against VARCHAR)
{ "SQL_Query": "SELECT won FROM table_17625749_1 WHERE tries_against = \"72\"" }
Name the points aginst when drawn is 1 and points is 51
CREATE TABLE table_17625749_1 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT points_against FROM table_17625749_1 WHERE drawn = \"1\" AND points = \"51\"" }
Name the original air date for number in season being 1
CREATE TABLE table_17625876_1 (original_air_date VARCHAR, no_in_season VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_17625876_1 WHERE no_in_season = 1" }
How many were won when 5 were lost?
CREATE TABLE table_17625749_3 (won VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT won FROM table_17625749_3 WHERE lost = \"5\"" }
How many were drawn when 13 were lost?
CREATE TABLE table_17625749_3 (drawn VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT drawn FROM table_17625749_3 WHERE lost = \"13\"" }
How many points are there for 63 tries against?
CREATE TABLE table_17625749_3 (points_for VARCHAR, tries_against VARCHAR)
{ "SQL_Query": "SELECT points_for FROM table_17625749_3 WHERE tries_against = \"63\"" }
What is the try bonus when the tries against are 17?
CREATE TABLE table_17625749_3 (try_bonus VARCHAR, tries_against VARCHAR)
{ "SQL_Query": "SELECT try_bonus FROM table_17625749_3 WHERE tries_against = \"17\"" }
How many tries for are there when 11 were won?
CREATE TABLE table_17625749_3 (tries_for VARCHAR, won VARCHAR)
{ "SQL_Query": "SELECT tries_for FROM table_17625749_3 WHERE won = \"11\"" }
How many points categories are there when the losing bonus is 2 and points for are 642?
CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = \"2\" AND points_for = \"642\"" }
How many people wrote the episode that had 6.34 million viewers?
CREATE TABLE table_17641206_2 (written_by VARCHAR, viewership VARCHAR)
{ "SQL_Query": "SELECT COUNT(written_by) FROM table_17641206_2 WHERE viewership = \"6.34 million\"" }
What was the title of the episode with 5.04 million viewers?
CREATE TABLE table_17641206_4 (original_title VARCHAR, viewership VARCHAR)
{ "SQL_Query": "SELECT original_title FROM table_17641206_4 WHERE viewership = \"5.04 million\"" }
What was the first airdate with a viewership of 4.77 million?
CREATE TABLE table_17641206_4 (original_airdate VARCHAR, viewership VARCHAR)
{ "SQL_Query": "SELECT original_airdate FROM table_17641206_4 WHERE viewership = \"4.77 million\"" }
How many episodes of 30 minutes were written by John Sullivan?
CREATE TABLE table_17641206_4 (duration VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(duration) FROM table_17641206_4 WHERE written_by = \"John Sullivan\"" }
Who was the director when the writer was John Sullivan?
CREATE TABLE table_17641206_4 (directed_by VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_17641206_4 WHERE written_by = \"John Sullivan\"" }
What are the movies that are written and dircted by john sullivan with the airdate of 15january2009.
CREATE TABLE table_17641206_8 (directed_by VARCHAR, written_by VARCHAR, original_airdate VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_17641206_8 WHERE written_by = \"John Sullivan\" AND original_airdate = \"15January2009\"" }
How many episodes aired on 22january2009
CREATE TABLE table_17641206_8 (episode VARCHAR, original_airdate VARCHAR)
{ "SQL_Query": "SELECT COUNT(episode) FROM table_17641206_8 WHERE original_airdate = \"22January2009\"" }
Name the least transfers out when transfers is 21
CREATE TABLE table_17650725_1 (transfers_out INTEGER, total_transfers VARCHAR)
{ "SQL_Query": "SELECT MIN(transfers_out) FROM table_17650725_1 WHERE total_transfers = 21" }
Name the least total transfers for romania
CREATE TABLE table_17650725_1 (total_transfers INTEGER, country VARCHAR)
{ "SQL_Query": "SELECT MIN(total_transfers) FROM table_17650725_1 WHERE country = \"Romania\"" }
Name the least internal transfers
CREATE TABLE table_17650725_1 (internal_transfers INTEGER)
{ "SQL_Query": "SELECT MIN(internal_transfers) FROM table_17650725_1" }
How many status are there for Moncton?
CREATE TABLE table_176529_2 (status VARCHAR, official_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(status) FROM table_176529_2 WHERE official_name = \"Moncton\"" }
What is the census ranking of the location with population of 959?
CREATE TABLE table_176529_2 (census_ranking VARCHAR, population VARCHAR)
{ "SQL_Query": "SELECT census_ranking FROM table_176529_2 WHERE population = 959" }
What is the name of the place with 582.20 square km area?
CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)
{ "SQL_Query": "SELECT official_name FROM table_176529_2 WHERE area_km_2 = \"582.20\"" }
What is the name of the place where area is 578.28 square km?
CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)
{ "SQL_Query": "SELECT official_name FROM table_176529_2 WHERE area_km_2 = \"578.28\"" }
If the points is 20, what was the team name?
CREATE TABLE table_17693171_1 (team VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17693171_1 WHERE points = \"20\"" }
What is the time/retired if the driver is Marco Andretti?
CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_17693171_1 WHERE driver = \"Marco Andretti\"" }
If the laps is 191, what is the maximum laps led?
CREATE TABLE table_17693171_1 (laps INTEGER)
{ "SQL_Query": "SELECT MAX(laps) AS Led FROM table_17693171_1 WHERE laps = 191" }
What is the time/retired if the driver is Ed Carpenter?
CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_17693171_1 WHERE driver = \"Ed Carpenter\"" }
If the time/retired is +1 lap, what is the amount of maximum laps?
CREATE TABLE table_17693171_1 (laps INTEGER, time_retired VARCHAR)
{ "SQL_Query": "SELECT MAX(laps) FROM table_17693171_1 WHERE time_retired = \"+1 lap\"" }
If the driver is Milka Duno, what is the name of the team?
CREATE TABLE table_17693171_1 (team VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT team FROM table_17693171_1 WHERE driver = \"Milka Duno\"" }
How many stages were won by Robbie McEwen?
CREATE TABLE table_17672470_19 (stage VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = \"Robbie McEwen\"" }
How many car numbers were listed for Rusty Wallace?
CREATE TABLE table_1769428_2 (car__number VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT COUNT(car__number) FROM table_1769428_2 WHERE winning_driver = \"Rusty Wallace\"" }
In what season did Rusty Wallace win?
CREATE TABLE table_1769428_2 (season INTEGER, winning_driver VARCHAR)
{ "SQL_Query": "SELECT MAX(season) FROM table_1769428_2 WHERE winning_driver = \"Rusty Wallace\"" }
What was the represented team on June 27?
CREATE TABLE table_1769428_2 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_1769428_2 WHERE date = \"June 27\"" }
Who was the winning driver for Hendrick Motorsports in a Chevrolet Impala SS?
CREATE TABLE table_1769428_2 (winning_driver VARCHAR, team VARCHAR, make VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1769428_2 WHERE team = \"Hendrick Motorsports\" AND make = \"Chevrolet Impala SS\"" }
When 45 is the goals for and 10 is the drawn what is the lost?
CREATE TABLE table_17718005_2 (lost VARCHAR, drawn VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT lost FROM table_17718005_2 WHERE drawn = 10 AND goals_for = 45" }
When +10 is the goal difference what is the goals for?
CREATE TABLE table_17718005_2 (goals_for VARCHAR, goal_difference VARCHAR)
{ "SQL_Query": "SELECT goals_for FROM table_17718005_2 WHERE goal_difference = \"+10\"" }
When ellesmere port & neston is the team what are the points 1?
CREATE TABLE table_17718005_2 (points_1 VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT points_1 FROM table_17718005_2 WHERE team = \"Ellesmere Port & Neston\"" }
When 2005 is the season how many drivers are there?
CREATE TABLE table_1771753_3 (driver VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(driver) FROM table_1771753_3 WHERE season = \"2005\"" }
When tony kanaan is the driver what is the average speed miles per hour?
CREATE TABLE table_1771753_3 (average_speed__mph_ VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT average_speed__mph_ FROM table_1771753_3 WHERE driver = \"Tony Kanaan\"" }
When 169.182 is the average speed miles per hour what is the chassis?
CREATE TABLE table_1771753_3 (chassis VARCHAR, average_speed__mph_ VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_1771753_3 WHERE average_speed__mph_ = \"169.182\"" }
When 1:34:01 is the race time what is the miles in kilometers?
CREATE TABLE table_1771753_3 (miles__km_ VARCHAR, race_time VARCHAR)
{ "SQL_Query": "SELECT miles__km_ FROM table_1771753_3 WHERE race_time = \"1:34:01\"" }
When 228 is the lap and chip ganassi racing is the team what is the race time?
CREATE TABLE table_1771753_3 (race_time VARCHAR, team VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT race_time FROM table_1771753_3 WHERE team = \"Chip Ganassi Racing\" AND laps = \"228\"" }
What tie number featured Chelsea as the home team?
CREATE TABLE table_17736890_5 (tie_no INTEGER, home_team VARCHAR)
{ "SQL_Query": "SELECT MIN(tie_no) FROM table_17736890_5 WHERE home_team = \"Chelsea\"" }
In what tie were Leeds United the away team?
CREATE TABLE table_17736890_5 (tie_no INTEGER, away_team VARCHAR)
{ "SQL_Query": "SELECT MAX(tie_no) FROM table_17736890_5 WHERE away_team = \"Leeds United\"" }
Who was the home team when Burnley were the away team?
CREATE TABLE table_17736890_5 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_17736890_5 WHERE away_team = \"Burnley\"" }
what is the lowest year represented?
CREATE TABLE table_177273_2 (year INTEGER)
{ "SQL_Query": "SELECT MIN(year) FROM table_177273_2" }
What was the score when Françoise Dürr was partner?
CREATE TABLE table_177273_2 (score VARCHAR, partner VARCHAR)
{ "SQL_Query": "SELECT score FROM table_177273_2 WHERE partner = \"Françoise Dürr\"" }
What was the outcome in 1975?
CREATE TABLE table_177273_2 (outcome VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_177273_2 WHERE year = 1975" }
On what surface was the game played with a score of 6–4, 6–4?
CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_177273_2 WHERE score = \"6–4, 6–4\"" }
What is the year of appearance for the Prince Albert Raiders?
CREATE TABLE table_17751942_4 (years_of_appearance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT years_of_appearance FROM table_17751942_4 WHERE team = \"Prince Albert Raiders\"" }
How many wins do the Erie Otters have?
CREATE TABLE table_17751942_4 (wins VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT wins FROM table_17751942_4 WHERE team = \"Erie Otters\"" }
What is the final win percentage of the Sault Ste. Marie Greyhounds?
CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT final_win__percentage FROM table_17751942_4 WHERE team = \"Sault Ste. Marie Greyhounds\"" }
What is the total number of semi-final losses for the Kitchener Rangers?
CREATE TABLE table_17751942_4 (final_losses VARCHAR, Semi INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = \"Kitchener Rangers\"" }
How many wins do the Red Deer Rebels have?
CREATE TABLE table_17751942_4 (wins INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(wins) FROM table_17751942_4 WHERE team = \"Red Deer Rebels\"" }
What is the record for November 26, 1961?
CREATE TABLE table_17765888_1 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_17765888_1 WHERE date = \"November 26, 1961\"" }
What was the game site against the Dallas Texans?
CREATE TABLE table_17765888_1 (game_site VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_17765888_1 WHERE opponent = \"Dallas Texans\"" }
In how many years was Tom Fleming the final television commentator?
CREATE TABLE table_17766232_7 (year_s_ VARCHAR, final_television_commentator VARCHAR)
{ "SQL_Query": "SELECT COUNT(year_s_) FROM table_17766232_7 WHERE final_television_commentator = \"Tom Fleming\"" }
What was the latest year that Colin Berry was the spokesperson?
CREATE TABLE table_17766232_7 (year_s_ INTEGER, spokesperson VARCHAR)
{ "SQL_Query": "SELECT MAX(year_s_) FROM table_17766232_7 WHERE spokesperson = \"Colin Berry\"" }
Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray?
CREATE TABLE table_17766232_7 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, final_television_commentator VARCHAR)
{ "SQL_Query": "SELECT semi_final_television_commentator FROM table_17766232_7 WHERE spokesperson = \"Colin Berry\" AND final_television_commentator = \"Pete Murray\"" }
Who was the radio commentator when the final television commentator was John Dunn?
CREATE TABLE table_17766232_7 (radio_commentator VARCHAR, final_television_commentator VARCHAR)
{ "SQL_Query": "SELECT radio_commentator FROM table_17766232_7 WHERE final_television_commentator = \"John Dunn\"" }
What is the latest year that the final television commentator was David Jacobs?
CREATE TABLE table_17766232_7 (year_s_ INTEGER, final_television_commentator VARCHAR)
{ "SQL_Query": "SELECT MAX(year_s_) FROM table_17766232_7 WHERE final_television_commentator = \"David Jacobs\"" }
What was their record when the attendance at the game was 14489?
CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT record FROM table_17765264_1 WHERE attendance = 14489" }
When did they play at the Cotton Bowl?
CREATE TABLE table_17765264_1 (date VARCHAR, game_site VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17765264_1 WHERE game_site = \"Cotton Bowl\"" }
What is the percentage of this constellation abbreviated as 'nor'?
CREATE TABLE table_177766_1 (per­cent­age VARCHAR, abbre­viation VARCHAR)
{ "SQL_Query": "SELECT per­cent­age FROM table_177766_1 WHERE abbre­viation = \"Nor\"" }
This constellation, abbreviated as 'oph' has how many right ascension (in hm)?
CREATE TABLE table_177766_1 (right_ascension__hm_ VARCHAR, abbre­viation VARCHAR)
{ "SQL_Query": "SELECT COUNT(right_ascension__hm_) FROM table_177766_1 WHERE abbre­viation = \"Oph\"" }
What is the name of this constellation with an area of 245.375 sq. deg.?
CREATE TABLE table_177766_1 (constellation VARCHAR, area__sqdeg_ VARCHAR)
{ "SQL_Query": "SELECT constellation FROM table_177766_1 WHERE area__sqdeg_ = \"245.375\"" }
This constellation with a ranking of 51 has how many percentages on record?
CREATE TABLE table_177766_1 (per VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT COUNT(per) AS ­cent­age FROM table_177766_1 WHERE rank = 51" }
What is the percentage of this constellation with an area of 248.885 sq. deg.?
CREATE TABLE table_177766_1 (per­cent­age VARCHAR, area__sqdeg_ VARCHAR)
{ "SQL_Query": "SELECT per­cent­age FROM table_177766_1 WHERE area__sqdeg_ = \"248.885\"" }
Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r
CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)
{ "SQL_Query": "SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = \"6.4\" AND archive = \"16mm t/r\"" }
Name the archive where run time 24:04
CREATE TABLE table_1776943_1 (archive VARCHAR, run_time VARCHAR)
{ "SQL_Query": "SELECT archive FROM table_1776943_1 WHERE run_time = \"24:04\"" }
On November 1, 1964, where was the game site?
CREATE TABLE table_17781394_1 (game_site VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_17781394_1 WHERE date = \"November 1, 1964\"" }
How many people attended the Week 8 game when Denver played Buffalo?
CREATE TABLE table_17778417_1 (attendance VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_17778417_1 WHERE week = 8" }
How many times did the Denver Broncos face the Dallas Texans this season?
CREATE TABLE table_17778417_1 (record VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT COUNT(record) FROM table_17778417_1 WHERE opponent = \"Dallas Texans\"" }
What year was the winning race time 1:55:13?
CREATE TABLE table_17801022_1 (year INTEGER, race_time VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_17801022_1 WHERE race_time = \"1:55:13\"" }
For races with an average speed of 113.835 mph, what are the winning race times?
CREATE TABLE table_17801022_1 (race_time VARCHAR, average_speed__mph_ VARCHAR)
{ "SQL_Query": "SELECT race_time FROM table_17801022_1 WHERE average_speed__mph_ = \"113.835\"" }
What manufacturer won the race on November 2?
CREATE TABLE table_17801022_1 (manufacturer VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT manufacturer FROM table_17801022_1 WHERE date = \"November 2\"" }
What date did Jamie McMurray win the race?
CREATE TABLE table_17801022_1 (date VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17801022_1 WHERE driver = \"Jamie McMurray\"" }
What was the date of the race with a winning time of 1:55:13?
CREATE TABLE table_17801022_1 (date VARCHAR, race_time VARCHAR)
{ "SQL_Query": "SELECT date FROM table_17801022_1 WHERE race_time = \"1:55:13\"" }