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