question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the district with the candidates edwin gray (dr)? | CREATE TABLE table_2668393_18 (district VARCHAR, candidates VARCHAR) | SELECT district FROM table_2668393_18 WHERE candidates = "Edwin Gray (DR)" |
How many incumbents were first elected in 1797 with the candidates abram trigg (dr)? | CREATE TABLE table_2668393_18 (incumbent VARCHAR, first_elected VARCHAR, candidates VARCHAR) | SELECT COUNT(incumbent) FROM table_2668393_18 WHERE first_elected = "1797" AND candidates = "Abram Trigg (DR)" |
What is the production code when the u.s. viewers (million) is 11.76? | CREATE TABLE table_26702204_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) | SELECT production_code FROM table_26702204_1 WHERE us_viewers__million_ = "11.76" |
What was the u.s. viewers (millions) when the production code was 4alh19? | CREATE TABLE table_26702204_1 (us_viewers__million_ VARCHAR, production_code VARCHAR) | SELECT us_viewers__million_ FROM table_26702204_1 WHERE production_code = "4ALH19" |
What is the operator name when the distance is 3105km? | CREATE TABLE table_26745820_1 (operator_name VARCHAR, distance VARCHAR) | SELECT operator_name FROM table_26745820_1 WHERE distance = "3105km" |
what is the no when the distance is 4168km? | CREATE TABLE table_26745820_1 (no VARCHAR, distance VARCHAR) | SELECT no FROM table_26745820_1 WHERE distance = "4168km" |
How many people wrote the episode with 3.40 million U.S viewers? | CREATE TABLE table_26748252_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR) | SELECT COUNT(written_by) FROM table_26748252_1 WHERE us_viewers__in_millions_ = "3.40" |
How many MotoGP winners were there when the circuit was Catalunya? | CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR) | SELECT COUNT(motogp_winner) FROM table_26781017_1 WHERE circuit = "Catalunya" |
Who are all the Moto2 winners when the grand prix was Shell Advance Malaysian Grand Prix? | CREATE TABLE table_26781017_1 (moto2_winner VARCHAR, grand_prix VARCHAR) | SELECT moto2_winner FROM table_26781017_1 WHERE grand_prix = "Shell Advance Malaysian grand_prix" |
Who are all the motogp winners when the circuit was Catalunya? | CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR) | SELECT motogp_winner FROM table_26781017_1 WHERE circuit = "Catalunya" |
What was the area (km²) (per sqmi) of the country Colombia? | CREATE TABLE table_26769_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR) | SELECT area__km²___per_sqmi_ FROM table_26769_1 WHERE country_or_territory_with_flag = "Colombia" |
What was the maximum population of the country with Quito as capital? | CREATE TABLE table_26769_1 (population__july_2009_est_ INTEGER, capital VARCHAR) | SELECT MAX(population__july_2009_est_) FROM table_26769_1 WHERE capital = "Quito" |
What was the population of a country with a population density of 14.3/km² (/sqmi)? | CREATE TABLE table_26769_1 (population__july_2009_est_ VARCHAR, population_density_per_km² VARCHAR) | SELECT population__july_2009_est_ FROM table_26769_1 WHERE population_density_per_km² = "14.3/km² (/sqmi)" |
What was the area (km²) (per sqmi) of a country with a population density per km² of 8.4/km² (/sqmi)? | CREATE TABLE table_26769_1 (area__km²___per_sqmi_ VARCHAR, population_density_per_km² VARCHAR) | SELECT area__km²___per_sqmi_ FROM table_26769_1 WHERE population_density_per_km² = "8.4/km² (/sqmi)" |
What was the country with a population density per km² of 3.5/km² (/sqmi)? | CREATE TABLE table_26769_1 (country_or_territory_with_flag VARCHAR, population_density_per_km² VARCHAR) | SELECT country_or_territory_with_flag FROM table_26769_1 WHERE population_density_per_km² = "3.5/km² (/sqmi)" |
What is the capital of the country with a population density per km² of 15.6/km² (/sqmi)? | CREATE TABLE table_26769_1 (capital VARCHAR, population_density_per_km² VARCHAR) | SELECT capital FROM table_26769_1 WHERE population_density_per_km² = "15.6/km² (/sqmi)" |
what is the position for pick # 103? | CREATE TABLE table_2679061_6 (position VARCHAR, pick__number VARCHAR) | SELECT position FROM table_2679061_6 WHERE pick__number = 103 |
What is the pick # for nhl team vancouver canucks? | CREATE TABLE table_2679061_6 (pick__number INTEGER, nhl_team VARCHAR) | SELECT MIN(pick__number) FROM table_2679061_6 WHERE nhl_team = "Vancouver Canucks" |
What is the nationality of the player kevin stevens? | CREATE TABLE table_2679061_6 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_2679061_6 WHERE player = "Kevin Stevens" |
What is the highest pick number for player don barber? | CREATE TABLE table_2679061_6 (pick__number INTEGER, player VARCHAR) | SELECT MAX(pick__number) FROM table_2679061_6 WHERE player = "Don Barber" |
What is the college/junior/club team for player don barber? | CREATE TABLE table_2679061_6 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2679061_6 WHERE player = "Don Barber" |
What is the nhl team for the position centre and nationality united states? | CREATE TABLE table_2679061_6 (nhl_team VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT nhl_team FROM table_2679061_6 WHERE position = "Centre" AND nationality = "United States" |
What country do the Winnipeg Jets come from? | CREATE TABLE table_2679061_7 (nationality VARCHAR, nhl_team VARCHAR) | SELECT nationality FROM table_2679061_7 WHERE nhl_team = "Winnipeg Jets" |
How many teams got pick number 130? | CREATE TABLE table_2679061_7 (college_junior_club_team VARCHAR, pick__number VARCHAR) | SELECT COUNT(college_junior_club_team) FROM table_2679061_7 WHERE pick__number = 130 |
Where are the Buffalo Sabres from? | CREATE TABLE table_2679061_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_2679061_7 WHERE nhl_team = "Buffalo Sabres" |
When harvey laidman is the director what is the season number? | CREATE TABLE table_26804862_1 (season__number VARCHAR, directed_by VARCHAR) | SELECT season__number FROM table_26804862_1 WHERE directed_by = "Harvey Laidman" |
When 3.89 is the production code how many season numbers are there? | CREATE TABLE table_26804862_1 (season__number VARCHAR, production_code VARCHAR) | SELECT COUNT(season__number) FROM table_26804862_1 WHERE production_code = "3.89" |
How many episodes is episode number 4 in the series? | CREATE TABLE table_26808178_1 (title VARCHAR, series__number VARCHAR) | SELECT COUNT(title) FROM table_26808178_1 WHERE series__number = 4 |
How many million viewers watched episode 3 in the series? | CREATE TABLE table_26808178_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR) | SELECT us_viewers__millions_ FROM table_26808178_1 WHERE series__number = 3 |
What is the maximum home attendance if the average is 11,322? | CREATE TABLE table_26816495_26 (home_att INTEGER, avg VARCHAR) | SELECT MAX(home_att) FROM table_26816495_26 WHERE avg = "11,322" |
What is title numer 103's rank for weekly rank sky1? | CREATE TABLE table_26826304_2 (weekly_rank_sky1 VARCHAR, _number VARCHAR) | SELECT weekly_rank_sky1 FROM table_26826304_2 WHERE _number = 103 |
What was the rank by Weekly Rank Sky1 for title number 97? | CREATE TABLE table_26826304_2 (weekly_rank_sky1 INTEGER, _number VARCHAR) | SELECT MIN(weekly_rank_sky1) FROM table_26826304_2 WHERE _number = 97 |
What was the weekly rank by Virgin media for the title aired on May 20, 2010? | CREATE TABLE table_26826304_2 (weekly_rank_virgin_media INTEGER, air_date VARCHAR) | SELECT MIN(weekly_rank_virgin_media) FROM table_26826304_2 WHERE air_date = "May 20, 2010" |
A what time was the title aired in October 22, 2009 | CREATE TABLE table_26826304_2 (timeslot VARCHAR, air_date VARCHAR) | SELECT timeslot FROM table_26826304_2 WHERE air_date = "October 22, 2009" |
What is the hand number of the hand where player 1 is south and the east wind is prevailing? | CREATE TABLE table_26853172_1 (hand_number VARCHAR, player_1 VARCHAR, prevailing_wind VARCHAR) | SELECT COUNT(hand_number) FROM table_26853172_1 WHERE player_1 = "South" AND prevailing_wind = "East" |
What is player 1 when player 3 is South and the prevailing wind is South? | CREATE TABLE table_26853172_1 (player_1 VARCHAR, player_3 VARCHAR, prevailing_wind VARCHAR) | SELECT player_1 FROM table_26853172_1 WHERE player_3 = "South" AND prevailing_wind = "South" |
Who directed the episode that had 0.54 million U.S. viewers? | CREATE TABLE table_26914076_4 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT directed_by FROM table_26914076_4 WHERE us_viewers__millions_ = "0.54" |
Who wrote the teleplay for the episode directed by Tim Robbins? | CREATE TABLE table_26914076_4 (teleplay_by VARCHAR, directed_by VARCHAR) | SELECT teleplay_by FROM table_26914076_4 WHERE directed_by = "Tim Robbins" |
Who directed the episode that had 0.57 million U.S. viewers? | CREATE TABLE table_26914076_4 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT directed_by FROM table_26914076_4 WHERE us_viewers__millions_ = "0.57" |
What number episode in the season was watched by 0.49 million U.S. viewers? | CREATE TABLE table_26914076_4 (_number INTEGER, us_viewers__millions_ VARCHAR) | SELECT MAX(_number) FROM table_26914076_4 WHERE us_viewers__millions_ = "0.49" |
How many times is the series italian and the circuit is valencia? | CREATE TABLE table_26920192_5 (round VARCHAR, series VARCHAR, circuit VARCHAR) | SELECT COUNT(round) FROM table_26920192_5 WHERE series = "Italian" AND circuit = "Valencia" |
Who had the fastest lap for the circuit magione? | CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, circuit VARCHAR) | SELECT fastest_lap FROM table_26920192_5 WHERE circuit = "Magione" |
Who had the fastest lap when the winning driver is giorgio sanna? | CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT fastest_lap FROM table_26920192_5 WHERE winning_driver = "Giorgio Sanna" |
Who had the fastest lap when the winning driver was kristian ghedina? | CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT fastest_lap FROM table_26920192_5 WHERE winning_driver = "Kristian Ghedina" |
What is the title of the episode directed by Romeo Tirone? | CREATE TABLE table_26961951_6 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_26961951_6 WHERE directed_by = "Romeo Tirone" |
When did the episode written by Abe Sylvia originally air? | CREATE TABLE table_26961951_6 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_26961951_6 WHERE written_by = "Abe Sylvia" |
Which episode number had a viewership of 0.56 million? | CREATE TABLE table_26961951_6 (no_in_series INTEGER, us_viewers__million_ VARCHAR) | SELECT MAX(no_in_series) FROM table_26961951_6 WHERE us_viewers__million_ = "0.56" |
Who was the writer in the episode directed by Jesse Peretz? | CREATE TABLE table_26961951_6 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_26961951_6 WHERE directed_by = "Jesse Peretz" |
With the Royal Navy as Combatants B, what was the result? | CREATE TABLE table_26977890_1 (result VARCHAR, combatants_b VARCHAR) | SELECT result FROM table_26977890_1 WHERE combatants_b = "Royal Navy" |
In what conflicts was the Italian Navy Combatants B? | CREATE TABLE table_26977890_1 (conflict VARCHAR, combatants_b VARCHAR) | SELECT conflict FROM table_26977890_1 WHERE combatants_b = "Italian Navy" |
How many battles resulted in Battle of the Yellow Sea? | CREATE TABLE table_26977890_1 (result VARCHAR, battles VARCHAR) | SELECT COUNT(result) FROM table_26977890_1 WHERE battles = "Battle of the Yellow Sea" |
What is Paul Coward 492cc nourish Weslake's lowest rank? | CREATE TABLE table_26986076_3 (rank INTEGER, rider VARCHAR) | SELECT MIN(rank) FROM table_26986076_3 WHERE rider = "Paul Coward 492cc Nourish Weslake" |
What was the time on Monday August 23rd for Steve Linsdell 499cc royal enfield seeley? | CREATE TABLE table_26986076_3 (mon_23_aug VARCHAR, rider VARCHAR) | SELECT mon_23_aug FROM table_26986076_3 WHERE rider = "Steve Linsdell 499cc Royal Enfield Seeley" |
Does the model e5504 have a turbo boost? | CREATE TABLE table_269920_17 (turbo_boost VARCHAR, model VARCHAR) | SELECT turbo_boost FROM table_269920_17 WHERE model = "E5504" |
What is the speed of model x5560? | CREATE TABLE table_269920_17 (speed__ghz_ VARCHAR, model VARCHAR) | SELECT speed__ghz_ FROM table_269920_17 WHERE model = "X5560" |
What is the maximum L3 cache of the processor whose speed is 2.00 GHZ, has a QPI speed of 4.8 gt/s, and is model e5504? | CREATE TABLE table_269920_17 (l3_cache__mb_ INTEGER, model VARCHAR, qpi_speed__gt_s_ VARCHAR, speed__ghz_ VARCHAR) | SELECT MAX(l3_cache__mb_) FROM table_269920_17 WHERE qpi_speed__gt_s_ = "4.8" AND speed__ghz_ = "2.00" AND model = "E5504" |
How many models numbered L5506 have a QPI speed? | CREATE TABLE table_269920_17 (qpi_speed__gt_s_ VARCHAR, model VARCHAR) | SELECT COUNT(qpi_speed__gt_s_) FROM table_269920_17 WHERE model = "L5506" |
What was game 3 when there were under 2.61m viewers? | CREATE TABLE table_27039190_3 (game_3 VARCHAR, viewers VARCHAR) | SELECT game_3 FROM table_27039190_3 WHERE viewers = "Under 2.61m" |
How many episodes had 4.44m viewers? | CREATE TABLE table_27039190_3 (episode VARCHAR, viewers VARCHAR) | SELECT COUNT(episode) FROM table_27039190_3 WHERE viewers = "4.44m" |
What committees do the district 46 members serve on? | CREATE TABLE table_27050981_7 (committee VARCHAR, district VARCHAR) | SELECT committee FROM table_27050981_7 WHERE district = "46" |
Name the least league apps for total apps of 5 | CREATE TABLE table_27086613_5 (league_apps INTEGER, total_apps VARCHAR) | SELECT MIN(league_apps) FROM table_27086613_5 WHERE total_apps = 5 |
Name the least fa cup goals with fa cup apps being 2 and fw | CREATE TABLE table_27086613_5 (fa_cup_goals INTEGER, fa_cup_apps VARCHAR, position VARCHAR) | SELECT MIN(fa_cup_goals) FROM table_27086613_5 WHERE fa_cup_apps = 2 AND position = "FW" |
Name the total apps for league apps being 4 | CREATE TABLE table_27086613_5 (total_apps VARCHAR, league_apps VARCHAR) | SELECT total_apps FROM table_27086613_5 WHERE league_apps = 4 |
Please mention those appointment dates those are replaced by alfredo aglietti | CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR, replaced_by VARCHAR) | SELECT date_of_appointment FROM table_27114708_2 WHERE replaced_by = "Alfredo Aglietti" |
Mention all the applicable team who are replaced by gianluca atzori | CREATE TABLE table_27114708_2 (team VARCHAR, replaced_by VARCHAR) | SELECT team FROM table_27114708_2 WHERE replaced_by = "Gianluca Atzori" |
For team reggina please mention all the outgoing manager | CREATE TABLE table_27114708_2 (outgoing_manager VARCHAR, team VARCHAR) | SELECT outgoing_manager FROM table_27114708_2 WHERE team = "Reggina" |
For team ascoli please mention all the appointment date. | CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR, team VARCHAR) | SELECT date_of_appointment FROM table_27114708_2 WHERE team = "Ascoli" |
For outgoing manager is alberto malesani mention all the applicable replaced by person | CREATE TABLE table_27114708_2 (replaced_by VARCHAR, outgoing_manager VARCHAR) | SELECT replaced_by FROM table_27114708_2 WHERE outgoing_manager = "Alberto Malesani" |
For livorno team mention all the manner of departure | CREATE TABLE table_27114708_2 (manner_of_departure VARCHAR, team VARCHAR) | SELECT manner_of_departure FROM table_27114708_2 WHERE team = "Livorno" |
Phil Klemmer wrote all titles and production code is 3t6455. | CREATE TABLE table_27115960_1 (title VARCHAR, written_by VARCHAR, production_code VARCHAR) | SELECT title FROM table_27115960_1 WHERE written_by = "Phil Klemmer" AND production_code = "3T6455" |
Season 9 all the titles were no. in series. | CREATE TABLE table_27115960_1 (title VARCHAR, no_in_series VARCHAR) | SELECT title FROM table_27115960_1 WHERE no_in_series = 9 |
Title is the total number where u.s. viewers (million) is 7.56. | CREATE TABLE table_27115960_1 (title VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT(title) FROM table_27115960_1 WHERE us_viewers__million_ = "7.56" |
How many items appear in the written by column in episode 3? | CREATE TABLE table_27155243_4 (written_by VARCHAR, episode__number VARCHAR) | SELECT COUNT(written_by) FROM table_27155243_4 WHERE episode__number = 3 |
What episode was written by Matt Maclennan? | CREATE TABLE table_27155243_4 (episode__number INTEGER, written_by VARCHAR) | SELECT MAX(episode__number) FROM table_27155243_4 WHERE written_by = "Matt MacLennan" |
What is largest total number that was written by Sheri Elwood? | CREATE TABLE table_27155243_4 (total__number INTEGER, written_by VARCHAR) | SELECT MAX(total__number) FROM table_27155243_4 WHERE written_by = "Sheri Elwood" |
Name the air date for ratings of 2.19 million | CREATE TABLE table_27218002_1 (originalairdate VARCHAR, ratings VARCHAR) | SELECT originalairdate FROM table_27218002_1 WHERE ratings = "2.19 Million" |
Name who directed the air date of 12 july 2010 | CREATE TABLE table_27218002_1 (directed_by VARCHAR, originalairdate VARCHAR) | SELECT directed_by FROM table_27218002_1 WHERE originalairdate = "12 July 2010" |
Name the least episode number for jonathan harvey | CREATE TABLE table_27218002_1 (episode__number INTEGER, written_by VARCHAR) | SELECT MIN(episode__number) FROM table_27218002_1 WHERE written_by = "Jonathan Harvey" |
Name the total number of written by for 26 july 2010 | CREATE TABLE table_27218002_1 (written_by VARCHAR, originalairdate VARCHAR) | SELECT COUNT(written_by) FROM table_27218002_1 WHERE originalairdate = "26 July 2010" |
Which season had a result of 1–0 (aet)? | CREATE TABLE table_27274566_2 (season VARCHAR, result VARCHAR) | SELECT season FROM table_27274566_2 WHERE result = "1–0 (aet)" |
What is the date in the 2007-08 season where the away team was the kaizer chiefs? | CREATE TABLE table_27274566_2 (date VARCHAR, season VARCHAR, away_team VARCHAR) | SELECT date FROM table_27274566_2 WHERE season = "2007-08" AND away_team = "Kaizer Chiefs" |
How many dates are shown for the home team of orlando pirates and result of 1–3? | CREATE TABLE table_27274566_2 (date VARCHAR, home_team VARCHAR, result VARCHAR) | SELECT COUNT(date) FROM table_27274566_2 WHERE home_team = "Orlando Pirates" AND result = "1–3" |
What is the division where the result was 0–2? | CREATE TABLE table_27274566_2 (division VARCHAR, result VARCHAR) | SELECT division FROM table_27274566_2 WHERE result = "0–2" |
What is the date where the home team was kaizer chiefs and the division was mtn 8 semi-final? | CREATE TABLE table_27274566_2 (date VARCHAR, home_team VARCHAR, division VARCHAR) | SELECT date FROM table_27274566_2 WHERE home_team = "Kaizer Chiefs" AND division = "MTN 8 Semi-final" |
What are the L2 cache specifications of part number amql64dam22gg? | CREATE TABLE table_27277284_27 (l2_cache VARCHAR, order_part_number VARCHAR) | SELECT l2_cache FROM table_27277284_27 WHERE order_part_number = "AMQL64DAM22GG" |
What is the operating voltage of part number amql64dam22gg? | CREATE TABLE table_27277284_27 (voltage VARCHAR, order_part_number VARCHAR) | SELECT voltage FROM table_27277284_27 WHERE order_part_number = "AMQL64DAM22GG" |
What are the possible multipliers for 1900MHz processors? | CREATE TABLE table_27277284_27 (mult_1 VARCHAR, frequency VARCHAR) | SELECT mult_1 FROM table_27277284_27 WHERE frequency = "1900MHz" |
How many thermal design power levels does part number amql65dam22gg have? | CREATE TABLE table_27277284_27 (tdp VARCHAR, order_part_number VARCHAR) | SELECT COUNT(tdp) FROM table_27277284_27 WHERE order_part_number = "AMQL65DAM22GG" |
What kind of sockets does a 2100MHz Athlon X2 QL-64 use? | CREATE TABLE table_27277284_27 (socket VARCHAR, frequency VARCHAR, model_number VARCHAR) | SELECT socket FROM table_27277284_27 WHERE frequency = "2100MHz" AND model_number = "Athlon X2 QL-64" |
What is the total number of years active listings where Asian Cup played as a captain is Japan 1992? | CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR) | SELECT COUNT(years_active) FROM table_272865_20 WHERE asian_cup_played_as_a_captain = "Japan 1992" |
How many matches as captain were played where Asian Cup played as a captain is Qatar 1988 | CREATE TABLE table_272865_20 (matches_as_captain VARCHAR, asian_cup_played_as_a_captain VARCHAR) | SELECT matches_as_captain FROM table_272865_20 WHERE asian_cup_played_as_a_captain = "Qatar 1988" |
What were the years active where Asian Cup played as a captain is Iran 1976? | CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR) | SELECT years_active FROM table_272865_20 WHERE asian_cup_played_as_a_captain = "Iran 1976" |
What were the years active where Asian Cup played as a captain is Qatar 1988? | CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR) | SELECT years_active FROM table_272865_20 WHERE asian_cup_played_as_a_captain = "Qatar 1988" |
Who is the first driver(s) when the country is romania? | CREATE TABLE table_27279050_3 (first_driver_s_ VARCHAR, country VARCHAR) | SELECT first_driver_s_ FROM table_27279050_3 WHERE country = "Romania" |
How many times is last/current driver(s) 3 november 2013 is adderly fong ( 2013 )? | CREATE TABLE table_27279050_3 (country VARCHAR, last_current_driver_s__3_november_2013 VARCHAR) | SELECT COUNT(country) FROM table_27279050_3 WHERE last_current_driver_s__3_november_2013 = "Adderly Fong ( 2013 )" |
Who is the last/current driver(s) 3 november 2013 when first driver(s) is marlon stöckinger , kotaro sakurai ( 2011 )? | CREATE TABLE table_27279050_3 (last_current_driver_s__3_november_2013 VARCHAR, first_driver_s_ VARCHAR) | SELECT last_current_driver_s__3_november_2013 FROM table_27279050_3 WHERE first_driver_s_ = "Marlon Stöckinger , Kotaro Sakurai ( 2011 )" |
What is the country when last/current driver(s) 3 november 2013 is daniel abt ( 2012 )? | CREATE TABLE table_27279050_3 (country VARCHAR, last_current_driver_s__3_november_2013 VARCHAR) | SELECT country FROM table_27279050_3 WHERE last_current_driver_s__3_november_2013 = "Daniel Abt ( 2012 )" |
How many losses did the club who had 9 bonus points and 11 wins have? | CREATE TABLE table_27293285_2 (lost VARCHAR, bonus_points VARCHAR, won VARCHAR) | SELECT lost FROM table_27293285_2 WHERE bonus_points = "9" AND won = "11" |
How many bonus points did the club who had 379 points for have? | CREATE TABLE table_27293285_2 (bonus_points VARCHAR, points_for VARCHAR) | SELECT bonus_points FROM table_27293285_2 WHERE points_for = "379" |
Which club had 5 bonus points? | CREATE TABLE table_27293285_2 (club VARCHAR, bonus_points VARCHAR) | SELECT club FROM table_27293285_2 WHERE bonus_points = "5" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.