answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT livery FROM table_name_45 WHERE locomotive_type = "steam" AND year_built > 1950 AND wheel_arrangement = "2-6-2" | CREATE TABLE table_name_45 (livery VARCHAR, wheel_arrangement VARCHAR, locomotive_type VARCHAR, year_built VARCHAR) | What is the livery of the steam locomotive built after 1950 with a wheel arrangement of 2-6-2? |
SELECT livery FROM table_name_69 WHERE year_built < 1989 AND locomotive_type = "steam" | CREATE TABLE table_name_69 (livery VARCHAR, year_built VARCHAR, locomotive_type VARCHAR) | What livery belongs to the steam Locomotive type builder that was building before 1989? |
SELECT COUNT(total) FROM table_name_52 WHERE gold > 2 AND silver > 2 | CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, silver VARCHAR) | What is the total number of medals when the gold is more than 2 and silver more than 2? |
SELECT MAX(silver) FROM table_name_35 WHERE total < 4 AND rank = "12" | CREATE TABLE table_name_35 (silver INTEGER, total VARCHAR, rank VARCHAR) | What is the most silver medals when the total is less than 4 and the rank is 12? |
SELECT SUM(bronze) FROM table_name_14 WHERE silver > 0 AND total = 5 | CREATE TABLE table_name_14 (bronze INTEGER, silver VARCHAR, total VARCHAR) | What is the total number of bronze medals when the silver is greater than 0, and the total medals 5? |
SELECT COUNT(total) FROM table_name_14 WHERE bronze > 1 AND nation = "germany" AND gold < 1 | CREATE TABLE table_name_14 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR) | What is the total number of medals when the bronze is more than 1, and Germany is the nation, and gold medals less than 1? |
SELECT MIN(rank) FROM table_name_21 WHERE name = "oscar míguez" AND goals > 107 | CREATE TABLE table_name_21 (rank INTEGER, name VARCHAR, goals VARCHAR) | When Oscar Míguez had over 107 goals, what was the lowest he ranked? |
SELECT MAX(goals) FROM table_name_18 WHERE years = "1922–1935" | CREATE TABLE table_name_18 (goals INTEGER, years VARCHAR) | What was the highest number of goals for 1922–1935? |
SELECT pick__number FROM table_name_20 WHERE player = "jason french" | CREATE TABLE table_name_20 (pick__number VARCHAR, player VARCHAR) | Which pick number was there for Jason French? |
SELECT cfl_team FROM table_name_32 WHERE college = "manitoba" | CREATE TABLE table_name_32 (cfl_team VARCHAR, college VARCHAR) | Which cfl team was associated with the college of manitoba? |
SELECT college FROM table_name_58 WHERE cfl_team = "hamilton tiger-cats" | CREATE TABLE table_name_58 (college VARCHAR, cfl_team VARCHAR) | Which college's cfl team is the hamilton tiger-cats? |
SELECT position FROM table_name_52 WHERE cfl_team = "montreal alouettes" AND pick__number < 15 | CREATE TABLE table_name_52 (position VARCHAR, cfl_team VARCHAR, pick__number VARCHAR) | Which position's cfl team was the Montreal Alouettes when the pick number was less than 15? |
SELECT player FROM table_name_5 WHERE cfl_team = "saskatchewan roughriders" | CREATE TABLE table_name_5 (player VARCHAR, cfl_team VARCHAR) | Which player was drafted by the Saskatchewan Roughriders? |
SELECT college FROM table_name_37 WHERE player = "ben wearing" | CREATE TABLE table_name_37 (college VARCHAR, player VARCHAR) | What college did Ben Wearing play for? |
SELECT AVG(fa_cup_goals) FROM table_name_33 WHERE other_goals = 0 AND fl_cup_goals = 0 AND league_goals < 39 | CREATE TABLE table_name_33 (fa_cup_goals INTEGER, league_goals VARCHAR, other_goals VARCHAR, fl_cup_goals VARCHAR) | What is the average FA Cup Goal value for players that have 0 Other goals, 0 FL Cup goals, and fewer than 39 League goals? |
SELECT date FROM table_name_25 WHERE away = "ottawa swans" | CREATE TABLE table_name_25 (date VARCHAR, away VARCHAR) | On what date were the Ottawa Swans the away team? |
SELECT score FROM table_name_55 WHERE home = "etobicoke kangaroos" | CREATE TABLE table_name_55 (score VARCHAR, home VARCHAR) | What was the score of the game with the Etobicoke Kangaroos as the home team? |
SELECT score FROM table_name_97 WHERE home = "broadview hawks" | CREATE TABLE table_name_97 (score VARCHAR, home VARCHAR) | What was the score of the game with the Broadview Hawks as the home team? |
SELECT score FROM table_name_69 WHERE home = "broadview hawks" | CREATE TABLE table_name_69 (score VARCHAR, home VARCHAR) | What was the score of the Broadview Hawks home game? |
SELECT away FROM table_name_81 WHERE home = "etobicoke kangaroos" | CREATE TABLE table_name_81 (away VARCHAR, home VARCHAR) | Who was the away team for the Etobicoke Kangaroos home game? |
SELECT date FROM table_name_26 WHERE score = "130-56" | CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR) | What was the date for the 130-56 game? |
SELECT date FROM table_name_20 WHERE home_team = "cuba" | CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR) | What is the date with Cuba is Home team? |
SELECT location FROM table_name_57 WHERE home_team = "honduras" | CREATE TABLE table_name_57 (location VARCHAR, home_team VARCHAR) | What is the location with Honduras is Home team? |
SELECT location FROM table_name_8 WHERE home_team = "mexico" AND date = "11 april 2013" | CREATE TABLE table_name_8 (location VARCHAR, home_team VARCHAR, date VARCHAR) | What is the location of 11 April 2013 and Mexico Home team? |
SELECT date FROM table_name_25 WHERE away_team = "honduras" | CREATE TABLE table_name_25 (date VARCHAR, away_team VARCHAR) | What is the date that is Away team is Honduras? |
SELECT date FROM table_name_44 WHERE away_team = "guatemala" | CREATE TABLE table_name_44 (date VARCHAR, away_team VARCHAR) | What is the date where Guatemala is the Away team? |
SELECT score FROM table_name_33 WHERE date = "17 april 2013" | CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR) | What is the score for 17 April 2013? |
SELECT SUM(week) FROM table_name_79 WHERE date = "september 14, 2008" | CREATE TABLE table_name_79 (week INTEGER, date VARCHAR) | How many weeks have September 14, 2008 as the date? |
SELECT opponent FROM table_name_43 WHERE week < 16 AND date = "september 7, 2008" | CREATE TABLE table_name_43 (opponent VARCHAR, week VARCHAR, date VARCHAR) | What opponent has a week less than 16, with September 7, 2008 as the date? |
SELECT record FROM table_name_36 WHERE game_site = "candlestick park" AND date = "october 12, 2008" | CREATE TABLE table_name_36 (record VARCHAR, game_site VARCHAR, date VARCHAR) | What record has candlestick park as the game site, and october 12, 2008 as the date? |
SELECT date FROM table_name_26 WHERE opponent = "new england patriots" | CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR) | What date has new england patriots as the opponent? |
SELECT date FROM table_name_66 WHERE week = 10 | CREATE TABLE table_name_66 (date VARCHAR, week VARCHAR) | What date has 10 for the week? |
SELECT game_site FROM table_name_50 WHERE result = "w 10-3" | CREATE TABLE table_name_50 (game_site VARCHAR, result VARCHAR) | What game site has w 10-3 as the result? |
SELECT SUM(rank) FROM table_name_80 WHERE singapore_cup = "0 (1)" AND name = "masrezwan masturi" | CREATE TABLE table_name_80 (rank INTEGER, singapore_cup VARCHAR, name VARCHAR) | What is the sum of Rank that when the Singapore Cup is 0 (1), and the Name is masrezwan masturi? |
SELECT name FROM table_name_87 WHERE total = "3 (15)" AND rank > 3 | CREATE TABLE table_name_87 (name VARCHAR, total VARCHAR, rank VARCHAR) | What is the Name of the person with a Total of 3 (15), and Rank of more than 3? |
SELECT singapore_cup FROM table_name_92 WHERE s_league = "5 (14)" | CREATE TABLE table_name_92 (singapore_cup VARCHAR, s_league VARCHAR) | What is the Singapore Cup when the S-League is 5 (14)? |
SELECT singapore_league_cup FROM table_name_50 WHERE rank > 4 AND s_league = "2 (12)" | CREATE TABLE table_name_50 (singapore_league_cup VARCHAR, rank VARCHAR, s_league VARCHAR) | What is the Singapore League Cup when rank is more than 4, and the S-League is 2 (12)? |
SELECT tournament FROM table_name_2 WHERE runner_s__up = "al geiberger" | CREATE TABLE table_name_2 (tournament VARCHAR, runner_s__up VARCHAR) | In which tournament did Al Geiberger finish runner-up? |
SELECT season FROM table_name_50 WHERE acquisition_via = "rookie draft" AND number = "15" | CREATE TABLE table_name_50 (season VARCHAR, acquisition_via VARCHAR, number VARCHAR) | What is the Season with an Acquisition via of rookie draft, and the number is 15? |
SELECT acquisition_via FROM table_name_33 WHERE name = "dennis miranda" | CREATE TABLE table_name_33 (acquisition_via VARCHAR, name VARCHAR) | What is the Acquisition via for Dennis Miranda? |
SELECT school_club_team FROM table_name_84 WHERE acquisition_via = "rookie draft" AND position = "guard" AND name = "dennis miranda" | CREATE TABLE table_name_84 (school_club_team VARCHAR, name VARCHAR, acquisition_via VARCHAR, position VARCHAR) | What team acquired as a rookie draft in the position of guard Dennis Miranda? |
SELECT season FROM table_name_6 WHERE position = "guard" AND school_club_team = "perpetual help" | CREATE TABLE table_name_6 (season VARCHAR, position VARCHAR, school_club_team VARCHAR) | What season was School/Club Team perpetual help in the guard position? |
SELECT number FROM table_name_82 WHERE name = "rashad mccants" | CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR) | What number was Rashad McCants? |
SELECT season FROM table_name_19 WHERE acquisition_via = "trade" AND school_club_team = "east" | CREATE TABLE table_name_19 (season VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR) | What season did School/Club Team, East have an Acquisition via of trade? |
SELECT date FROM table_name_61 WHERE city___state = "sydney, new south wales" | CREATE TABLE table_name_61 (date VARCHAR, city___state VARCHAR) | What is the Date for the City/State of Sydney, New South Wales? |
SELECT revenues FROM table_name_43 WHERE tenure = "1854-1855" | CREATE TABLE table_name_43 (revenues VARCHAR, tenure VARCHAR) | What is the Revenues during Tenure 1854-1855? |
SELECT revenues FROM table_name_81 WHERE courtesy_title = "ukyo-daiyu" | CREATE TABLE table_name_81 (revenues VARCHAR, courtesy_title VARCHAR) | What is the Revenues of Ukyo-Daiyu? |
SELECT country FROM table_name_43 WHERE place = "t10" AND player = "rod pampling" | CREATE TABLE table_name_43 (country VARCHAR, place VARCHAR, player VARCHAR) | What country was the player, rod pampling, from who placed t10? |
SELECT score FROM table_name_36 WHERE place = "t10" AND player = "thomas levet" | CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR) | What was the score that thomas levet got when he placed t10? |
SELECT country FROM table_name_6 WHERE score = 73 - 73 - 65 = 211 | CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR) | What country did the player who scored 73-73-65=211 come from? |
SELECT score FROM table_name_80 WHERE country = "united states" AND place = "t4" | CREATE TABLE table_name_80 (score VARCHAR, country VARCHAR, place VARCHAR) | What is the score that the player who placed t4 from the united states get? |
SELECT country FROM table_name_57 WHERE player = "phil mickelson" | CREATE TABLE table_name_57 (country VARCHAR, player VARCHAR) | What country is phil mickelson from? |
SELECT team FROM table_name_39 WHERE machine = "nsr250" AND points = 8 | CREATE TABLE table_name_39 (team VARCHAR, machine VARCHAR, points VARCHAR) | What is the Team with a Machine that is nsr250 and has Points of 8? |
SELECT SUM(lost) FROM table_name_2 WHERE points > 8 AND difference = "- 8" AND position > 5 | CREATE TABLE table_name_2 (lost INTEGER, position VARCHAR, points VARCHAR, difference VARCHAR) | What is the total lost that has points greater than 8 and a difference of - 8 and a position of greater than 5? |
SELECT MAX(points) FROM table_name_66 WHERE lost > 5 AND difference = "- 10" AND played > 12 | CREATE TABLE table_name_66 (points INTEGER, played VARCHAR, lost VARCHAR, difference VARCHAR) | What is the greatest number of points that has a lost bigger than 5, a difference of - 10 and a played bigger than 12? |
SELECT name FROM table_name_10 WHERE average = 16.4 | CREATE TABLE table_name_10 (name VARCHAR, average VARCHAR) | What is the Name with an Average that is 16.4? |
SELECT match FROM table_name_13 WHERE team = "start gniezno" | CREATE TABLE table_name_13 (match VARCHAR, team VARCHAR) | What was the match number for Start Gniezno? |
SELECT lost FROM table_name_48 WHERE points = "10" | CREATE TABLE table_name_48 (lost VARCHAR, points VARCHAR) | Who was the team that lost but had 10 points? |
SELECT draw FROM table_name_57 WHERE match = "8" AND team = "lpż gdańsk" | CREATE TABLE table_name_57 (draw VARCHAR, match VARCHAR, team VARCHAR) | What was the draw for Lpż Gdańsk with a match of 8? |
SELECT team FROM table_name_29 WHERE draw = "0" | CREATE TABLE table_name_29 (team VARCHAR, draw VARCHAR) | What team had a draw of 0? |
SELECT match FROM table_name_91 WHERE points = "8" | CREATE TABLE table_name_91 (match VARCHAR, points VARCHAR) | What match had 8 points? |
SELECT draw FROM table_name_37 WHERE points = "10" | CREATE TABLE table_name_37 (draw VARCHAR, points VARCHAR) | What is the draw for a match that had 10 points? |
SELECT 1980 AS _1981_team FROM table_name_22 WHERE birthplace = "warroad, minnesota" | CREATE TABLE table_name_22 (birthplace VARCHAR) | What was the 1980-1981 team of the player born in Warroad, Minnesota? |
SELECT SUM(lost) FROM table_name_99 WHERE draw > 0 | CREATE TABLE table_name_99 (lost INTEGER, draw INTEGER) | How many losses have a draw greater than 0? |
SELECT AVG(match) FROM table_name_33 WHERE points < 6 | CREATE TABLE table_name_33 (match INTEGER, points INTEGER) | Which average match has points less than 6? |
SELECT AVG(draw) FROM table_name_52 WHERE points > 12 | CREATE TABLE table_name_52 (draw INTEGER, points INTEGER) | Which average draw has points greater than 12? |
SELECT trainer FROM table_name_54 WHERE time = "1:44.80" AND jockey = "william jenkins" | CREATE TABLE table_name_54 (trainer VARCHAR, time VARCHAR, jockey VARCHAR) | What Trainer had Jockey William Jenkins in a race with Time of 1:44.80? |
SELECT MIN(year) FROM table_name_6 WHERE purse = "$150,000" AND time = "1:49.00" | CREATE TABLE table_name_6 (year INTEGER, purse VARCHAR, time VARCHAR) | In what Year was the Purse $150,000 with a Time of 1:49.00? |
SELECT owner FROM table_name_64 WHERE trainer = "todd a. pletcher" | CREATE TABLE table_name_64 (owner VARCHAR, trainer VARCHAR) | What Owner's Trainer is Todd A. Pletcher? |
SELECT purse FROM table_name_41 WHERE year < 2009 AND owner = "harold a. allen" | CREATE TABLE table_name_41 (purse VARCHAR, year VARCHAR, owner VARCHAR) | What was the Purse for Owner Harold A. Allen prior to 2009? |
SELECT gdp__ppp__per_capita_2012_euro FROM table_name_49 WHERE population_in_millions > 10.8 AND gdp__nominal__per_capita_2012_euro = "25,600" | CREATE TABLE table_name_49 (gdp__ppp__per_capita_2012_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) | What is GDP (PPP) Per Capita 2012 Euro, when Population In Millions is greater than 10.8, and when GDP (Nominal) Per Capita 2012 Euro is 25,600? |
SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = "20,700(p)" | CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) | What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)? |
SELECT gdp__ppp__per_capita_2012_eu27_ = _100 FROM table_name_27 WHERE gdp_2012_millions_of_euro = "309,900" | CREATE TABLE table_name_27 (gdp__ppp__per_capita_2012_eu27_ VARCHAR, _100 VARCHAR, gdp_2012_millions_of_euro VARCHAR) | What is GDP (PPP) Per Capita 2012 EU27 = 100, when GDP 2012 Millions Of Euro is 309,900? |
SELECT population_in_millions FROM table_name_73 WHERE gdp_2012_millions_of_euro = "600,638" | CREATE TABLE table_name_73 (population_in_millions VARCHAR, gdp_2012_millions_of_euro VARCHAR) | What is Population in Millions, when GDP 2012 Millions of Euro is 600,638? |
SELECT money___$__ FROM table_name_22 WHERE player = "ernie els" | CREATE TABLE table_name_22 (money___$__ VARCHAR, player VARCHAR) | What was the Money for Player Ernie Els? |
SELECT player FROM table_name_93 WHERE place = "t9" AND score = 70 - 74 - 69 - 70 = 283 | CREATE TABLE table_name_93 (player VARCHAR, place VARCHAR, score VARCHAR) | What T9 Player had a Score of 70-74-69-70=283? |
SELECT money___$__ FROM table_name_90 WHERE place = "t1" AND score = 66 - 69 - 70 - 75 = 280 | CREATE TABLE table_name_90 (money___$__ VARCHAR, place VARCHAR, score VARCHAR) | What is the Money for the T1 Player with a Score of 66-69-70-75=280? |
SELECT money___$__ FROM table_name_46 WHERE player = "chris riley" | CREATE TABLE table_name_46 (money___$__ VARCHAR, player VARCHAR) | What is Chris Riley's Money? |
SELECT MIN(span_metres) FROM table_name_23 WHERE year_opened = "2007" AND country = "china" AND rank < 13 AND span_feet < 1378 | CREATE TABLE table_name_23 (span_metres INTEGER, span_feet VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR) | What is the lowest amount of Span metres when the year opened is 2007, the country is China, rank is less than 13, and the span feet is less than 1378? |
SELECT country FROM table_name_36 WHERE material = "concrete" AND span_metres < 270 AND span_feet > 837 AND year_opened = "1943" | CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR) | Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943? |
SELECT country FROM table_name_28 WHERE year_s__won = "1993" | CREATE TABLE table_name_28 (country VARCHAR, year_s__won VARCHAR) | What country won in 1993? |
SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = "+4" AND player = "bob tway" | CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) | What was the finish with a total larger than 286, a to par of +4 and Bob Tway played? |
SELECT player FROM table_name_78 WHERE country = "united states" AND total = 286 AND year_s__won = "2003" | CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR) | What player in the United States had a total of 286 and won in 2003? |
SELECT country FROM table_name_37 WHERE total = 293 | CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR) | What country has a total of 293? |
SELECT player FROM table_name_67 WHERE country = "fiji" | CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR) | What player is from Fiji? |
SELECT method FROM table_name_58 WHERE weight_class = "welterweight" AND card = "preliminary" | CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR) | Which method was used in the welterweight class with a preliminary card? |
SELECT method FROM table_name_15 WHERE round > 3 | CREATE TABLE table_name_15 (method VARCHAR, round INTEGER) | Which method was used in a round greater than 3? |
SELECT weight_class FROM table_name_65 WHERE time = "4:59" | CREATE TABLE table_name_65 (weight_class VARCHAR, time VARCHAR) | Which weight class had a time of 4:59? |
SELECT time FROM table_name_35 WHERE round < 3 | CREATE TABLE table_name_35 (time VARCHAR, round INTEGER) | What was the time for a round less than 3? |
SELECT MIN(round) FROM table_name_11 WHERE weight_class = "welterweight" AND card = "preliminary" | CREATE TABLE table_name_11 (round INTEGER, weight_class VARCHAR, card VARCHAR) | What is the smallest round for the welterweight class with a preliminary card? |
SELECT bulletins_to_all_contacts FROM table_name_43 WHERE transport_layer_security = "no" AND license = "proprietary" AND creator = "microsoft" | CREATE TABLE table_name_43 (bulletins_to_all_contacts VARCHAR, creator VARCHAR, transport_layer_security VARCHAR, license VARCHAR) | Were there Bulletins to all contacts of the proprietary license created by Microsoft with no transport layer of security? |
SELECT bulletins_to_all_contacts FROM table_name_69 WHERE creator = "gg network" | CREATE TABLE table_name_69 (bulletins_to_all_contacts VARCHAR, creator VARCHAR) | Were there Bulletins to all contacts of the license created by GG Network? |
SELECT license FROM table_name_72 WHERE creator = "ietf" | CREATE TABLE table_name_72 (license VARCHAR, creator VARCHAR) | What is the name of the license created by IETF? |
SELECT envelopment FROM table_name_83 WHERE family = "rhabdoviridae" | CREATE TABLE table_name_83 (envelopment VARCHAR, family VARCHAR) | What is the envelopment for the rhabdoviridae family? |
SELECT baltimore_group FROM table_name_13 WHERE virion_shape = "icosahedral" AND envelopment = "non-enveloped" AND replication_site = "cytoplasm" AND family = "astroviridae" | CREATE TABLE table_name_13 (baltimore_group VARCHAR, family VARCHAR, replication_site VARCHAR, virion_shape VARCHAR, envelopment VARCHAR) | Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family? |
SELECT baltimore_group FROM table_name_62 WHERE family = "retroviridae" | CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR) | Which Baltimore group is of the retroviridae family? |
SELECT baltimore_group FROM table_name_27 WHERE family = "togaviridae" | CREATE TABLE table_name_27 (baltimore_group VARCHAR, family VARCHAR) | Which Baltimore group is of the togaviridae family? |
SELECT baltimore_group FROM table_name_85 WHERE envelopment = "non-enveloped" AND family = "papillomaviridae" | CREATE TABLE table_name_85 (baltimore_group VARCHAR, envelopment VARCHAR, family VARCHAR) | Which Baltimore group is non-enveloped and is of the papillomaviridae family? |
SELECT replication_site FROM table_name_58 WHERE envelopment = "enveloped" AND family = "bunyaviridae" | CREATE TABLE table_name_58 (replication_site VARCHAR, envelopment VARCHAR, family VARCHAR) | What is the replication site when the species is enveloped and is of the bunyaviridae family? |
SELECT MAX(league_cup) FROM table_name_95 WHERE player = "steed malbranque" | CREATE TABLE table_name_95 (league_cup INTEGER, player VARCHAR) | What is the highest League Cup with a Player that is steed malbranque? |
Subsets and Splits