question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Who had high assists in game number 9?
CREATE TABLE table_27712702_7 (high_assists VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27712702_7 WHERE game = 9" }
Who had high assists in the game played at Oklahoma city arena 17,509?
CREATE TABLE table_27712702_7 (high_assists VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27712702_7 WHERE location_attendance = \"Oklahoma City Arena 17,509\"" }
Which team played on November 15?
CREATE TABLE table_27712702_7 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_27712702_7 WHERE date = \"November 15\"" }
Which series had a score of l 103–112 (ot)?
CREATE TABLE table_27713030_16 (series VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT series FROM table_27713030_16 WHERE score = \"L 103–112 (OT)\"" }
What was the location and attendance when lebron james (10) had the high assists?
CREATE TABLE table_27713030_16 (location_attendance VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27713030_16 WHERE high_assists = \"LeBron James (10)\"" }
How many teams were there when chris bosh , lebron james (8) had the high rebounds?
CREATE TABLE table_27713030_16 (team VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT COUNT(team) FROM table_27713030_16 WHERE high_rebounds = \"Chris Bosh , LeBron James (8)\"" }
Who led in assists on January 17, and with how many?
CREATE TABLE table_27712702_9 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27712702_9 WHERE date = \"January 17\"" }
What was the score of the January 8 game?
CREATE TABLE table_27712702_9 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_27712702_9 WHERE date = \"January 8\"" }
What game number was on January 14?
CREATE TABLE table_27713583_8 (game VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT game FROM table_27713583_8 WHERE date = \"January 14\"" }
what is the date of the game that the high assists is raymond felton (4)?
CREATE TABLE table_27713583_2 (date VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT date FROM table_27713583_2 WHERE high_assists = \"Raymond Felton (4)\"" }
How many games were on october 17?
CREATE TABLE table_27713583_2 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_27713583_2 WHERE date = \"October 17\"" }
What is the record for the game against team @ Minnesota?
CREATE TABLE table_27713583_2 (record VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT record FROM table_27713583_2 WHERE team = \"@ Minnesota\"" }
What is the date the high points was by toney douglas (23)?
CREATE TABLE table_27713583_2 (date VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT date FROM table_27713583_2 WHERE high_points = \"Toney Douglas (23)\"" }
How many episodes had an audience of exactly 25.3 million viewers in the U.S.A.?
CREATE TABLE table_27713721_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(production_code) FROM table_27713721_1 WHERE us_viewers__millions_ = \"25.3\"" }
Who had the high points when high assists is tim duncan (5)?
CREATE TABLE table_27715173_8 (high_points VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_27715173_8 WHERE high_assists = \"Tim Duncan (5)\"" }
what is the date when the location attendance is energysolutions arena 19,911?
CREATE TABLE table_27715173_8 (date VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT date FROM table_27715173_8 WHERE location_attendance = \"EnergySolutions Arena 19,911\"" }
how many times is the team oklahoma city?
CREATE TABLE table_27715173_8 (high_points VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_27715173_8 WHERE team = \"Oklahoma City\"" }
what is the game where the high points is by manu ginóbili (26)?
CREATE TABLE table_27715173_8 (game VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT game FROM table_27715173_8 WHERE high_points = \"Manu Ginóbili (26)\"" }
what is the location attendance when the record is 39–7?
CREATE TABLE table_27715173_8 (location_attendance VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27715173_8 WHERE record = \"39–7\"" }
What is the maximum basketball game?
CREATE TABLE table_27715173_2 (game INTEGER)
{ "SQL_Query": "SELECT MAX(game) FROM table_27715173_2" }
How many entries are shown for high points when the score was l 87–89 (ot)?
CREATE TABLE table_27722408_6 (high_points VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_27722408_6 WHERE score = \"L 87–89 (OT)\"" }
What was the other team in game 11?
CREATE TABLE table_27722408_6 (team VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT team FROM table_27722408_6 WHERE game = 11" }
Who scored the high points for the game with record 9–3?
CREATE TABLE table_27722408_6 (high_points VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_27722408_6 WHERE record = \"9–3\"" }
Name the date for washington
CREATE TABLE table_27722734_7 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_27722734_7 WHERE team = \"Washington\"" }
Name the record for 23 game
CREATE TABLE table_27722734_7 (record VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT record FROM table_27722734_7 WHERE game = 23" }
Name the most game for december 1
CREATE TABLE table_27722734_7 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_27722734_7 WHERE date = \"December 1\"" }
What was the score of the game against portland?
CREATE TABLE table_27723526_10 (score VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT score FROM table_27723526_10 WHERE team = \"Portland\"" }
Who had the high assist total on january 27?
CREATE TABLE table_27723526_10 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27723526_10 WHERE date = \"January 27\"" }
What is the location and attendance of game 70?
CREATE TABLE table_27733909_9 (location_attendance VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27733909_9 WHERE game = 70" }
What team was the opponent when josh smith (8) had the high assists?
CREATE TABLE table_27734577_13 (team VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT team FROM table_27734577_13 WHERE high_assists = \"Josh Smith (8)\"" }
What is the game number where josh smith (4) had the high assists?
CREATE TABLE table_27734577_13 (game INTEGER, high_assists VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_27734577_13 WHERE high_assists = \"Josh Smith (4)\"" }
What is the series number when al horford (10) had the high rebounds?
CREATE TABLE table_27734577_13 (series VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT series FROM table_27734577_13 WHERE high_rebounds = \"Al Horford (10)\"" }
What is every team with location attendance of Philips Arena 12,140?
CREATE TABLE table_27734577_7 (team VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT team FROM table_27734577_7 WHERE location_attendance = \"Philips Arena 12,140\"" }
How many games were played on october 16?
CREATE TABLE table_27756014_1 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_points) FROM table_27756014_1 WHERE date = \"October 16\"" }
What is the score of game 4?
CREATE TABLE table_27756014_1 (score VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_27756014_1 WHERE game = 4" }
What is the score of the game played on october 16?
CREATE TABLE table_27756014_1 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_27756014_1 WHERE date = \"October 16\"" }
What is the team played on october 5?
CREATE TABLE table_27756014_1 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT team FROM table_27756014_1 WHERE date = \"October 5\"" }
who had high assists on november 12?
CREATE TABLE table_27756314_6 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27756314_6 WHERE date = \"November 12\"" }
What is the date when the high points is michael beasley , martell webster (16)?
CREATE TABLE table_27756314_10 (date VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT date FROM table_27756314_10 WHERE high_points = \"Michael Beasley , Martell Webster (16)\"" }
What is the game with the team indiana?
CREATE TABLE table_27756314_10 (game VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT game FROM table_27756314_10 WHERE team = \"Indiana\"" }
Who had high rebounds when the date was march 25?
CREATE TABLE table_27756314_10 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_27756314_10 WHERE date = \"March 25\"" }
What is the highest game with the score l 96–103 (ot)?
CREATE TABLE table_27756314_10 (game INTEGER, score VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_27756314_10 WHERE score = \"L 96–103 (OT)\"" }
What is the team when the high points were by wesley johnson (20)?
CREATE TABLE table_27756314_10 (team VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_27756314_10 WHERE high_points = \"Wesley Johnson (20)\"" }
what is the record for date december 11?
CREATE TABLE table_27756314_7 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_27756314_7 WHERE date = \"December 11\"" }
who had high assists on december 3?
CREATE TABLE table_27756314_7 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27756314_7 WHERE date = \"December 3\"" }
where was the location that had game 19?
CREATE TABLE table_27756314_7 (location_attendance VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27756314_7 WHERE game = 19" }
Where was the game played and what was the attendance on May 13?
CREATE TABLE table_27756474_13 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27756474_13 WHERE date = \"May 13\"" }
What was the location and the attendance for the game on October 12?
CREATE TABLE table_27756572_2 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27756572_2 WHERE date = \"October 12\"" }
Name the number of processors for nec sx-4 vector processor
CREATE TABLE table_27765443_2 (no_of_processors VARCHAR, cpu_type VARCHAR)
{ "SQL_Query": "SELECT no_of_processors FROM table_27765443_2 WHERE cpu_type = \"NEC SX-4 vector processor\"" }
Name the most peak performance for october 2006 - january 2010
CREATE TABLE table_27765443_2 (maximum_peak_performance___teraflops__ VARCHAR, period_of_operation VARCHAR)
{ "SQL_Query": "SELECT maximum_peak_performance___teraflops__ FROM table_27765443_2 WHERE period_of_operation = \"October 2006 - January 2010\"" }
Name the cpu type for june 2005 - april 2009
CREATE TABLE table_27765443_2 (cpu_type VARCHAR, period_of_operation VARCHAR)
{ "SQL_Query": "SELECT cpu_type FROM table_27765443_2 WHERE period_of_operation = \"June 2005 - April 2009\"" }
Name the total number of model for amd opteron dual-core 2.6ghz
CREATE TABLE table_27765443_2 (model___computer_name VARCHAR, cpu_type VARCHAR)
{ "SQL_Query": "SELECT COUNT(model___computer_name) FROM table_27765443_2 WHERE cpu_type = \"AMD Opteron dual-core 2.6GHz\"" }
Name the number of processors for october 2006 - january 2010
CREATE TABLE table_27765443_2 (no_of_processors VARCHAR, period_of_operation VARCHAR)
{ "SQL_Query": "SELECT no_of_processors FROM table_27765443_2 WHERE period_of_operation = \"October 2006 - January 2010\"" }
What was the result for the cirtcuit where the LMPC winning team was #89 Intersport Racing?
CREATE TABLE table_27758427_2 (results VARCHAR, lmpc_winning_team VARCHAR)
{ "SQL_Query": "SELECT results FROM table_27758427_2 WHERE lmpc_winning_team = \"#89 Intersport Racing\"" }
how many winnings does jeff gordon have?
CREATE TABLE table_27781212_1 (winnings VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT winnings FROM table_27781212_1 WHERE driver = \"Jeff Gordon\"" }
what are the minimum points for tommy kendall?
CREATE TABLE table_27781212_1 (points INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_27781212_1 WHERE driver = \"Tommy Kendall\"" }
what is the minimum position with 31 points?
CREATE TABLE table_27781212_1 (position INTEGER, points VARCHAR)
{ "SQL_Query": "SELECT MIN(position) FROM table_27781212_1 WHERE points = 31" }
who is the driver that had winnings of $225,000?
CREATE TABLE table_27781212_1 (driver VARCHAR, winnings VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_27781212_1 WHERE winnings = \"$225,000\"" }
How many different standards have a PM of 0.02 g/kWh?
CREATE TABLE table_2780146_6 (standard VARCHAR, pm__g_kwh_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(standard) FROM table_2780146_6 WHERE pm__g_kwh_ = \"0.02\"" }
What's the HC for the Euro I standard?
CREATE TABLE table_2780146_6 (hc__g_kwh_ VARCHAR, standard VARCHAR)
{ "SQL_Query": "SELECT hc__g_kwh_ FROM table_2780146_6 WHERE standard = \"Euro I\"" }
What's the HC for the standard with NO x of 7.0 g/kWh?
CREATE TABLE table_2780146_6 (hc__g_kwh_ VARCHAR, no_x__g_kwh_ VARCHAR)
{ "SQL_Query": "SELECT hc__g_kwh_ FROM table_2780146_6 WHERE no_x__g_kwh_ = \"7.0\"" }
What's the PM for the standard with 12.3 g/kWh CO?
CREATE TABLE table_2780146_6 (pm__g_kwh_ VARCHAR, co__g_kwh_ VARCHAR)
{ "SQL_Query": "SELECT pm__g_kwh_ FROM table_2780146_6 WHERE co__g_kwh_ = \"12.3\"" }
What's the NO of the standard with HC of 1.23 g/kWh?
CREATE TABLE table_2780146_6 (no_x__g_kwh_ VARCHAR, hc__g_kwh_ VARCHAR)
{ "SQL_Query": "SELECT no_x__g_kwh_ FROM table_2780146_6 WHERE hc__g_kwh_ = \"1.23\"" }
What was the original air date of the episode that had 5.42 million viewers?
CREATE TABLE table_27790959_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_27790959_1 WHERE us_viewers__million_ = \"5.42\"" }
How many people saw the game won by G. Claypool (4-1)?
CREATE TABLE table_27862483_3 (attendance INTEGER, win VARCHAR)
{ "SQL_Query": "SELECT MIN(attendance) FROM table_27862483_3 WHERE win = \"G. Claypool (4-1)\"" }
What was the overall record in the game won by D. Klein (2-0)?
CREATE TABLE table_27862483_3 (overall_record VARCHAR, win VARCHAR)
{ "SQL_Query": "SELECT overall_record FROM table_27862483_3 WHERE win = \"D. Klein (2-0)\"" }
What was the overall record of the game lost by A. Pracher (4-1)?
CREATE TABLE table_27862483_3 (overall_record VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT overall_record FROM table_27862483_3 WHERE loss = \"A. Pracher (4-1)\"" }
What was the PAC-10 record of the game played on April 20?
CREATE TABLE table_27862483_3 (pac_10_record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT pac_10_record FROM table_27862483_3 WHERE date = \"April 20\"" }
How many different numbers are there for the game played on April 23?
CREATE TABLE table_27862483_3 (_number VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(_number) FROM table_27862483_3 WHERE date = \"April 23\"" }
Wat episode number had 5.46 million viewers?
CREATE TABLE table_27846651_1 (episode__number VARCHAR, viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT episode__number FROM table_27846651_1 WHERE viewers__millions_ = \"5.46\"" }
What episode in the series had 5.24 million viewers?
CREATE TABLE table_27846651_1 (series__number VARCHAR, viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT series__number FROM table_27846651_1 WHERE viewers__millions_ = \"5.24\"" }
Who wrote the episode that had 5.93 million viewers?
CREATE TABLE table_27846651_1 (writer VARCHAR, viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT writer FROM table_27846651_1 WHERE viewers__millions_ = \"5.93\"" }
In what edition was the opponent team Zimbabwe?
CREATE TABLE table_27877656_8 (edition VARCHAR, opponent_team VARCHAR)
{ "SQL_Query": "SELECT edition FROM table_27877656_8 WHERE opponent_team = \"Zimbabwe\"" }
What was the outcome in the 2010 Europe/Africa Group IIB edition?
CREATE TABLE table_27877656_8 (outcome VARCHAR, edition VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_27877656_8 WHERE edition = \"2010 Europe/Africa Group IIB\"" }
What was the team's record against philadelphia?
CREATE TABLE table_27882867_8 (record VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT record FROM table_27882867_8 WHERE team = \"Philadelphia\"" }
What day did they play the phoenix suns?
CREATE TABLE table_27902171_4 (date VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_27902171_4 WHERE team = \"Phoenix Suns\"" }
Who had the high point total when they were 8-5?
CREATE TABLE table_27902171_4 (high_points VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_27902171_4 WHERE record = \"8-5\"" }
Who had the high assist total when the team was 0-1?
CREATE TABLE table_27902171_4 (high_assists VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_27902171_4 WHERE record = \"0-1\"" }
Who had highest points during game against the Utah Jazz?
CREATE TABLE table_27902171_6 (high_points VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_27902171_6 WHERE team = \"Utah Jazz\"" }
What location with it's corresponding attendance was the game against Utah Jazz?
CREATE TABLE table_27902171_6 (location_attendance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_27902171_6 WHERE team = \"Utah Jazz\"" }
What were the scores of the games with a record of 47-34?
CREATE TABLE table_27902171_9 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_27902171_9 WHERE record = \"47-34\"" }
Who performed the most rebounds on games against the Minnesota Timberwolves?
CREATE TABLE table_27902171_9 (high_rebounds VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_27902171_9 WHERE team = \"Minnesota Timberwolves\"" }
Who manufactured the car driven by Will Power and Scott Dixon had the most laps?
CREATE TABLE table_27913160_3 (manufacturer VARCHAR, driver VARCHAR, most_laps_led VARCHAR)
{ "SQL_Query": "SELECT manufacturer FROM table_27913160_3 WHERE driver = \"Will Power\" AND most_laps_led = \"Scott Dixon\"" }
Who had the pole position in Detroit?
CREATE TABLE table_27913160_3 (pole_position VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT pole_position FROM table_27913160_3 WHERE race = \"Detroit\"" }
Who was the driver in round 4?
CREATE TABLE table_27913160_3 (driver VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_27913160_3 WHERE round = 4" }
Who had the pole position in Milwaukee?
CREATE TABLE table_27913160_3 (pole_position VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT pole_position FROM table_27913160_3 WHERE race = \"Milwaukee\"" }
Who was the driver in round 8?
CREATE TABLE table_27913160_3 (driver VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_27913160_3 WHERE round = 8" }
What race did Simon Pagenaud have the most laps in?
CREATE TABLE table_27913160_3 (race VARCHAR, most_laps_led VARCHAR)
{ "SQL_Query": "SELECT race FROM table_27913160_3 WHERE most_laps_led = \"Simon Pagenaud\"" }
what is the name of the episode whose director is Michael Pressman and the number of that episode in that season is less than 10.0?
CREATE TABLE table_2791668_1 (title VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)
{ "SQL_Query": "SELECT title FROM table_2791668_1 WHERE directed_by = \"Michael Pressman\" AND no_in_season < 10.0" }
how many millions of North American people saw the episode whose director was Ed Sherin?
CREATE TABLE table_2791668_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT us_viewers__millions_ FROM table_2791668_1 WHERE directed_by = \"Ed Sherin\"" }
what is the name of the episode whose writer is philippe browning?
CREATE TABLE table_2791668_1 (title VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_2791668_1 WHERE written_by = \"Philippe Browning\"" }
how many premieres had the episode that had 12.68 millions of north american viewers?
CREATE TABLE table_2791668_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(original_air_date) FROM table_2791668_1 WHERE us_viewers__millions_ = \"12.68\"" }
how many episodes in the series had as a production code 16016?
CREATE TABLE table_2791668_1 (no_in_series VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT COUNT(no_in_series) FROM table_2791668_1 WHERE production_code = 16016" }
What car make was sponsored by Aflac?
CREATE TABLE table_27940569_1 (make VARCHAR, sponsor VARCHAR)
{ "SQL_Query": "SELECT make FROM table_27940569_1 WHERE sponsor = \"Aflac\"" }
How many points and bonuses did Kurt Busch get?
CREATE TABLE table_27940569_1 (pts_bns VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT pts_bns FROM table_27940569_1 WHERE driver = \"Kurt Busch\"" }
What make was the car driven by Jeff Gordon?
CREATE TABLE table_27940569_1 (make VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT make FROM table_27940569_1 WHERE driver = \"Jeff Gordon\"" }
What was the greatest number of laps run?
CREATE TABLE table_27940569_1 (laps INTEGER)
{ "SQL_Query": "SELECT MAX(laps) FROM table_27940569_1" }
What is the represent province for the contestant whose hometown is Woerden?
CREATE TABLE table_27946889_2 (represent_province VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT represent_province FROM table_27946889_2 WHERE hometown = \"Woerden\"" }
How many contestants are 1.80 mtr. in height?
CREATE TABLE table_27946889_2 (contestant VARCHAR, height__mtr_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(contestant) FROM table_27946889_2 WHERE height__mtr_ = \"1.80\"" }
Which episode had viewership of 0.296 million?
CREATE TABLE table_27987623_3 (episode VARCHAR, viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_27987623_3 WHERE viewers__millions_ = \"0.296\"" }