combined_text
stringlengths
106
1.05k
###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"###context:CREATE TABLE table_170958_2 (population VARCHAR, 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"###context:CREATE TABLE table_170958_2 (population INTEGER, area_km_2 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"###context:CREATE TABLE table_170958_2 (area_km_2 VARCHAR, official_name 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"###context:CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, november_3 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"###context:CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, january_15_16 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"###context:CREATE TABLE table_1708610_3 (january_15_16 VARCHAR, march_27_29 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)"###context:CREATE TABLE table_17102076_10 (location_attendance VARCHAR, score VARCHAR)
###question:Name the record for april 1###answer:SELECT record FROM table_17102076_10 WHERE date = "April 1"###context:CREATE TABLE table_17102076_10 (record VARCHAR, date 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)"###context:CREATE TABLE table_17102076_10 (high_assists VARCHAR, score 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"###context:CREATE TABLE table_17102076_10 (game INTEGER, location_attendance VARCHAR)
###question:Name the high rebounds for game 11###answer: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 points for score being l 92–100 (ot)###answer: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 team for arco arena 13,685###answer: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:What was the score of game 35?###answer:SELECT score FROM table_17102076_7 WHERE game = 35###context:CREATE TABLE table_17102076_7 (score VARCHAR, game VARCHAR)
###question:Name the location attendance for score of 65-72###answer: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 record for july 18###answer:SELECT record FROM table_17103645_10 WHERE date = "July 18"###context:CREATE TABLE table_17103645_10 (record 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"###context:CREATE TABLE table_17103645_10 (high_assists VARCHAR, date VARCHAR)
###question:Name the score when game is 19###answer:SELECT score FROM table_17103645_10 WHERE game = 19###context:CREATE TABLE table_17103645_10 (score VARCHAR, game VARCHAR)
###question:What is the result when team 1 is ICL Pakistan?###answer: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 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"###context:CREATE TABLE table_17103566_1 (match_number 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"###context:CREATE TABLE table_17103566_1 (team_2 VARCHAR, result 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"###context:CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, team_1 VARCHAR)
###question:How many dates have a Match number of 5?###answer:SELECT COUNT(date) FROM table_17103566_1 WHERE match_number = 5###context:CREATE TABLE table_17103566_1 (date 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###context:CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, match_number 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"###context:CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR)
###question:Name the location of 64-74###answer: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 score for game for 25###answer:SELECT score FROM table_17103729_8 WHERE game = 25###context:CREATE TABLE table_17103729_8 (score VARCHAR, game 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"###context:CREATE TABLE table_17103729_8 (record VARCHAR, location_attendance VARCHAR)
###question:Name the high rebounds for score of 64-74###answer:SELECT COUNT(high_rebounds) FROM table_17103729_8 WHERE score = "64-74"###context:CREATE TABLE table_17103729_8 (high_rebounds VARCHAR, score VARCHAR)
###question:Namethe score for july 16###answer:SELECT score FROM table_17103729_8 WHERE date = "July 16"###context:CREATE TABLE table_17103729_8 (score VARCHAR, date 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"###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"###context:CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR)
###question:Name the record for june 7###answer:SELECT record FROM table_17104539_9 WHERE date = "June 7"###context:CREATE TABLE table_17104539_9 (record VARCHAR, date VARCHAR)
###question:Name the date for the score of w 83-69###answer:SELECT date FROM table_17104539_9 WHERE score = "W 83-69"###context:CREATE TABLE table_17104539_9 (date 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"###context:CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR)
###question:What are the scores for games played on september 9?###answer:SELECT score FROM table_17104539_12 WHERE date = "September 9"###context:CREATE TABLE table_17104539_12 (score VARCHAR, date 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"###context:CREATE TABLE table_17104539_12 (score VARCHAR, record 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###context:CREATE TABLE table_17104539_12 (location_attendance VARCHAR, game 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"###context:CREATE TABLE table_17104539_10 (high_rebounds VARCHAR, record VARCHAR)
###question:On July 8, what was the score?###answer:SELECT score FROM table_17104539_10 WHERE date = "July 8"###context:CREATE TABLE table_17104539_10 (score VARCHAR, date 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"###context:CREATE TABLE table_17104539_10 (opponent VARCHAR, score 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)"###context:CREATE TABLE table_17118657_10 (record VARCHAR, high_assists 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"###context:CREATE TABLE table_17118657_10 (high_points VARCHAR, score 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"###context:CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR)
###question:On which date is high assists Dupree (6)?###answer:SELECT date FROM table_17118657_10 WHERE high_assists = "Dupree (6)"###context:CREATE TABLE table_17118657_10 (date VARCHAR, high_assists 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_investment__us$_ = "912,185"###context:CREATE TABLE table_17118006_2 (local_investment__us$_ VARCHAR, bid_pronar_investmen...
###question:How many farmers were included by the department with 32 projects?###answer:SELECT MAX(farmers) FROM table_17118006_2 WHERE projects = 32###context:CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR)
###question:What department irrigated 2170 Ha?###answer:SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170###context:CREATE TABLE table_17118006_2 (department VARCHAR, irrigated_ha 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###context:CREATE TABLE table_17118006_2 (bid_pronar_investment__us$_ VARCHAR, farmers 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"###context:CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ 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"###context:CREATE TABLE table_17118657_8 (game INTEGER, record 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"###context:CREATE TABLE table_17118657_8 (high_assists VARCHAR, score 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"###context:CREATE TABLE table_17118657_8 (high_rebounds VARCHAR, record 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"###context:CREATE TABLE table_17120964_8 (opponent VARCHAR, result 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"###context:CREATE TABLE table_17120964_8 (attendance INTEGER, man_of_the_match 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"###context:CREATE TABLE table_17120964_8 (venue VARCHAR, result 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"###context:CREATE TABLE table_17120964_8 (venue VARCHAR, man_of_the_match 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"###context:CREATE TABLE table_17120964_8 (attendance VARCHAR, result VARCHAR)
###question:Name the opponent for 4th###answer:SELECT opponent FROM table_17120964_5 WHERE date = "4th"###context:CREATE TABLE table_17120964_5 (opponent VARCHAR, date VARCHAR)
###question:Name the venue for 19th date###answer:SELECT venue FROM table_17120964_5 WHERE date = "19th"###context:CREATE TABLE table_17120964_5 (venue VARCHAR, date 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"###context:CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR)
###question:Name the man of the match for 24th###answer: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 maatch for sheffield scimitars###answer: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:On the 19th, where was the venue?###answer:SELECT venue FROM table_17120964_6 WHERE date = "19th"###context:CREATE TABLE table_17120964_6 (venue VARCHAR, date 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"###context:CREATE TABLE table_17120964_6 (attendance VARCHAR, opponent VARCHAR, venue 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"###context:CREATE TABLE table_17120964_6 (date 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"###context:CREATE TABLE table_17120964_6 (venue 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"###context:CREATE TABLE table_17120964_7 (date VARCHAR, man_of_the_match 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###context:CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, attendance 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"###context:CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, result VARCHAR)
###question:what was the competitoin where the opponent is sheffield scimitars?###answer:SELECT competition FROM table_17120964_9 WHERE opponent = "Sheffield Scimitars"###context:CREATE TABLE table_17120964_9 (competition VARCHAR, opponent VARCHAR)
###question:where was the venue where the attendance was 702?###answer:SELECT venue FROM table_17120964_9 WHERE attendance = "702"###context:CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR)
###question:what was the venue where the date was the 22nd?###answer:SELECT venue FROM table_17120964_9 WHERE date = "22nd"###context:CREATE TABLE table_17120964_9 (venue VARCHAR, date VARCHAR)
###question:who was the opponent where the date was the 21st?###answer:SELECT opponent FROM table_17120964_9 WHERE date = "21st"###context:CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR)
###question:What is the score for Milwaukee? ###answer:SELECT score FROM table_17121262_5 WHERE team = "Milwaukee"###context:CREATE TABLE table_17121262_5 (score VARCHAR, team VARCHAR)
###question:What was the record against Washington?###answer:SELECT COUNT(record) FROM table_17121262_10 WHERE team = "Washington"###context:CREATE TABLE table_17121262_10 (record VARCHAR, team 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"###context:CREATE TABLE table_171236_1 (population VARCHAR, census_ranking 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"###context:CREATE TABLE table_171236_1 (official_name VARCHAR, area_km_2 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"###context:CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR)
###question:With the official name Quispamsis, what is the census ranking?###answer:SELECT census_ranking FROM table_171236_1 WHERE official_name = "Quispamsis"###context:CREATE TABLE table_171236_1 (census_ranking VARCHAR, official_name 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"###context:CREATE TABLE table_171236_1 (population VARCHAR, census_ranking 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"###context:CREATE TABLE table_171236_1 (census_ranking VARCHAR, area_km_2 VARCHAR)
###question:What are the census ranking(s) for a population of 284?###answer: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) that have an area of 369.25 km2?###answer: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 is the population that has an area of 715.58?###answer: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 are that status(es) of saint-jacques?###answer: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 the area(s) (km2) for saint-joseph?###answer: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 rank is the parish with 482.81 km^2?###answer: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 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"###context:CREATE TABLE table_171356_2 (status VARCHAR, census_ranking 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"###context:CREATE TABLE table_171356_2 (status VARCHAR, official_name VARCHAR)
###question:What is Petersville's census ranking?###answer: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 the population of each community with city status?###answer:SELECT population FROM table_171361_1 WHERE status = "City"###context:CREATE TABLE table_171361_1 (population VARCHAR, status 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"###context:CREATE TABLE table_171361_1 (official_name VARCHAR, area_km_2 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###context:CREATE TABLE table_171361_1 (area_km_2 VARCHAR, population 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"###context:CREATE TABLE table_171361_1 (population VARCHAR, area_km_2 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"###context:CREATE TABLE table_171320_3 (region_1 VARCHAR, region_4 VARCHAR)
###question:Name the region 1 for episode number 13###answer:SELECT region_1 FROM table_171320_3 WHERE ep__number = 13###context:CREATE TABLE table_171320_3 (region_1 VARCHAR, ep__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###context:CREATE TABLE table_17152787_3 (series__number VARCHAR, season__number 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"###context:CREATE TABLE table_17155250_1 (director 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"###context:CREATE TABLE table_17155250_1 (year__ceremony_ VARCHAR, original_title VARCHAR)