question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What joined year does Dropped Athletics have? | CREATE TABLE table_1973729_2 (joined INTEGER, current_conference VARCHAR) | SELECT MAX(joined) FROM table_1973729_2 WHERE current_conference = "Dropped athletics" | ### Context: CREATE TABLE table_1973729_2 (joined INTEGER, current_conference VARCHAR) ### Question: What joined year does Dropped Athletics have? ### Answer: SELECT MAX(joined) FROM table_1973729_2 WHERE current_conference = "Dropped athletics" |
What is the latest founded year? | CREATE TABLE table_1973729_2 (founded INTEGER) | SELECT MAX(founded) FROM table_1973729_2 | ### Context: CREATE TABLE table_1973729_2 (founded INTEGER) ### Question: What is the latest founded year? ### Answer: SELECT MAX(founded) FROM table_1973729_2 |
What institution is located in Watertown, Wisconsin? | CREATE TABLE table_1974443_1 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_1974443_1 WHERE location = "Watertown, Wisconsin" | ### Context: CREATE TABLE table_1974443_1 (institution VARCHAR, location VARCHAR) ### Question: What institution is located in Watertown, Wisconsin? ### Answer: SELECT institution FROM table_1974443_1 WHERE location = "Watertown, Wisconsin" |
What is the smallest enrollment for institutions founded in exactly 1880? | CREATE TABLE table_1974443_1 (enrollment INTEGER, founded VARCHAR) | SELECT MIN(enrollment) FROM table_1974443_1 WHERE founded = 1880 | ### Context: CREATE TABLE table_1974443_1 (enrollment INTEGER, founded VARCHAR) ### Question: What is the smallest enrollment for institutions founded in exactly 1880? ### Answer: SELECT MIN(enrollment) FROM table_1974443_1 WHERE founded = 1880 |
What is the enrollment for Lakeland College? | CREATE TABLE table_1974443_1 (enrollment VARCHAR, institution VARCHAR) | SELECT enrollment FROM table_1974443_1 WHERE institution = "Lakeland College" | ### Context: CREATE TABLE table_1974443_1 (enrollment VARCHAR, institution VARCHAR) ### Question: What is the enrollment for Lakeland College? ### Answer: SELECT enrollment FROM table_1974443_1 WHERE institution = "Lakeland College" |
What is the maximum enrollment for Concordia University? | CREATE TABLE table_1974443_1 (enrollment INTEGER, institution VARCHAR) | SELECT MAX(enrollment) FROM table_1974443_1 WHERE institution = "Concordia University" | ### Context: CREATE TABLE table_1974443_1 (enrollment INTEGER, institution VARCHAR) ### Question: What is the maximum enrollment for Concordia University? ### Answer: SELECT MAX(enrollment) FROM table_1974443_1 WHERE institution = "Concordia University" |
What couple had a total score of 6? | CREATE TABLE table_19744915_15 (couple VARCHAR, total VARCHAR) | SELECT couple FROM table_19744915_15 WHERE total = 6 | ### Context: CREATE TABLE table_19744915_15 (couple VARCHAR, total VARCHAR) ### Question: What couple had a total score of 6? ### Answer: SELECT couple FROM table_19744915_15 WHERE total = 6 |
What is the lowest rank? | CREATE TABLE table_19744915_15 (rank INTEGER) | SELECT MIN(rank) FROM table_19744915_15 | ### Context: CREATE TABLE table_19744915_15 (rank INTEGER) ### Question: What is the lowest rank? ### Answer: SELECT MIN(rank) FROM table_19744915_15 |
What couple had a vote percentage of 7.691% | CREATE TABLE table_19744915_15 (couple VARCHAR, vote_percentage VARCHAR) | SELECT couple FROM table_19744915_15 WHERE vote_percentage = "7.691%" | ### Context: CREATE TABLE table_19744915_15 (couple VARCHAR, vote_percentage VARCHAR) ### Question: What couple had a vote percentage of 7.691% ### Answer: SELECT couple FROM table_19744915_15 WHERE vote_percentage = "7.691%" |
How many results do Ellery and Frankie have? | CREATE TABLE table_19744915_15 (result VARCHAR, couple VARCHAR) | SELECT COUNT(result) FROM table_19744915_15 WHERE couple = "Ellery and Frankie" | ### Context: CREATE TABLE table_19744915_15 (result VARCHAR, couple VARCHAR) ### Question: How many results do Ellery and Frankie have? ### Answer: SELECT COUNT(result) FROM table_19744915_15 WHERE couple = "Ellery and Frankie" |
What is Michael and Melanie's rank? | CREATE TABLE table_19744915_15 (rank VARCHAR, couple VARCHAR) | SELECT rank FROM table_19744915_15 WHERE couple = "Michael and Melanie" | ### Context: CREATE TABLE table_19744915_15 (rank VARCHAR, couple VARCHAR) ### Question: What is Michael and Melanie's rank? ### Answer: SELECT rank FROM table_19744915_15 WHERE couple = "Michael and Melanie" |
What is Zoe and Matt's rank? | CREATE TABLE table_19744915_16 (rank VARCHAR, couple VARCHAR) | SELECT rank FROM table_19744915_16 WHERE couple = "Zoe and Matt" | ### Context: CREATE TABLE table_19744915_16 (rank VARCHAR, couple VARCHAR) ### Question: What is Zoe and Matt's rank? ### Answer: SELECT rank FROM table_19744915_16 WHERE couple = "Zoe and Matt" |
What is the judge's total for Roxanne and Daniel? | CREATE TABLE table_19744915_16 (judges VARCHAR, couple VARCHAR) | SELECT judges FROM table_19744915_16 WHERE couple = "Roxanne and Daniel" | ### Context: CREATE TABLE table_19744915_16 (judges VARCHAR, couple VARCHAR) ### Question: What is the judge's total for Roxanne and Daniel? ### Answer: SELECT judges FROM table_19744915_16 WHERE couple = "Roxanne and Daniel" |
What is Zoe and Matt's result? | CREATE TABLE table_19744915_16 (result VARCHAR, couple VARCHAR) | SELECT result FROM table_19744915_16 WHERE couple = "Zoe and Matt" | ### Context: CREATE TABLE table_19744915_16 (result VARCHAR, couple VARCHAR) ### Question: What is Zoe and Matt's result? ### Answer: SELECT result FROM table_19744915_16 WHERE couple = "Zoe and Matt" |
What is the result of judge 6? | CREATE TABLE table_19744915_16 (result VARCHAR, judges VARCHAR) | SELECT result FROM table_19744915_16 WHERE judges = 6 | ### Context: CREATE TABLE table_19744915_16 (result VARCHAR, judges VARCHAR) ### Question: What is the result of judge 6? ### Answer: SELECT result FROM table_19744915_16 WHERE judges = 6 |
what is the order when public vote was 18.155% | CREATE TABLE table_19744915_3 (order VARCHAR, public_vote VARCHAR) | SELECT order FROM table_19744915_3 WHERE public_vote = "18.155%" | ### Context: CREATE TABLE table_19744915_3 (order VARCHAR, public_vote VARCHAR) ### Question: what is the order when public vote was 18.155% ### Answer: SELECT order FROM table_19744915_3 WHERE public_vote = "18.155%" |
what is the public vote on graeme & kristina | CREATE TABLE table_19744915_3 (public_vote VARCHAR, couple VARCHAR) | SELECT public_vote FROM table_19744915_3 WHERE couple = "Graeme & Kristina" | ### Context: CREATE TABLE table_19744915_3 (public_vote VARCHAR, couple VARCHAR) ### Question: what is the public vote on graeme & kristina ### Answer: SELECT public_vote FROM table_19744915_3 WHERE couple = "Graeme & Kristina" |
what is robin's stat when jason was 2.5 | CREATE TABLE table_19744915_3 (robin VARCHAR, jason VARCHAR) | SELECT robin FROM table_19744915_3 WHERE jason = "2.5" | ### Context: CREATE TABLE table_19744915_3 (robin VARCHAR, jason VARCHAR) ### Question: what is robin's stat when jason was 2.5 ### Answer: SELECT robin FROM table_19744915_3 WHERE jason = "2.5" |
state the skating song of graeme & kristina | CREATE TABLE table_19744915_3 (skating_song VARCHAR, couple VARCHAR) | SELECT skating_song FROM table_19744915_3 WHERE couple = "Graeme & Kristina" | ### Context: CREATE TABLE table_19744915_3 (skating_song VARCHAR, couple VARCHAR) ### Question: state the skating song of graeme & kristina ### Answer: SELECT skating_song FROM table_19744915_3 WHERE couple = "Graeme & Kristina" |
what is the scoreboard when karen was 4.5 | CREATE TABLE table_19744915_3 (scoreboard VARCHAR, karen VARCHAR) | SELECT scoreboard FROM table_19744915_3 WHERE karen = "4.5" | ### Context: CREATE TABLE table_19744915_3 (scoreboard VARCHAR, karen VARCHAR) ### Question: what is the scoreboard when karen was 4.5 ### Answer: SELECT scoreboard FROM table_19744915_3 WHERE karen = "4.5" |
how many coupless totalled 14.5 | CREATE TABLE table_19744915_3 (couple VARCHAR, total VARCHAR) | SELECT COUNT(couple) FROM table_19744915_3 WHERE total = "14.5" | ### Context: CREATE TABLE table_19744915_3 (couple VARCHAR, total VARCHAR) ### Question: how many coupless totalled 14.5 ### Answer: SELECT COUNT(couple) FROM table_19744915_3 WHERE total = "14.5" |
Name the nickname for enrollment being 9000 | CREATE TABLE table_1974545_1 (nickname VARCHAR, enrollment VARCHAR) | SELECT nickname FROM table_1974545_1 WHERE enrollment = 9000 | ### Context: CREATE TABLE table_1974545_1 (nickname VARCHAR, enrollment VARCHAR) ### Question: Name the nickname for enrollment being 9000 ### Answer: SELECT nickname FROM table_1974545_1 WHERE enrollment = 9000 |
what type is the institute that enrolled 2102 | CREATE TABLE table_1974632_1 (type VARCHAR, enrollment VARCHAR) | SELECT type FROM table_1974632_1 WHERE enrollment = 2102 | ### Context: CREATE TABLE table_1974632_1 (type VARCHAR, enrollment VARCHAR) ### Question: what type is the institute that enrolled 2102 ### Answer: SELECT type FROM table_1974632_1 WHERE enrollment = 2102 |
where is the private/presbyterian institute | CREATE TABLE table_1974632_1 (location VARCHAR, type VARCHAR) | SELECT location FROM table_1974632_1 WHERE type = "Private/Presbyterian" | ### Context: CREATE TABLE table_1974632_1 (location VARCHAR, type VARCHAR) ### Question: where is the private/presbyterian institute ### Answer: SELECT location FROM table_1974632_1 WHERE type = "Private/Presbyterian" |
what type of institution is alvernia university | CREATE TABLE table_1974632_1 (type VARCHAR, institution VARCHAR) | SELECT type FROM table_1974632_1 WHERE institution = "Alvernia University" | ### Context: CREATE TABLE table_1974632_1 (type VARCHAR, institution VARCHAR) ### Question: what type of institution is alvernia university ### Answer: SELECT type FROM table_1974632_1 WHERE institution = "Alvernia University" |
state the institution in glenside, pennsylvania | CREATE TABLE table_1974632_1 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_1974632_1 WHERE location = "Glenside, Pennsylvania" | ### Context: CREATE TABLE table_1974632_1 (institution VARCHAR, location VARCHAR) ### Question: state the institution in glenside, pennsylvania ### Answer: SELECT institution FROM table_1974632_1 WHERE location = "Glenside, Pennsylvania" |
What was the result when John Barrow was the incumbent first elected in 2004? | CREATE TABLE table_19753079_13 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT result FROM table_19753079_13 WHERE first_elected = 2004 AND incumbent = "John Barrow" | ### Context: CREATE TABLE table_19753079_13 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What was the result when John Barrow was the incumbent first elected in 2004? ### Answer: SELECT result FROM table_19753079_13 WHERE first_elected = 2004 AND incumbent = "John Barrow" |
How many incumbents are there in the georgia 8 district when the party is democratic? | CREATE TABLE table_19753079_13 (incumbent VARCHAR, party VARCHAR, district VARCHAR) | SELECT COUNT(incumbent) FROM table_19753079_13 WHERE party = "Democratic" AND district = "Georgia 8" | ### Context: CREATE TABLE table_19753079_13 (incumbent VARCHAR, party VARCHAR, district VARCHAR) ### Question: How many incumbents are there in the georgia 8 district when the party is democratic? ### Answer: SELECT COUNT(incumbent) FROM table_19753079_13 WHERE party = "Democratic" AND district = "Georgia 8" |
In what district is the incumbent John Linder? | CREATE TABLE table_19753079_13 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_19753079_13 WHERE incumbent = "John Linder" | ### Context: CREATE TABLE table_19753079_13 (district VARCHAR, incumbent VARCHAR) ### Question: In what district is the incumbent John Linder? ### Answer: SELECT district FROM table_19753079_13 WHERE incumbent = "John Linder" |
What was the result of the Georgia 8 district? | CREATE TABLE table_19753079_13 (result VARCHAR, district VARCHAR) | SELECT result FROM table_19753079_13 WHERE district = "Georgia 8" | ### Context: CREATE TABLE table_19753079_13 (result VARCHAR, district VARCHAR) ### Question: What was the result of the Georgia 8 district? ### Answer: SELECT result FROM table_19753079_13 WHERE district = "Georgia 8" |
What is the mind of the one that has qut reason? | CREATE TABLE table_19760_1 (mind VARCHAR, reason VARCHAR) | SELECT mind FROM table_19760_1 WHERE reason = "qut" | ### Context: CREATE TABLE table_19760_1 (mind VARCHAR, reason VARCHAR) ### Question: What is the mind of the one that has qut reason? ### Answer: SELECT mind FROM table_19760_1 WHERE reason = "qut" |
What is the understanding of the one that has νοῦς nous reasoning? | CREATE TABLE table_19760_1 (understanding VARCHAR, reason VARCHAR) | SELECT understanding FROM table_19760_1 WHERE reason = "νοῦς Nous" | ### Context: CREATE TABLE table_19760_1 (understanding VARCHAR, reason VARCHAR) ### Question: What is the understanding of the one that has νοῦς nous reasoning? ### Answer: SELECT understanding FROM table_19760_1 WHERE reason = "νοῦς Nous" |
How much was spent in 1949/50 (in $ millions) in the country where the cumulative expenditure is $376 millions? | CREATE TABLE table_19766_1 (cumulative__$_millions_ VARCHAR) | SELECT MIN(1949 AS _50__) AS $_millions_ FROM table_19766_1 WHERE cumulative__$_millions_ = 376 | ### Context: CREATE TABLE table_19766_1 (cumulative__$_millions_ VARCHAR) ### Question: How much was spent in 1949/50 (in $ millions) in the country where the cumulative expenditure is $376 millions? ### Answer: SELECT MIN(1949 AS _50__) AS $_millions_ FROM table_19766_1 WHERE cumulative__$_millions_ = 376 |
How many millions of $ were spent in Iceland in 1948/49? | CREATE TABLE table_19766_1 (country VARCHAR) | SELECT MAX(1948 AS _49__) AS $_millions_ FROM table_19766_1 WHERE country = "Iceland" | ### Context: CREATE TABLE table_19766_1 (country VARCHAR) ### Question: How many millions of $ were spent in Iceland in 1948/49? ### Answer: SELECT MAX(1948 AS _49__) AS $_millions_ FROM table_19766_1 WHERE country = "Iceland" |
Name the total number for % popular vote for # of seats won for 83 | CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR) | SELECT COUNT(_percentage_of_popular_vote) FROM table_19769687_3 WHERE _number_of_seats_won = 83 | ### Context: CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR) ### Question: Name the total number for % popular vote for # of seats won for 83 ### Answer: SELECT COUNT(_percentage_of_popular_vote) FROM table_19769687_3 WHERE _number_of_seats_won = 83 |
Name the % of popular vote for election for 1926 | CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, election VARCHAR) | SELECT _percentage_of_popular_vote FROM table_19769687_3 WHERE election = "1926" | ### Context: CREATE TABLE table_19769687_3 (_percentage_of_popular_vote VARCHAR, election VARCHAR) ### Question: Name the % of popular vote for election for 1926 ### Answer: SELECT _percentage_of_popular_vote FROM table_19769687_3 WHERE election = "1926" |
Name the most # of seats won | CREATE TABLE table_19769687_3 (_number_of_seats_won INTEGER) | SELECT MAX(_number_of_seats_won) FROM table_19769687_3 | ### Context: CREATE TABLE table_19769687_3 (_number_of_seats_won INTEGER) ### Question: Name the most # of seats won ### Answer: SELECT MAX(_number_of_seats_won) FROM table_19769687_3 |
Name the most number of total votes for election for 1878 | CREATE TABLE table_19769687_3 (_number_of_total_votes INTEGER, election VARCHAR) | SELECT MAX(_number_of_total_votes) FROM table_19769687_3 WHERE election = "1878" | ### Context: CREATE TABLE table_19769687_3 (_number_of_total_votes INTEGER, election VARCHAR) ### Question: Name the most number of total votes for election for 1878 ### Answer: SELECT MAX(_number_of_total_votes) FROM table_19769687_3 WHERE election = "1878" |
What is the number for the french open 1974? | CREATE TABLE table_197638_7 (_number INTEGER, french_open VARCHAR) | SELECT MAX(_number) FROM table_197638_7 WHERE french_open = 1974 | ### Context: CREATE TABLE table_197638_7 (_number INTEGER, french_open VARCHAR) ### Question: What is the number for the french open 1974? ### Answer: SELECT MAX(_number) FROM table_197638_7 WHERE french_open = 1974 |
When was the Australian open? | CREATE TABLE table_197638_7 (australian_open INTEGER) | SELECT MAX(australian_open) FROM table_197638_7 | ### Context: CREATE TABLE table_197638_7 (australian_open INTEGER) ### Question: When was the Australian open? ### Answer: SELECT MAX(australian_open) FROM table_197638_7 |
How many ages have Maureen Connolly Brinker as the player? | CREATE TABLE table_197638_7 (age VARCHAR, player VARCHAR) | SELECT COUNT(age) FROM table_197638_7 WHERE player = "Maureen Connolly Brinker" | ### Context: CREATE TABLE table_197638_7 (age VARCHAR, player VARCHAR) ### Question: How many ages have Maureen Connolly Brinker as the player? ### Answer: SELECT COUNT(age) FROM table_197638_7 WHERE player = "Maureen Connolly Brinker" |
When is the French Open when serena williams is the player? | CREATE TABLE table_197638_7 (french_open INTEGER, player VARCHAR) | SELECT MIN(french_open) FROM table_197638_7 WHERE player = "Serena Williams" | ### Context: CREATE TABLE table_197638_7 (french_open INTEGER, player VARCHAR) ### Question: When is the French Open when serena williams is the player? ### Answer: SELECT MIN(french_open) FROM table_197638_7 WHERE player = "Serena Williams" |
how many dismissals in a game with 191 innings | CREATE TABLE table_19769948_26 (dismissals VARCHAR, innings VARCHAR) | SELECT COUNT(dismissals) FROM table_19769948_26 WHERE innings = 191 | ### Context: CREATE TABLE table_19769948_26 (dismissals VARCHAR, innings VARCHAR) ### Question: how many dismissals in a game with 191 innings ### Answer: SELECT COUNT(dismissals) FROM table_19769948_26 WHERE innings = 191 |
How many residence cities have an English name of Province of Viborg and Nyslott? | CREATE TABLE table_198175_2 (residence_city VARCHAR, english_name VARCHAR) | SELECT COUNT(residence_city) FROM table_198175_2 WHERE english_name = "Province of Viborg and Nyslott" | ### Context: CREATE TABLE table_198175_2 (residence_city VARCHAR, english_name VARCHAR) ### Question: How many residence cities have an English name of Province of Viborg and Nyslott? ### Answer: SELECT COUNT(residence_city) FROM table_198175_2 WHERE english_name = "Province of Viborg and Nyslott" |
What is the highest value for map number? | CREATE TABLE table_198175_2 (map_number INTEGER) | SELECT MAX(map_number) FROM table_198175_2 | ### Context: CREATE TABLE table_198175_2 (map_number INTEGER) ### Question: What is the highest value for map number? ### Answer: SELECT MAX(map_number) FROM table_198175_2 |
What is every Swedish name for residence city is Loviisa? | CREATE TABLE table_198175_2 (swedish_name VARCHAR, residence_city VARCHAR) | SELECT swedish_name FROM table_198175_2 WHERE residence_city = "Loviisa" | ### Context: CREATE TABLE table_198175_2 (swedish_name VARCHAR, residence_city VARCHAR) ### Question: What is every Swedish name for residence city is Loviisa? ### Answer: SELECT swedish_name FROM table_198175_2 WHERE residence_city = "Loviisa" |
What is every Finnish name for the English name of Province of Viborg and Nyslott? | CREATE TABLE table_198175_2 (finnish_name VARCHAR, english_name VARCHAR) | SELECT finnish_name FROM table_198175_2 WHERE english_name = "Province of Viborg and Nyslott" | ### Context: CREATE TABLE table_198175_2 (finnish_name VARCHAR, english_name VARCHAR) ### Question: What is every Finnish name for the English name of Province of Viborg and Nyslott? ### Answer: SELECT finnish_name FROM table_198175_2 WHERE english_name = "Province of Viborg and Nyslott" |
What is the traditional Chinese character set for the location that has an area of 181? | CREATE TABLE table_1982739_2 (traditional_chinese VARCHAR, area VARCHAR) | SELECT traditional_chinese FROM table_1982739_2 WHERE area = 181 | ### Context: CREATE TABLE table_1982739_2 (traditional_chinese VARCHAR, area VARCHAR) ### Question: What is the traditional Chinese character set for the location that has an area of 181? ### Answer: SELECT traditional_chinese FROM table_1982739_2 WHERE area = 181 |
What is the total number of areas that are called Nanqiao District? | CREATE TABLE table_1982739_2 (area VARCHAR, english_name VARCHAR) | SELECT COUNT(area) FROM table_1982739_2 WHERE english_name = "Nanqiao District" | ### Context: CREATE TABLE table_1982739_2 (area VARCHAR, english_name VARCHAR) ### Question: What is the total number of areas that are called Nanqiao District? ### Answer: SELECT COUNT(area) FROM table_1982739_2 WHERE english_name = "Nanqiao District" |
What is the number of English names that have a Traditional Chinese name of 全椒縣? | CREATE TABLE table_1982739_2 (english_name VARCHAR, traditional_chinese VARCHAR) | SELECT COUNT(english_name) FROM table_1982739_2 WHERE traditional_chinese = "全椒縣" | ### Context: CREATE TABLE table_1982739_2 (english_name VARCHAR, traditional_chinese VARCHAR) ### Question: What is the number of English names that have a Traditional Chinese name of 全椒縣? ### Answer: SELECT COUNT(english_name) FROM table_1982739_2 WHERE traditional_chinese = "全椒縣" |
What is the Pinyin name for Dingyuan County? | CREATE TABLE table_1982739_2 (pinyin VARCHAR, english_name VARCHAR) | SELECT pinyin FROM table_1982739_2 WHERE english_name = "Dingyuan County" | ### Context: CREATE TABLE table_1982739_2 (pinyin VARCHAR, english_name VARCHAR) ### Question: What is the Pinyin name for Dingyuan County? ### Answer: SELECT pinyin FROM table_1982739_2 WHERE english_name = "Dingyuan County" |
What are Doug Davis' maximum pitching stats? | CREATE TABLE table_19839391_3 (stats INTEGER, pitcher VARCHAR) | SELECT MAX(stats) FROM table_19839391_3 WHERE pitcher = "Doug Davis" | ### Context: CREATE TABLE table_19839391_3 (stats INTEGER, pitcher VARCHAR) ### Question: What are Doug Davis' maximum pitching stats? ### Answer: SELECT MAX(stats) FROM table_19839391_3 WHERE pitcher = "Doug Davis" |
List the pitchers for the 1970 season | CREATE TABLE table_19839391_3 (pitcher VARCHAR, seasons VARCHAR) | SELECT pitcher FROM table_19839391_3 WHERE seasons = "1970" | ### Context: CREATE TABLE table_19839391_3 (pitcher VARCHAR, seasons VARCHAR) ### Question: List the pitchers for the 1970 season ### Answer: SELECT pitcher FROM table_19839391_3 WHERE seasons = "1970" |
How many wins had a win percentage of 0.667 | CREATE TABLE table_19839391_3 (wins VARCHAR, winning__percentage VARCHAR) | SELECT wins FROM table_19839391_3 WHERE winning__percentage = "0.667" | ### Context: CREATE TABLE table_19839391_3 (wins VARCHAR, winning__percentage VARCHAR) ### Question: How many wins had a win percentage of 0.667 ### Answer: SELECT wins FROM table_19839391_3 WHERE winning__percentage = "0.667" |
how many "no decisions" are there with 3 wins and a win percentage of 1.000? | CREATE TABLE table_19839391_3 (no_decisions INTEGER, winning__percentage VARCHAR, wins VARCHAR) | SELECT MIN(no_decisions) FROM table_19839391_3 WHERE winning__percentage = "1.000" AND wins = 3 | ### Context: CREATE TABLE table_19839391_3 (no_decisions INTEGER, winning__percentage VARCHAR, wins VARCHAR) ### Question: how many "no decisions" are there with 3 wins and a win percentage of 1.000? ### Answer: SELECT MIN(no_decisions) FROM table_19839391_3 WHERE winning__percentage = "1.000" AND wins = 3 |
stae the least number of wins in 1986 | CREATE TABLE table_19864214_3 (wins INTEGER, seasons VARCHAR) | SELECT MIN(wins) FROM table_19864214_3 WHERE seasons = "1986" | ### Context: CREATE TABLE table_19864214_3 (wins INTEGER, seasons VARCHAR) ### Question: stae the least number of wins in 1986 ### Answer: SELECT MIN(wins) FROM table_19864214_3 WHERE seasons = "1986" |
what is the least number of no decisions for scott feldman category:articles with hcards | CREATE TABLE table_19864214_3 (no_decisions INTEGER, pitcher VARCHAR) | SELECT MIN(no_decisions) FROM table_19864214_3 WHERE pitcher = "Scott Feldman Category:Articles with hCards" | ### Context: CREATE TABLE table_19864214_3 (no_decisions INTEGER, pitcher VARCHAR) ### Question: what is the least number of no decisions for scott feldman category:articles with hcards ### Answer: SELECT MIN(no_decisions) FROM table_19864214_3 WHERE pitcher = "Scott Feldman Category:Articles with hCards" |
what is the number of starts in 1977 | CREATE TABLE table_19864214_3 (starts VARCHAR, seasons VARCHAR) | SELECT starts FROM table_19864214_3 WHERE seasons = "1977" | ### Context: CREATE TABLE table_19864214_3 (starts VARCHAR, seasons VARCHAR) ### Question: what is the number of starts in 1977 ### Answer: SELECT starts FROM table_19864214_3 WHERE seasons = "1977" |
who was the pitcher in seasons 1982, 1984, 1985, 1987, 1988, 1989 | CREATE TABLE table_19864214_3 (pitcher VARCHAR, seasons VARCHAR) | SELECT pitcher FROM table_19864214_3 WHERE seasons = "1982, 1984, 1985, 1987, 1988, 1989" | ### Context: CREATE TABLE table_19864214_3 (pitcher VARCHAR, seasons VARCHAR) ### Question: who was the pitcher in seasons 1982, 1984, 1985, 1987, 1988, 1989 ### Answer: SELECT pitcher FROM table_19864214_3 WHERE seasons = "1982, 1984, 1985, 1987, 1988, 1989" |
how many wins did pitcher jon matlack category:articles with hcards achieve | CREATE TABLE table_19864214_3 (wins VARCHAR, pitcher VARCHAR) | SELECT COUNT(wins) FROM table_19864214_3 WHERE pitcher = "Jon Matlack Category:Articles with hCards" | ### Context: CREATE TABLE table_19864214_3 (wins VARCHAR, pitcher VARCHAR) ### Question: how many wins did pitcher jon matlack category:articles with hcards achieve ### Answer: SELECT COUNT(wins) FROM table_19864214_3 WHERE pitcher = "Jon Matlack Category:Articles with hCards" |
How many series are there total? | CREATE TABLE table_19897294_4 (no_in_series INTEGER) | SELECT MAX(no_in_series) FROM table_19897294_4 | ### Context: CREATE TABLE table_19897294_4 (no_in_series INTEGER) ### Question: How many series are there total? ### Answer: SELECT MAX(no_in_series) FROM table_19897294_4 |
What family had a no.overall of UK10? | CREATE TABLE table_19897294_4 (family_families VARCHAR, no_overall VARCHAR) | SELECT family_families FROM table_19897294_4 WHERE no_overall = "UK10" | ### Context: CREATE TABLE table_19897294_4 (family_families VARCHAR, no_overall VARCHAR) ### Question: What family had a no.overall of UK10? ### Answer: SELECT family_families FROM table_19897294_4 WHERE no_overall = "UK10" |
What's the highest division number through the years? | CREATE TABLE table_1990460_1 (division INTEGER) | SELECT MAX(division) FROM table_1990460_1 | ### Context: CREATE TABLE table_1990460_1 (division INTEGER) ### Question: What's the highest division number through the years? ### Answer: SELECT MAX(division) FROM table_1990460_1 |
What's the lowest division number of the 6th, Great Lakes season? | CREATE TABLE table_1990460_1 (division INTEGER, regular_season VARCHAR) | SELECT MIN(division) FROM table_1990460_1 WHERE regular_season = "6th, Great Lakes" | ### Context: CREATE TABLE table_1990460_1 (division INTEGER, regular_season VARCHAR) ### Question: What's the lowest division number of the 6th, Great Lakes season? ### Answer: SELECT MIN(division) FROM table_1990460_1 WHERE regular_season = "6th, Great Lakes" |
What's the team's status in the Open Cup in 2006? | CREATE TABLE table_1990460_1 (open_cup VARCHAR, year VARCHAR) | SELECT open_cup FROM table_1990460_1 WHERE year = 2006 | ### Context: CREATE TABLE table_1990460_1 (open_cup VARCHAR, year VARCHAR) ### Question: What's the team's status in the Open Cup in 2006? ### Answer: SELECT open_cup FROM table_1990460_1 WHERE year = 2006 |
When did the 4th, Midwest season happen? | CREATE TABLE table_1990460_1 (year VARCHAR, regular_season VARCHAR) | SELECT year FROM table_1990460_1 WHERE regular_season = "4th, Midwest" | ### Context: CREATE TABLE table_1990460_1 (year VARCHAR, regular_season VARCHAR) ### Question: When did the 4th, Midwest season happen? ### Answer: SELECT year FROM table_1990460_1 WHERE regular_season = "4th, Midwest" |
how many spokesperson where in 2004 | CREATE TABLE table_1992924_3 (spokesperson VARCHAR, year_s_ VARCHAR) | SELECT COUNT(spokesperson) FROM table_1992924_3 WHERE year_s_ = 2004 | ### Context: CREATE TABLE table_1992924_3 (spokesperson VARCHAR, year_s_ VARCHAR) ### Question: how many spokesperson where in 2004 ### Answer: SELECT COUNT(spokesperson) FROM table_1992924_3 WHERE year_s_ = 2004 |
who is the dual commentator at the channel with spokesperson larisa verbickaya | CREATE TABLE table_1992924_3 (Dual VARCHAR, spokesperson VARCHAR) | SELECT Dual AS commentator FROM table_1992924_3 WHERE spokesperson = "Larisa Verbickaya" | ### Context: CREATE TABLE table_1992924_3 (Dual VARCHAR, spokesperson VARCHAR) ### Question: who is the dual commentator at the channel with spokesperson larisa verbickaya ### Answer: SELECT Dual AS commentator FROM table_1992924_3 WHERE spokesperson = "Larisa Verbickaya" |
state all the spokesperson for the channel where commentator is dmitriy guberniyev | CREATE TABLE table_1992924_3 (spokesperson VARCHAR, commentator VARCHAR) | SELECT spokesperson FROM table_1992924_3 WHERE commentator = "Dmitriy Guberniyev" | ### Context: CREATE TABLE table_1992924_3 (spokesperson VARCHAR, commentator VARCHAR) ### Question: state all the spokesperson for the channel where commentator is dmitriy guberniyev ### Answer: SELECT spokesperson FROM table_1992924_3 WHERE commentator = "Dmitriy Guberniyev" |
When is the first broadcast for episodes where Rufus's guest is Jack Whitehall? | CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, rufus_guest VARCHAR) | SELECT first_broadcast FROM table_19930660_3 WHERE rufus_guest = "Jack Whitehall" | ### Context: CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, rufus_guest VARCHAR) ### Question: When is the first broadcast for episodes where Rufus's guest is Jack Whitehall? ### Answer: SELECT first_broadcast FROM table_19930660_3 WHERE rufus_guest = "Jack Whitehall" |
Which episodes have Chris Addison as Rufus's guest? | CREATE TABLE table_19930660_3 (episode VARCHAR, rufus_guest VARCHAR) | SELECT episode FROM table_19930660_3 WHERE rufus_guest = "Chris Addison" | ### Context: CREATE TABLE table_19930660_3 (episode VARCHAR, rufus_guest VARCHAR) ### Question: Which episodes have Chris Addison as Rufus's guest? ### Answer: SELECT episode FROM table_19930660_3 WHERE rufus_guest = "Chris Addison" |
What is the resulting score for the episodes where Rufus's guest is Sean Lock? | CREATE TABLE table_19930660_3 (winner VARCHAR, rufus_guest VARCHAR) | SELECT winner FROM table_19930660_3 WHERE rufus_guest = "Sean Lock" | ### Context: CREATE TABLE table_19930660_3 (winner VARCHAR, rufus_guest VARCHAR) ### Question: What is the resulting score for the episodes where Rufus's guest is Sean Lock? ### Answer: SELECT winner FROM table_19930660_3 WHERE rufus_guest = "Sean Lock" |
What is the first broadcast date for episode 3x10? | CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, episode VARCHAR) | SELECT first_broadcast FROM table_19930660_3 WHERE episode = "3x10" | ### Context: CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, episode VARCHAR) ### Question: What is the first broadcast date for episode 3x10? ### Answer: SELECT first_broadcast FROM table_19930660_3 WHERE episode = "3x10" |
What index was created by the United Nations (UNDP) and reached 2nd place in the LA Ranking? | CREATE TABLE table_19948664_1 (index__year_ VARCHAR, author___editor___source VARCHAR, ranking_la__2_ VARCHAR) | SELECT index__year_ FROM table_19948664_1 WHERE author___editor___source = "United Nations (UNDP)" AND ranking_la__2_ = "2nd" | ### Context: CREATE TABLE table_19948664_1 (index__year_ VARCHAR, author___editor___source VARCHAR, ranking_la__2_ VARCHAR) ### Question: What index was created by the United Nations (UNDP) and reached 2nd place in the LA Ranking? ### Answer: SELECT index__year_ FROM table_19948664_1 WHERE author___editor___source = "United Nations (UNDP)" AND ranking_la__2_ = "2nd" |
How many countries were sampled in the index created by The Economist, published in 2007 and ranked 2nd in the LA Ranking? | CREATE TABLE table_19948664_1 (countries_sampled INTEGER, ranking_la__2_ VARCHAR, author___editor___source VARCHAR, year_of_publication VARCHAR) | SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE author___editor___source = "The Economist" AND year_of_publication = "2007" AND ranking_la__2_ = "2nd" | ### Context: CREATE TABLE table_19948664_1 (countries_sampled INTEGER, ranking_la__2_ VARCHAR, author___editor___source VARCHAR, year_of_publication VARCHAR) ### Question: How many countries were sampled in the index created by The Economist, published in 2007 and ranked 2nd in the LA Ranking? ### Answer: SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE author___editor___source = "The Economist" AND year_of_publication = "2007" AND ranking_la__2_ = "2nd" |
What's the wold ranking of the index by Transparency International? | CREATE TABLE table_19948664_1 (world_ranking__1_ VARCHAR, author___editor___source VARCHAR) | SELECT world_ranking__1_ FROM table_19948664_1 WHERE author___editor___source = "Transparency International" | ### Context: CREATE TABLE table_19948664_1 (world_ranking__1_ VARCHAR, author___editor___source VARCHAR) ### Question: What's the wold ranking of the index by Transparency International? ### Answer: SELECT world_ranking__1_ FROM table_19948664_1 WHERE author___editor___source = "Transparency International" |
How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking? | CREATE TABLE table_19948664_1 (countries_sampled VARCHAR, ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR) | SELECT countries_sampled FROM table_19948664_1 WHERE ranking_la__2_ = "2nd" AND world_ranking__1_ = "23rd" | ### Context: CREATE TABLE table_19948664_1 (countries_sampled VARCHAR, ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR) ### Question: How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking? ### Answer: SELECT countries_sampled FROM table_19948664_1 WHERE ranking_la__2_ = "2nd" AND world_ranking__1_ = "23rd" |
How many countries were sampled for the Prosperity Index (2008)? | CREATE TABLE table_19948664_1 (countries_sampled INTEGER, index__year_ VARCHAR) | SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE index__year_ = "Prosperity Index (2008)" | ### Context: CREATE TABLE table_19948664_1 (countries_sampled INTEGER, index__year_ VARCHAR) ### Question: How many countries were sampled for the Prosperity Index (2008)? ### Answer: SELECT MAX(countries_sampled) FROM table_19948664_1 WHERE index__year_ = "Prosperity Index (2008)" |
What is the playoffs result in years where Open Canada Cup was "N/A" and regular season result was "2nd, New England"? | CREATE TABLE table_1999350_1 (playoffs VARCHAR, open_canada_cup VARCHAR, regular_season VARCHAR) | SELECT playoffs FROM table_1999350_1 WHERE open_canada_cup = "N/A" AND regular_season = "2nd, New England" | ### Context: CREATE TABLE table_1999350_1 (playoffs VARCHAR, open_canada_cup VARCHAR, regular_season VARCHAR) ### Question: What is the playoffs result in years where Open Canada Cup was "N/A" and regular season result was "2nd, New England"? ### Answer: SELECT playoffs FROM table_1999350_1 WHERE open_canada_cup = "N/A" AND regular_season = "2nd, New England" |
What is the earliest year where playoffs was "did not qualify," regular season was "2nd, New England," and Open Canada Cup is "N/A"? | CREATE TABLE table_1999350_1 (year INTEGER, open_canada_cup VARCHAR, playoffs VARCHAR, regular_season VARCHAR) | SELECT MIN(year) FROM table_1999350_1 WHERE playoffs = "Did not qualify" AND regular_season = "2nd, New England" AND open_canada_cup = "N/A" | ### Context: CREATE TABLE table_1999350_1 (year INTEGER, open_canada_cup VARCHAR, playoffs VARCHAR, regular_season VARCHAR) ### Question: What is the earliest year where playoffs was "did not qualify," regular season was "2nd, New England," and Open Canada Cup is "N/A"? ### Answer: SELECT MIN(year) FROM table_1999350_1 WHERE playoffs = "Did not qualify" AND regular_season = "2nd, New England" AND open_canada_cup = "N/A" |
What is the total number of playoffs held in exactly 2006? | CREATE TABLE table_1999350_1 (playoffs VARCHAR, year VARCHAR) | SELECT COUNT(playoffs) FROM table_1999350_1 WHERE year = 2006 | ### Context: CREATE TABLE table_1999350_1 (playoffs VARCHAR, year VARCHAR) ### Question: What is the total number of playoffs held in exactly 2006? ### Answer: SELECT COUNT(playoffs) FROM table_1999350_1 WHERE year = 2006 |
What were the revising conventions commentary with a denunciation of 21? | CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, denunciations__september_2011_ VARCHAR) | SELECT revising_convention_s_ FROM table_2001348_1 WHERE denunciations__september_2011_ = 21 | ### Context: CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, denunciations__september_2011_ VARCHAR) ### Question: What were the revising conventions commentary with a denunciation of 21? ### Answer: SELECT revising_convention_s_ FROM table_2001348_1 WHERE denunciations__september_2011_ = 21 |
How many inputs are there in the 'closure for signature' tab under the field 'sea (revised)'? | CREATE TABLE table_2001348_1 (closure_for_signature VARCHAR, field VARCHAR) | SELECT COUNT(closure_for_signature) FROM table_2001348_1 WHERE field = "Sea (revised)" | ### Context: CREATE TABLE table_2001348_1 (closure_for_signature VARCHAR, field VARCHAR) ### Question: How many inputs are there in the 'closure for signature' tab under the field 'sea (revised)'? ### Answer: SELECT COUNT(closure_for_signature) FROM table_2001348_1 WHERE field = "Sea (revised)" |
How many ILO codes are there with revising conventions of 'this convention, work in fishing convention'? | CREATE TABLE table_2001348_1 (ilo_code VARCHAR, revising_convention_s_ VARCHAR) | SELECT COUNT(ilo_code) FROM table_2001348_1 WHERE revising_convention_s_ = "this convention, Work in Fishing Convention" | ### Context: CREATE TABLE table_2001348_1 (ilo_code VARCHAR, revising_convention_s_ VARCHAR) ### Question: How many ILO codes are there with revising conventions of 'this convention, work in fishing convention'? ### Answer: SELECT COUNT(ilo_code) FROM table_2001348_1 WHERE revising_convention_s_ = "this convention, Work in Fishing Convention" |
What was the revising convention of the field 'trimmers and stokers'? | CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, field VARCHAR) | SELECT revising_convention_s_ FROM table_2001348_1 WHERE field = "trimmers and stokers" | ### Context: CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, field VARCHAR) ### Question: What was the revising convention of the field 'trimmers and stokers'? ### Answer: SELECT revising_convention_s_ FROM table_2001348_1 WHERE field = "trimmers and stokers" |
What are the Juntas de Regantes (WUB) within the Azua Valley? | CREATE TABLE table_20018310_1 (juntas_de_regantes__wub_ VARCHAR, irrigation_district VARCHAR) | SELECT juntas_de_regantes__wub_ FROM table_20018310_1 WHERE irrigation_district = "Azua Valley" | ### Context: CREATE TABLE table_20018310_1 (juntas_de_regantes__wub_ VARCHAR, irrigation_district VARCHAR) ### Question: What are the Juntas de Regantes (WUB) within the Azua Valley? ### Answer: SELECT juntas_de_regantes__wub_ FROM table_20018310_1 WHERE irrigation_district = "Azua Valley" |
Which irrigation district has 4733 users? | CREATE TABLE table_20018310_1 (irrigation_district VARCHAR, users___number_ VARCHAR) | SELECT irrigation_district FROM table_20018310_1 WHERE users___number_ = 4733 | ### Context: CREATE TABLE table_20018310_1 (irrigation_district VARCHAR, users___number_ VARCHAR) ### Question: Which irrigation district has 4733 users? ### Answer: SELECT irrigation_district FROM table_20018310_1 WHERE users___number_ = 4733 |
What's the number of users in the Nisibon-Yuma within the Del Este district? | CREATE TABLE table_20018310_1 (users___number_ VARCHAR, irrigation_district VARCHAR, juntas_de_regantes__wub_ VARCHAR) | SELECT users___number_ FROM table_20018310_1 WHERE irrigation_district = "Del Este" AND juntas_de_regantes__wub_ = "Nisibon-Yuma" | ### Context: CREATE TABLE table_20018310_1 (users___number_ VARCHAR, irrigation_district VARCHAR, juntas_de_regantes__wub_ VARCHAR) ### Question: What's the number of users in the Nisibon-Yuma within the Del Este district? ### Answer: SELECT users___number_ FROM table_20018310_1 WHERE irrigation_district = "Del Este" AND juntas_de_regantes__wub_ = "Nisibon-Yuma" |
What percentage voted for Tom Horner according to the poll source with sampling error of 2.5%? | CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, sampling_error VARCHAR) | SELECT tom_horner__i_ FROM table_20032301_3 WHERE sampling_error = "2.5%" | ### Context: CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, sampling_error VARCHAR) ### Question: What percentage voted for Tom Horner according to the poll source with sampling error of 2.5%? ### Answer: SELECT tom_horner__i_ FROM table_20032301_3 WHERE sampling_error = "2.5%" |
What's the percentage of undecided according to the poll source with sampling error of 2.7%? | CREATE TABLE table_20032301_3 (undecided VARCHAR, sampling_error VARCHAR) | SELECT undecided FROM table_20032301_3 WHERE sampling_error = "2.7%" | ### Context: CREATE TABLE table_20032301_3 (undecided VARCHAR, sampling_error VARCHAR) ### Question: What's the percentage of undecided according to the poll source with sampling error of 2.7%? ### Answer: SELECT undecided FROM table_20032301_3 WHERE sampling_error = "2.7%" |
When did Minnesota Poll administer their poll? | CREATE TABLE table_20032301_3 (dates_administered VARCHAR, poll_source VARCHAR) | SELECT dates_administered FROM table_20032301_3 WHERE poll_source = "Minnesota Poll" | ### Context: CREATE TABLE table_20032301_3 (dates_administered VARCHAR, poll_source VARCHAR) ### Question: When did Minnesota Poll administer their poll? ### Answer: SELECT dates_administered FROM table_20032301_3 WHERE poll_source = "Minnesota Poll" |
How many polls show different percentages for Tom Emmer and 38% for Matt Entenza? | CREATE TABLE table_20032301_3 (tom_emmer__r_ VARCHAR, matt_entenza__dfl_ VARCHAR) | SELECT COUNT(tom_emmer__r_) FROM table_20032301_3 WHERE matt_entenza__dfl_ = "38%" | ### Context: CREATE TABLE table_20032301_3 (tom_emmer__r_ VARCHAR, matt_entenza__dfl_ VARCHAR) ### Question: How many polls show different percentages for Tom Emmer and 38% for Matt Entenza? ### Answer: SELECT COUNT(tom_emmer__r_) FROM table_20032301_3 WHERE matt_entenza__dfl_ = "38%" |
What poll source administered their poll on June 14-16, 2010? | CREATE TABLE table_20032301_3 (poll_source VARCHAR, dates_administered VARCHAR) | SELECT poll_source FROM table_20032301_3 WHERE dates_administered = "June 14-16, 2010" | ### Context: CREATE TABLE table_20032301_3 (poll_source VARCHAR, dates_administered VARCHAR) ### Question: What poll source administered their poll on June 14-16, 2010? ### Answer: SELECT poll_source FROM table_20032301_3 WHERE dates_administered = "June 14-16, 2010" |
What's the percentage of votes for Tom Horner according to the poll source that claimed 31% for Matt Entenza? | CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, matt_entenza__dfl_ VARCHAR) | SELECT tom_horner__i_ FROM table_20032301_3 WHERE matt_entenza__dfl_ = "31%" | ### Context: CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, matt_entenza__dfl_ VARCHAR) ### Question: What's the percentage of votes for Tom Horner according to the poll source that claimed 31% for Matt Entenza? ### Answer: SELECT tom_horner__i_ FROM table_20032301_3 WHERE matt_entenza__dfl_ = "31%" |
what is redskins (score) against tennessee titans 27 | CREATE TABLE table_20074209_1 (redskins__score_ VARCHAR, opponent__score_ VARCHAR) | SELECT redskins__score_ FROM table_20074209_1 WHERE opponent__score_ = "Tennessee Titans 27" | ### Context: CREATE TABLE table_20074209_1 (redskins__score_ VARCHAR, opponent__score_ VARCHAR) ### Question: what is redskins (score) against tennessee titans 27 ### Answer: SELECT redskins__score_ FROM table_20074209_1 WHERE opponent__score_ = "Tennessee Titans 27" |
Who is the head coach of the team who's venue is Lokomotiv? | CREATE TABLE table_20140132_1 (head_coach VARCHAR, venue VARCHAR) | SELECT head_coach FROM table_20140132_1 WHERE venue = "Lokomotiv" | ### Context: CREATE TABLE table_20140132_1 (head_coach VARCHAR, venue VARCHAR) ### Question: Who is the head coach of the team who's venue is Lokomotiv? ### Answer: SELECT head_coach FROM table_20140132_1 WHERE venue = "Lokomotiv" |
What is the venue for the team Terek? | CREATE TABLE table_20140132_1 (venue VARCHAR, team VARCHAR) | SELECT venue FROM table_20140132_1 WHERE team = "Terek" | ### Context: CREATE TABLE table_20140132_1 (venue VARCHAR, team VARCHAR) ### Question: What is the venue for the team Terek? ### Answer: SELECT venue FROM table_20140132_1 WHERE team = "Terek" |
How many teams finished in 8th in 2008? | CREATE TABLE table_20140132_1 (team VARCHAR, position_in_2008 VARCHAR) | SELECT COUNT(team) FROM table_20140132_1 WHERE position_in_2008 = "8th" | ### Context: CREATE TABLE table_20140132_1 (team VARCHAR, position_in_2008 VARCHAR) ### Question: How many teams finished in 8th in 2008? ### Answer: SELECT COUNT(team) FROM table_20140132_1 WHERE position_in_2008 = "8th" |
What is the location of the team Saturn? | CREATE TABLE table_20140132_1 (location VARCHAR, team VARCHAR) | SELECT location FROM table_20140132_1 WHERE team = "Saturn" | ### Context: CREATE TABLE table_20140132_1 (location VARCHAR, team VARCHAR) ### Question: What is the location of the team Saturn? ### Answer: SELECT location FROM table_20140132_1 WHERE team = "Saturn" |
when fairburn is bigger than 54.0, how many years? | CREATE TABLE table_20142629_2 (year VARCHAR, fairburn INTEGER) | SELECT COUNT(year) FROM table_20142629_2 WHERE fairburn > 54.0 | ### Context: CREATE TABLE table_20142629_2 (year VARCHAR, fairburn INTEGER) ### Question: when fairburn is bigger than 54.0, how many years? ### Answer: SELECT COUNT(year) FROM table_20142629_2 WHERE fairburn > 54.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.