question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the total number of population in the land with an area of 149.32 km2?
CREATE TABLE table_170958_2 (population VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(population) FROM table_170958_2 WHERE area_km_2 = "149.32"
### Context: CREATE TABLE table_170958_2 (population VARCHAR, area_km_2 VARCHAR) ### Question: What is the total number of population in the land with an area of 149.32 km2? ### Answer: SELECT COUNT(population) FROM table_170958_2 WHERE area_km_2 = "149.32"
What is the maximum population of the land with an area of 276.84 km2?
CREATE TABLE table_170958_2 (population INTEGER, area_km_2 VARCHAR)
SELECT MAX(population) FROM table_170958_2 WHERE area_km_2 = "276.84"
### Context: CREATE TABLE table_170958_2 (population INTEGER, area_km_2 VARCHAR) ### Question: What is the maximum population of the land with an area of 276.84 km2? ### Answer: SELECT MAX(population) FROM table_170958_2 WHERE area_km_2 = "276.84"
What is the land area of Hopewell parish in km2?
CREATE TABLE table_170958_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT area_km_2 FROM table_170958_2 WHERE official_name = "Hopewell"
### Context: CREATE TABLE table_170958_2 (area_km_2 VARCHAR, official_name VARCHAR) ### Question: What is the land area of Hopewell parish in km2? ### Answer: SELECT area_km_2 FROM table_170958_2 WHERE official_name = "Hopewell"
Name the march 27-29 for november 3 being 133
CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, november_3 VARCHAR)
SELECT march_27_29 FROM table_1708610_3 WHERE november_3 = "133"
### Context: CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, november_3 VARCHAR) ### Question: Name the march 27-29 for november 3 being 133 ### Answer: SELECT march_27_29 FROM table_1708610_3 WHERE november_3 = "133"
Name march 27-29 where january 15-16 is january 15, 1991
CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, january_15_16 VARCHAR)
SELECT march_27_29 FROM table_1708610_3 WHERE january_15_16 = "January 15, 1991"
### Context: CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, january_15_16 VARCHAR) ### Question: Name march 27-29 where january 15-16 is january 15, 1991 ### Answer: SELECT march_27_29 FROM table_1708610_3 WHERE january_15_16 = "January 15, 1991"
Name the january 15-16 where march 27-29 where march 29, 2006
CREATE TABLE table_1708610_3 (january_15_16 VARCHAR, march_27_29 VARCHAR)
SELECT january_15_16 FROM table_1708610_3 WHERE march_27_29 = "March 29, 2006"
### Context: CREATE TABLE table_1708610_3 (january_15_16 VARCHAR, march_27_29 VARCHAR) ### Question: Name the january 15-16 where march 27-29 where march 29, 2006 ### Answer: SELECT january_15_16 FROM table_1708610_3 WHERE march_27_29 = "March 29, 2006"
Name the number of location attendance for l 141–143 (ot)
CREATE TABLE table_17102076_10 (location_attendance VARCHAR, score VARCHAR)
SELECT COUNT(location_attendance) FROM table_17102076_10 WHERE score = "L 141–143 (OT)"
### Context: CREATE TABLE table_17102076_10 (location_attendance VARCHAR, score VARCHAR) ### Question: Name the number of location attendance for l 141–143 (ot) ### Answer: SELECT COUNT(location_attendance) FROM table_17102076_10 WHERE score = "L 141–143 (OT)"
Name the record for april 1
CREATE TABLE table_17102076_10 (record VARCHAR, date VARCHAR)
SELECT record FROM table_17102076_10 WHERE date = "April 1"
### Context: CREATE TABLE table_17102076_10 (record VARCHAR, date VARCHAR) ### Question: Name the record for april 1 ### Answer: SELECT record FROM table_17102076_10 WHERE date = "April 1"
Name the high assists for score being l 98–118 (ot)
CREATE TABLE table_17102076_10 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_17102076_10 WHERE score = "L 98–118 (OT)"
### Context: CREATE TABLE table_17102076_10 (high_assists VARCHAR, score VARCHAR) ### Question: Name the high assists for score being l 98–118 (ot) ### Answer: SELECT high_assists FROM table_17102076_10 WHERE score = "L 98–118 (OT)"
Name the least game for arco arena 13,330
CREATE TABLE table_17102076_10 (game INTEGER, location_attendance VARCHAR)
SELECT MIN(game) FROM table_17102076_10 WHERE location_attendance = "ARCO Arena 13,330"
### Context: CREATE TABLE table_17102076_10 (game INTEGER, location_attendance VARCHAR) ### Question: Name the least game for arco arena 13,330 ### Answer: SELECT MIN(game) FROM table_17102076_10 WHERE location_attendance = "ARCO Arena 13,330"
Name the high rebounds for game 11
CREATE TABLE table_17102076_5 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_17102076_5 WHERE game = 11
### Context: CREATE TABLE table_17102076_5 (high_rebounds VARCHAR, game VARCHAR) ### Question: Name the high rebounds for game 11 ### Answer: SELECT high_rebounds FROM table_17102076_5 WHERE game = 11
Name the high points for score being l 92–100 (ot)
CREATE TABLE table_17102076_5 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_17102076_5 WHERE score = "L 92–100 (OT)"
### Context: CREATE TABLE table_17102076_5 (high_points VARCHAR, score VARCHAR) ### Question: Name the high points for score being l 92–100 (ot) ### Answer: SELECT high_points FROM table_17102076_5 WHERE score = "L 92–100 (OT)"
Name the team for arco arena 13,685
CREATE TABLE table_17102076_5 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_17102076_5 WHERE location_attendance = "ARCO Arena 13,685"
### Context: CREATE TABLE table_17102076_5 (team VARCHAR, location_attendance VARCHAR) ### Question: Name the team for arco arena 13,685 ### Answer: SELECT team FROM table_17102076_5 WHERE location_attendance = "ARCO Arena 13,685"
What was the score of game 35?
CREATE TABLE table_17102076_7 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17102076_7 WHERE game = 35
### Context: CREATE TABLE table_17102076_7 (score VARCHAR, game VARCHAR) ### Question: What was the score of game 35? ### Answer: SELECT score FROM table_17102076_7 WHERE game = 35
Name the location attendance for score of 65-72
CREATE TABLE table_17103645_10 (location_attendance VARCHAR, score VARCHAR)
SELECT location_attendance FROM table_17103645_10 WHERE score = "65-72"
### Context: CREATE TABLE table_17103645_10 (location_attendance VARCHAR, score VARCHAR) ### Question: Name the location attendance for score of 65-72 ### Answer: SELECT location_attendance FROM table_17103645_10 WHERE score = "65-72"
Name the record for july 18
CREATE TABLE table_17103645_10 (record VARCHAR, date VARCHAR)
SELECT record FROM table_17103645_10 WHERE date = "July 18"
### Context: CREATE TABLE table_17103645_10 (record VARCHAR, date VARCHAR) ### Question: Name the record for july 18 ### Answer: SELECT record FROM table_17103645_10 WHERE date = "July 18"
Name the number of high assists for july 1
CREATE TABLE table_17103645_10 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_17103645_10 WHERE date = "July 1"
### Context: CREATE TABLE table_17103645_10 (high_assists VARCHAR, date VARCHAR) ### Question: Name the number of high assists for july 1 ### Answer: SELECT COUNT(high_assists) FROM table_17103645_10 WHERE date = "July 1"
Name the score when game is 19
CREATE TABLE table_17103645_10 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17103645_10 WHERE game = 19
### Context: CREATE TABLE table_17103645_10 (score VARCHAR, game VARCHAR) ### Question: Name the score when game is 19 ### Answer: SELECT score FROM table_17103645_10 WHERE game = 19
What is the result when team 1 is ICL Pakistan?
CREATE TABLE table_17103566_1 (result VARCHAR, team_1 VARCHAR)
SELECT result FROM table_17103566_1 WHERE team_1 = "ICL Pakistan"
### Context: CREATE TABLE table_17103566_1 (result VARCHAR, team_1 VARCHAR) ### Question: What is the result when team 1 is ICL Pakistan? ### Answer: SELECT result FROM table_17103566_1 WHERE team_1 = "ICL Pakistan"
What is the match number where the result is ICL World by 8 wickets?
CREATE TABLE table_17103566_1 (match_number VARCHAR, result VARCHAR)
SELECT match_number FROM table_17103566_1 WHERE result = "ICL World by 8 wickets"
### Context: CREATE TABLE table_17103566_1 (match_number VARCHAR, result VARCHAR) ### Question: What is the match number where the result is ICL World by 8 wickets? ### Answer: SELECT match_number FROM table_17103566_1 WHERE result = "ICL World by 8 wickets"
What is team 2 where the result is ICL world by 8 wickets?
CREATE TABLE table_17103566_1 (team_2 VARCHAR, result VARCHAR)
SELECT team_2 FROM table_17103566_1 WHERE result = "ICL World by 8 wickets"
### Context: CREATE TABLE table_17103566_1 (team_2 VARCHAR, result VARCHAR) ### Question: What is team 2 where the result is ICL world by 8 wickets? ### Answer: SELECT team_2 FROM table_17103566_1 WHERE result = "ICL World by 8 wickets"
Who is man of the match when Team 1 is ICL Pakistan?
CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, team_1 VARCHAR)
SELECT man_of_the_match FROM table_17103566_1 WHERE team_1 = "ICL Pakistan"
### Context: CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, team_1 VARCHAR) ### Question: Who is man of the match when Team 1 is ICL Pakistan? ### Answer: SELECT man_of_the_match FROM table_17103566_1 WHERE team_1 = "ICL Pakistan"
How many dates have a Match number of 5?
CREATE TABLE table_17103566_1 (date VARCHAR, match_number VARCHAR)
SELECT COUNT(date) FROM table_17103566_1 WHERE match_number = 5
### Context: CREATE TABLE table_17103566_1 (date VARCHAR, match_number VARCHAR) ### Question: How many dates have a Match number of 5? ### Answer: SELECT COUNT(date) FROM table_17103566_1 WHERE match_number = 5
Who is man of the match for match number 5?
CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, match_number VARCHAR)
SELECT man_of_the_match FROM table_17103566_1 WHERE match_number = 5
### Context: CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, match_number VARCHAR) ### Question: Who is man of the match for match number 5? ### Answer: SELECT man_of_the_match FROM table_17103566_1 WHERE match_number = 5
With a score of 68-85, what is the location and attendance?
CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR)
SELECT location_attendance FROM table_17103729_7 WHERE score = "68-85"
### Context: CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR) ### Question: With a score of 68-85, what is the location and attendance? ### Answer: SELECT location_attendance FROM table_17103729_7 WHERE score = "68-85"
Name the location of 64-74
CREATE TABLE table_17103729_8 (location_attendance VARCHAR, score VARCHAR)
SELECT location_attendance FROM table_17103729_8 WHERE score = "64-74"
### Context: CREATE TABLE table_17103729_8 (location_attendance VARCHAR, score VARCHAR) ### Question: Name the location of 64-74 ### Answer: SELECT location_attendance FROM table_17103729_8 WHERE score = "64-74"
Name the score for game for 25
CREATE TABLE table_17103729_8 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17103729_8 WHERE game = 25
### Context: CREATE TABLE table_17103729_8 (score VARCHAR, game VARCHAR) ### Question: Name the score for game for 25 ### Answer: SELECT score FROM table_17103729_8 WHERE game = 25
Name the record for attendance location of palace of auburn hills 15,210
CREATE TABLE table_17103729_8 (record VARCHAR, location_attendance VARCHAR)
SELECT record FROM table_17103729_8 WHERE location_attendance = "Palace of Auburn Hills 15,210"
### Context: CREATE TABLE table_17103729_8 (record VARCHAR, location_attendance VARCHAR) ### Question: Name the record for attendance location of palace of auburn hills 15,210 ### Answer: SELECT record FROM table_17103729_8 WHERE location_attendance = "Palace of Auburn Hills 15,210"
Name the high rebounds for score of 64-74
CREATE TABLE table_17103729_8 (high_rebounds VARCHAR, score VARCHAR)
SELECT COUNT(high_rebounds) FROM table_17103729_8 WHERE score = "64-74"
### Context: CREATE TABLE table_17103729_8 (high_rebounds VARCHAR, score VARCHAR) ### Question: Name the high rebounds for score of 64-74 ### Answer: SELECT COUNT(high_rebounds) FROM table_17103729_8 WHERE score = "64-74"
Namethe score for july 16
CREATE TABLE table_17103729_8 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17103729_8 WHERE date = "July 16"
### Context: CREATE TABLE table_17103729_8 (score VARCHAR, date VARCHAR) ### Question: Namethe score for july 16 ### Answer: SELECT score FROM table_17103729_8 WHERE date = "July 16"
Which people had the best 10-year period when Fischer had best 15-year period?
CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR)
SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Fischer"
### Context: CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR) ### Question: Which people had the best 10-year period when Fischer had best 15-year period? ### Answer: SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Fischer"
Which people had the best 10-year period when Capablanca had the best 15-year period?
CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR)
SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Capablanca"
### Context: CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR) ### Question: Which people had the best 10-year period when Capablanca had the best 15-year period? ### Answer: SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Capablanca"
Name the record for june 7
CREATE TABLE table_17104539_9 (record VARCHAR, date VARCHAR)
SELECT record FROM table_17104539_9 WHERE date = "June 7"
### Context: CREATE TABLE table_17104539_9 (record VARCHAR, date VARCHAR) ### Question: Name the record for june 7 ### Answer: SELECT record FROM table_17104539_9 WHERE date = "June 7"
Name the date for the score of w 83-69
CREATE TABLE table_17104539_9 (date VARCHAR, score VARCHAR)
SELECT date FROM table_17104539_9 WHERE score = "W 83-69"
### Context: CREATE TABLE table_17104539_9 (date VARCHAR, score VARCHAR) ### Question: Name the date for the score of w 83-69 ### Answer: SELECT date FROM table_17104539_9 WHERE score = "W 83-69"
Name the record for score of w 76-67
CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR)
SELECT record FROM table_17104539_9 WHERE score = "W 76-67"
### Context: CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR) ### Question: Name the record for score of w 76-67 ### Answer: SELECT record FROM table_17104539_9 WHERE score = "W 76-67"
What are the scores for games played on september 9?
CREATE TABLE table_17104539_12 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17104539_12 WHERE date = "September 9"
### Context: CREATE TABLE table_17104539_12 (score VARCHAR, date VARCHAR) ### Question: What are the scores for games played on september 9? ### Answer: SELECT score FROM table_17104539_12 WHERE date = "September 9"
What was the score of the game played when the team was 16-17?
CREATE TABLE table_17104539_12 (score VARCHAR, record VARCHAR)
SELECT score FROM table_17104539_12 WHERE record = "16-17"
### Context: CREATE TABLE table_17104539_12 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game played when the team was 16-17? ### Answer: SELECT score FROM table_17104539_12 WHERE record = "16-17"
What was the location and where did the team play game number 32?
CREATE TABLE table_17104539_12 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_17104539_12 WHERE game = 32
### Context: CREATE TABLE table_17104539_12 (location_attendance VARCHAR, game VARCHAR) ### Question: What was the location and where did the team play game number 32? ### Answer: SELECT location_attendance FROM table_17104539_12 WHERE game = 32
Who had a high rebound where the associated record is 11-13?
CREATE TABLE table_17104539_10 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_17104539_10 WHERE record = "11-13"
### Context: CREATE TABLE table_17104539_10 (high_rebounds VARCHAR, record VARCHAR) ### Question: Who had a high rebound where the associated record is 11-13? ### Answer: SELECT high_rebounds FROM table_17104539_10 WHERE record = "11-13"
On July 8, what was the score?
CREATE TABLE table_17104539_10 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17104539_10 WHERE date = "July 8"
### Context: CREATE TABLE table_17104539_10 (score VARCHAR, date VARCHAR) ### Question: On July 8, what was the score? ### Answer: SELECT score FROM table_17104539_10 WHERE date = "July 8"
Who was the oppenent what the score was L 68-60?
CREATE TABLE table_17104539_10 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_17104539_10 WHERE score = "L 68-60"
### Context: CREATE TABLE table_17104539_10 (opponent VARCHAR, score VARCHAR) ### Question: Who was the oppenent what the score was L 68-60? ### Answer: SELECT opponent FROM table_17104539_10 WHERE score = "L 68-60"
If high assists are under Canty (6) how much would the record be?
CREATE TABLE table_17118657_10 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_17118657_10 WHERE high_assists = "Canty (6)"
### Context: CREATE TABLE table_17118657_10 (record VARCHAR, high_assists VARCHAR) ### Question: If high assists are under Canty (6) how much would the record be? ### Answer: SELECT record FROM table_17118657_10 WHERE high_assists = "Canty (6)"
If the score is 62-70, what are the high points?
CREATE TABLE table_17118657_10 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_17118657_10 WHERE score = "62-70"
### Context: CREATE TABLE table_17118657_10 (high_points VARCHAR, score VARCHAR) ### Question: If the score is 62-70, what are the high points? ### Answer: SELECT high_points FROM table_17118657_10 WHERE score = "62-70"
On which date was the location/attendance UIC Pavilion 3,829 respectively?
CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_17118657_10 WHERE location_attendance = "UIC Pavilion 3,829"
### Context: CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR) ### Question: On which date was the location/attendance UIC Pavilion 3,829 respectively? ### Answer: SELECT date FROM table_17118657_10 WHERE location_attendance = "UIC Pavilion 3,829"
On which date is high assists Dupree (6)?
CREATE TABLE table_17118657_10 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17118657_10 WHERE high_assists = "Dupree (6)"
### Context: CREATE TABLE table_17118657_10 (date VARCHAR, high_assists VARCHAR) ### Question: On which date is high assists Dupree (6)? ### Answer: SELECT date FROM table_17118657_10 WHERE high_assists = "Dupree (6)"
What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment?
CREATE TABLE table_17118006_2 (local_investment__us$_ VARCHAR, bid_pronar_investment__us$_ VARCHAR)
SELECT local_investment__us$_ FROM table_17118006_2 WHERE bid_pronar_investment__us$_ = "912,185"
### Context: CREATE TABLE table_17118006_2 (local_investment__us$_ VARCHAR, bid_pronar_investment__us$_ VARCHAR) ### Question: What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment? ### Answer: SELECT local_investment__us$_ FROM table_17118006_2 WHERE bid_pronar_inve...
How many farmers were included by the department with 32 projects?
CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR)
SELECT MAX(farmers) FROM table_17118006_2 WHERE projects = 32
### Context: CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR) ### Question: How many farmers were included by the department with 32 projects? ### Answer: SELECT MAX(farmers) FROM table_17118006_2 WHERE projects = 32
What department irrigated 2170 Ha?
CREATE TABLE table_17118006_2 (department VARCHAR, irrigated_ha VARCHAR)
SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170
### Context: CREATE TABLE table_17118006_2 (department VARCHAR, irrigated_ha VARCHAR) ### Question: What department irrigated 2170 Ha? ### Answer: SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170
What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects?
CREATE TABLE table_17118006_2 (bid_pronar_investment__us$_ VARCHAR, farmers VARCHAR)
SELECT bid_pronar_investment__us$_ FROM table_17118006_2 WHERE farmers = 1326
### Context: CREATE TABLE table_17118006_2 (bid_pronar_investment__us$_ VARCHAR, farmers VARCHAR) ### Question: What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects? ### Answer: SELECT bid_pronar_investment__us$_ FROM table_17118006_2 WHERE farmers = 1326
What was the department that got $626,798 in local investments?
CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ VARCHAR)
SELECT department FROM table_17118006_2 WHERE local_investment__us$_ = "626,798"
### Context: CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ VARCHAR) ### Question: What was the department that got $626,798 in local investments? ### Answer: SELECT department FROM table_17118006_2 WHERE local_investment__us$_ = "626,798"
What number was the game resulting in a 5-11 record?
CREATE TABLE table_17118657_8 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_17118657_8 WHERE record = "5-11"
### Context: CREATE TABLE table_17118657_8 (game INTEGER, record VARCHAR) ### Question: What number was the game resulting in a 5-11 record? ### Answer: SELECT MIN(game) FROM table_17118657_8 WHERE record = "5-11"
How many high assists are listed for the game with a score of 68-60?
CREATE TABLE table_17118657_8 (high_assists VARCHAR, score VARCHAR)
SELECT COUNT(high_assists) FROM table_17118657_8 WHERE score = "68-60"
### Context: CREATE TABLE table_17118657_8 (high_assists VARCHAR, score VARCHAR) ### Question: How many high assists are listed for the game with a score of 68-60? ### Answer: SELECT COUNT(high_assists) FROM table_17118657_8 WHERE score = "68-60"
In the game resulting in a 5-11 record, who scored the high rebounds?
CREATE TABLE table_17118657_8 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_17118657_8 WHERE record = "5-11"
### Context: CREATE TABLE table_17118657_8 (high_rebounds VARCHAR, record VARCHAR) ### Question: In the game resulting in a 5-11 record, who scored the high rebounds? ### Answer: SELECT high_rebounds FROM table_17118657_8 WHERE record = "5-11"
Who was the opponent of the game with final score won 4-1?
CREATE TABLE table_17120964_8 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_17120964_8 WHERE result = "Won 4-1"
### Context: CREATE TABLE table_17120964_8 (opponent VARCHAR, result VARCHAR) ### Question: Who was the opponent of the game with final score won 4-1? ### Answer: SELECT opponent FROM table_17120964_8 WHERE result = "Won 4-1"
What was the attendance at the game where Neil Liddiard was Man of the Match?
CREATE TABLE table_17120964_8 (attendance INTEGER, man_of_the_match VARCHAR)
SELECT MIN(attendance) FROM table_17120964_8 WHERE man_of_the_match = "Neil Liddiard"
### Context: CREATE TABLE table_17120964_8 (attendance INTEGER, man_of_the_match VARCHAR) ### Question: What was the attendance at the game where Neil Liddiard was Man of the Match? ### Answer: SELECT MIN(attendance) FROM table_17120964_8 WHERE man_of_the_match = "Neil Liddiard"
What was the venue of the game that was lost 3-4?
CREATE TABLE table_17120964_8 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_17120964_8 WHERE result = "Lost 3-4"
### Context: CREATE TABLE table_17120964_8 (venue VARCHAR, result VARCHAR) ### Question: What was the venue of the game that was lost 3-4? ### Answer: SELECT venue FROM table_17120964_8 WHERE result = "Lost 3-4"
What is the venue of the game with Man of the Match Vaclav Zavoral?
CREATE TABLE table_17120964_8 (venue VARCHAR, man_of_the_match VARCHAR)
SELECT venue FROM table_17120964_8 WHERE man_of_the_match = "Vaclav Zavoral"
### Context: CREATE TABLE table_17120964_8 (venue VARCHAR, man_of_the_match VARCHAR) ### Question: What is the venue of the game with Man of the Match Vaclav Zavoral? ### Answer: SELECT venue FROM table_17120964_8 WHERE man_of_the_match = "Vaclav Zavoral"
How many attendance figures are given for the game where the final score was lost 5-3?
CREATE TABLE table_17120964_8 (attendance VARCHAR, result VARCHAR)
SELECT COUNT(attendance) FROM table_17120964_8 WHERE result = "Lost 5-3"
### Context: CREATE TABLE table_17120964_8 (attendance VARCHAR, result VARCHAR) ### Question: How many attendance figures are given for the game where the final score was lost 5-3? ### Answer: SELECT COUNT(attendance) FROM table_17120964_8 WHERE result = "Lost 5-3"
Name the opponent for 4th
CREATE TABLE table_17120964_5 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_17120964_5 WHERE date = "4th"
### Context: CREATE TABLE table_17120964_5 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for 4th ### Answer: SELECT opponent FROM table_17120964_5 WHERE date = "4th"
Name the venue for 19th date
CREATE TABLE table_17120964_5 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_17120964_5 WHERE date = "19th"
### Context: CREATE TABLE table_17120964_5 (venue VARCHAR, date VARCHAR) ### Question: Name the venue for 19th date ### Answer: SELECT venue FROM table_17120964_5 WHERE date = "19th"
Name the result for lukas smital and home
CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR)
SELECT result FROM table_17120964_5 WHERE man_of_the_match = "Lukas Smital" AND venue = "Home"
### Context: CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR) ### Question: Name the result for lukas smital and home ### Answer: SELECT result FROM table_17120964_5 WHERE man_of_the_match = "Lukas Smital" AND venue = "Home"
Name the man of the match for 24th
CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, date VARCHAR)
SELECT man_of_the_match FROM table_17120964_5 WHERE date = "24th"
### Context: CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, date VARCHAR) ### Question: Name the man of the match for 24th ### Answer: SELECT man_of_the_match FROM table_17120964_5 WHERE date = "24th"
Name the man of the maatch for sheffield scimitars
CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, opponent VARCHAR)
SELECT man_of_the_match FROM table_17120964_5 WHERE opponent = "Sheffield Scimitars"
### Context: CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, opponent VARCHAR) ### Question: Name the man of the maatch for sheffield scimitars ### Answer: SELECT man_of_the_match FROM table_17120964_5 WHERE opponent = "Sheffield Scimitars"
On the 19th, where was the venue?
CREATE TABLE table_17120964_6 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_17120964_6 WHERE date = "19th"
### Context: CREATE TABLE table_17120964_6 (venue VARCHAR, date VARCHAR) ### Question: On the 19th, where was the venue? ### Answer: SELECT venue FROM table_17120964_6 WHERE date = "19th"
What was the total attendance during the home game against the Swindon Wildcats?
CREATE TABLE table_17120964_6 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT attendance FROM table_17120964_6 WHERE opponent = "Swindon Wildcats" AND venue = "Home"
### Context: CREATE TABLE table_17120964_6 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR) ### Question: What was the total attendance during the home game against the Swindon Wildcats? ### Answer: SELECT attendance FROM table_17120964_6 WHERE opponent = "Swindon Wildcats" AND venue = "Home"
On what day was Stuart Potts the Man of the Match?
CREATE TABLE table_17120964_6 (date VARCHAR, man_of_the_match VARCHAR)
SELECT date FROM table_17120964_6 WHERE man_of_the_match = "Stuart Potts"
### Context: CREATE TABLE table_17120964_6 (date VARCHAR, man_of_the_match VARCHAR) ### Question: On what day was Stuart Potts the Man of the Match? ### Answer: SELECT date FROM table_17120964_6 WHERE man_of_the_match = "Stuart Potts"
At what venue did Alex Mettam/Mark Williams be named Man of the Match?
CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR)
SELECT venue FROM table_17120964_6 WHERE man_of_the_match = "Alex Mettam/Mark Williams"
### Context: CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR) ### Question: At what venue did Alex Mettam/Mark Williams be named Man of the Match? ### Answer: SELECT venue FROM table_17120964_6 WHERE man_of_the_match = "Alex Mettam/Mark Williams"
How many dates did David Savage get man of the match?
CREATE TABLE table_17120964_7 (date VARCHAR, man_of_the_match VARCHAR)
SELECT COUNT(date) FROM table_17120964_7 WHERE man_of_the_match = "David Savage"
### Context: CREATE TABLE table_17120964_7 (date VARCHAR, man_of_the_match VARCHAR) ### Question: How many dates did David Savage get man of the match? ### Answer: SELECT COUNT(date) FROM table_17120964_7 WHERE man_of_the_match = "David Savage"
When the attendance was 1568, who was man of the match?
CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, attendance VARCHAR)
SELECT man_of_the_match FROM table_17120964_7 WHERE attendance = 1568
### Context: CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, attendance VARCHAR) ### Question: When the attendance was 1568, who was man of the match? ### Answer: SELECT man_of_the_match FROM table_17120964_7 WHERE attendance = 1568
Who was the man of the match when they lost 2-4?
CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, result VARCHAR)
SELECT man_of_the_match FROM table_17120964_7 WHERE result = "Lost 2-4"
### Context: CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, result VARCHAR) ### Question: Who was the man of the match when they lost 2-4? ### Answer: SELECT man_of_the_match FROM table_17120964_7 WHERE result = "Lost 2-4"
what was the competitoin where the opponent is sheffield scimitars?
CREATE TABLE table_17120964_9 (competition VARCHAR, opponent VARCHAR)
SELECT competition FROM table_17120964_9 WHERE opponent = "Sheffield Scimitars"
### Context: CREATE TABLE table_17120964_9 (competition VARCHAR, opponent VARCHAR) ### Question: what was the competitoin where the opponent is sheffield scimitars? ### Answer: SELECT competition FROM table_17120964_9 WHERE opponent = "Sheffield Scimitars"
where was the venue where the attendance was 702?
CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR)
SELECT venue FROM table_17120964_9 WHERE attendance = "702"
### Context: CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR) ### Question: where was the venue where the attendance was 702? ### Answer: SELECT venue FROM table_17120964_9 WHERE attendance = "702"
what was the venue where the date was the 22nd?
CREATE TABLE table_17120964_9 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_17120964_9 WHERE date = "22nd"
### Context: CREATE TABLE table_17120964_9 (venue VARCHAR, date VARCHAR) ### Question: what was the venue where the date was the 22nd? ### Answer: SELECT venue FROM table_17120964_9 WHERE date = "22nd"
who was the opponent where the date was the 21st?
CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_17120964_9 WHERE date = "21st"
### Context: CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR) ### Question: who was the opponent where the date was the 21st? ### Answer: SELECT opponent FROM table_17120964_9 WHERE date = "21st"
What is the score for Milwaukee?
CREATE TABLE table_17121262_5 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17121262_5 WHERE team = "Milwaukee"
### Context: CREATE TABLE table_17121262_5 (score VARCHAR, team VARCHAR) ### Question: What is the score for Milwaukee? ### Answer: SELECT score FROM table_17121262_5 WHERE team = "Milwaukee"
What was the record against Washington?
CREATE TABLE table_17121262_10 (record VARCHAR, team VARCHAR)
SELECT COUNT(record) FROM table_17121262_10 WHERE team = "Washington"
### Context: CREATE TABLE table_17121262_10 (record VARCHAR, team VARCHAR) ### Question: What was the record against Washington? ### Answer: SELECT COUNT(record) FROM table_17121262_10 WHERE team = "Washington"
If the census ranking is 231 of 5,008, what was the population?
CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR)
SELECT population FROM table_171236_1 WHERE census_ranking = "231 of 5,008"
### Context: CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR) ### Question: If the census ranking is 231 of 5,008, what was the population? ### Answer: SELECT population FROM table_171236_1 WHERE census_ranking = "231 of 5,008"
If the area is 59.73, what is the official name?
CREATE TABLE table_171236_1 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_171236_1 WHERE area_km_2 = "59.73"
### Context: CREATE TABLE table_171236_1 (official_name VARCHAR, area_km_2 VARCHAR) ### Question: If the area is 59.73, what is the official name? ### Answer: SELECT official_name FROM table_171236_1 WHERE area_km_2 = "59.73"
If the census ranking is 693 of 5,008, what is the status?
CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR)
SELECT status FROM table_171236_1 WHERE census_ranking = "693 of 5,008"
### Context: CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR) ### Question: If the census ranking is 693 of 5,008, what is the status? ### Answer: SELECT status FROM table_171236_1 WHERE census_ranking = "693 of 5,008"
With the official name Quispamsis, what is the census ranking?
CREATE TABLE table_171236_1 (census_ranking VARCHAR, official_name VARCHAR)
SELECT census_ranking FROM table_171236_1 WHERE official_name = "Quispamsis"
### Context: CREATE TABLE table_171236_1 (census_ranking VARCHAR, official_name VARCHAR) ### Question: With the official name Quispamsis, what is the census ranking? ### Answer: SELECT census_ranking FROM table_171236_1 WHERE official_name = "Quispamsis"
What was the population for census ranking 782 of 5,008?
CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR)
SELECT population FROM table_171236_1 WHERE census_ranking = "782 of 5,008"
### Context: CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR) ### Question: What was the population for census ranking 782 of 5,008? ### Answer: SELECT population FROM table_171236_1 WHERE census_ranking = "782 of 5,008"
If the area is 34.73, what is the census ranking?
CREATE TABLE table_171236_1 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT census_ranking FROM table_171236_1 WHERE area_km_2 = "34.73"
### Context: CREATE TABLE table_171236_1 (census_ranking VARCHAR, area_km_2 VARCHAR) ### Question: If the area is 34.73, what is the census ranking? ### Answer: SELECT census_ranking FROM table_171236_1 WHERE area_km_2 = "34.73"
What are the census ranking(s) for a population of 284?
CREATE TABLE table_171250_2 (census_ranking VARCHAR, population VARCHAR)
SELECT census_ranking FROM table_171250_2 WHERE population = 284
### Context: CREATE TABLE table_171250_2 (census_ranking VARCHAR, population VARCHAR) ### Question: What are the census ranking(s) for a population of 284? ### Answer: SELECT census_ranking FROM table_171250_2 WHERE population = 284
What are the census ranking(s) that have an area of 369.25 km2?
CREATE TABLE table_171250_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT census_ranking FROM table_171250_2 WHERE area_km_2 = "369.25"
### Context: CREATE TABLE table_171250_2 (census_ranking VARCHAR, area_km_2 VARCHAR) ### Question: What are the census ranking(s) that have an area of 369.25 km2? ### Answer: SELECT census_ranking FROM table_171250_2 WHERE area_km_2 = "369.25"
What is the population that has an area of 715.58?
CREATE TABLE table_171250_2 (population VARCHAR, area_km_2 VARCHAR)
SELECT population FROM table_171250_2 WHERE area_km_2 = "715.58"
### Context: CREATE TABLE table_171250_2 (population VARCHAR, area_km_2 VARCHAR) ### Question: What is the population that has an area of 715.58? ### Answer: SELECT population FROM table_171250_2 WHERE area_km_2 = "715.58"
What are that status(es) of saint-jacques?
CREATE TABLE table_171250_2 (status VARCHAR, official_name VARCHAR)
SELECT status FROM table_171250_2 WHERE official_name = "Saint-Jacques"
### Context: CREATE TABLE table_171250_2 (status VARCHAR, official_name VARCHAR) ### Question: What are that status(es) of saint-jacques? ### Answer: SELECT status FROM table_171250_2 WHERE official_name = "Saint-Jacques"
What are the area(s) (km2) for saint-joseph?
CREATE TABLE table_171250_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT area_km_2 FROM table_171250_2 WHERE official_name = "Saint-Joseph"
### Context: CREATE TABLE table_171250_2 (area_km_2 VARCHAR, official_name VARCHAR) ### Question: What are the area(s) (km2) for saint-joseph? ### Answer: SELECT area_km_2 FROM table_171250_2 WHERE official_name = "Saint-Joseph"
What rank is the parish with 482.81 km^2?
CREATE TABLE table_171356_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT census_ranking FROM table_171356_2 WHERE area_km_2 = "482.81"
### Context: CREATE TABLE table_171356_2 (census_ranking VARCHAR, area_km_2 VARCHAR) ### Question: What rank is the parish with 482.81 km^2? ### Answer: SELECT census_ranking FROM table_171356_2 WHERE area_km_2 = "482.81"
What status doe the area with a census ranking of 2,290 of 5,008 have?
CREATE TABLE table_171356_2 (status VARCHAR, census_ranking VARCHAR)
SELECT status FROM table_171356_2 WHERE census_ranking = "2,290 of 5,008"
### Context: CREATE TABLE table_171356_2 (status VARCHAR, census_ranking VARCHAR) ### Question: What status doe the area with a census ranking of 2,290 of 5,008 have? ### Answer: SELECT status FROM table_171356_2 WHERE census_ranking = "2,290 of 5,008"
How many statuses are listed for the parish officially named Gagetown?
CREATE TABLE table_171356_2 (status VARCHAR, official_name VARCHAR)
SELECT COUNT(status) FROM table_171356_2 WHERE official_name = "Gagetown"
### Context: CREATE TABLE table_171356_2 (status VARCHAR, official_name VARCHAR) ### Question: How many statuses are listed for the parish officially named Gagetown? ### Answer: SELECT COUNT(status) FROM table_171356_2 WHERE official_name = "Gagetown"
What is Petersville's census ranking?
CREATE TABLE table_171356_2 (census_ranking VARCHAR, official_name VARCHAR)
SELECT census_ranking FROM table_171356_2 WHERE official_name = "Petersville"
### Context: CREATE TABLE table_171356_2 (census_ranking VARCHAR, official_name VARCHAR) ### Question: What is Petersville's census ranking? ### Answer: SELECT census_ranking FROM table_171356_2 WHERE official_name = "Petersville"
What is the population of each community with city status?
CREATE TABLE table_171361_1 (population VARCHAR, status VARCHAR)
SELECT population FROM table_171361_1 WHERE status = "City"
### Context: CREATE TABLE table_171361_1 (population VARCHAR, status VARCHAR) ### Question: What is the population of each community with city status? ### Answer: SELECT population FROM table_171361_1 WHERE status = "City"
What is the name of the community with an area of 30.75 sq. km.?
CREATE TABLE table_171361_1 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_171361_1 WHERE area_km_2 = "30.75"
### Context: CREATE TABLE table_171361_1 (official_name VARCHAR, area_km_2 VARCHAR) ### Question: What is the name of the community with an area of 30.75 sq. km.? ### Answer: SELECT official_name FROM table_171361_1 WHERE area_km_2 = "30.75"
What is the area of the community with a population of 1209?
CREATE TABLE table_171361_1 (area_km_2 VARCHAR, population VARCHAR)
SELECT area_km_2 FROM table_171361_1 WHERE population = 1209
### Context: CREATE TABLE table_171361_1 (area_km_2 VARCHAR, population VARCHAR) ### Question: What is the area of the community with a population of 1209? ### Answer: SELECT area_km_2 FROM table_171361_1 WHERE population = 1209
How many population values are listed for the community with an area of 10.25 sq.km.?
CREATE TABLE table_171361_1 (population VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(population) FROM table_171361_1 WHERE area_km_2 = "10.25"
### Context: CREATE TABLE table_171361_1 (population VARCHAR, area_km_2 VARCHAR) ### Question: How many population values are listed for the community with an area of 10.25 sq.km.? ### Answer: SELECT COUNT(population) FROM table_171361_1 WHERE area_km_2 = "10.25"
Name the region 1 where region 4 for april 2, 2009
CREATE TABLE table_171320_3 (region_1 VARCHAR, region_4 VARCHAR)
SELECT region_1 FROM table_171320_3 WHERE region_4 = "April 2, 2009"
### Context: CREATE TABLE table_171320_3 (region_1 VARCHAR, region_4 VARCHAR) ### Question: Name the region 1 where region 4 for april 2, 2009 ### Answer: SELECT region_1 FROM table_171320_3 WHERE region_4 = "April 2, 2009"
Name the region 1 for episode number 13
CREATE TABLE table_171320_3 (region_1 VARCHAR, ep__number VARCHAR)
SELECT region_1 FROM table_171320_3 WHERE ep__number = 13
### Context: CREATE TABLE table_171320_3 (region_1 VARCHAR, ep__number VARCHAR) ### Question: Name the region 1 for episode number 13 ### Answer: SELECT region_1 FROM table_171320_3 WHERE ep__number = 13
How many episodes have the season number of 1?
CREATE TABLE table_17152787_3 (series__number VARCHAR, season__number VARCHAR)
SELECT COUNT(series__number) FROM table_17152787_3 WHERE season__number = 1
### Context: CREATE TABLE table_17152787_3 (series__number VARCHAR, season__number VARCHAR) ### Question: How many episodes have the season number of 1? ### Answer: SELECT COUNT(series__number) FROM table_17152787_3 WHERE season__number = 1
Who was the director of the film with the original title of "The Patience Stone"?
CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR)
SELECT director FROM table_17155250_1 WHERE original_title = "The Patience Stone"
### Context: CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR) ### Question: Who was the director of the film with the original title of "The Patience Stone"? ### Answer: SELECT director FROM table_17155250_1 WHERE original_title = "The Patience Stone"
For what ceremony was "Fire Dancer" not nominated?
CREATE TABLE table_17155250_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_17155250_1 WHERE original_title = "Fire Dancer"
### Context: CREATE TABLE table_17155250_1 (year__ceremony_ VARCHAR, original_title VARCHAR) ### Question: For what ceremony was "Fire Dancer" not nominated? ### Answer: SELECT year__ceremony_ FROM table_17155250_1 WHERE original_title = "Fire Dancer"