question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the 2011 population if the headquarters is Chittorgarh?
CREATE TABLE table_2168295_1 (population__2011_ VARCHAR, headquarters VARCHAR)
{ "SQL_Query": "SELECT population__2011_ FROM table_2168295_1 WHERE headquarters = \"Chittorgarh\"" }
How many different municipal mayors were there in the municipality with an area of 42.66 km2?
CREATE TABLE table_216776_2 (municipal_mayor VARCHAR, area__km²_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(municipal_mayor) FROM table_216776_2 WHERE area__km²_ = \"42.66\"" }
What municipality had 26839 people living in it in 2010?
CREATE TABLE table_216776_2 (municipality VARCHAR, population__2010_ VARCHAR)
{ "SQL_Query": "SELECT municipality FROM table_216776_2 WHERE population__2010_ = 26839" }
In what municipality were there 757.5 people per km2?
CREATE TABLE table_216776_2 (municipality VARCHAR, pop_density__per_km²_ VARCHAR)
{ "SQL_Query": "SELECT municipality FROM table_216776_2 WHERE pop_density__per_km²_ = \"757.5\"" }
How many different counts of the population in Cavinti in 2010 are there?
CREATE TABLE table_216776_2 (population__2010_ VARCHAR, municipality VARCHAR)
{ "SQL_Query": "SELECT COUNT(population__2010_) FROM table_216776_2 WHERE municipality = \"Cavinti\"" }
How many people per km2 are there in the municipality whose mayor is Boy Quiat?
CREATE TABLE table_216776_2 (pop_density__per_km²_ VARCHAR, municipal_mayor VARCHAR)
{ "SQL_Query": "SELECT pop_density__per_km²_ FROM table_216776_2 WHERE municipal_mayor = \"Boy Quiat\"" }
What's the number of the episode seen by 2.24 million people in the US?
CREATE TABLE table_21696800_1 (_number VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT _number FROM table_21696800_1 WHERE us_viewers__million_ = \"2.24\"" }
How many different episode numbers are there for episodes directed by Wayne Rose?
CREATE TABLE table_21696800_1 (_number VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(_number) FROM table_21696800_1 WHERE directed_by = \"Wayne Rose\"" }
How many wins does he get when he starts at 10?
CREATE TABLE table_2169966_1 (wins VARCHAR, starts VARCHAR)
{ "SQL_Query": "SELECT wins FROM table_2169966_1 WHERE starts = 10" }
How many wins does he have?
CREATE TABLE table_2169966_1 (wins INTEGER)
{ "SQL_Query": "SELECT MAX(wins) FROM table_2169966_1" }
What wast the percent cut for the nation with an 80% full gas storage?
CREATE TABLE table_21690339_1 (_percentage_cut VARCHAR, gas_storage VARCHAR)
{ "SQL_Query": "SELECT _percentage_cut FROM table_21690339_1 WHERE gas_storage = \"80% full\"" }
What was the gas storage status for the nation that had "yes" for alternative fuel?
CREATE TABLE table_21690339_1 (gas_storage VARCHAR, alternative_fuel VARCHAR)
{ "SQL_Query": "SELECT gas_storage FROM table_21690339_1 WHERE alternative_fuel = \"Yes\"" }
What was the percent cunt for the nation that had fuel oil stocks need only for industry as their fuel alternative?
CREATE TABLE table_21690339_1 (_percentage_cut VARCHAR, alternative_fuel VARCHAR)
{ "SQL_Query": "SELECT _percentage_cut FROM table_21690339_1 WHERE alternative_fuel = \"Fuel oil stocks need only for industry\"" }
What country had 20% imports from russia?
CREATE TABLE table_21690339_1 (country VARCHAR, _percentage_of_imports_from_russia VARCHAR)
{ "SQL_Query": "SELECT country FROM table_21690339_1 WHERE _percentage_of_imports_from_russia = \"20%\"" }
What country had a 100% cut?
CREATE TABLE table_21690339_1 (country VARCHAR, _percentage_cut VARCHAR)
{ "SQL_Query": "SELECT country FROM table_21690339_1 WHERE _percentage_cut = \"100%\"" }
What network garnered 2.74 million viewers for Supernatural?
CREATE TABLE table_2170969_2 (network VARCHAR, viewers_in_millions VARCHAR)
{ "SQL_Query": "SELECT network FROM table_2170969_2 WHERE viewers_in_millions = \"2.74\"" }
What season had 2.52 million viewers?
CREATE TABLE table_2170969_2 (tv_season VARCHAR, viewers_in_millions VARCHAR)
{ "SQL_Query": "SELECT tv_season FROM table_2170969_2 WHERE viewers_in_millions = \"2.52\"" }
What is the category for trains numbered 16609/16610?
CREATE TABLE table_21716139_1 (category VARCHAR, train_no VARCHAR)
{ "SQL_Query": "SELECT category FROM table_21716139_1 WHERE train_no = \"16609/16610\"" }
What trains have a category of express and a weekly frequency?
CREATE TABLE table_21716139_1 (train_name VARCHAR, category VARCHAR, frequency VARCHAR)
{ "SQL_Query": "SELECT train_name FROM table_21716139_1 WHERE category = \"Express\" AND frequency = \"Weekly\"" }
What is the train name that has a destination of Tuticorin?
CREATE TABLE table_21716139_1 (train_name VARCHAR, destination VARCHAR)
{ "SQL_Query": "SELECT train_name FROM table_21716139_1 WHERE destination = \"Tuticorin\"" }
What is the frequency of trains numbered 12671/12672?
CREATE TABLE table_21716139_1 (frequency VARCHAR, train_no VARCHAR)
{ "SQL_Query": "SELECT frequency FROM table_21716139_1 WHERE train_no = \"12671/12672\"" }
How many destinations have a weekly frequency and are named AC Express?
CREATE TABLE table_21716139_1 (destination VARCHAR, frequency VARCHAR, train_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(destination) FROM table_21716139_1 WHERE frequency = \"Weekly\" AND train_name = \"AC Express\"" }
What is the number of frequencies that have a destination of Jaipur?
CREATE TABLE table_21716139_1 (frequency VARCHAR, destination VARCHAR)
{ "SQL_Query": "SELECT COUNT(frequency) FROM table_21716139_1 WHERE destination = \"Jaipur\"" }
What is the pick # for player david grannis?
CREATE TABLE table_21721351_18 (pick__number INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MAX(pick__number) FROM table_21721351_18 WHERE player = \"David Grannis\"" }
Which player belongs to deerfield academy (Massachusetts) college/junior/club team?
CREATE TABLE table_21721351_18 (player VARCHAR, college_junior_club_team VARCHAR)
{ "SQL_Query": "SELECT player FROM table_21721351_18 WHERE college_junior_club_team = \"Deerfield Academy (Massachusetts)\"" }
Which nationality is kitchener rangers (ohl) college/junior/club team?
CREATE TABLE table_21721351_18 (nationality VARCHAR, college_junior_club_team VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_21721351_18 WHERE college_junior_club_team = \"Kitchener Rangers (OHL)\"" }
Which nationality is player Brian Wilks?
CREATE TABLE table_21721351_18 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_21721351_18 WHERE player = \"Brian Wilks\"" }
How many positions is player Tom Glavine?
CREATE TABLE table_21721351_18 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_21721351_18 WHERE player = \"Tom Glavine\"" }
who directed the production code 2t5710?
CREATE TABLE table_21726793_1 (directed_by VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_21726793_1 WHERE production_code = \"2T5710\"" }
what is the total number o production code where us viewers is 2.76?
CREATE TABLE table_21726793_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(production_code) FROM table_21726793_1 WHERE us_viewers__million_ = \"2.76\"" }
who wrote the no 2?
CREATE TABLE table_21726793_1 (written_by VARCHAR, no VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_21726793_1 WHERE no = 2" }
What is the maac when the overall is 26-8?
CREATE TABLE table_21756039_1 (maac VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT maac FROM table_21756039_1 WHERE overall = \"26-8\"" }
How many maac are there that have 14th as the ncaa and the overall is 20-10?
CREATE TABLE table_21756039_1 (maac VARCHAR, ncaa_seed VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT COUNT(maac) FROM table_21756039_1 WHERE ncaa_seed = \"14th\" AND overall = \"20-10\"" }
How many overall in the year 2010-2011?
CREATE TABLE table_21756039_1 (overall VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT COUNT(overall) FROM table_21756039_1 WHERE year = \"2010-2011\"" }
In which year is the overall 29-4?
CREATE TABLE table_21756039_1 (year VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT year FROM table_21756039_1 WHERE overall = \"29-4\"" }
What is the regular season results for the year 2011-2012?
CREATE TABLE table_21756039_1 (regular_season_results VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT regular_season_results FROM table_21756039_1 WHERE year = \"2011-2012\"" }
How many drivers had a time of 3:09:45?
CREATE TABLE table_2175858_1 (driver VARCHAR, race_time VARCHAR)
{ "SQL_Query": "SELECT COUNT(driver) FROM table_2175858_1 WHERE race_time = \"3:09:45\"" }
How many drivers drove 300 laps at average speed of 103.594?
CREATE TABLE table_2175858_1 (driver VARCHAR, laps VARCHAR, average_speed__mph_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(driver) FROM table_2175858_1 WHERE laps = \"300\" AND average_speed__mph_ = \"103.594\"" }
How many dates had an average speed of 102.003?
CREATE TABLE table_2175858_1 (date VARCHAR, average_speed__mph_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(date) FROM table_2175858_1 WHERE average_speed__mph_ = \"102.003\"" }
How many laps were driven in 2009?
CREATE TABLE table_2175858_1 (laps VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT laps FROM table_2175858_1 WHERE year = 2009" }
How many laps were completed in the race with time of 3:03:50?
CREATE TABLE table_2175858_1 (laps VARCHAR, race_time VARCHAR)
{ "SQL_Query": "SELECT laps FROM table_2175858_1 WHERE race_time = \"3:03:50\"" }
How many miles were driven with the average speed at 116.81?
CREATE TABLE table_2175858_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)
{ "SQL_Query": "SELECT miles__km_ FROM table_2175858_1 WHERE average_speed__mph_ = \"116.81\"" }
What was the season number for production code E2110?
CREATE TABLE table_21781578_2 (season_no VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT season_no FROM table_21781578_2 WHERE production_code = \"E2110\"" }
What was the original air date for season number 2?
CREATE TABLE table_21781578_2 (original_air_date VARCHAR, season_no VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_21781578_2 WHERE season_no = 2" }
What was the season number episode directed by John David Coles?
CREATE TABLE table_21781578_2 (season_no VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT season_no FROM table_21781578_2 WHERE directed_by = \"John David Coles\"" }
What was the number of US Viewers in the episode directed by Steve Shill and having a production code of E2102?
CREATE TABLE table_21781578_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT us_viewers__millions_ FROM table_21781578_2 WHERE directed_by = \"Steve Shill\" AND production_code = \"E2102\"" }
What was the number of season number entries that had US Viewers of 12.30 million?
CREATE TABLE table_21781578_2 (season_no VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(season_no) FROM table_21781578_2 WHERE us_viewers__millions_ = \"12.30\"" }
What was the date of the game in week 3?
CREATE TABLE table_21761882_4 (date VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT date FROM table_21761882_4 WHERE week = 3" }
What was the final score when the game was @ roughriders?
CREATE TABLE table_21761882_4 (final_score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_21761882_4 WHERE opponent = \"@ Roughriders\"" }
What was the total number of weeks where the game played Ivor Wynne Stadium?
CREATE TABLE table_21761882_4 (week VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT COUNT(week) FROM table_21761882_4 WHERE location = \"Ivor Wynne Stadium\"" }
What was the location for when the opponent was @ roughriders?
CREATE TABLE table_21761882_4 (location VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT location FROM table_21761882_4 WHERE opponent = \"@ Roughriders\"" }
What was the final score when the attendance was 25598?
CREATE TABLE table_21761882_4 (final_score VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_21761882_4 WHERE attendance = 25598" }
What location was the game on October 6?
CREATE TABLE table_21761882_4 (location VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location FROM table_21761882_4 WHERE date = \"October 6\"" }
What's the lowest rating with 11.2 million viewers?
CREATE TABLE table_217785_2 (ranking INTEGER, viewers__in_millions_of_households_ VARCHAR)
{ "SQL_Query": "SELECT MIN(ranking) FROM table_217785_2 WHERE viewers__in_millions_of_households_ = \"11.2\"" }
When did the season finale ranked at 73 first air?
CREATE TABLE table_217785_2 (season VARCHAR, ranking VARCHAR)
{ "SQL_Query": "SELECT season AS finale FROM table_217785_2 WHERE ranking = 73" }
Which season received 10.2 million viewers?
CREATE TABLE table_217785_2 (tv_season VARCHAR, viewers__in_millions_of_households_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(tv_season) FROM table_217785_2 WHERE viewers__in_millions_of_households_ = \"10.2\"" }
When 19/05/2002 is the date of withdrawn what is the name?
CREATE TABLE table_21795986_1 (name VARCHAR, withdrawn VARCHAR)
{ "SQL_Query": "SELECT name FROM table_21795986_1 WHERE withdrawn = \"19/05/2002\"" }
When 2008 t is the original number what is the lowest year?
CREATE TABLE table_21795986_1 (year INTEGER, original_number VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_21795986_1 WHERE original_number = \"2008 T\"" }
When 9/07/1999 is the date of withdrawn what is the original number?
CREATE TABLE table_21795986_1 (original_number VARCHAR, withdrawn VARCHAR)
{ "SQL_Query": "SELECT original_number FROM table_21795986_1 WHERE withdrawn = \"9/07/1999\"" }
WHO WAS THE STAGE WINNER IN THE STAGE WHERE MICHAEL ALBASINI WON THE METAS VOLANTES CLASSIFICATION?
CREATE TABLE table_21804557_18 (stage__winner_ VARCHAR, metas_volantes_classification VARCHAR)
{ "SQL_Query": "SELECT stage__winner_ FROM table_21804557_18 WHERE metas_volantes_classification = \"Michael Albasini\"" }
Who got the mountains classification when Michael Albasini won the stage?
CREATE TABLE table_21804557_18 (mountains_classification VARCHAR, metas_volantes_classification VARCHAR)
{ "SQL_Query": "SELECT mountains_classification FROM table_21804557_18 WHERE metas_volantes_classification = \"Michael Albasini\"" }
How many people were present at the July 10 game?
CREATE TABLE table_21796261_4 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_21796261_4 WHERE date = \"July 10\"" }
What was the final score of the game played on July 10?
CREATE TABLE table_21796261_4 (final_score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_21796261_4 WHERE date = \"July 10\"" }
What's the record achieved in the gamed played at BC Place Stadium?
CREATE TABLE table_21796261_4 (record VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT record FROM table_21796261_4 WHERE location = \"BC Place Stadium\"" }
During what week was the July 10 game played?
CREATE TABLE table_21796261_4 (week VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT week FROM table_21796261_4 WHERE date = \"July 10\"" }
When was the game on Taylor Field played?
CREATE TABLE table_21796261_4 (date VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT date FROM table_21796261_4 WHERE location = \"Taylor Field\"" }
Who placed fourth when the winner was Greg Hancock?
CREATE TABLE table_21808535_1 (winner VARCHAR)
{ "SQL_Query": "SELECT 4 AS th_placed FROM table_21808535_1 WHERE winner = \"Greg Hancock\"" }
Who was the runner-up on September 11?
CREATE TABLE table_21808535_1 (runner_up VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_21808535_1 WHERE date = \"September 11\"" }
How many rounds were on July 10?
CREATE TABLE table_21808535_1 (round VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_21808535_1 WHERE date = \"July 10\"" }
Name the number of years for 18.5
CREATE TABLE table_2181798_1 (year VARCHAR, avg_finish VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_2181798_1 WHERE avg_finish = \"18.5\"" }
Name the max top 5 for avg finish being 27.6
CREATE TABLE table_2181798_1 (top_5 INTEGER, avg_finish VARCHAR)
{ "SQL_Query": "SELECT MAX(top_5) FROM table_2181798_1 WHERE avg_finish = \"27.6\"" }
Name the number of wins for 30 starts
CREATE TABLE table_2181798_1 (wins VARCHAR, starts VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_2181798_1 WHERE starts = 30" }
Name the year for donlavey racing bill davis racing
CREATE TABLE table_2181798_1 (year VARCHAR, team_s_ VARCHAR)
{ "SQL_Query": "SELECT year FROM table_2181798_1 WHERE team_s_ = \"Donlavey Racing Bill Davis Racing\"" }
Name the starts for 23.7
CREATE TABLE table_2181798_1 (starts VARCHAR, avg_start VARCHAR)
{ "SQL_Query": "SELECT starts FROM table_2181798_1 WHERE avg_start = \"23.7\"" }
Name the position for 23.7 avg start
CREATE TABLE table_2181798_1 (position VARCHAR, avg_start VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_2181798_1 WHERE avg_start = \"23.7\"" }
What is the car number for the Chevrolet Monte Carlo that Teresa Earnhardt owns and Paul Menard is her driver?
CREATE TABLE table_2182170_1 (_number INTEGER, driver_s_ VARCHAR, car_s_ VARCHAR, listed_owner_s_ VARCHAR)
{ "SQL_Query": "SELECT MIN(_number) FROM table_2182170_1 WHERE car_s_ = \"Chevrolet Monte Carlo\" AND listed_owner_s_ = \"Teresa Earnhardt\" AND driver_s_ = \"Paul Menard\"" }
What type of car does Jeff Fuller drive?
CREATE TABLE table_2182170_1 (car_s_ VARCHAR, driver_s_ VARCHAR)
{ "SQL_Query": "SELECT car_s_ FROM table_2182170_1 WHERE driver_s_ = \"Jeff Fuller\"" }
How many cars does Gregg Mixon own?
CREATE TABLE table_2182170_1 (car_s_ VARCHAR, listed_owner_s_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(car_s_) FROM table_2182170_1 WHERE listed_owner_s_ = \"Gregg Mixon\"" }
Who is Wayne Day's crew chief?
CREATE TABLE table_2182170_1 (crew_chief VARCHAR, listed_owner_s_ VARCHAR)
{ "SQL_Query": "SELECT crew_chief FROM table_2182170_1 WHERE listed_owner_s_ = \"Wayne Day\"" }
What number is on the car that Geoffrey Bodine drives?
CREATE TABLE table_2182170_1 (_number INTEGER, driver_s_ VARCHAR)
{ "SQL_Query": "SELECT MIN(_number) FROM table_2182170_1 WHERE driver_s_ = \"Geoffrey Bodine\"" }
What episode number in the season is episode 24 in the series?
CREATE TABLE table_2182654_3 (no_in_season VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT no_in_season FROM table_2182654_3 WHERE no_in_series = 24" }
How many episodes in the season were directed by Jeremy Podeswa?
CREATE TABLE table_2182654_3 (no_in_season VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(no_in_season) FROM table_2182654_3 WHERE directed_by = \"Jeremy Podeswa\"" }
What is the name of the episode directed by Miguel Arteta?
CREATE TABLE table_2182654_3 (title VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_2182654_3 WHERE directed_by = \"Miguel Arteta\"" }
How many episodes in the series were directed by Alan Taylor?
CREATE TABLE table_2182654_3 (no_in_series VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(no_in_series) FROM table_2182654_3 WHERE directed_by = \"Alan Taylor\"" }
How many different teams had an average start of 12.9?
CREATE TABLE table_2182562_2 (team_s_ VARCHAR, avg_start VARCHAR)
{ "SQL_Query": "SELECT COUNT(team_s_) FROM table_2182562_2 WHERE avg_start = \"12.9\"" }
How high was the amount of winnings (in $) in the year with 15 starts?
CREATE TABLE table_2182562_2 (winnings VARCHAR, starts VARCHAR)
{ "SQL_Query": "SELECT winnings FROM table_2182562_2 WHERE starts = 15" }
How many different amounts of winnings were there for the year when the team had an average finish of 17.4?
CREATE TABLE table_2182562_2 (winnings VARCHAR, avg_finish VARCHAR)
{ "SQL_Query": "SELECT COUNT(winnings) FROM table_2182562_2 WHERE avg_finish = \"17.4\"" }
What was the top 5 in the year with an average finish of 8.2?
CREATE TABLE table_2182562_2 (top_5 INTEGER, avg_finish VARCHAR)
{ "SQL_Query": "SELECT MIN(top_5) FROM table_2182562_2 WHERE avg_finish = \"8.2\"" }
What was the position of the team with an average finish of 21.5?
CREATE TABLE table_2182562_2 (position VARCHAR, avg_finish VARCHAR)
{ "SQL_Query": "SELECT position FROM table_2182562_2 WHERE avg_finish = \"21.5\"" }
How many years was the position 97th?
CREATE TABLE table_2182562_1 (year VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_2182562_1 WHERE position = \"97th\"" }
How many wins when the average start is 29.0?
CREATE TABLE table_2182562_1 (wins VARCHAR, avg_start VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_2182562_1 WHERE avg_start = \"29.0\"" }
What is the average finish when winnings equals $71,200?
CREATE TABLE table_2182562_1 (avg_finish VARCHAR, winnings VARCHAR)
{ "SQL_Query": "SELECT avg_finish FROM table_2182562_1 WHERE winnings = \"$71,200\"" }
What year did the winnings equal $281,945?
CREATE TABLE table_2182562_1 (year VARCHAR, winnings VARCHAR)
{ "SQL_Query": "SELECT year FROM table_2182562_1 WHERE winnings = \"$281,945\"" }
What are the top 5 average finishes equalling 40.3?
CREATE TABLE table_2182562_1 (top_5 VARCHAR, avg_finish VARCHAR)
{ "SQL_Query": "SELECT top_5 FROM table_2182562_1 WHERE avg_finish = \"40.3\"" }
Who wrote episode 31 in the series?
CREATE TABLE table_21831229_3 (written_by VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_21831229_3 WHERE no_in_series = 31" }
What was the date that the episode with a production code of 213 was originally aired?
CREATE TABLE table_21831229_3 (original_us_air_date VARCHAR, prod_code VARCHAR)
{ "SQL_Query": "SELECT original_us_air_date FROM table_21831229_3 WHERE prod_code = 213" }
Who was playing when the score was 5–7, 6–7 (4–7)?
CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT opponents FROM table_2186447_1 WHERE score = \"5–7, 6–7 (4–7)\"" }
Who was playing when the score was 5–7, 5–7?
CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT opponents FROM table_2186447_1 WHERE score = \"5–7, 5–7\"" }
How many partners were there when the score was 7–6 (7–4) , 6–3?
CREATE TABLE table_2186447_1 (partner VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(partner) FROM table_2186447_1 WHERE score = \"7–6 (7–4) , 6–3\"" }
What was their record when they played the stampeders?
CREATE TABLE table_21839208_4 (record VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT record FROM table_21839208_4 WHERE opponent = \"Stampeders\"" }