answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT man_of_the_match FROM table_17103566_1 WHERE team_1 = "ICL Pakistan" | CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, team_1 VARCHAR) | Who is man of the match when Team 1 is ICL Pakistan? |
SELECT COUNT(date) FROM table_17103566_1 WHERE match_number = 5 | CREATE TABLE table_17103566_1 (date VARCHAR, match_number VARCHAR) | How many dates have a Match number of 5? |
SELECT man_of_the_match FROM table_17103566_1 WHERE match_number = 5 | CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, match_number VARCHAR) | Who is man of the match for match number 5? |
SELECT location_attendance FROM table_17103729_7 WHERE score = "68-85" | CREATE TABLE table_17103729_7 (location_attendance VARCHAR, score VARCHAR) | With a score of 68-85, what is the location and attendance? |
SELECT location_attendance FROM table_17103729_8 WHERE score = "64-74" | CREATE TABLE table_17103729_8 (location_attendance VARCHAR, score VARCHAR) | Name the location of 64-74 |
SELECT score FROM table_17103729_8 WHERE game = 25 | CREATE TABLE table_17103729_8 (score VARCHAR, game VARCHAR) | Name the score for game for 25 |
SELECT record FROM table_17103729_8 WHERE location_attendance = "Palace of Auburn Hills 15,210" | CREATE TABLE table_17103729_8 (record VARCHAR, location_attendance VARCHAR) | Name the record for attendance location of palace of auburn hills 15,210 |
SELECT COUNT(high_rebounds) FROM table_17103729_8 WHERE score = "64-74" | CREATE TABLE table_17103729_8 (high_rebounds VARCHAR, score VARCHAR) | Name the high rebounds for score of 64-74 |
SELECT score FROM table_17103729_8 WHERE date = "July 16" | CREATE TABLE table_17103729_8 (score VARCHAR, date VARCHAR) | Namethe score for july 16 |
SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Fischer" | CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR) | Which people had the best 10-year period when Fischer had best 15-year period? |
SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Capablanca" | CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR) | Which people had the best 10-year period when Capablanca had the best 15-year period? |
SELECT record FROM table_17104539_9 WHERE date = "June 7" | CREATE TABLE table_17104539_9 (record VARCHAR, date VARCHAR) | Name the record for june 7 |
SELECT date FROM table_17104539_9 WHERE score = "W 83-69" | CREATE TABLE table_17104539_9 (date VARCHAR, score VARCHAR) | Name the date for the score of w 83-69 |
SELECT record FROM table_17104539_9 WHERE score = "W 76-67" | CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR) | Name the record for score of w 76-67 |
SELECT score FROM table_17104539_12 WHERE date = "September 9" | CREATE TABLE table_17104539_12 (score VARCHAR, date VARCHAR) | What are the scores for games played on september 9? |
SELECT score FROM table_17104539_12 WHERE record = "16-17" | CREATE TABLE table_17104539_12 (score VARCHAR, record VARCHAR) | What was the score of the game played when the team was 16-17? |
SELECT location_attendance FROM table_17104539_12 WHERE game = 32 | CREATE TABLE table_17104539_12 (location_attendance VARCHAR, game VARCHAR) | What was the location and where did the team play game number 32? |
SELECT high_rebounds FROM table_17104539_10 WHERE record = "11-13" | CREATE TABLE table_17104539_10 (high_rebounds VARCHAR, record VARCHAR) | Who had a high rebound where the associated record is 11-13? |
SELECT score FROM table_17104539_10 WHERE date = "July 8" | CREATE TABLE table_17104539_10 (score VARCHAR, date VARCHAR) | On July 8, what was the score? |
SELECT opponent FROM table_17104539_10 WHERE score = "L 68-60" | CREATE TABLE table_17104539_10 (opponent VARCHAR, score VARCHAR) | Who was the oppenent what the score was L 68-60? |
SELECT record FROM table_17118657_10 WHERE high_assists = "Canty (6)" | CREATE TABLE table_17118657_10 (record VARCHAR, high_assists VARCHAR) | If high assists are under Canty (6) how much would the record be? |
SELECT high_points FROM table_17118657_10 WHERE score = "62-70" | CREATE TABLE table_17118657_10 (high_points VARCHAR, score VARCHAR) | If the score is 62-70, what are the high points? |
SELECT date FROM table_17118657_10 WHERE location_attendance = "UIC Pavilion 3,829" | CREATE TABLE table_17118657_10 (date VARCHAR, location_attendance VARCHAR) | On which date was the location/attendance UIC Pavilion 3,829 respectively? |
SELECT date FROM table_17118657_10 WHERE high_assists = "Dupree (6)" | CREATE TABLE table_17118657_10 (date VARCHAR, high_assists VARCHAR) | On which date is high assists Dupree (6)? |
SELECT local_investment__us$_ FROM table_17118006_2 WHERE bid_pronar_investment__us$_ = "912,185" | CREATE TABLE table_17118006_2 (local_investment__us$_ VARCHAR, bid_pronar_investment__us$_ VARCHAR) | What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment? |
SELECT MAX(farmers) FROM table_17118006_2 WHERE projects = 32 | CREATE TABLE table_17118006_2 (farmers INTEGER, projects VARCHAR) | How many farmers were included by the department with 32 projects? |
SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170 | CREATE TABLE table_17118006_2 (department VARCHAR, irrigated_ha VARCHAR) | What department irrigated 2170 Ha? |
SELECT bid_pronar_investment__us$_ FROM table_17118006_2 WHERE farmers = 1326 | CREATE TABLE table_17118006_2 (bid_pronar_investment__us$_ VARCHAR, farmers VARCHAR) | What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects? |
SELECT department FROM table_17118006_2 WHERE local_investment__us$_ = "626,798" | CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ VARCHAR) | What was the department that got $626,798 in local investments? |
SELECT MIN(game) FROM table_17118657_8 WHERE record = "5-11" | CREATE TABLE table_17118657_8 (game INTEGER, record VARCHAR) | What number was the game resulting in a 5-11 record? |
SELECT COUNT(high_assists) FROM table_17118657_8 WHERE score = "68-60" | CREATE TABLE table_17118657_8 (high_assists VARCHAR, score VARCHAR) | How many high assists are listed for the game with a score of 68-60? |
SELECT high_rebounds FROM table_17118657_8 WHERE record = "5-11" | CREATE TABLE table_17118657_8 (high_rebounds VARCHAR, record VARCHAR) | In the game resulting in a 5-11 record, who scored the high rebounds? |
SELECT opponent FROM table_17120964_8 WHERE result = "Won 4-1" | CREATE TABLE table_17120964_8 (opponent VARCHAR, result VARCHAR) | Who was the opponent of the game with final score won 4-1? |
SELECT MIN(attendance) FROM table_17120964_8 WHERE man_of_the_match = "Neil Liddiard" | CREATE TABLE table_17120964_8 (attendance INTEGER, man_of_the_match VARCHAR) | What was the attendance at the game where Neil Liddiard was Man of the Match? |
SELECT venue FROM table_17120964_8 WHERE result = "Lost 3-4" | CREATE TABLE table_17120964_8 (venue VARCHAR, result VARCHAR) | What was the venue of the game that was lost 3-4? |
SELECT venue FROM table_17120964_8 WHERE man_of_the_match = "Vaclav Zavoral" | CREATE TABLE table_17120964_8 (venue VARCHAR, man_of_the_match VARCHAR) | What is the venue of the game with Man of the Match Vaclav Zavoral? |
SELECT COUNT(attendance) FROM table_17120964_8 WHERE result = "Lost 5-3" | CREATE TABLE table_17120964_8 (attendance VARCHAR, result VARCHAR) | How many attendance figures are given for the game where the final score was lost 5-3? |
SELECT opponent FROM table_17120964_5 WHERE date = "4th" | CREATE TABLE table_17120964_5 (opponent VARCHAR, date VARCHAR) | Name the opponent for 4th |
SELECT venue FROM table_17120964_5 WHERE date = "19th" | CREATE TABLE table_17120964_5 (venue VARCHAR, date VARCHAR) | Name the venue for 19th date |
SELECT result FROM table_17120964_5 WHERE man_of_the_match = "Lukas Smital" AND venue = "Home" | CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR) | Name the result for lukas smital and home |
SELECT man_of_the_match FROM table_17120964_5 WHERE date = "24th" | CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, date VARCHAR) | Name the man of the match for 24th |
SELECT man_of_the_match FROM table_17120964_5 WHERE opponent = "Sheffield Scimitars" | CREATE TABLE table_17120964_5 (man_of_the_match VARCHAR, opponent VARCHAR) | Name the man of the maatch for sheffield scimitars |
SELECT venue FROM table_17120964_6 WHERE date = "19th" | CREATE TABLE table_17120964_6 (venue VARCHAR, date VARCHAR) | On the 19th, where was the venue? |
SELECT attendance FROM table_17120964_6 WHERE opponent = "Swindon Wildcats" AND venue = "Home" | CREATE TABLE table_17120964_6 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR) | What was the total attendance during the home game against the Swindon Wildcats? |
SELECT date FROM table_17120964_6 WHERE man_of_the_match = "Stuart Potts" | CREATE TABLE table_17120964_6 (date VARCHAR, man_of_the_match VARCHAR) | On what day was Stuart Potts the Man of the Match? |
SELECT venue FROM table_17120964_6 WHERE man_of_the_match = "Alex Mettam/Mark Williams" | CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR) | At what venue did Alex Mettam/Mark Williams be named Man of the Match? |
SELECT COUNT(date) FROM table_17120964_7 WHERE man_of_the_match = "David Savage" | CREATE TABLE table_17120964_7 (date VARCHAR, man_of_the_match VARCHAR) | How many dates did David Savage get man of the match? |
SELECT man_of_the_match FROM table_17120964_7 WHERE attendance = 1568 | CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, attendance VARCHAR) | When the attendance was 1568, who was man of the match? |
SELECT man_of_the_match FROM table_17120964_7 WHERE result = "Lost 2-4" | CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, result VARCHAR) | Who was the man of the match when they lost 2-4? |
SELECT competition FROM table_17120964_9 WHERE opponent = "Sheffield Scimitars" | CREATE TABLE table_17120964_9 (competition VARCHAR, opponent VARCHAR) | what was the competitoin where the opponent is sheffield scimitars? |
SELECT venue FROM table_17120964_9 WHERE attendance = "702" | CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR) | where was the venue where the attendance was 702? |
SELECT venue FROM table_17120964_9 WHERE date = "22nd" | CREATE TABLE table_17120964_9 (venue VARCHAR, date VARCHAR) | what was the venue where the date was the 22nd? |
SELECT opponent FROM table_17120964_9 WHERE date = "21st" | CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR) | who was the opponent where the date was the 21st? |
SELECT score FROM table_17121262_5 WHERE team = "Milwaukee" | CREATE TABLE table_17121262_5 (score VARCHAR, team VARCHAR) | What is the score for Milwaukee? |
SELECT COUNT(record) FROM table_17121262_10 WHERE team = "Washington" | CREATE TABLE table_17121262_10 (record VARCHAR, team VARCHAR) | What was the record against Washington? |
SELECT population FROM table_171236_1 WHERE census_ranking = "231 of 5,008" | CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR) | If the census ranking is 231 of 5,008, what was the population? |
SELECT official_name FROM table_171236_1 WHERE area_km_2 = "59.73" | CREATE TABLE table_171236_1 (official_name VARCHAR, area_km_2 VARCHAR) | If the area is 59.73, what is the official name? |
SELECT status FROM table_171236_1 WHERE census_ranking = "693 of 5,008" | CREATE TABLE table_171236_1 (status VARCHAR, census_ranking VARCHAR) | If the census ranking is 693 of 5,008, what is the status? |
SELECT census_ranking FROM table_171236_1 WHERE official_name = "Quispamsis" | CREATE TABLE table_171236_1 (census_ranking VARCHAR, official_name VARCHAR) | With the official name Quispamsis, what is the census ranking? |
SELECT population FROM table_171236_1 WHERE census_ranking = "782 of 5,008" | CREATE TABLE table_171236_1 (population VARCHAR, census_ranking VARCHAR) | What was the population for census ranking 782 of 5,008? |
SELECT census_ranking FROM table_171236_1 WHERE area_km_2 = "34.73" | CREATE TABLE table_171236_1 (census_ranking VARCHAR, area_km_2 VARCHAR) | If the area is 34.73, what is the census ranking? |
SELECT census_ranking FROM table_171250_2 WHERE population = 284 | CREATE TABLE table_171250_2 (census_ranking VARCHAR, population VARCHAR) | What are the census ranking(s) for a population of 284? |
SELECT census_ranking FROM table_171250_2 WHERE area_km_2 = "369.25" | CREATE TABLE table_171250_2 (census_ranking VARCHAR, area_km_2 VARCHAR) | What are the census ranking(s) that have an area of 369.25 km2? |
SELECT population FROM table_171250_2 WHERE area_km_2 = "715.58" | CREATE TABLE table_171250_2 (population VARCHAR, area_km_2 VARCHAR) | What is the population that has an area of 715.58? |
SELECT status FROM table_171250_2 WHERE official_name = "Saint-Jacques" | CREATE TABLE table_171250_2 (status VARCHAR, official_name VARCHAR) | What are that status(es) of saint-jacques? |
SELECT area_km_2 FROM table_171250_2 WHERE official_name = "Saint-Joseph" | CREATE TABLE table_171250_2 (area_km_2 VARCHAR, official_name VARCHAR) | What are the area(s) (km2) for saint-joseph? |
SELECT census_ranking FROM table_171356_2 WHERE area_km_2 = "482.81" | CREATE TABLE table_171356_2 (census_ranking VARCHAR, area_km_2 VARCHAR) | What rank is the parish with 482.81 km^2? |
SELECT status FROM table_171356_2 WHERE census_ranking = "2,290 of 5,008" | CREATE TABLE table_171356_2 (status VARCHAR, census_ranking VARCHAR) | What status doe the area with a census ranking of 2,290 of 5,008 have? |
SELECT COUNT(status) FROM table_171356_2 WHERE official_name = "Gagetown" | CREATE TABLE table_171356_2 (status VARCHAR, official_name VARCHAR) | How many statuses are listed for the parish officially named Gagetown? |
SELECT census_ranking FROM table_171356_2 WHERE official_name = "Petersville" | CREATE TABLE table_171356_2 (census_ranking VARCHAR, official_name VARCHAR) | What is Petersville's census ranking? |
SELECT population FROM table_171361_1 WHERE status = "City" | CREATE TABLE table_171361_1 (population VARCHAR, status VARCHAR) | What is the population of each community with city status? |
SELECT official_name FROM table_171361_1 WHERE area_km_2 = "30.75" | CREATE TABLE table_171361_1 (official_name VARCHAR, area_km_2 VARCHAR) | What is the name of the community with an area of 30.75 sq. km.? |
SELECT area_km_2 FROM table_171361_1 WHERE population = 1209 | CREATE TABLE table_171361_1 (area_km_2 VARCHAR, population VARCHAR) | What is the area of the community with a population of 1209? |
SELECT COUNT(population) FROM table_171361_1 WHERE area_km_2 = "10.25" | CREATE TABLE table_171361_1 (population VARCHAR, area_km_2 VARCHAR) | How many population values are listed for the community with an area of 10.25 sq.km.? |
SELECT region_1 FROM table_171320_3 WHERE region_4 = "April 2, 2009" | CREATE TABLE table_171320_3 (region_1 VARCHAR, region_4 VARCHAR) | Name the region 1 where region 4 for april 2, 2009 |
SELECT region_1 FROM table_171320_3 WHERE ep__number = 13 | CREATE TABLE table_171320_3 (region_1 VARCHAR, ep__number VARCHAR) | Name the region 1 for episode number 13 |
SELECT COUNT(series__number) FROM table_17152787_3 WHERE season__number = 1 | CREATE TABLE table_17152787_3 (series__number VARCHAR, season__number VARCHAR) | How many episodes have the season number of 1? |
SELECT director FROM table_17155250_1 WHERE original_title = "The Patience Stone" | CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR) | Who was the director of the film with the original title of "The Patience Stone"? |
SELECT year__ceremony_ FROM table_17155250_1 WHERE original_title = "Fire Dancer" | CREATE TABLE table_17155250_1 (year__ceremony_ VARCHAR, original_title VARCHAR) | For what ceremony was "Fire Dancer" not nominated? |
SELECT film_title_used_in_nomination FROM table_17155250_1 WHERE original_title = "The Black Tulip" | CREATE TABLE table_17155250_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | What name was used for nomination for the film with an original title of "The Black Tulip"? |
SELECT language_s_ FROM table_17155250_1 WHERE film_title_used_in_nomination = "FireDancer" | CREATE TABLE table_17155250_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR) | What languages were spoken in the film "FireDancer"? |
SELECT director FROM table_17155250_1 WHERE original_title = "16 Days in Afghanistan" | CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR) | Who was the director of the film with an original title of "16 Days in Afghanistan"? |
SELECT model FROM table_17157367_1 WHERE method = "HA" | CREATE TABLE table_17157367_1 (model VARCHAR, method VARCHAR) | what is the model where the method is ha? |
SELECT COUNT(model) FROM table_17157367_1 WHERE "status" = "status" AND name = "GenEva" | CREATE TABLE table_17157367_1 (model VARCHAR, name VARCHAR) | what is the total number of model wehre the status is named geneva? |
SELECT max_fs FROM table_17157367_1 WHERE "status" = "status" AND "method" = "method" | CREATE TABLE table_17157367_1 (max_fs VARCHAR) | what is the max fs where the status is status and the method is method? |
SELECT output FROM table_17157367_1 WHERE short_description = "massive" | CREATE TABLE table_17157367_1 (output VARCHAR, short_description VARCHAR) | what ist he output where the short description is massive? |
SELECT film_title_used_in_nomination FROM table_17156199_1 WHERE original_title = "শ্যামল ছায়া (Shyamol Chhaya)" | CREATE TABLE table_17156199_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | What was the nominated film title of শ্যামল ছায়া (shyamol chhaya)? |
SELECT year__ceremony_ FROM table_17156199_1 WHERE original_title = "বৃত্তের বাইরে (Britter Baire)" | CREATE TABLE table_17156199_1 (year__ceremony_ VARCHAR, original_title VARCHAR) | What year and ceremony was the original title বৃত্তের বাইরে (britter baire)? |
SELECT COUNT(year__ceremony_) FROM table_17156199_1 WHERE original_title = "স্বপ্নডানায় (Swopnodanay)" | CREATE TABLE table_17156199_1 (year__ceremony_ VARCHAR, original_title VARCHAR) | How many years was the original title was স্বপ্নডানায় (swopnodanay)? |
SELECT nickname FROM table_1715730_2 WHERE founded = 1902 | CREATE TABLE table_1715730_2 (nickname VARCHAR, founded VARCHAR) | what is the nickname founded in 1902? |
SELECT location FROM table_1715730_2 WHERE enrollment = 4259 | CREATE TABLE table_1715730_2 (location VARCHAR, enrollment VARCHAR) | where is the enrollment 4259? |
SELECT founded FROM table_1715730_2 WHERE institution = "Union University" | CREATE TABLE table_1715730_2 (founded VARCHAR, institution VARCHAR) | what is the year union university was founded? |
SELECT _percentage_2011 FROM table_1717824_1 WHERE province = "Manitoba" | CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, province VARCHAR) | What was the percentage in Manitoba in 2011? |
SELECT province FROM table_1717824_1 WHERE south_asians_2001 = 210295 | CREATE TABLE table_1717824_1 (province VARCHAR, south_asians_2001 VARCHAR) | Which province had population of 210295 South Asians in 2001? |
SELECT south_asians_2001 FROM table_1717824_1 WHERE province = "Nova Scotia" | CREATE TABLE table_1717824_1 (south_asians_2001 VARCHAR, province VARCHAR) | What was the South Asian population in Nova Scotia in 2001? |
SELECT _percentage_2011 FROM table_1717824_1 WHERE _percentage_2001 = "2.4%" | CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, _percentage_2001 VARCHAR) | What was the percentage in 2011 of the province that had 2.4% population in 2001? |
SELECT COUNT(south_asians_2001) FROM table_1717824_1 WHERE _percentage_2011 = "4.4%" | CREATE TABLE table_1717824_1 (south_asians_2001 VARCHAR, _percentage_2011 VARCHAR) | How many figures are given for total number of South Asians in 2001 for the area where they were 4.4% of population in 2011? |
SELECT indians_admitted FROM table_1717824_3 WHERE year = 2001 | CREATE TABLE table_1717824_3 (indians_admitted VARCHAR, year VARCHAR) | How many Indians were admitted in 2001? |
SELECT MAX(pakistanis_admitted) FROM table_1717824_3 WHERE nepalis_admitted = 627 | CREATE TABLE table_1717824_3 (pakistanis_admitted INTEGER, nepalis_admitted VARCHAR) | What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627? |
SELECT MIN(indians_admitted) FROM table_1717824_3 WHERE sri_lankans_admitted = 3104 | CREATE TABLE table_1717824_3 (indians_admitted INTEGER, sri_lankans_admitted VARCHAR) | What is the most number of Indians admitted to Canada when the number of Sri Lankans admitted was 3104? |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.