question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Against which team was game 21?
CREATE TABLE table_17001658_6 (team VARCHAR, game VARCHAR)
SELECT team FROM table_17001658_6 WHERE game = 21
Name the replaced by where date of vacancy is 31 december 2008 where position in table is 1st
CREATE TABLE table_17039232_3 (replaced_by VARCHAR, date_of_vacancy VARCHAR, position_in_table VARCHAR)
SELECT replaced_by FROM table_17039232_3 WHERE date_of_vacancy = "31 December 2008" AND position_in_table = "1st"
Name the replaced by for position in table is 1st
CREATE TABLE table_17039232_3 (replaced_by VARCHAR, position_in_table VARCHAR)
SELECT replaced_by FROM table_17039232_3 WHERE position_in_table = "1st"
Name the position in table for 1 july 2008 when manner of departure is resigned
CREATE TABLE table_17039232_3 (position_in_table VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)
SELECT position_in_table FROM table_17039232_3 WHERE date_of_appointment = "1 July 2008" AND manner_of_departure = "Resigned"
Name the replaced by when outgoing manager is kent nielsen
CREATE TABLE table_17039232_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT replaced_by FROM table_17039232_3 WHERE outgoing_manager = "Kent Nielsen"
Name the outgoing manager for position in table being 11th
CREATE TABLE table_17039232_3 (outgoing_manager VARCHAR, position_in_table VARCHAR)
SELECT outgoing_manager FROM table_17039232_3 WHERE position_in_table = "11th"
Name the most number of leitrim
CREATE TABLE table_1705429_1 (no INTEGER, constituency VARCHAR)
SELECT MAX(no) FROM table_1705429_1 WHERE constituency = "Leitrim"
Name the least yes for dublin south
CREATE TABLE table_1705429_1 (yes INTEGER, constituency VARCHAR)
SELECT MIN(yes) FROM table_1705429_1 WHERE constituency = "Dublin South"
In how many game was the attendance at Staples Center 18,997?
CREATE TABLE table_17058151_5 (game VARCHAR, location_attendance VARCHAR)
SELECT COUNT(game) FROM table_17058151_5 WHERE location_attendance = "Staples Center 18,997"
How many different games had David Lee (13) with High rebounds?
CREATE TABLE table_17060277_6 (score VARCHAR, high_rebounds VARCHAR)
SELECT COUNT(score) FROM table_17060277_6 WHERE high_rebounds = "David Lee (13)"
Which date did Chris Duhon (13) receive high assists?
CREATE TABLE table_17060277_6 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17060277_6 WHERE high_assists = "Chris Duhon (13)"
Name the high rebounds for memphis
CREATE TABLE table_17060277_7 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_17060277_7 WHERE team = "Memphis"
Name the team for chris duhon , nate robinson , david lee (3)
CREATE TABLE table_17060277_7 (team VARCHAR, high_assists VARCHAR)
SELECT team FROM table_17060277_7 WHERE high_assists = "Chris Duhon , Nate Robinson , David Lee (3)"
Name the most wins where position is 16th
CREATE TABLE table_1708050_3 (wins INTEGER, position VARCHAR)
SELECT MAX(wins) FROM table_1708050_3 WHERE position = "16th"
Name the total number when avg start is 2000
CREATE TABLE table_1708050_3 (avg_start VARCHAR, year VARCHAR)
SELECT COUNT(avg_start) FROM table_1708050_3 WHERE year = 2000
Name the most poles
CREATE TABLE table_1708050_3 (poles INTEGER)
SELECT MIN(poles) FROM table_1708050_3
Name the indanapolis concerts for dr. alexandre manette
CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, character VARCHAR)
SELECT indianapolis_concerts FROM table_17085724_1 WHERE character = "Dr. Alexandre Manette"
Name the brighton cast for jerry cruncher
CREATE TABLE table_17085724_1 (brighton_cast VARCHAR, character VARCHAR)
SELECT brighton_cast FROM table_17085724_1 WHERE character = "Jerry Cruncher"
Name the sarasota samantha sharpe
CREATE TABLE table_17085724_1 (sarasota VARCHAR, indianapolis_concerts VARCHAR)
SELECT sarasota FROM table_17085724_1 WHERE indianapolis_concerts = "Samantha Sharpe"
Name the indianapolis concerts for les minski
CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, sarasota VARCHAR)
SELECT indianapolis_concerts FROM table_17085724_1 WHERE sarasota = "Les Minski"
Name the brighton cast for andrew verala
CREATE TABLE table_17085724_1 (brighton_cast VARCHAR, indianapolis_concerts VARCHAR)
SELECT brighton_cast FROM table_17085724_1 WHERE indianapolis_concerts = "Andrew Verala"
Name the indianapolis concerts for paul baker
CREATE TABLE table_17085724_1 (indianapolis_concerts VARCHAR, brighton_cast VARCHAR)
SELECT indianapolis_concerts FROM table_17085724_1 WHERE brighton_cast = "Paul Baker"
when the population was 1599, what was the census ranking?
CREATE TABLE table_170961_2 (census_ranking VARCHAR, population VARCHAR)
SELECT census_ranking FROM table_170961_2 WHERE population = 1599
What is the name of the parish where the area is 508.30?
CREATE TABLE table_170961_2 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(official_name) FROM table_170961_2 WHERE area_km_2 = "508.30"
at area 191.43 what is the total number of census ranking?
CREATE TABLE table_170961_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(census_ranking) FROM table_170961_2 WHERE area_km_2 = "191.43"
At census ranking 1,184 of 5,008, what was the minimum population?
CREATE TABLE table_170961_2 (population INTEGER, census_ranking VARCHAR)
SELECT MIN(population) FROM table_170961_2 WHERE census_ranking = "1,184 of 5,008"
at the area of 113.12, what was the population?
CREATE TABLE table_170961_2 (population VARCHAR, area_km_2 VARCHAR)
SELECT population FROM table_170961_2 WHERE area_km_2 = "113.12"
What is the status for Saint George?
CREATE TABLE table_170969_2 (status VARCHAR, official_name VARCHAR)
SELECT status FROM table_170969_2 WHERE official_name = "Saint George"
What is the area in km2 for Dufferin?
CREATE TABLE table_170969_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT area_km_2 FROM table_170969_2 WHERE official_name = "Dufferin"
How many areas are named West Isles?
CREATE TABLE table_170969_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT COUNT(area_km_2) FROM table_170969_2 WHERE official_name = "West Isles"
How many areas of 375.06 km 2 have a census ranking?
CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(census_ranking) FROM table_170969_2 WHERE area_km_2 = "375.06"
What is the census ranking when the area is 78.67 ?
CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT census_ranking FROM table_170969_2 WHERE area_km_2 = "78.67"
Who had high assists on March 15?
CREATE TABLE table_17102076_9 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17102076_9 WHERE date = "March 15"
What team played on March 20?
CREATE TABLE table_17102076_9 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17102076_9 WHERE date = "March 20"
How many times did Viorel Moldovan replaced a manager?
CREATE TABLE table_17115950_2 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT COUNT(date_of_vacancy) FROM table_17115950_2 WHERE replaced_by = "Viorel Moldovan"
What was the date of vacancy when Viorel Moldovan replaced a manager?
CREATE TABLE table_17115950_2 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_17115950_2 WHERE replaced_by = "Viorel Moldovan"
Who replaced the manager on Team Cfr Cluj?
CREATE TABLE table_17115950_2 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_17115950_2 WHERE team = "CFR Cluj"
Who was the outgoing manager replaced by Marian Bucurescu?
CREATE TABLE table_17115950_2 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT outgoing_manager FROM table_17115950_2 WHERE replaced_by = "Marian Bucurescu"
What was the manner of departure of Nicolae Manea?
CREATE TABLE table_17115950_2 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
SELECT manner_of_departure FROM table_17115950_2 WHERE outgoing_manager = "Nicolae Manea"
What was the score on game number 12?
CREATE TABLE table_17118657_7 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17118657_7 WHERE game = 12
What was the record when Canty (5) was the high assists?
CREATE TABLE table_17118657_7 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_17118657_7 WHERE high_assists = "Canty (5)"
How many players received high points where location/attendance was UIC Pavilion 6,304 respectively?
CREATE TABLE table_17118657_7 (high_points VARCHAR, location_attendance VARCHAR)
SELECT COUNT(high_points) FROM table_17118657_7 WHERE location_attendance = "UIC Pavilion 6,304"
On what date did Canty (6) receive high assists?
CREATE TABLE table_17118657_7 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17118657_7 WHERE high_assists = "Canty (6)"
Which game number had a location/attendance of US Airways Center 7,311 respectively?
CREATE TABLE table_17118657_7 (game INTEGER, location_attendance VARCHAR)
SELECT MAX(game) FROM table_17118657_7 WHERE location_attendance = "US Airways Center 7,311"
On which date was the record 1-4?
CREATE TABLE table_17118657_7 (date VARCHAR, record VARCHAR)
SELECT date FROM table_17118657_7 WHERE record = "1-4"
What is the population in Westfield?
CREATE TABLE table_171236_2 (population VARCHAR, official_name VARCHAR)
SELECT COUNT(population) FROM table_171236_2 WHERE official_name = "Westfield"
What is the Area KM 2 of the place that has a Census ranking of 1,016 of 5,008?
CREATE TABLE table_171236_2 (area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT area_km_2 FROM table_171236_2 WHERE census_ranking = "1,016 of 5,008"
What is the Area KM 2 of the place that has a Census ranking of 1,608 of 5,008?
CREATE TABLE table_171236_2 (area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT area_km_2 FROM table_171236_2 WHERE census_ranking = "1,608 of 5,008"
What is the Area KM 2 of Rothesay?
CREATE TABLE table_171236_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT COUNT(area_km_2) FROM table_171236_2 WHERE official_name = "Rothesay"
What's the official name of the place with an Area KM 2 of 295.07
CREATE TABLE table_171236_2 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_171236_2 WHERE area_km_2 = "295.07"
What is the population of Cardwell?
CREATE TABLE table_171236_2 (population INTEGER, official_name VARCHAR)
SELECT MIN(population) FROM table_171236_2 WHERE official_name = "Cardwell"
Name the total number of status for eldon
CREATE TABLE table_171361_2 (status VARCHAR, official_name VARCHAR)
SELECT COUNT(status) FROM table_171361_2 WHERE official_name = "Eldon"
Name the area km 2 for balmoral
CREATE TABLE table_171361_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT area_km_2 FROM table_171361_2 WHERE official_name = "Balmoral"
What team(s) did they play on april 23?
CREATE TABLE table_17140608_11 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17140608_11 WHERE date = "April 23"
What score(s) were recorded on april 28?
CREATE TABLE table_17140608_11 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17140608_11 WHERE date = "April 28"
When galaxy angel aa is the title what was the series?
CREATE TABLE table_1714685_1 (series VARCHAR, title VARCHAR)
SELECT series FROM table_1714685_1 WHERE title = "Galaxy Angel AA"
When 7 april 2001 to 29 september 2001 was aired in japan 2 how many titles were there?
CREATE TABLE table_1714685_1 (title VARCHAR, aired_in_japan_3 VARCHAR)
SELECT COUNT(title) FROM table_1714685_1 WHERE aired_in_japan_3 = "7 April 2001 to 29 September 2001"
When galaxy angel aa was the title was the us release date?
CREATE TABLE table_1714685_1 (us_release_date VARCHAR, title VARCHAR)
SELECT us_release_date FROM table_1714685_1 WHERE title = "Galaxy Angel AA"
What comparable country has a national share of 1.08?
CREATE TABLE table_171666_1 (comparable_country VARCHAR, national_share___percentage_ VARCHAR)
SELECT comparable_country FROM table_171666_1 WHERE national_share___percentage_ = "1.08"
What is the national share of the country whose area is 148064 km^2?
CREATE TABLE table_171666_1 (national_share___percentage_ VARCHAR, area__km²_ VARCHAR)
SELECT national_share___percentage_ FROM table_171666_1 WHERE area__km²_ = 148064
What is the administrative division that has an area of 30 km^2?
CREATE TABLE table_171666_1 (administrative_division VARCHAR, area__km²_ VARCHAR)
SELECT administrative_division FROM table_171666_1 WHERE area__km²_ = 30
What is the national share of Guizhou's administrative division?
CREATE TABLE table_171666_1 (national_share___percentage_ VARCHAR, administrative_division VARCHAR)
SELECT national_share___percentage_ FROM table_171666_1 WHERE administrative_division = "Guizhou"
What is the rank of the division with an area of 456800 sq mi?
CREATE TABLE table_171666_1 (rank VARCHAR, area__sq_mi_ VARCHAR)
SELECT rank FROM table_171666_1 WHERE area__sq_mi_ = 456800
What's the change over previous year as a whole in the period in which the change over same quarter the previous year was up 2.8%?
CREATE TABLE table_171748_3 (change_over_previous_year_as_a_whole VARCHAR, change_over_same_quarter_the_previous_year VARCHAR)
SELECT change_over_previous_year_as_a_whole FROM table_171748_3 WHERE change_over_same_quarter_the_previous_year = "Up 2.8%"
When was the percentage of trains arriving within 5 minutes of scheduled time 89.6%?
CREATE TABLE table_171748_3 (period VARCHAR, _percentage_trains_arriving_within_5_mins_of_scheduled_time_moving_annual_average__maa_ VARCHAR)
SELECT period FROM table_171748_3 WHERE _percentage_trains_arriving_within_5_mins_of_scheduled_time_moving_annual_average__maa_ = "89.6%"
What's the change over same quarter the previous year in the period when the 89.6% of the trains arrive within 5 minutes of scheduled time (over three months)?
CREATE TABLE table_171748_3 (change_over_same_quarter_the_previous_year VARCHAR, _percentage_trains_arriving_within_5_mins_of_scheduled_time__over_three_months_ VARCHAR)
SELECT change_over_same_quarter_the_previous_year FROM table_171748_3 WHERE _percentage_trains_arriving_within_5_mins_of_scheduled_time__over_three_months_ = "89.6%"
how many shire in the land of area in km 2 is 27.17
CREATE TABLE table_17251764_1 (shire VARCHAR, area_in_km_2 VARCHAR)
SELECT COUNT(shire) FROM table_17251764_1 WHERE area_in_km_2 = "27.17"
How many open era titles does the team with their first title in 1925 have?
CREATE TABLE table_1725413_5 (open_era VARCHAR, first_title VARCHAR)
SELECT open_era FROM table_1725413_5 WHERE first_title = 1925
Name the replacced by with ascoli
CREATE TABLE table_17275810_7 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_17275810_7 WHERE team = "Ascoli"
Name the team for mario somma
CREATE TABLE table_17275810_7 (team VARCHAR, replaced_by VARCHAR)
SELECT team FROM table_17275810_7 WHERE replaced_by = "Mario Somma"
Name the date of appointment for ascoli
CREATE TABLE table_17275810_7 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_17275810_7 WHERE team = "Ascoli"
Name the manner of departure for elvio selighini
CREATE TABLE table_17275810_7 (manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT manner_of_departure FROM table_17275810_7 WHERE replaced_by = "Elvio Selighini"
Name the date of vacancy for fabio brini
CREATE TABLE table_17275810_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date_of_vacancy FROM table_17275810_7 WHERE replaced_by = "Fabio Brini"
Name the outgoing manager for mantova
CREATE TABLE table_17275810_7 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_17275810_7 WHERE team = "Mantova"
What is the San Antonio's team score?
CREATE TABLE table_17288825_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17288825_5 WHERE team = "San Antonio"
Name the score for game 66
CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17288845_9 WHERE game = 66
Name the record for score of l 77–80 (ot)
CREATE TABLE table_17288845_9 (record VARCHAR, score VARCHAR)
SELECT record FROM table_17288845_9 WHERE score = "L 77–80 (OT)"
Name the high assists for houston
CREATE TABLE table_17288845_9 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_17288845_9 WHERE team = "Houston"
Name the score for game 63
CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17288845_9 WHERE game = 63
How many poles did David Price Racing win?
CREATE TABLE table_17289224_1 (poles INTEGER, team_name VARCHAR)
SELECT MAX(poles) FROM table_17289224_1 WHERE team_name = "David Price Racing"
Who started in 2008 with 0 points?
CREATE TABLE table_17289224_1 (team_name VARCHAR, season VARCHAR, points VARCHAR)
SELECT team_name FROM table_17289224_1 WHERE season = "2008" AND points = 0
Which team started 2010?
CREATE TABLE table_17289224_1 (team_name VARCHAR, season VARCHAR)
SELECT team_name FROM table_17289224_1 WHERE season = "2010"
What was the max points you when when you place 9th?
CREATE TABLE table_17289224_1 (points INTEGER, final_placing VARCHAR)
SELECT MAX(points) FROM table_17289224_1 WHERE final_placing = "9th"
When the wins is 3, what is the maximum races?
CREATE TABLE table_17289224_1 (races INTEGER, wins VARCHAR)
SELECT MAX(races) FROM table_17289224_1 WHERE wins = 3
Name the number of former wnba team for 2
CREATE TABLE table_17308269_2 (former_wnba_team VARCHAR, pick VARCHAR)
SELECT COUNT(former_wnba_team) FROM table_17308269_2 WHERE pick = 2
Name the player for mercer
CREATE TABLE table_17308269_2 (player VARCHAR, college_country_team VARCHAR)
SELECT player FROM table_17308269_2 WHERE college_country_team = "Mercer"
What is the record of wins and losses for Denver's ball club?
CREATE TABLE table_17311759_5 (record VARCHAR, team VARCHAR)
SELECT record FROM table_17311759_5 WHERE team = "Denver"
What was the location and the crowd attendance on December 9?
CREATE TABLE table_17311759_5 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17311759_5 WHERE date = "December 9"
Who scored the most rebounds in game 64?
CREATE TABLE table_17311759_8 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_17311759_8 WHERE game = 64
How many numbers were recorded for high points when the team played against Oklahoma City?
CREATE TABLE table_17311783_6 (high_points VARCHAR, team VARCHAR)
SELECT COUNT(high_points) FROM table_17311783_6 WHERE team = "Oklahoma City"
Name the high assists for yi jianlian , brook lopez (7)
CREATE TABLE table_17322817_6 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_17322817_6 WHERE high_rebounds = "Yi Jianlian , Brook Lopez (7)"
Name the location attendance for 20
CREATE TABLE table_17322817_6 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_17322817_6 WHERE game = 20
Name the date for l 92–103 (ot)
CREATE TABLE table_17322817_6 (date VARCHAR, score VARCHAR)
SELECT date FROM table_17322817_6 WHERE score = "L 92–103 (OT)"
What was the record when the team played Boston?
CREATE TABLE table_17325580_10 (record VARCHAR, team VARCHAR)
SELECT record FROM table_17325580_10 WHERE team = "Boston"
What number game had a high assist of lebron james (7) and high point of lebron james (21)?
CREATE TABLE table_17325580_10 (game INTEGER, high_assists VARCHAR, high_points VARCHAR)
SELECT MAX(game) FROM table_17325580_10 WHERE high_assists = "LeBron James (7)" AND high_points = "LeBron James (21)"
What is the lowest game number when the team is Houston?
CREATE TABLE table_17326036_7 (game INTEGER, team VARCHAR)
SELECT MIN(game) FROM table_17326036_7 WHERE team = "Houston"
What was the date when Troy Murphy (15), got high rebounds?
CREATE TABLE table_17326036_7 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_17326036_7 WHERE high_rebounds = "Troy Murphy (15)"
Who did the High Assists when Kevin Durant (28) took the High Points?
CREATE TABLE table_17355628_7 (high_assists VARCHAR, high_points VARCHAR)
SELECT high_assists FROM table_17355628_7 WHERE high_points = "Kevin Durant (28)"
What is the score when the game took place on January 18?
CREATE TABLE table_17355628_7 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17355628_7 WHERE date = "January 18"
How many games were played by team @ New Jersey?
CREATE TABLE table_17355628_7 (score VARCHAR, team VARCHAR)
SELECT COUNT(score) FROM table_17355628_7 WHERE team = "@ New Jersey"