Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
7,900
<question>: What is the district with the candidates edwin gray (dr)? <context>: CREATE TABLE table_2668393_18 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_2668393_18 WHERE candidates = "Edwin Gray (DR)"
7,901
<question>: How many incumbents were first elected in 1797 with the candidates abram trigg (dr)? <context>: 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)"
7,902
<question>: What is the production code when the u.s. viewers (million) is 11.76? <context>: 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"
7,903
<question>: What was the u.s. viewers (millions) when the production code was 4alh19? <context>: CREATE TABLE table_26702204_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_26702204_1 WHERE production_code = "4ALH19"
7,904
<question>: What is the operator name when the distance is 3105km? <context>: CREATE TABLE table_26745820_1 (operator_name VARCHAR, distance VARCHAR)
SELECT operator_name FROM table_26745820_1 WHERE distance = "3105km"
7,905
<question>: what is the no when the distance is 4168km? <context>: CREATE TABLE table_26745820_1 (no VARCHAR, distance VARCHAR)
SELECT no FROM table_26745820_1 WHERE distance = "4168km"
7,906
<question>: How many people wrote the episode with 3.40 million U.S viewers? <context>: 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"
7,907
<question>: How many MotoGP winners were there when the circuit was Catalunya? <context>: CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR)
SELECT COUNT(motogp_winner) FROM table_26781017_1 WHERE circuit = "Catalunya"
7,908
<question>: Who are all the Moto2 winners when the grand prix was Shell Advance Malaysian Grand Prix? <context>: 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"
7,909
<question>: Who are all the motogp winners when the circuit was Catalunya? <context>: CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR)
SELECT motogp_winner FROM table_26781017_1 WHERE circuit = "Catalunya"
7,910
<question>: What was the area (km²) (per sqmi) of the country Colombia? <context>: 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"
7,911
<question>: What was the maximum population of the country with Quito as capital? <context>: 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"
7,912
<question>: What was the population of a country with a population density of 14.3/km² (/sqmi)? <context>: 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)"
7,913
<question>: What was the area (km²) (per sqmi) of a country with a population density per km² of 8.4/km² (/sqmi)? <context>: 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)"
7,914
<question>: What was the country with a population density per km² of 3.5/km² (/sqmi)? <context>: 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)"
7,915
<question>: What is the capital of the country with a population density per km² of 15.6/km² (/sqmi)? <context>: 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)"
7,916
<question>: what is the position for pick # 103? <context>: CREATE TABLE table_2679061_6 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_2679061_6 WHERE pick__number = 103
7,917
<question>: What is the pick # for nhl team vancouver canucks? <context>: CREATE TABLE table_2679061_6 (pick__number INTEGER, nhl_team VARCHAR)
SELECT MIN(pick__number) FROM table_2679061_6 WHERE nhl_team = "Vancouver Canucks"
7,918
<question>: What is the nationality of the player kevin stevens? <context>: CREATE TABLE table_2679061_6 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_2679061_6 WHERE player = "Kevin Stevens"
7,919
<question>: What is the highest pick number for player don barber? <context>: CREATE TABLE table_2679061_6 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_2679061_6 WHERE player = "Don Barber"
7,920
<question>: What is the college/junior/club team for player don barber? <context>: 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"
7,921
<question>: What is the nhl team for the position centre and nationality united states? <context>: 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"
7,922
<question>: What country do the Winnipeg Jets come from? <context>: CREATE TABLE table_2679061_7 (nationality VARCHAR, nhl_team VARCHAR)
SELECT nationality FROM table_2679061_7 WHERE nhl_team = "Winnipeg Jets"
7,923
<question>: How many teams got pick number 130? <context>: 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
7,924
<question>: Where are the Buffalo Sabres from? <context>: 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"
7,925
<question>: When harvey laidman is the director what is the season number? <context>: CREATE TABLE table_26804862_1 (season__number VARCHAR, directed_by VARCHAR)
SELECT season__number FROM table_26804862_1 WHERE directed_by = "Harvey Laidman"
7,926
<question>: When 3.89 is the production code how many season numbers are there? <context>: CREATE TABLE table_26804862_1 (season__number VARCHAR, production_code VARCHAR)
SELECT COUNT(season__number) FROM table_26804862_1 WHERE production_code = "3.89"
7,927
<question>: How many episodes is episode number 4 in the series? <context>: CREATE TABLE table_26808178_1 (title VARCHAR, series__number VARCHAR)
SELECT COUNT(title) FROM table_26808178_1 WHERE series__number = 4
7,928
<question>: How many million viewers watched episode 3 in the series? <context>: CREATE TABLE table_26808178_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR)
SELECT us_viewers__millions_ FROM table_26808178_1 WHERE series__number = 3
7,929
<question>: What is the maximum home attendance if the average is 11,322? <context>: CREATE TABLE table_26816495_26 (home_att INTEGER, avg VARCHAR)
SELECT MAX(home_att) FROM table_26816495_26 WHERE avg = "11,322"
7,930
<question>: What is title numer 103's rank for weekly rank sky1? <context>: CREATE TABLE table_26826304_2 (weekly_rank_sky1 VARCHAR, _number VARCHAR)
SELECT weekly_rank_sky1 FROM table_26826304_2 WHERE _number = 103
7,931
<question>: What was the rank by Weekly Rank Sky1 for title number 97? <context>: CREATE TABLE table_26826304_2 (weekly_rank_sky1 INTEGER, _number VARCHAR)
SELECT MIN(weekly_rank_sky1) FROM table_26826304_2 WHERE _number = 97
7,932
<question>: What was the weekly rank by Virgin media for the title aired on May 20, 2010? <context>: 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"
7,933
<question>: A what time was the title aired in October 22, 2009 <context>: CREATE TABLE table_26826304_2 (timeslot VARCHAR, air_date VARCHAR)
SELECT timeslot FROM table_26826304_2 WHERE air_date = "October 22, 2009"
7,934
<question>: What is the hand number of the hand where player 1 is south and the east wind is prevailing? <context>: 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"
7,935
<question>: What is player 1 when player 3 is South and the prevailing wind is South? <context>: 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"
7,936
<question>: Who directed the episode that had 0.54 million U.S. viewers? <context>: 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"
7,937
<question>: Who wrote the teleplay for the episode directed by Tim Robbins? <context>: CREATE TABLE table_26914076_4 (teleplay_by VARCHAR, directed_by VARCHAR)
SELECT teleplay_by FROM table_26914076_4 WHERE directed_by = "Tim Robbins"
7,938
<question>: Who directed the episode that had 0.57 million U.S. viewers? <context>: 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"
7,939
<question>: What number episode in the season was watched by 0.49 million U.S. viewers? <context>: CREATE TABLE table_26914076_4 (_number INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(_number) FROM table_26914076_4 WHERE us_viewers__millions_ = "0.49"
7,940
<question>: How many times is the series italian and the circuit is valencia? <context>: CREATE TABLE table_26920192_5 (round VARCHAR, series VARCHAR, circuit VARCHAR)
SELECT COUNT(round) FROM table_26920192_5 WHERE series = "Italian" AND circuit = "Valencia"
7,941
<question>: Who had the fastest lap for the circuit magione? <context>: CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, circuit VARCHAR)
SELECT fastest_lap FROM table_26920192_5 WHERE circuit = "Magione"
7,942
<question>: Who had the fastest lap when the winning driver is giorgio sanna? <context>: CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT fastest_lap FROM table_26920192_5 WHERE winning_driver = "Giorgio Sanna"
7,943
<question>: Who had the fastest lap when the winning driver was kristian ghedina? <context>: CREATE TABLE table_26920192_5 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT fastest_lap FROM table_26920192_5 WHERE winning_driver = "Kristian Ghedina"
7,944
<question>: What is the title of the episode directed by Romeo Tirone? <context>: CREATE TABLE table_26961951_6 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_26961951_6 WHERE directed_by = "Romeo Tirone"
7,945
<question>: When did the episode written by Abe Sylvia originally air? <context>: 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"
7,946
<question>: Which episode number had a viewership of 0.56 million? <context>: 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"
7,947
<question>: Who was the writer in the episode directed by Jesse Peretz? <context>: CREATE TABLE table_26961951_6 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_26961951_6 WHERE directed_by = "Jesse Peretz"
7,948
<question>: With the Royal Navy as Combatants B, what was the result? <context>: CREATE TABLE table_26977890_1 (result VARCHAR, combatants_b VARCHAR)
SELECT result FROM table_26977890_1 WHERE combatants_b = "Royal Navy"
7,949
<question>: In what conflicts was the Italian Navy Combatants B? <context>: CREATE TABLE table_26977890_1 (conflict VARCHAR, combatants_b VARCHAR)
SELECT conflict FROM table_26977890_1 WHERE combatants_b = "Italian Navy"
7,950
<question>: How many battles resulted in Battle of the Yellow Sea? <context>: CREATE TABLE table_26977890_1 (result VARCHAR, battles VARCHAR)
SELECT COUNT(result) FROM table_26977890_1 WHERE battles = "Battle of the Yellow Sea"
7,951
<question>: What is Paul Coward 492cc nourish Weslake's lowest rank? <context>: CREATE TABLE table_26986076_3 (rank INTEGER, rider VARCHAR)
SELECT MIN(rank) FROM table_26986076_3 WHERE rider = "Paul Coward 492cc Nourish Weslake"
7,952
<question>: What was the time on Monday August 23rd for Steve Linsdell 499cc royal enfield seeley? <context>: 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"
7,953
<question>: Does the model e5504 have a turbo boost? <context>: CREATE TABLE table_269920_17 (turbo_boost VARCHAR, model VARCHAR)
SELECT turbo_boost FROM table_269920_17 WHERE model = "E5504"
7,954
<question>: What is the speed of model x5560? <context>: CREATE TABLE table_269920_17 (speed__ghz_ VARCHAR, model VARCHAR)
SELECT speed__ghz_ FROM table_269920_17 WHERE model = "X5560"
7,955
<question>: 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? <context>: 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"
7,956
<question>: How many models numbered L5506 have a QPI speed? <context>: 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"
7,957
<question>: What was game 3 when there were under 2.61m viewers? <context>: CREATE TABLE table_27039190_3 (game_3 VARCHAR, viewers VARCHAR)
SELECT game_3 FROM table_27039190_3 WHERE viewers = "Under 2.61m"
7,958
<question>: How many episodes had 4.44m viewers? <context>: CREATE TABLE table_27039190_3 (episode VARCHAR, viewers VARCHAR)
SELECT COUNT(episode) FROM table_27039190_3 WHERE viewers = "4.44m"
7,959
<question>: What committees do the district 46 members serve on? <context>: CREATE TABLE table_27050981_7 (committee VARCHAR, district VARCHAR)
SELECT committee FROM table_27050981_7 WHERE district = "46"
7,960
<question>: Name the least league apps for total apps of 5 <context>: CREATE TABLE table_27086613_5 (league_apps INTEGER, total_apps VARCHAR)
SELECT MIN(league_apps) FROM table_27086613_5 WHERE total_apps = 5
7,961
<question>: Name the least fa cup goals with fa cup apps being 2 and fw <context>: 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"
7,962
<question>: Name the total apps for league apps being 4 <context>: CREATE TABLE table_27086613_5 (total_apps VARCHAR, league_apps VARCHAR)
SELECT total_apps FROM table_27086613_5 WHERE league_apps = 4
7,963
<question>: Please mention those appointment dates those are replaced by alfredo aglietti <context>: 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"
7,964
<question>: Mention all the applicable team who are replaced by gianluca atzori <context>: CREATE TABLE table_27114708_2 (team VARCHAR, replaced_by VARCHAR)
SELECT team FROM table_27114708_2 WHERE replaced_by = "Gianluca Atzori"
7,965
<question>: For team reggina please mention all the outgoing manager <context>: CREATE TABLE table_27114708_2 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_27114708_2 WHERE team = "Reggina"
7,966
<question>: For team ascoli please mention all the appointment date. <context>: CREATE TABLE table_27114708_2 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_27114708_2 WHERE team = "Ascoli"
7,967
<question>: For outgoing manager is alberto malesani mention all the applicable replaced by person <context>: CREATE TABLE table_27114708_2 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT replaced_by FROM table_27114708_2 WHERE outgoing_manager = "Alberto Malesani"
7,968
<question>: For livorno team mention all the manner of departure <context>: CREATE TABLE table_27114708_2 (manner_of_departure VARCHAR, team VARCHAR)
SELECT manner_of_departure FROM table_27114708_2 WHERE team = "Livorno"
7,969
<question>: Phil Klemmer wrote all titles and production code is 3t6455. <context>: 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"
7,970
<question>: Season 9 all the titles were no. in series. <context>: CREATE TABLE table_27115960_1 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_27115960_1 WHERE no_in_series = 9
7,971
<question>: Title is the total number where u.s. viewers (million) is 7.56. <context>: CREATE TABLE table_27115960_1 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(title) FROM table_27115960_1 WHERE us_viewers__million_ = "7.56"
7,972
<question>: How many items appear in the written by column in episode 3? <context>: CREATE TABLE table_27155243_4 (written_by VARCHAR, episode__number VARCHAR)
SELECT COUNT(written_by) FROM table_27155243_4 WHERE episode__number = 3
7,973
<question>: What episode was written by Matt Maclennan? <context>: CREATE TABLE table_27155243_4 (episode__number INTEGER, written_by VARCHAR)
SELECT MAX(episode__number) FROM table_27155243_4 WHERE written_by = "Matt MacLennan"
7,974
<question>: What is largest total number that was written by Sheri Elwood? <context>: CREATE TABLE table_27155243_4 (total__number INTEGER, written_by VARCHAR)
SELECT MAX(total__number) FROM table_27155243_4 WHERE written_by = "Sheri Elwood"
7,975
<question>: Name the air date for ratings of 2.19 million <context>: CREATE TABLE table_27218002_1 (originalairdate VARCHAR, ratings VARCHAR)
SELECT originalairdate FROM table_27218002_1 WHERE ratings = "2.19 Million"
7,976
<question>: Name who directed the air date of 12 july 2010 <context>: CREATE TABLE table_27218002_1 (directed_by VARCHAR, originalairdate VARCHAR)
SELECT directed_by FROM table_27218002_1 WHERE originalairdate = "12 July 2010"
7,977
<question>: Name the least episode number for jonathan harvey <context>: CREATE TABLE table_27218002_1 (episode__number INTEGER, written_by VARCHAR)
SELECT MIN(episode__number) FROM table_27218002_1 WHERE written_by = "Jonathan Harvey"
7,978
<question>: Name the total number of written by for 26 july 2010 <context>: CREATE TABLE table_27218002_1 (written_by VARCHAR, originalairdate VARCHAR)
SELECT COUNT(written_by) FROM table_27218002_1 WHERE originalairdate = "26 July 2010"
7,979
<question>: Which season had a result of 1–0 (aet)? <context>: CREATE TABLE table_27274566_2 (season VARCHAR, result VARCHAR)
SELECT season FROM table_27274566_2 WHERE result = "1–0 (aet)"
7,980
<question>: What is the date in the 2007-08 season where the away team was the kaizer chiefs? <context>: 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"
7,981
<question>: How many dates are shown for the home team of orlando pirates and result of 1–3? <context>: 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"
7,982
<question>: What is the division where the result was 0–2? <context>: CREATE TABLE table_27274566_2 (division VARCHAR, result VARCHAR)
SELECT division FROM table_27274566_2 WHERE result = "0–2"
7,983
<question>: What is the date where the home team was kaizer chiefs and the division was mtn 8 semi-final? <context>: 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"
7,984
<question>: What are the L2 cache specifications of part number amql64dam22gg? <context>: CREATE TABLE table_27277284_27 (l2_cache VARCHAR, order_part_number VARCHAR)
SELECT l2_cache FROM table_27277284_27 WHERE order_part_number = "AMQL64DAM22GG"
7,985
<question>: What is the operating voltage of part number amql64dam22gg? <context>: CREATE TABLE table_27277284_27 (voltage VARCHAR, order_part_number VARCHAR)
SELECT voltage FROM table_27277284_27 WHERE order_part_number = "AMQL64DAM22GG"
7,986
<question>: What are the possible multipliers for 1900MHz processors? <context>: CREATE TABLE table_27277284_27 (mult_1 VARCHAR, frequency VARCHAR)
SELECT mult_1 FROM table_27277284_27 WHERE frequency = "1900MHz"
7,987
<question>: How many thermal design power levels does part number amql65dam22gg have? <context>: CREATE TABLE table_27277284_27 (tdp VARCHAR, order_part_number VARCHAR)
SELECT COUNT(tdp) FROM table_27277284_27 WHERE order_part_number = "AMQL65DAM22GG"
7,988
<question>: What kind of sockets does a 2100MHz Athlon X2 QL-64 use? <context>: 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"
7,989
<question>: What is the total number of years active listings where Asian Cup played as a captain is Japan 1992? <context>: 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"
7,990
<question>: How many matches as captain were played where Asian Cup played as a captain is Qatar 1988 <context>: 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"
7,991
<question>: What were the years active where Asian Cup played as a captain is Iran 1976? <context>: 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"
7,992
<question>: What were the years active where Asian Cup played as a captain is Qatar 1988? <context>: 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"
7,993
<question>: Who is the first driver(s) when the country is romania? <context>: CREATE TABLE table_27279050_3 (first_driver_s_ VARCHAR, country VARCHAR)
SELECT first_driver_s_ FROM table_27279050_3 WHERE country = "Romania"
7,994
<question>: How many times is last/current driver(s) 3 november 2013 is adderly fong ( 2013 )? <context>: 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 )"
7,995
<question>: Who is the last/current driver(s) 3 november 2013 when first driver(s) is marlon stöckinger , kotaro sakurai ( 2011 )? <context>: 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 )"
7,996
<question>: What is the country when last/current driver(s) 3 november 2013 is daniel abt ( 2012 )? <context>: 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 )"
7,997
<question>: How many losses did the club who had 9 bonus points and 11 wins have? <context>: 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"
7,998
<question>: How many bonus points did the club who had 379 points for have? <context>: CREATE TABLE table_27293285_2 (bonus_points VARCHAR, points_for VARCHAR)
SELECT bonus_points FROM table_27293285_2 WHERE points_for = "379"
7,999
<question>: Which club had 5 bonus points? <context>: CREATE TABLE table_27293285_2 (club VARCHAR, bonus_points VARCHAR)
SELECT club FROM table_27293285_2 WHERE bonus_points = "5"