answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT vfl_games FROM table_16527640_3 WHERE location = "off Goodenough Island Milne Bay" | CREATE TABLE table_16527640_3 (vfl_games VARCHAR, location VARCHAR) | How many VFL games were located off Goodenough Island Milne Bay? |
SELECT 3 AS rd_stage FROM table_16537783_2 WHERE parameter = "Thrust" | CREATE TABLE table_16537783_2 (parameter VARCHAR) | Name the 3rd stage for parameter of thrust |
SELECT 1 AS st_stage FROM table_16537783_2 WHERE parameter = "Diameter" | CREATE TABLE table_16537783_2 (parameter VARCHAR) | Name the 1st stage for parameter being diameter |
SELECT archbishop FROM table_1656555_1 WHERE ordained_bishop = "November 30, 1925" | CREATE TABLE table_1656555_1 (archbishop VARCHAR, ordained_bishop VARCHAR) | Which archbishop was ordained as bishop November 30, 1925? |
SELECT died FROM table_1656555_1 WHERE ordained_bishop = "April 26, 1927" | CREATE TABLE table_1656555_1 (died VARCHAR, ordained_bishop VARCHAR) | What is the death date of the archbishop who was ordained as bishop April 26, 1927? |
SELECT COUNT(Appointed) AS archbishop FROM table_1656555_1 WHERE ordained_priest = "December 20, 1959" | CREATE TABLE table_1656555_1 (Appointed VARCHAR, ordained_priest VARCHAR) | How many appointed archbishops were ordained as priests on December 20, 1959 |
SELECT ordained_bishop FROM table_1656555_1 WHERE ordained_priest = "December 1838" | CREATE TABLE table_1656555_1 (ordained_bishop VARCHAR, ordained_priest VARCHAR) | What date was the person ordained as a priest in December 1838 ordained as a bishop? |
SELECT ordained_priest FROM table_1656555_1 WHERE vacated_throne = "August 18, 1885" | CREATE TABLE table_1656555_1 (ordained_priest VARCHAR, vacated_throne VARCHAR) | When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest? |
SELECT COUNT(player) FROM table_16570286_4 WHERE best_bowling = "4/125" | CREATE TABLE table_16570286_4 (player VARCHAR, best_bowling VARCHAR) | How many players Bowled 4/125? |
SELECT MAX(wickets) FROM table_16570286_4 WHERE average = "22.66" | CREATE TABLE table_16570286_4 (wickets INTEGER, average VARCHAR) | What number of wickets were there when the average was 22.66? |
SELECT wickets FROM table_16570286_4 WHERE average = "22.66" | CREATE TABLE table_16570286_4 (wickets VARCHAR, average VARCHAR) | How many wickets were there when average was 22.66? |
SELECT best_bowling FROM table_16570286_4 WHERE average = "23.33" | CREATE TABLE table_16570286_4 (best_bowling VARCHAR, average VARCHAR) | What was the best bowling score when the average was 23.33? |
SELECT MAX(matches) FROM table_16570286_4 WHERE wickets = 11 | CREATE TABLE table_16570286_4 (matches INTEGER, wickets VARCHAR) | How many matches had 11 wickets? |
SELECT MAX(wickets) FROM table_16570286_4 WHERE player = "Alec Bedser" | CREATE TABLE table_16570286_4 (wickets INTEGER, player VARCHAR) | How many wickets did Alec bedser have? |
SELECT cfl_team FROM table_16575609_1 WHERE player = "Dimitri Tsoumpas" | CREATE TABLE table_16575609_1 (cfl_team VARCHAR, player VARCHAR) | Who picked dimitri tsoumpas? |
SELECT position FROM table_16575609_1 WHERE cfl_team = "Winnipeg Blue Bombers" | CREATE TABLE table_16575609_1 (position VARCHAR, cfl_team VARCHAR) | What position did the winnipeg blue bombers draft? |
SELECT MIN(pick__number) FROM table_16575609_1 WHERE player = "Brendon LaBatte" | CREATE TABLE table_16575609_1 (pick__number INTEGER, player VARCHAR) | Where did Brendon Labatte get picked? |
SELECT cfl_team FROM table_16575609_1 WHERE college = "Weber State" | CREATE TABLE table_16575609_1 (cfl_team VARCHAR, college VARCHAR) | Who picked a player from Weber State? |
SELECT position FROM table_16575609_1 WHERE college = "Louisiana-Lafayette" | CREATE TABLE table_16575609_1 (position VARCHAR, college VARCHAR) | What position was taken out of Louisiana-Lafayette? |
SELECT college FROM table_16575609_4 WHERE cfl_team = "Calgary Stampeders" | CREATE TABLE table_16575609_4 (college VARCHAR, cfl_team VARCHAR) | Name the college for calgary stampeders |
SELECT MAX(pick__number) FROM table_16575609_4 WHERE cfl_team = "Edmonton Eskimos" | CREATE TABLE table_16575609_4 (pick__number INTEGER, cfl_team VARCHAR) | Name the most pick number for cfl team being edmonton eskimos |
SELECT COUNT(original_airdate) FROM table_16581695_3 WHERE production_code = 210 | CREATE TABLE table_16581695_3 (original_airdate VARCHAR, production_code VARCHAR) | How many days are associated with production code 210? |
SELECT COUNT(title) FROM table_16581695_3 WHERE production_code = 211 | CREATE TABLE table_16581695_3 (title VARCHAR, production_code VARCHAR) | How many titles have a production code of 211? |
SELECT COUNT(no_in_season) FROM table_16581695_3 WHERE production_code = 204 | CREATE TABLE table_16581695_3 (no_in_season VARCHAR, production_code VARCHAR) | How many seasons have a production code of 204? |
SELECT title FROM table_16581695_3 WHERE written_by = "Matt Wayne" | CREATE TABLE table_16581695_3 (title VARCHAR, written_by VARCHAR) | What title was written by Matt Wayne? |
SELECT no_in_series FROM table_16581695_4 WHERE production_code = "303" | CREATE TABLE table_16581695_4 (no_in_series VARCHAR, production_code VARCHAR) | What is the series episode number of the episode with production code 303? |
SELECT production_code FROM table_16581695_4 WHERE no_in_season = "15" | CREATE TABLE table_16581695_4 (production_code VARCHAR, no_in_season VARCHAR) | What is the production code for episode 15 in season 3? |
SELECT directed_by FROM table_16581695_4 WHERE no_in_season = "12" | CREATE TABLE table_16581695_4 (directed_by VARCHAR, no_in_season VARCHAR) | Who directed episode 12 in season 3? |
SELECT tree_species FROM table_16577990_1 WHERE total_plant_species = 258 | CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) | How many tree species are listed when the total plant species is 258? |
SELECT COUNT(tree_species) FROM table_16577990_1 WHERE total_plant_species = 113 | CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) | How many tree species are there when the total plant species is 113? |
SELECT MIN(size_in_km²) FROM table_16577990_1 WHERE central_forest_reserve = "Itwara" | CREATE TABLE table_16577990_1 (size_in_km² INTEGER, central_forest_reserve VARCHAR) | What is the size of Itwara central forest reserve? |
SELECT tree_species FROM table_16577990_1 WHERE central_forest_reserve = "Kitechura" | CREATE TABLE table_16577990_1 (tree_species VARCHAR, central_forest_reserve VARCHAR) | How many tree species are in the kitechura reserve? |
SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = "17.93" | CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | What episode titles have 17.93 million U.S. viewers? |
SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = "20.94" | CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | What episode titles have 20.94 million U.S. viewers? |
SELECT season__number FROM table_16617025_1 WHERE directed_by = "Kate Woods" | CREATE TABLE table_16617025_1 (season__number VARCHAR, directed_by VARCHAR) | In what seasons did Kate Woods direct Without A Trace? |
SELECT written_by FROM table_16617025_1 WHERE season__number = 8 | CREATE TABLE table_16617025_1 (written_by VARCHAR, season__number VARCHAR) | Who wrote Season 8? |
SELECT joined_opec FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" | CREATE TABLE table_166346_1 (joined_opec VARCHAR, production___bbl__day_ VARCHAR) | When did the country that produced 1,213,000 (21st) bbl/day join Opec? |
SELECT MIN(area__km²_) FROM table_166346_1 WHERE production___bbl__day_ = "3,200,000 (12th)" | CREATE TABLE table_166346_1 (area__km²_ INTEGER, production___bbl__day_ VARCHAR) | What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day? |
SELECT MAX(population__july_2012_) FROM table_166346_1 WHERE area__km²_ = 2149690 | CREATE TABLE table_166346_1 (population__july_2012_ INTEGER, area__km²_ VARCHAR) | What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers? |
SELECT region FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" | CREATE TABLE table_166346_1 (region VARCHAR, production___bbl__day_ VARCHAR) | Which regions had a production (bbl/day) of 1,213,000 (21st)? |
SELECT country FROM table_166346_1 WHERE production___bbl__day_ = "2,494,000 (10th)" | CREATE TABLE table_166346_1 (country VARCHAR, production___bbl__day_ VARCHAR) | Which country had a production (bbl/day) of 2,494,000 (10th)? |
SELECT approved_treatment_s_ FROM table_1661124_1 WHERE target = "CD30" | CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, target VARCHAR) | What are all the approved treatments for the target CD30? |
SELECT brand_name FROM table_1661124_1 WHERE antibody = "Brentuximab vedotin" | CREATE TABLE table_1661124_1 (brand_name VARCHAR, antibody VARCHAR) | What is the brand name for the antibody Brentuximab Vedotin? |
SELECT COUNT(target) FROM table_1661124_1 WHERE approval_date = 1997 | CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) | How many targets are there with an approval date of 1997? |
SELECT approved_treatment_s_ FROM table_1661124_1 WHERE antibody = "Bevacizumab" | CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, antibody VARCHAR) | What are the approved treatments when the antibody is bevacizumab? |
SELECT target FROM table_1661124_1 WHERE approved_treatment_s_ = "non-Hodgkin lymphoma" | CREATE TABLE table_1661124_1 (target VARCHAR, approved_treatment_s_ VARCHAR) | What is the target when the approved treatment is non-hodgkin lymphoma? |
SELECT target FROM table_1661124_1 WHERE approval_date = 2006 | CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) | What is the target with an approval date of 2006? |
SELECT MIN(rural), __percentage FROM table_16645_1 WHERE year__january_ = 1979 | CREATE TABLE table_16645_1 (__percentage VARCHAR, rural INTEGER, year__january_ VARCHAR) | What is the rural population percentage in 1979? |
SELECT COUNT(urban), __percentage FROM table_16645_1 WHERE population__000_ = 14685 | CREATE TABLE table_16645_1 (__percentage VARCHAR, urban VARCHAR, population__000_ VARCHAR) | How many percentage figures are given for the urban population when the total population number is 14685? |
SELECT islam FROM table_16642_1 WHERE ethnicity = "Tajik" | CREATE TABLE table_16642_1 (islam VARCHAR, ethnicity VARCHAR) | When tajik is the ethnicity what is islam? |
SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455 | CREATE TABLE table_16654785_2 (name VARCHAR, length__m_ VARCHAR) | How many had a length of 455? |
SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse" | CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR) | What is the average climb for Tenbosse? |
SELECT number FROM table_16654785_2 WHERE kilometer = 233 | CREATE TABLE table_16654785_2 (number VARCHAR, kilometer VARCHAR) | How many have a kilometers of 233? |
SELECT COUNT(average_climb___percentage_) FROM table_16654785_2 WHERE length__m_ = 375 | CREATE TABLE table_16654785_2 (average_climb___percentage_ VARCHAR, length__m_ VARCHAR) | How many have a length of 375? |
SELECT playoffs FROM table_16636344_1 WHERE year = "2011" | CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR) | What was the team's playoff status in 2011? |
SELECT league FROM table_16636344_1 WHERE year = "2010" | CREATE TABLE table_16636344_1 (league VARCHAR, year VARCHAR) | What was the team's league in 2010? |
SELECT league FROM table_16636344_1 WHERE regular_season = "2nd, Mid Atlantic" | CREATE TABLE table_16636344_1 (league VARCHAR, regular_season VARCHAR) | What is the league name for the regular season status of 2nd, mid atlantic? |
SELECT winning_driver FROM table_16670746_2 WHERE circuit = "Okayama International circuit" | CREATE TABLE table_16670746_2 (winning_driver VARCHAR, circuit VARCHAR) | Who was the winning driver at Okayama International Circuit? |
SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "TOM'S Racing" | CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR) | Who had the fastest lap when the winning team was Tom's Racing? |
SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "Team Impul" AND circuit = "Twin Ring Motegi" | CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR) | Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit? |
SELECT COUNT(opponents) FROM table_16677874_2 WHERE game = 13 | CREATE TABLE table_16677874_2 (opponents VARCHAR, game VARCHAR) | How many opponents did the team play in week 13? |
SELECT MAX(opponents) FROM table_16677887_2 WHERE date = "Sept. 14" | CREATE TABLE table_16677887_2 (opponents INTEGER, date VARCHAR) | How many points did the opponent score on Sept. 14? |
SELECT opponent FROM table_16677887_2 WHERE bills_first_downs = 23 | CREATE TABLE table_16677887_2 (opponent VARCHAR, bills_first_downs VARCHAR) | What team were the bills playing where their first down was 23? |
SELECT record FROM table_16677887_2 WHERE date = "Sept. 14" | CREATE TABLE table_16677887_2 (record VARCHAR, date VARCHAR) | What was the record for the game on Sept. 14? |
SELECT MAX(gore_hundred) FROM table_16677738_1 WHERE spelthorne_hundred = 12743 | CREATE TABLE table_16677738_1 (gore_hundred INTEGER, spelthorne_hundred VARCHAR) | When 12743 is the spelthorne what is the largest gore hundred? |
SELECT finsbury_division FROM table_16677738_1 WHERE inns_of_court_and_chancery = 1546 | CREATE TABLE table_16677738_1 (finsbury_division VARCHAR, inns_of_court_and_chancery VARCHAR) | When 1546 is inns of court and chancery what is the finsbury division? |
SELECT MIN(year) FROM table_16677738_1 | CREATE TABLE table_16677738_1 (year INTEGER) | What is the lowest overall year? |
SELECT inns_of_court_and_chancery FROM table_16677738_1 WHERE without_the_walls = 70489 | CREATE TABLE table_16677738_1 (inns_of_court_and_chancery VARCHAR, without_the_walls VARCHAR) | When 70489 is without walls what is the inns of court and chancery? |
SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.0 | CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER) | When within the walls is larger than 56174.0 what is the lowest amount without the walls? |
SELECT MAX(holborn_division) FROM table_16677738_1 WHERE tower_division = 272966 | CREATE TABLE table_16677738_1 (holborn_division INTEGER, tower_division VARCHAR) | When 272966 is the tower division what is the highest holborn division? |
SELECT MAX(stolen_ends_against) FROM table_16684420_2 WHERE country = Japan | CREATE TABLE table_16684420_2 (stolen_ends_against INTEGER, country VARCHAR, Japan VARCHAR) | What is the maximum number of stolen ends against for Japan? |
SELECT skip FROM table_16684420_2 WHERE stolen_ends_against = 13 | CREATE TABLE table_16684420_2 (skip VARCHAR, stolen_ends_against VARCHAR) | Who was the skip when the stolen ends against was 13? |
SELECT batting_partners FROM table_1670921_1 WHERE season = "1997" | CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR) | Who are the batting partners for the 1997 season? |
SELECT season FROM table_1670921_1 WHERE wicket = "7th" | CREATE TABLE table_1670921_1 (season VARCHAR, wicket VARCHAR) | Which season reported wickets of 7th? |
SELECT fielding_team FROM table_1670921_1 WHERE wicket = "9th" | CREATE TABLE table_1670921_1 (fielding_team VARCHAR, wicket VARCHAR) | Which team is 9th in wickets? |
SELECT venue FROM table_1670921_1 WHERE batting_partners = "Mahela Jayawardene and Prasanna Jayawardene" | CREATE TABLE table_1670921_1 (venue VARCHAR, batting_partners VARCHAR) | What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene |
SELECT COUNT(batting_team) FROM table_1670921_1 WHERE wicket = "3rd" | CREATE TABLE table_1670921_1 (batting_team VARCHAR, wicket VARCHAR) | How many teams are listed for 3rd wickets? |
SELECT COUNT(batting_partners) FROM table_1670921_2 WHERE season = "2006" | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR) | How many total batting partners were most successful in the 2006 season? |
SELECT batting_partners FROM table_1670921_2 WHERE batting_team = "Pakistan" | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR) | What batting partners batted for pakistan? |
SELECT runs FROM table_1670921_2 WHERE fielding_team = "Bangladesh" | CREATE TABLE table_1670921_2 (runs VARCHAR, fielding_team VARCHAR) | How many runs when bangladesh was the fielding team? |
SELECT wicket FROM table_1670921_2 WHERE runs = "451" AND fielding_team = "India" | CREATE TABLE table_1670921_2 (wicket VARCHAR, runs VARCHAR, fielding_team VARCHAR) | What are the wickets when there are 451 runs and india is the fielding team? |
SELECT batting_partners FROM table_1670921_2 WHERE venue = "Sydney" | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, venue VARCHAR) | What batting partners played in sydney? |
SELECT batting_partners FROM table_1670921_2 WHERE season = "2004" | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR) | What batting partners were the most successful in 2004? |
SELECT falcons_points FROM table_16710829_2 WHERE record = "3-2" | CREATE TABLE table_16710829_2 (falcons_points VARCHAR, record VARCHAR) | Name the falcons points for record of 3-2 |
SELECT date FROM table_16710829_2 WHERE game = 9 | CREATE TABLE table_16710829_2 (date VARCHAR, game VARCHAR) | Name the date for game 9 |
SELECT MAX(game) FROM table_16710829_2 WHERE attendance = 54774 | CREATE TABLE table_16710829_2 (game INTEGER, attendance VARCHAR) | Name the max game for attendance being 54774 |
SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = "New Orleans Saints" | CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR) | Name the total number of results for new orleans saints |
SELECT COUNT(opponent) FROM table_16710971_2 WHERE record = "1-3" | CREATE TABLE table_16710971_2 (opponent VARCHAR, record VARCHAR) | What is the total number of opponents for the game recorded as 1-3? |
SELECT result FROM table_16710971_2 WHERE record = "1-2" | CREATE TABLE table_16710971_2 (result VARCHAR, record VARCHAR) | What was the result of the 1978 Atlanta Falcons season when the record was 1-2? |
SELECT falcons_points FROM table_16710971_2 WHERE record = "4-4" | CREATE TABLE table_16710971_2 (falcons_points VARCHAR, record VARCHAR) | How many points did the Falcons score when the record was 4-4? |
SELECT COUNT(opponents) FROM table_16710971_2 WHERE record = "6-4" | CREATE TABLE table_16710971_2 (opponents VARCHAR, record VARCHAR) | How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season? |
SELECT MIN(falcons_points) FROM table_16710971_2 WHERE opponent = "San Francisco 49ers" | CREATE TABLE table_16710971_2 (falcons_points INTEGER, opponent VARCHAR) | In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored? |
SELECT pts FROM table_16710541_2 WHERE team = "Kiefer-Bos-Castrol Honda" | CREATE TABLE table_16710541_2 (pts VARCHAR, team VARCHAR) | How many points did kiefer-bos-castrol honda have? |
SELECT position FROM table_16710541_2 WHERE motorcycle = "KTM" | CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR) | What result did the ktm motorcycle achieve? |
SELECT MIN(poles) FROM table_16710541_2 | CREATE TABLE table_16710541_2 (poles INTEGER) | What is the lowest number of poles? |
SELECT MIN(top_5) FROM table_1671401_1 | CREATE TABLE table_1671401_1 (top_5 INTEGER) | Name the least top 5 |
SELECT top_5 FROM table_1671401_3 WHERE winnings = "$52,595" | CREATE TABLE table_1671401_3 (top_5 VARCHAR, winnings VARCHAR) | name the top 5 where the winnings is $52,595 |
SELECT COUNT(top_10) FROM table_1671401_3 WHERE position = "51st" | CREATE TABLE table_1671401_3 (top_10 VARCHAR, position VARCHAR) | name the total number of top 10 also where the position is 51st |
SELECT winnings FROM table_1671401_3 WHERE starts = 7 | CREATE TABLE table_1671401_3 (winnings VARCHAR, starts VARCHAR) | name all the winnings that the start appears to be 7 |
SELECT COUNT(winnings) FROM table_1671401_2 WHERE year = 1995 | CREATE TABLE table_1671401_2 (winnings VARCHAR, year VARCHAR) | Name the total number of winnings for 1995 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.