answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT cores FROM table_24099628_1 WHERE model__list_ = "E2xxx"
CREATE TABLE table_24099628_1 (cores VARCHAR, model__list_ VARCHAR)
What is the number of cores associated with model name e2xxx?
SELECT tdp FROM table_24099628_1 WHERE model__list_ = "4x0"
CREATE TABLE table_24099628_1 (tdp VARCHAR, model__list_ VARCHAR)
What is the wattage/TDP associated with model name 4x0?
SELECT tdp FROM table_24100843_1 WHERE socket = "BGA956" AND processor = "Penryn-3M"
CREATE TABLE table_24100843_1 (tdp VARCHAR, socket VARCHAR, processor VARCHAR)
When the socket is bga956 and processor is penryn-3m, what is the tdp?
SELECT processor FROM table_24100843_1 WHERE model__list_ = "P9xxx"
CREATE TABLE table_24100843_1 (processor VARCHAR, model__list_ VARCHAR)
Whats the processor for p9xxx?
SELECT l2_cache FROM table_24099916_1 WHERE tdp = "5.5-10 W"
CREATE TABLE table_24099916_1 (l2_cache VARCHAR, tdp VARCHAR)
What's the l2 cache of the model with TDP of 5.5-10 w?
SELECT model__list_ FROM table_24099916_1 WHERE socket = "BGA479" AND tdp = "5.5 W"
CREATE TABLE table_24099916_1 (model__list_ VARCHAR, socket VARCHAR, tdp VARCHAR)
What's the model of the processor with BGA479 socket and a 5.5 w TDP?
SELECT model__list_ FROM table_24099916_1 WHERE tdp = "5.5 W"
CREATE TABLE table_24099916_1 (model__list_ VARCHAR, tdp VARCHAR)
What's the model of the processor with a 5.5 w TDP?
SELECT MIN(cores) FROM table_24099916_1
CREATE TABLE table_24099916_1 (cores INTEGER)
What's the smallest number for cores of any of the processor models?
SELECT model__list_ FROM table_24101118_1 WHERE processor = "Yorkfield" AND brand_name = "Xeon"
CREATE TABLE table_24101118_1 (model__list_ VARCHAR, processor VARCHAR, brand_name VARCHAR)
what is the model where the processor is yorkfield and the brand name is xeon?
SELECT socket FROM table_24101118_1 WHERE brand_name = "Core 2 Extreme"
CREATE TABLE table_24101118_1 (socket VARCHAR, brand_name VARCHAR)
what is the socket that has a brand name of core 2 extreme?
SELECT processor FROM table_24101118_1 WHERE model__list_ = "X33x0"
CREATE TABLE table_24101118_1 (processor VARCHAR, model__list_ VARCHAR)
what is the name of the processor for model x33x0?
SELECT MIN(before) FROM table_24108789_4
CREATE TABLE table_24108789_4 (before INTEGER)
What is the earliest number in before?
SELECT MAX(after) FROM table_24108789_4 WHERE player = "Steve Stricker"
CREATE TABLE table_24108789_4 (after INTEGER, player VARCHAR)
What is the latest after when the player is Steve Stricker?
SELECT before FROM table_24108789_4 WHERE player = "Geoff Ogilvy"
CREATE TABLE table_24108789_4 (before VARCHAR, player VARCHAR)
List all before numbers when Geoff Ogilvy was playing.
SELECT MIN(events) FROM table_24108789_6 WHERE _number = 7
CREATE TABLE table_24108789_6 (events INTEGER, _number VARCHAR)
Name the least events for number 7
SELECT COUNT(events) FROM table_24108789_6 WHERE points = 3031
CREATE TABLE table_24108789_6 (events VARCHAR, points VARCHAR)
Name the number of events for 3031
SELECT player FROM table_24108789_6 WHERE events = 22
CREATE TABLE table_24108789_6 (player VARCHAR, events VARCHAR)
Name the player for 22 events
SELECT MIN(points) FROM table_24108789_6 WHERE _number = 6
CREATE TABLE table_24108789_6 (points INTEGER, _number VARCHAR)
Name the least points for number 6
SELECT MAX(_number) FROM table_24108789_6 WHERE player = "Steve Stricker"
CREATE TABLE table_24108789_6 (_number INTEGER, player VARCHAR)
Name the most number for steve stricker
SELECT COUNT(points) FROM table_24108789_6 WHERE reset_points = 800
CREATE TABLE table_24108789_6 (points VARCHAR, reset_points VARCHAR)
Name the total number of points for 800 reset
SELECT kennedy__percentage FROM table_24115349_4 WHERE coakley__percentage = "37.9%"
CREATE TABLE table_24115349_4 (kennedy__percentage VARCHAR, coakley__percentage VARCHAR)
What percentage did kennedy win while coakly won 37.9%
SELECT MIN(kennedy_votes) FROM table_24115349_4 WHERE coakley__percentage = "66.2%"
CREATE TABLE table_24115349_4 (kennedy_votes INTEGER, coakley__percentage VARCHAR)
How many votes did kennedy win when coakley won 66.2%
SELECT coakley__percentage FROM table_24115349_4 WHERE kennedy__percentage = "1.6%"
CREATE TABLE table_24115349_4 (coakley__percentage VARCHAR, kennedy__percentage VARCHAR)
What was the percentage of votes for coakley when kennedy won 1.6%
SELECT COUNT(kennedy_votes) FROM table_24115349_4 WHERE coakley_votes = 2139
CREATE TABLE table_24115349_4 (kennedy_votes VARCHAR, coakley_votes VARCHAR)
How many votes did kennedy win when coaklely won 2139 votes?
SELECT COUNT(location) FROM table_24123547_2 WHERE week = 7
CREATE TABLE table_24123547_2 (location VARCHAR, week VARCHAR)
How many locations did the team play at on week 7?
SELECT final_score FROM table_24123547_2 WHERE opponent = "Lions"
CREATE TABLE table_24123547_2 (final_score VARCHAR, opponent VARCHAR)
What was the result of the games VS the Lions?
SELECT COUNT(date) FROM table_24126518_2 WHERE opponent = "Alouettes"
CREATE TABLE table_24126518_2 (date VARCHAR, opponent VARCHAR)
Name the number of dates for alouettes
SELECT MIN(attendance) FROM table_24126518_2 WHERE final_score = "L 36–1"
CREATE TABLE table_24126518_2 (attendance INTEGER, final_score VARCHAR)
Name the least attendance for l 36–1
SELECT final_score FROM table_24126518_2 WHERE location = "Exhibition Stadium" AND date = "September 10"
CREATE TABLE table_24126518_2 (final_score VARCHAR, location VARCHAR, date VARCHAR)
Name the final score for exhibition stadium for september 10
SELECT COUNT(record) FROM table_24126518_2 WHERE week = 11
CREATE TABLE table_24126518_2 (record VARCHAR, week VARCHAR)
Name the number of record for week 11
SELECT opponent FROM table_24126606_2 WHERE week = 12
CREATE TABLE table_24126606_2 (opponent VARCHAR, week VARCHAR)
Name the opponent for week 12
SELECT COUNT(opponent) FROM table_24126606_2 WHERE date = "October 3"
CREATE TABLE table_24126606_2 (opponent VARCHAR, date VARCHAR)
Name the total number of opponent for october 3
SELECT final_score FROM table_24126606_2 WHERE week = 5
CREATE TABLE table_24126606_2 (final_score VARCHAR, week VARCHAR)
Name the final score for week 5
SELECT directed_by FROM table_24132054_1 WHERE no_in_series = 28
CREATE TABLE table_24132054_1 (directed_by VARCHAR, no_in_series VARCHAR)
Who directed episode 28 in the series?
SELECT MIN(no_in_series) FROM table_24132083_1 WHERE written_by = "Lauren Gussis"
CREATE TABLE table_24132083_1 (no_in_series INTEGER, written_by VARCHAR)
What in the series number of the episode written by Lauren Gussis?
SELECT COUNT(original_air_date) FROM table_24132083_1 WHERE directed_by = "Marcos Siega" AND written_by = "Scott Buck"
CREATE TABLE table_24132083_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)
On how many different dates did the episode directed by Marcos Siega and written by Scott Buck air for the first time?
SELECT MIN(no_in_series) FROM table_24132083_1 WHERE written_by = "Tim Schlattmann"
CREATE TABLE table_24132083_1 (no_in_series INTEGER, written_by VARCHAR)
What's the series number of the episode written by Tim Schlattmann?
SELECT semifinal_matches FROM table_2413292_1 WHERE commercial_name = "Buick WCT Finals"
CREATE TABLE table_2413292_1 (semifinal_matches VARCHAR, commercial_name VARCHAR)
Who played in the semi finals matches at the Buick WCT finals?
SELECT date FROM table_24138601_2 WHERE final_score = "L 28–15"
CREATE TABLE table_24138601_2 (date VARCHAR, final_score VARCHAR)
Name the date for l 28–15
SELECT location FROM table_24136365_2 WHERE opponent = "Tiger-Cats"
CREATE TABLE table_24136365_2 (location VARCHAR, opponent VARCHAR)
When tiger-cats is the opponent what is the location?
SELECT location FROM table_24136365_2 WHERE week = 4
CREATE TABLE table_24136365_2 (location VARCHAR, week VARCHAR)
When 4 is the week what is the location?
SELECT record FROM table_24136814_3 WHERE date = "September 7"
CREATE TABLE table_24136814_3 (record VARCHAR, date VARCHAR)
What was the record for the Argonauts on September 7?
SELECT MIN(week) FROM table_24136814_3
CREATE TABLE table_24136814_3 (week INTEGER)
What is he smallest numbered week?
SELECT celli FROM table_2414_1 WHERE section_size = "20 players"
CREATE TABLE table_2414_1 (celli VARCHAR, section_size VARCHAR)
How many cellos are suggested in the reference with section size for 20 players?
SELECT reference FROM table_2414_1 WHERE violas = 2 AND author = "Nelson Riddle"
CREATE TABLE table_2414_1 (reference VARCHAR, violas VARCHAR, author VARCHAR)
What reference, written by Nelson Riddle, suggests 2 violas?
SELECT MAX(basses) FROM table_2414_1
CREATE TABLE table_2414_1 (basses INTEGER)
What is the biggest number of basses suggested in either one of the references?
SELECT current_marital_status FROM table_24143253_2 WHERE name = "Stella Farentino"
CREATE TABLE table_24143253_2 (current_marital_status VARCHAR, name VARCHAR)
What is Stella Farentino's current relationship status?
SELECT children_together FROM table_24143253_2 WHERE deceased_spouse = "Dennis Hawley"
CREATE TABLE table_24143253_2 (children_together VARCHAR, deceased_spouse VARCHAR)
How many children did Dennis Hawley have at his time of death?
SELECT cause_of_death FROM table_24143253_2 WHERE name = "Stella Farentino"
CREATE TABLE table_24143253_2 (cause_of_death VARCHAR, name VARCHAR)
How did Stella Farentino die?
SELECT cause_of_death FROM table_24143253_4 WHERE length_of_marriage = "28 years"
CREATE TABLE table_24143253_4 (cause_of_death VARCHAR, length_of_marriage VARCHAR)
What was the cause of death in the marriage that lasted 28 years?
SELECT length_of_marriage FROM table_24143253_4 WHERE name = "Ray Bradbury"
CREATE TABLE table_24143253_4 (length_of_marriage VARCHAR, name VARCHAR)
How long were Ray Bradbury and his wife married?
SELECT name FROM table_24143253_1 WHERE deceased_spouse = "Louis Malle"
CREATE TABLE table_24143253_1 (name VARCHAR, deceased_spouse VARCHAR)
Name the name for deceased spouse being louis malle
SELECT deceased_spouse FROM table_24143253_1 WHERE length_of_marriage = "24 years"
CREATE TABLE table_24143253_1 (deceased_spouse VARCHAR, length_of_marriage VARCHAR)
Name the deceased spouse for length of marriage being 24 years
SELECT deceased_spouse FROM table_24143253_1 WHERE name = "Carol DeLuise"
CREATE TABLE table_24143253_1 (deceased_spouse VARCHAR, name VARCHAR)
Name the decease spouse for carol deluise
SELECT children_together FROM table_24143253_1 WHERE length_of_marriage = "9 years"
CREATE TABLE table_24143253_1 (children_together VARCHAR, length_of_marriage VARCHAR)
Name the children together for 9 years of marriage
SELECT deceased_spouse FROM table_24143253_5 WHERE length_of_marriage = "4 years"
CREATE TABLE table_24143253_5 (deceased_spouse VARCHAR, length_of_marriage VARCHAR)
Who was the deceased spouse who was married for 4 years?
SELECT children_together FROM table_24143253_5 WHERE name = "Benjamin Harrison"
CREATE TABLE table_24143253_5 (children_together VARCHAR, name VARCHAR)
Who were the children of Benjamin Harrison?
SELECT segment_1 FROM table_24172078_2 WHERE episode__number = "2/225"
CREATE TABLE table_24172078_2 (segment_1 VARCHAR, episode__number VARCHAR)
Name the segment 1 for episode # 2/225
SELECT lessons_taught FROM table_24172078_2 WHERE episode__number = "2/205"
CREATE TABLE table_24172078_2 (lessons_taught VARCHAR, episode__number VARCHAR)
Name the lessons taught for episode # 2/205
SELECT state__class_ FROM table_2417308_3 WHERE successor = "William Bigler (D)"
CREATE TABLE table_2417308_3 (state__class_ VARCHAR, successor VARCHAR)
What state had william bigler (d) as a successor)
SELECT date_successor_seated FROM table_2417330_4 WHERE successor = "Vacant"
CREATE TABLE table_2417330_4 (date_successor_seated VARCHAR, successor VARCHAR)
Name the date successor seated for successor being vacant
SELECT vacator FROM table_2417330_4 WHERE district = "Kentucky 2nd"
CREATE TABLE table_2417330_4 (vacator VARCHAR, district VARCHAR)
Name the vacator for kentucky 2nd
SELECT successor FROM table_2417330_4 WHERE reason_for_change = "Election was successfully contested July 30, 1861"
CREATE TABLE table_2417330_4 (successor VARCHAR, reason_for_change VARCHAR)
Name the successor for election was successfully contested july 30, 1861
SELECT successor FROM table_2417330_4 WHERE reason_for_change = "Vacant" AND date_successor_seated = "December 3, 1862"
CREATE TABLE table_2417330_4 (successor VARCHAR, reason_for_change VARCHAR, date_successor_seated VARCHAR)
Name the successor for vacant and december 3, 1862
SELECT vacator FROM table_2417340_4 WHERE district = "Georgia 2nd"
CREATE TABLE table_2417340_4 (vacator VARCHAR, district VARCHAR)
What was the vacator for georgia 2nd?
SELECT successor FROM table_2417340_4 WHERE vacator = "Vacant" AND district = "Alabama 3rd"
CREATE TABLE table_2417340_4 (successor VARCHAR, vacator VARCHAR, district VARCHAR)
What was the successor for vacant alabama 3rd?
SELECT successor FROM table_2417340_4 WHERE vacator = "Vacant" AND district = "Louisiana 5th"
CREATE TABLE table_2417340_4 (successor VARCHAR, vacator VARCHAR, district VARCHAR)
Who was the successor for vacant louisiana 5th
SELECT successor FROM table_2417345_3 WHERE date_of_successors_formal_installation = "February 23, 1870"
CREATE TABLE table_2417345_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)
Who were the successors when the date the successors were installed was February 23, 1870?
SELECT vacator FROM table_2417345_3 WHERE date_of_successors_formal_installation = "February 1, 1871"
CREATE TABLE table_2417345_3 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)
Who was the vacator when the successor was formally installed on February 1, 1871?
SELECT successor FROM table_2417345_3 WHERE date_of_successors_formal_installation = "March 30, 1870"
CREATE TABLE table_2417345_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)
Who was the successor that was formally installed on March 30, 1870?
SELECT date_of_successors_formal_installation FROM table_2417330_3 WHERE successor = "Orville H. Browning (R)"
CREATE TABLE table_2417330_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR)
When did Orville H. Browning (r) succeed?
SELECT date_of_successors_formal_installation FROM table_2417330_3 WHERE state__class_ = "Missouri (3)"
CREATE TABLE table_2417330_3 (date_of_successors_formal_installation VARCHAR, state__class_ VARCHAR)
List all dates of succession in the state class Missouri (3).
SELECT COUNT(vacator) FROM table_2417340_3 WHERE date_of_successors_formal_installation = "June 22, 1868"
CREATE TABLE table_2417340_3 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)
List the number of vacators when successors were formally installed on June 22, 1868.
SELECT state__class_ FROM table_2417340_3 WHERE date_of_successors_formal_installation = "June 22, 1868"
CREATE TABLE table_2417340_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)
List all state classes when successors were formally installed on June 22, 1868.
SELECT reason_for_change FROM table_2417395_4 WHERE date_successor_seated = "December 13, 1880"
CREATE TABLE table_2417395_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)
What was the reason for change to the successor that was seated on December 13, 1880?
SELECT district FROM table_2417445_4 WHERE reason_for_vacancy = "Died May 22, 1895"
CREATE TABLE table_2417445_4 (district VARCHAR, reason_for_vacancy VARCHAR)
When the person died May 22, 1895 is the reason for vacancy what is the district?
SELECT reason_for_vacancy FROM table_2417445_4 WHERE vacator = "Frederick Remann (R)"
CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, vacator VARCHAR)
When frederick remann (r) is the vacator what is the reason for vacancy?
SELECT reason_for_vacancy FROM table_2417445_4 WHERE successor = "Rudolph Kleberg (D)"
CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, successor VARCHAR)
When rudolph kleberg (d) is the successor is the reason for vacancy?
SELECT reason_for_vacancy FROM table_2417445_4 WHERE district = "Massachusetts 6th"
CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, district VARCHAR)
When massachusetts 6th is the district what is the reason for vacancy?
SELECT date_of_successors_taking_office FROM table_2417445_4 WHERE successor = "Rudolph Kleberg (D)"
CREATE TABLE table_2417445_4 (date_of_successors_taking_office VARCHAR, successor VARCHAR)
When rudolph kleberg (d) is the successor what is the date of successors taking office?
SELECT geographical_regions FROM table_24192031_2 WHERE contestant = "Laura Jiménez Ynoa"
CREATE TABLE table_24192031_2 (geographical_regions VARCHAR, contestant VARCHAR)
What geographical region is contestant laura jiménez ynoa from?
SELECT COUNT(hometown) FROM table_24192031_2 WHERE height = "m (ft 10 1⁄2 in)"
CREATE TABLE table_24192031_2 (hometown VARCHAR, height VARCHAR)
How many hometowns have a height of m (ft 10 1⁄2 in)?
SELECT age FROM table_24192031_2 WHERE height = "m (ft 3⁄4 in)"
CREATE TABLE table_24192031_2 (age VARCHAR, height VARCHAR)
How old is the person with the height of m (ft 3⁄4 in)?
SELECT viewers__millions_ FROM table_24212608_1 WHERE broadcast_date = 2010
CREATE TABLE table_24212608_1 (viewers__millions_ VARCHAR, broadcast_date VARCHAR)
What was the number of viewers in millions for the broadcast from 2010?
SELECT starring FROM table_24212608_1 WHERE episode = 3
CREATE TABLE table_24212608_1 (starring VARCHAR, episode VARCHAR)
Who starred in episode 3?
SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010
CREATE TABLE table_24212608_1 (episode VARCHAR, broadcast_date VARCHAR)
How many episodes were broadcast in 2010?
SELECT radio_1_presenter FROM table_24212608_1 WHERE viewers__millions_ = "9.73"
CREATE TABLE table_24212608_1 (radio_1_presenter VARCHAR, viewers__millions_ VARCHAR)
Who was the radio 1 presenter for the broadcast that had 9.73 million viewers?
SELECT powertrain__engine_transmission_ FROM table_24193494_3 WHERE division = "KMD" AND model = "C40LF"
CREATE TABLE table_24193494_3 (powertrain__engine_transmission_ VARCHAR, division VARCHAR, model VARCHAR)
Name the powertrain for kmd and c40lf
SELECT division FROM table_24193494_3 WHERE powertrain__engine_transmission_ = "Detroit Diesel Series 50EGR Allison WB-400R"
CREATE TABLE table_24193494_3 (division VARCHAR, powertrain__engine_transmission_ VARCHAR)
Name the division for detroit diesel series 50egr allison wb-400r
SELECT manufacturer FROM table_24193494_3 WHERE order_year = 2011
CREATE TABLE table_24193494_3 (manufacturer VARCHAR, order_year VARCHAR)
Name the manufacturer for 2011
SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = "Billikens"
CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR)
List the number of locations for the team known as the billikens.
SELECT MIN(enrollment) FROM table_2419754_1 WHERE location = "Milwaukee, Wisconsin"
CREATE TABLE table_2419754_1 (enrollment INTEGER, location VARCHAR)
How many people are enrolled at the university in milwaukee, wisconsin
SELECT MAX(left) FROM table_2419754_1
CREATE TABLE table_2419754_1 (left INTEGER)
In what year did the teams leave the conference?
SELECT institution FROM table_2419754_1 WHERE nickname = "Tigers"
CREATE TABLE table_2419754_1 (institution VARCHAR, nickname VARCHAR)
What university team is referred to as the tigers?
SELECT magnitude FROM table_24192190_1 WHERE latitude = "43.048° N"
CREATE TABLE table_24192190_1 (magnitude VARCHAR, latitude VARCHAR)
When 43.048° n is the latitude what is the magnitude?
SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = "9:47:38"
CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR)
When 9:47:38 is the time (utc) how many measurements of latitude are there?
SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = "42.903° N"
CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR)
When 42.903° n is the latitude how many measurements of longitude are there?
SELECT depth FROM table_24192190_1 WHERE time__utc_ = "11:40:26"
CREATE TABLE table_24192190_1 (depth VARCHAR, time__utc_ VARCHAR)
When 11:40:26 is the time (utc) what is the depth?
SELECT main_presenter FROM table_24224647_2 WHERE year_premiered = 2011
CREATE TABLE table_24224647_2 (main_presenter VARCHAR, year_premiered VARCHAR)
Who is every main presenter for the year 2011?
SELECT main_presenter FROM table_24224647_2 WHERE region_country = "Estonia"
CREATE TABLE table_24224647_2 (main_presenter VARCHAR, region_country VARCHAR)
Who is every main presenter for the Estonia region/country?