answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xxT"
|
CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR)
|
What i/o buses are associated with the brand name Core i3-21xxt?
|
SELECT codename__main_article_ FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-32xxT"
|
CREATE TABLE table_24538587_11 (codename__main_article_ VARCHAR, brand_name__list_ VARCHAR)
|
What is the codename for the Core i3-32xxt?
|
SELECT i_o_bus FROM table_24538587_11 WHERE socket = "LGA 1155" AND codename__main_article_ = "Sandy Bridge (Desktop)" AND brand_name__list_ = "Core i3-21xx"
|
CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR, socket VARCHAR, codename__main_article_ VARCHAR)
|
What i/o buses are associated with the LGA 1155 socket, a code name of Sandy Bridge (desktop) and a brand name of Core i3-21xx?
|
SELECT socket FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-3xx0M"
|
CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR)
|
What is the sockets associated with a brand name of Core i3-3xx0m?
|
SELECT player FROM table_24540893_6 WHERE cfl_team = "Calgary Stampeders"
|
CREATE TABLE table_24540893_6 (player VARCHAR, cfl_team VARCHAR)
|
Who was drafted by the calgary stampeders?
|
SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State"
|
CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR)
|
Where was the player from se missouri state drafted?
|
SELECT position FROM table_24540893_6 WHERE school = "Kent State"
|
CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)
|
What position does the player from kent state play?
|
SELECT school FROM table_24540893_6 WHERE position = "RB"
|
CREATE TABLE table_24540893_6 (school VARCHAR, position VARCHAR)
|
What school did the rb drafted attend?
|
SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL"
|
CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR)
|
What numbered pick attended western ontario and is an OL?
|
SELECT COUNT(position) FROM table_24540893_6 WHERE school = "SE Missouri State"
|
CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)
|
How many players attended SE missouri state?
|
SELECT pole_position FROM table_24547593_1 WHERE circuit = "Knockhill"
|
CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR)
|
Who was in the pole position for knockhill?
|
SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = "Knockhill"
|
CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR)
|
How many dates was knockhill?
|
SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ = "Core i7-2xxxQE, i7-26xxQM, i7-27xxQM"
|
CREATE TABLE table_24538587_13 (l3_cache VARCHAR, brand_name__list_ VARCHAR)
|
Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm
|
SELECT most_laps_led FROM table_2454550_1 WHERE track = "Chicagoland Speedway"
|
CREATE TABLE table_2454550_1 (most_laps_led VARCHAR, track VARCHAR)
|
Who had most laps led at Chicagoland speedway?
|
SELECT race_name FROM table_2454550_1 WHERE fastest_lap = "Buddy Rice"
|
CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR)
|
In what race did Buddy Rice hav fastest lap?
|
SELECT track FROM table_2454550_1 WHERE date = "March 19"
|
CREATE TABLE table_2454550_1 (track VARCHAR, date VARCHAR)
|
On what tra k was the march 19 race held?
|
SELECT track FROM table_2454550_1 WHERE race_name = "Argent Mortgage Indy 300"
|
CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR)
|
On what track is the Argent mortgage Indy 300 held?
|
SELECT fastest_lap FROM table_2454550_1 WHERE location = "Phoenix, Arizona"
|
CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR)
|
who held the fastes lap in Phoenix, Arizona?
|
SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84
|
CREATE TABLE table_24549777_1 (player VARCHAR, high_checkout VARCHAR)
|
How man players checked out at 84?
|
SELECT COUNT(3 AS _dart_average) FROM table_24549777_1 WHERE player = "Gary Anderson"
|
CREATE TABLE table_24549777_1 (player VARCHAR)
|
How man 3-dart averages did gary anderson have?
|
SELECT result FROM table_24561550_1 WHERE record = "3-3"
|
CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR)
|
List all results from the 3-3 scoring game.
|
SELECT opponent FROM table_24561550_1 WHERE record = "4-4"
|
CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR)
|
List all opponents from the 4-4 scoring game.
|
SELECT record FROM table_24561550_1 WHERE wildcats_points = 48
|
CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR)
|
List the record from the game where Wildcats had 48 points.
|
SELECT wildcats_points FROM table_24561550_1 WHERE opponent = "Baylor"
|
CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR)
|
How many points did the Wildcats get when Baylor was an opponent?
|
SELECT opponent FROM table_24560733_1 WHERE date = "Oct. 4"
|
CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR)
|
Who was the opponent on Oct. 4?
|
SELECT MIN(opponents) FROM table_24560733_1
|
CREATE TABLE table_24560733_1 (opponents INTEGER)
|
What was the minimum number for opponents?
|
SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = "at Michigan State"
|
CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR)
|
What is the minimum number of opponents' points for the game at Michigan State?
|
SELECT opponent FROM table_24560733_1 WHERE record = "5-2"
|
CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR)
|
Which opponent led to a 5-2 record?
|
SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = "at Ole Miss"
|
CREATE TABLE table_24560733_1 (opponents VARCHAR, opponent VARCHAR)
|
How many opponents' points numbers are associated with the game at Ole Miss?
|
SELECT COUNT(period) FROM table_24565004_13 WHERE name = "Yvon Le Roux"
|
CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)
|
Name the total number of period for yvon le roux
|
SELECT period FROM table_24565004_13 WHERE name = "Michel Llodra"
|
CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)
|
Name the period for michel llodra
|
SELECT COUNT(position) FROM table_24565004_13 WHERE nationality² = "Democratic Republic of the Congo"
|
CREATE TABLE table_24565004_13 (position VARCHAR, nationality² VARCHAR)
|
Name the number of position for democratic republic of the congo
|
SELECT COUNT(name) FROM table_24565004_14 WHERE appearances¹ = 101
|
CREATE TABLE table_24565004_14 (name VARCHAR, appearances¹ VARCHAR)
|
How many names correspond to the value 101 for appearances?
|
SELECT position FROM table_24565004_14 WHERE name = "Thierry Morin"
|
CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR)
|
What positions correspond to the name Thierry Morin?
|
SELECT period FROM table_24565004_11 WHERE appearances¹ = 219
|
CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR)
|
What time period had appearances of 219?
|
SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15
|
CREATE TABLE table_24565004_11 (period VARCHAR, goals¹ VARCHAR)
|
How many periods had 15 goals?
|
SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen"
|
CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR)
|
at least how many times was Pierre Vermeulen at a game?
|
SELECT nationality² FROM table_24565004_22 WHERE name = "Richard Vanquelef"
|
CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR)
|
What country is Richard Vanquelef from?
|
SELECT nationality² FROM table_24565004_22 WHERE name = "Pierre Vermeulen"
|
CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR)
|
What country is Pierre Vermeulen from?
|
SELECT COUNT(appearances¹) FROM table_24565004_20 WHERE nationality² = "Yugoslavia"
|
CREATE TABLE table_24565004_20 (appearances¹ VARCHAR, nationality² VARCHAR)
|
Name the number of appearances for yugoslavia
|
SELECT nationality² FROM table_24565004_20 WHERE position = "Defender" AND appearances¹ = 201
|
CREATE TABLE table_24565004_20 (nationality² VARCHAR, position VARCHAR, appearances¹ VARCHAR)
|
Name the nationality for defender 201
|
SELECT goals¹ FROM table_24565004_20 WHERE name = "Daniel Sanchez"
|
CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR)
|
Name the goals for daniel sanchez
|
SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = "Algeria"
|
CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR)
|
Name the most goals for algeria
|
SELECT MIN(goals¹) FROM table_24565004_21
|
CREATE TABLE table_24565004_21 (goals¹ INTEGER)
|
What was the lowest score.
|
SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré"
|
CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR)
|
List the minimum impressions for sammy traoré
|
SELECT period FROM table_24565004_21 WHERE name = "Nabatingue Toko"
|
CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR)
|
During what years did nabatingue toko play.
|
SELECT COUNT(goals¹) FROM table_24565004_17 WHERE name = "Mauricio Pochettino"
|
CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR)
|
Name the number of goals for mauricio pochettino
|
SELECT period FROM table_24565004_17 WHERE name = "Michel Prost"
|
CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR)
|
Name the period for michel prost
|
SELECT goals¹ FROM table_24565004_17 WHERE name = "Mauricio Pochettino"
|
CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR)
|
Name the goals for mauricio pochettino
|
SELECT period FROM table_24565004_2 WHERE appearances¹ = 380
|
CREATE TABLE table_24565004_2 (period VARCHAR, appearances¹ VARCHAR)
|
Name the period for appearances being 380
|
SELECT appearances¹ FROM table_24565004_2 WHERE name = "Bernard Allou"
|
CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR)
|
Name the appearances for bernard allou
|
SELECT MAX(appearances¹) FROM table_24565004_2 WHERE name = "Bernard Allou"
|
CREATE TABLE table_24565004_2 (appearances¹ INTEGER, name VARCHAR)
|
Name the most appearances for bernard allou
|
SELECT MAX(goals¹) FROM table_24565004_7
|
CREATE TABLE table_24565004_7 (goals¹ INTEGER)
|
What is the highest number of goals scored
|
SELECT MIN(appearances¹) FROM table_24565004_7
|
CREATE TABLE table_24565004_7 (appearances¹ INTEGER)
|
What is the lowest number of appearances a player had
|
SELECT nationality² FROM table_24565004_7 WHERE name = "Louis Floch"
|
CREATE TABLE table_24565004_7 (nationality² VARCHAR, name VARCHAR)
|
What is the nationality of Louis floch
|
SELECT name FROM table_24565004_7 WHERE appearances¹ = 252
|
CREATE TABLE table_24565004_7 (name VARCHAR, appearances¹ VARCHAR)
|
Which player had 252 appearances
|
SELECT nationality² FROM table_24565004_7 WHERE goals¹ = 13
|
CREATE TABLE table_24565004_7 (nationality² VARCHAR, goals¹ VARCHAR)
|
What is the nationality of the player who scored 13 goals
|
SELECT COUNT(season) FROM table_245711_2 WHERE final_record = "9–16–5"
|
CREATE TABLE table_245711_2 (season VARCHAR, final_record VARCHAR)
|
how many time is the final record is 9–16–5?
|
SELECT flight_up FROM table_245800_2 WHERE launch_date = "23 July 1980 18:33:03"
|
CREATE TABLE table_245800_2 (flight_up VARCHAR, launch_date VARCHAR)
|
What station was sent on flight up and was launched on 23 July 1980 18:33:03?
|
SELECT crew FROM table_245800_2 WHERE flight_up = "Soyuz T-3"
|
CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR)
|
Who were the crews on the flight up of Soyuz T-3?
|
SELECT duration__days_ FROM table_245800_2 WHERE flight_down = "Soyuz 35"
|
CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR)
|
How many days were the station of Soyuz 35 in flight down were in orbit?
|
SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar"
|
CREATE TABLE table_24574438_1 (gn_divisions VARCHAR, ds_division VARCHAR)
|
Name the number of gn divisions for mannar
|
SELECT MAX(sinhalese) FROM table_24574438_1 WHERE ds_division = "Manthai West"
|
CREATE TABLE table_24574438_1 (sinhalese INTEGER, ds_division VARCHAR)
|
Name the sinhalese for manthai west
|
SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240
|
CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR)
|
Name the least indian tamil for population density being 240
|
SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = "Manthai West"
|
CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR)
|
Name the popultion density being manthai west
|
SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177
|
CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR)
|
Name the total number of sinhalese for indian tamil being 177
|
SELECT MIN(area__km_2__) FROM table_24574438_1
|
CREATE TABLE table_24574438_1 (area__km_2__ INTEGER)
|
Name the least area
|
SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = "Westcott"
|
CREATE TABLE table_24575253_4 (division_five VARCHAR, division_one VARCHAR)
|
When westcott is in division one how many leagues are in division 5?
|
SELECT division_four FROM table_24575253_4 WHERE division_five = "Godstone"
|
CREATE TABLE table_24575253_4 (division_four VARCHAR, division_five VARCHAR)
|
When godstone is in division five who is in division four?
|
SELECT season FROM table_24575253_4 WHERE division_four = "Wallington New Foresters"
|
CREATE TABLE table_24575253_4 (season VARCHAR, division_four VARCHAR)
|
When the wallington new foresters are in division four what is the season?
|
SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = "Racing Epsom"
|
CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR)
|
When racing epsom is in division two how many seasons are there?
|
SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = "Westcott 1935"
|
CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR)
|
When westcott 1935 is in division two how many leagues are in division three?
|
SELECT division_one FROM table_24575253_4 WHERE division_four = "Real Holmesdale Reserves"
|
CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR)
|
When real holmesdale reserves is division four who is in division one?
|
SELECT duration FROM table_245801_2 WHERE spacecraft = "Salyut 7 – VE-4 – EVA 1"
|
CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR)
|
When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration?
|
SELECT end___utc FROM table_245801_2 WHERE comments = "First woman EVA"
|
CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR)
|
When first woman eva is the comment what is the end -utc?
|
SELECT series FROM table_24585157_1 WHERE points = "68"
|
CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR)
|
What series did the racer earn 68 points in?
|
SELECT duration__days_ FROM table_245801_1 WHERE crew = "Georgi Grechko"
|
CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR)
|
Name the duration for georgi grechko
|
SELECT flight_up FROM table_245801_1 WHERE landing_date = "10 December 1982 19:02:36 UTC"
|
CREATE TABLE table_245801_1 (flight_up VARCHAR, landing_date VARCHAR)
|
Name the flight up for 10 december 1982 19:02:36 utc
|
SELECT launch_date FROM table_245801_1 WHERE crew = "Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov"
|
CREATE TABLE table_245801_1 (launch_date VARCHAR, crew VARCHAR)
|
Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrov
|
SELECT flight_down FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov"
|
CREATE TABLE table_245801_1 (flight_down VARCHAR, crew VARCHAR)
|
Name the flight down for vladimir vasyutin , alexander volkov
|
SELECT COUNT(duration__days_) FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov"
|
CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR)
|
Name the duration for vladimir vasyutin , alexander volkov
|
SELECT team FROM table_24584486_1 WHERE points = 38
|
CREATE TABLE table_24584486_1 (team VARCHAR, points VARCHAR)
|
What team was he on the year he had 38 points?
|
SELECT MIN(wins) FROM table_24584486_1 WHERE poles = 10
|
CREATE TABLE table_24584486_1 (wins INTEGER, poles VARCHAR)
|
What was the least amount of wins when he had 10 poles?
|
SELECT team FROM table_24587026_1 WHERE points = "22"
|
CREATE TABLE table_24587026_1 (team VARCHAR, points VARCHAR)
|
Name the team for 22 points
|
SELECT f_laps FROM table_24587026_1 WHERE series = "GP2 series"
|
CREATE TABLE table_24587026_1 (f_laps VARCHAR, series VARCHAR)
|
Name the f/laps for gp2 series
|
SELECT MIN(wins) FROM table_24587026_1
|
CREATE TABLE table_24587026_1 (wins INTEGER)
|
Name the most wins
|
SELECT MIN(races) FROM table_24587026_1 WHERE team = "Carlin"
|
CREATE TABLE table_24587026_1 (races INTEGER, team VARCHAR)
|
Name the least races for carlin
|
SELECT position FROM table_24587026_1 WHERE podiums = 0 AND team = "Carlin"
|
CREATE TABLE table_24587026_1 (position VARCHAR, podiums VARCHAR, team VARCHAR)
|
Name the position for 0 podiums and carlin team
|
SELECT name_in_syriac FROM table_24613895_1 WHERE number_of_believers = 500
|
CREATE TABLE table_24613895_1 (name_in_syriac VARCHAR, number_of_believers VARCHAR)
|
Name the name in syriac for 500 believers
|
SELECT MIN(number_of_believers) FROM table_24613895_1
|
CREATE TABLE table_24613895_1 (number_of_believers INTEGER)
|
Name the least number of believers
|
SELECT MAX(number_of_believers) FROM table_24613895_1 WHERE name_in_syriac = "ܓܘܝܠܢ"
|
CREATE TABLE table_24613895_1 (number_of_believers INTEGER, name_in_syriac VARCHAR)
|
Name the most number of believers for ܓܘܝܠܢ
|
SELECT number_of_believers FROM table_24613895_1 WHERE name_of_village = "Khosrowa"
|
CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR)
|
Name the number of believers for khosrowa
|
SELECT COUNT(number_of_believers) FROM table_24613895_1 WHERE name_of_village = "Patavur"
|
CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR)
|
Name the number of believers for patavur
|
SELECT channel FROM table_24598274_20 WHERE local_title = "Live to Dance"
|
CREATE TABLE table_24598274_20 (channel VARCHAR, local_title VARCHAR)
|
The local title "Live to Dance" was aired in which channel?
|
SELECT country FROM table_24598274_20 WHERE presenter_s_ = "Johanna Klum"
|
CREATE TABLE table_24598274_20 (country VARCHAR, presenter_s_ VARCHAR)
|
Which country did Johanna Klum presented the show?
|
SELECT MAX(released) FROM table_24600706_1 WHERE song = "The In Crowd"
|
CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)
|
Name the most released for the in crowd
|
SELECT MAX(released) FROM table_24600706_1 WHERE song = "Apologize"
|
CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)
|
Name the most released for apologize
|
SELECT MAX(released) FROM table_24600706_1 WHERE song = "Right Here, Right Now"
|
CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR)
|
Name the most released for right here, right now
|
SELECT us_exclusive FROM table_24600706_1 WHERE artist_band = "Miley Cyrus"
|
CREATE TABLE table_24600706_1 (us_exclusive VARCHAR, artist_band VARCHAR)
|
Name the us exclusive for miley cyrus
|
SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_24620684_2 WHERE vehicle = "BMW ActiveE"
|
CREATE TABLE table_24620684_2 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)
|
When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.