combined_text
stringlengths
106
1.05k
###question:When was the Carysfort launched?###answer:SELECT launched FROM table_24496403_1 WHERE ship = "Carysfort"###context:CREATE TABLE table_24496403_1 (launched VARCHAR, ship VARCHAR)
###question:When was the stokers' training ship launched?###answer:SELECT launched FROM table_24496403_1 WHERE disposition = "Stokers' training ship"###context:CREATE TABLE table_24496403_1 (launched VARCHAR, disposition VARCHAR)
###question:How many ships were named Carysfort?###answer:SELECT COUNT(completed) FROM table_24496403_1 WHERE ship = "Carysfort"###context:CREATE TABLE table_24496403_1 (completed VARCHAR, ship VARCHAR)
###question:What is the background of the person fired in week 5?###answer:SELECT background FROM table_24501530_1 WHERE result = "Fired in week 5"###context:CREATE TABLE table_24501530_1 (background VARCHAR, result VARCHAR)
###question:What was the result of the player from Maylands, Western Australia?###answer:SELECT result FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia"###context:CREATE TABLE table_24501530_1 (result VARCHAR, hometown VARCHAR)
###question:How many ages for player Amy Cato?###answer:SELECT COUNT(age) FROM table_24501530_1 WHERE candidate = "Amy Cato"###context:CREATE TABLE table_24501530_1 (age VARCHAR, candidate VARCHAR)
###question:What is the name of the player from Maylands, Western Australia?###answer:SELECT candidate FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia"###context:CREATE TABLE table_24501530_1 (candidate VARCHAR, hometown VARCHAR)
###question:How many age figures for the player fired in week 6?###answer:SELECT COUNT(age) FROM table_24501530_1 WHERE result = "Fired in week 6"###context:CREATE TABLE table_24501530_1 (age VARCHAR, result VARCHAR)
###question:What was the latitude that had a UTC time of 18:19:36?###answer:SELECT latitude FROM table_24518475_1 WHERE time__utc_ = "18:19:36"###context:CREATE TABLE table_24518475_1 (latitude VARCHAR, time__utc_ VARCHAR)
###question:What is the depth of the aftershock at 18:00:22?###answer:SELECT depth FROM table_24518475_1 WHERE time__utc_ = "18:00:22"###context:CREATE TABLE table_24518475_1 (depth VARCHAR, time__utc_ VARCHAR)
###question:Name the team for susan bates###answer:SELECT team FROM table_24535095_2 WHERE listed_owner_s_ = "Susan Bates"###context:CREATE TABLE table_24535095_2 (team VARCHAR, listed_owner_s_ VARCHAR)
###question:Name the truck for eric phillips###answer:SELECT truck_s_ FROM table_24535095_2 WHERE crew_chief = "Eric Phillips"###context:CREATE TABLE table_24535095_2 (truck_s_ VARCHAR, crew_chief VARCHAR)
###question:Name the listed owner for mike garvey###answer:SELECT listed_owner_s_ FROM table_24535095_2 WHERE crew_chief = "Mike Garvey"###context:CREATE TABLE table_24535095_2 (listed_owner_s_ VARCHAR, crew_chief VARCHAR)
###question:Name the least listed owner for pete raymer###answer:SELECT MIN(_number) FROM table_24535095_2 WHERE listed_owner_s_ = "Pete Raymer"###context:CREATE TABLE table_24535095_2 (_number INTEGER, listed_owner_s_ VARCHAR)
###question:Name the crew chief for rhonda thorson###answer:SELECT crew_chief FROM table_24535095_2 WHERE listed_owner_s_ = "Rhonda Thorson"###context:CREATE TABLE table_24535095_2 (crew_chief VARCHAR, listed_owner_s_ VARCHAR)
###question:What is the production code for episode 3 in the season?###answer:SELECT MAX(production_code) FROM table_2453243_3 WHERE no_in_season = 3###context:CREATE TABLE table_2453243_3 (production_code INTEGER, no_in_season VARCHAR)
###question:What is the lowest score of all games for match 2?###answer:SELECT MIN(match2) FROM table_24538140_2###context:CREATE TABLE table_24538140_2 (match2 INTEGER)
###question:What is the highest score for match 2 where the score for match 4 is 0 and the total score is 5?###answer:SELECT MAX(match2) FROM table_24538140_2 WHERE match4 = 0 AND total = 5###context:CREATE TABLE table_24538140_2 (match2 INTEGER, match4 VARCHAR, total VARCHAR)
###question:What is the score for match 1 for the team Eastern Tigers?###answer:SELECT match1 FROM table_24538140_2 WHERE team = "Eastern Tigers"###context:CREATE TABLE table_24538140_2 (match1 VARCHAR, team VARCHAR)
###question:How many sockets are listed that have a brand name of "Core i3-2xx7m"?###answer:SELECT COUNT(socket) FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-2xx7M"###context:CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR)
###question:What is the i/o bus for the brand name Core i3-21xx?###answer:SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xx"###context:CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR)
###question:What i/o buses are associated with the brand name Core i3-21xxt?###answer:SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xxT"###context:CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR)
###question:What is the codename for the Core i3-32xxt?###answer:SELECT codename__main_article_ FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-32xxT"###context:CREATE TABLE table_24538587_11 (codename__main_article_ VARCHAR, brand_name__list_ VARCHAR)
###question: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?###answer: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"###context:CRE...
###question:What is the sockets associated with a brand name of Core i3-3xx0m?###answer:SELECT socket FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-3xx0M"###context:CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR)
###question:Who was drafted by the calgary stampeders?###answer:SELECT player FROM table_24540893_6 WHERE cfl_team = "Calgary Stampeders"###context:CREATE TABLE table_24540893_6 (player VARCHAR, cfl_team VARCHAR)
###question:Where was the player from se missouri state drafted?###answer:SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State"###context:CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR)
###question:What position does the player from kent state play?###answer:SELECT position FROM table_24540893_6 WHERE school = "Kent State"###context:CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)
###question:What school did the rb drafted attend?###answer:SELECT school FROM table_24540893_6 WHERE position = "RB"###context:CREATE TABLE table_24540893_6 (school VARCHAR, position VARCHAR)
###question:What numbered pick attended western ontario and is an OL?###answer:SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL"###context:CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR)
###question:How many players attended SE missouri state?###answer:SELECT COUNT(position) FROM table_24540893_6 WHERE school = "SE Missouri State"###context:CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR)
###question:Who was in the pole position for knockhill?###answer:SELECT pole_position FROM table_24547593_1 WHERE circuit = "Knockhill"###context:CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR)
###question:How many dates was knockhill?###answer:SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = "Knockhill"###context:CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR)
###question:Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm###answer:SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ = "Core i7-2xxxQE, i7-26xxQM, i7-27xxQM"###context:CREATE TABLE table_24538587_13 (l3_cache VARCHAR, brand_name__list_ VARCHAR)
###question:Who had most laps led at Chicagoland speedway? ###answer:SELECT most_laps_led FROM table_2454550_1 WHERE track = "Chicagoland Speedway"###context:CREATE TABLE table_2454550_1 (most_laps_led VARCHAR, track VARCHAR)
###question:In what race did Buddy Rice hav fastest lap? ###answer:SELECT race_name FROM table_2454550_1 WHERE fastest_lap = "Buddy Rice"###context:CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR)
###question:On what tra k was the march 19 race held? ###answer:SELECT track FROM table_2454550_1 WHERE date = "March 19"###context:CREATE TABLE table_2454550_1 (track VARCHAR, date VARCHAR)
###question:On what track is the Argent mortgage Indy 300 held? ###answer:SELECT track FROM table_2454550_1 WHERE race_name = "Argent Mortgage Indy 300"###context:CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR)
###question:who held the fastes lap in Phoenix, Arizona? ###answer:SELECT fastest_lap FROM table_2454550_1 WHERE location = "Phoenix, Arizona"###context:CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR)
###question:How man players checked out at 84?###answer:SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84###context:CREATE TABLE table_24549777_1 (player VARCHAR, high_checkout VARCHAR)
###question:How man 3-dart averages did gary anderson have?###answer:SELECT COUNT(3 AS _dart_average) FROM table_24549777_1 WHERE player = "Gary Anderson"###context:CREATE TABLE table_24549777_1 (player VARCHAR)
###question:List all results from the 3-3 scoring game.###answer:SELECT result FROM table_24561550_1 WHERE record = "3-3"###context:CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR)
###question:List all opponents from the 4-4 scoring game.###answer:SELECT opponent FROM table_24561550_1 WHERE record = "4-4"###context:CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR)
###question:List the record from the game where Wildcats had 48 points.###answer:SELECT record FROM table_24561550_1 WHERE wildcats_points = 48###context:CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR)
###question:How many points did the Wildcats get when Baylor was an opponent?###answer:SELECT wildcats_points FROM table_24561550_1 WHERE opponent = "Baylor"###context:CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR)
###question:Who was the opponent on Oct. 4?###answer:SELECT opponent FROM table_24560733_1 WHERE date = "Oct. 4"###context:CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR)
###question:What was the minimum number for opponents?###answer:SELECT MIN(opponents) FROM table_24560733_1###context:CREATE TABLE table_24560733_1 (opponents INTEGER)
###question:What is the minimum number of opponents' points for the game at Michigan State?###answer:SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = "at Michigan State"###context:CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR)
###question:Which opponent led to a 5-2 record?###answer:SELECT opponent FROM table_24560733_1 WHERE record = "5-2"###context:CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR)
###question:How many opponents' points numbers are associated with the game at Ole Miss?###answer:SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = "at Ole Miss"###context:CREATE TABLE table_24560733_1 (opponents VARCHAR, opponent VARCHAR)
###question:Name the total number of period for yvon le roux###answer:SELECT COUNT(period) FROM table_24565004_13 WHERE name = "Yvon Le Roux"###context:CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)
###question:Name the period for michel llodra###answer:SELECT period FROM table_24565004_13 WHERE name = "Michel Llodra"###context:CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR)
###question:Name the number of position for democratic republic of the congo###answer:SELECT COUNT(position) FROM table_24565004_13 WHERE nationality² = "Democratic Republic of the Congo"###context:CREATE TABLE table_24565004_13 (position VARCHAR, nationality² VARCHAR)
###question:How many names correspond to the value 101 for appearances?###answer:SELECT COUNT(name) FROM table_24565004_14 WHERE appearances¹ = 101###context:CREATE TABLE table_24565004_14 (name VARCHAR, appearances¹ VARCHAR)
###question:What positions correspond to the name Thierry Morin?###answer:SELECT position FROM table_24565004_14 WHERE name = "Thierry Morin"###context:CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR)
###question:What time period had appearances of 219?###answer:SELECT period FROM table_24565004_11 WHERE appearances¹ = 219###context:CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR)
###question:How many periods had 15 goals?###answer:SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15###context:CREATE TABLE table_24565004_11 (period VARCHAR, goals¹ VARCHAR)
###question:at least how many times was Pierre Vermeulen at a game?###answer:SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen"###context:CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR)
###question:What country is Richard Vanquelef from?###answer:SELECT nationality² FROM table_24565004_22 WHERE name = "Richard Vanquelef"###context:CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR)
###question:What country is Pierre Vermeulen from?###answer:SELECT nationality² FROM table_24565004_22 WHERE name = "Pierre Vermeulen"###context:CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR)
###question:Name the number of appearances for yugoslavia###answer:SELECT COUNT(appearances¹) FROM table_24565004_20 WHERE nationality² = "Yugoslavia"###context:CREATE TABLE table_24565004_20 (appearances¹ VARCHAR, nationality² VARCHAR)
###question:Name the nationality for defender 201###answer:SELECT nationality² FROM table_24565004_20 WHERE position = "Defender" AND appearances¹ = 201###context:CREATE TABLE table_24565004_20 (nationality² VARCHAR, position VARCHAR, appearances¹ VARCHAR)
###question:Name the goals for daniel sanchez###answer:SELECT goals¹ FROM table_24565004_20 WHERE name = "Daniel Sanchez"###context:CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR)
###question:Name the most goals for algeria###answer:SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = "Algeria"###context:CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR)
###question:What was the lowest score.###answer:SELECT MIN(goals¹) FROM table_24565004_21###context:CREATE TABLE table_24565004_21 (goals¹ INTEGER)
###question:List the minimum impressions for sammy traoré###answer:SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré"###context:CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR)
###question:During what years did nabatingue toko play. ###answer:SELECT period FROM table_24565004_21 WHERE name = "Nabatingue Toko"###context:CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR)
###question:Name the number of goals for mauricio pochettino###answer:SELECT COUNT(goals¹) FROM table_24565004_17 WHERE name = "Mauricio Pochettino"###context:CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR)
###question:Name the period for michel prost###answer:SELECT period FROM table_24565004_17 WHERE name = "Michel Prost"###context:CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR)
###question:Name the goals for mauricio pochettino###answer:SELECT goals¹ FROM table_24565004_17 WHERE name = "Mauricio Pochettino"###context:CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR)
###question:Name the period for appearances being 380###answer:SELECT period FROM table_24565004_2 WHERE appearances¹ = 380###context:CREATE TABLE table_24565004_2 (period VARCHAR, appearances¹ VARCHAR)
###question:Name the appearances for bernard allou###answer:SELECT appearances¹ FROM table_24565004_2 WHERE name = "Bernard Allou"###context:CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR)
###question:Name the most appearances for bernard allou###answer:SELECT MAX(appearances¹) FROM table_24565004_2 WHERE name = "Bernard Allou"###context:CREATE TABLE table_24565004_2 (appearances¹ INTEGER, name VARCHAR)
###question:What is the highest number of goals scored###answer:SELECT MAX(goals¹) FROM table_24565004_7###context:CREATE TABLE table_24565004_7 (goals¹ INTEGER)
###question:What is the lowest number of appearances a player had###answer:SELECT MIN(appearances¹) FROM table_24565004_7###context:CREATE TABLE table_24565004_7 (appearances¹ INTEGER)
###question:What is the nationality of Louis floch###answer:SELECT nationality² FROM table_24565004_7 WHERE name = "Louis Floch"###context:CREATE TABLE table_24565004_7 (nationality² VARCHAR, name VARCHAR)
###question:Which player had 252 appearances###answer:SELECT name FROM table_24565004_7 WHERE appearances¹ = 252###context:CREATE TABLE table_24565004_7 (name VARCHAR, appearances¹ VARCHAR)
###question:What is the nationality of the player who scored 13 goals###answer:SELECT nationality² FROM table_24565004_7 WHERE goals¹ = 13###context:CREATE TABLE table_24565004_7 (nationality² VARCHAR, goals¹ VARCHAR)
###question:how many time is the final record is 9–16–5?###answer:SELECT COUNT(season) FROM table_245711_2 WHERE final_record = "9–16–5"###context:CREATE TABLE table_245711_2 (season VARCHAR, final_record VARCHAR)
###question:What station was sent on flight up and was launched on 23 July 1980 18:33:03?###answer:SELECT flight_up FROM table_245800_2 WHERE launch_date = "23 July 1980 18:33:03"###context:CREATE TABLE table_245800_2 (flight_up VARCHAR, launch_date VARCHAR)
###question:Who were the crews on the flight up of Soyuz T-3?###answer:SELECT crew FROM table_245800_2 WHERE flight_up = "Soyuz T-3"###context:CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR)
###question:How many days were the station of Soyuz 35 in flight down were in orbit?###answer:SELECT duration__days_ FROM table_245800_2 WHERE flight_down = "Soyuz 35"###context:CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR)
###question:Name the number of gn divisions for mannar###answer:SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar"###context:CREATE TABLE table_24574438_1 (gn_divisions VARCHAR, ds_division VARCHAR)
###question:Name the sinhalese for manthai west###answer:SELECT MAX(sinhalese) FROM table_24574438_1 WHERE ds_division = "Manthai West"###context:CREATE TABLE table_24574438_1 (sinhalese INTEGER, ds_division VARCHAR)
###question:Name the least indian tamil for population density being 240###answer:SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240###context:CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR)
###question:Name the popultion density being manthai west###answer:SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = "Manthai West"###context:CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR)
###question:Name the total number of sinhalese for indian tamil being 177###answer:SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177###context:CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR)
###question:Name the least area ###answer:SELECT MIN(area__km_2__) FROM table_24574438_1###context:CREATE TABLE table_24574438_1 (area__km_2__ INTEGER)
###question:When westcott is in division one how many leagues are in division 5?###answer:SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = "Westcott"###context:CREATE TABLE table_24575253_4 (division_five VARCHAR, division_one VARCHAR)
###question:When godstone is in division five who is in division four?###answer:SELECT division_four FROM table_24575253_4 WHERE division_five = "Godstone"###context:CREATE TABLE table_24575253_4 (division_four VARCHAR, division_five VARCHAR)
###question:When the wallington new foresters are in division four what is the season?###answer:SELECT season FROM table_24575253_4 WHERE division_four = "Wallington New Foresters"###context:CREATE TABLE table_24575253_4 (season VARCHAR, division_four VARCHAR)
###question:When racing epsom is in division two how many seasons are there?###answer:SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = "Racing Epsom"###context:CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR)
###question:When westcott 1935 is in division two how many leagues are in division three?###answer:SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = "Westcott 1935"###context:CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR)
###question:When real holmesdale reserves is division four who is in division one?###answer:SELECT division_one FROM table_24575253_4 WHERE division_four = "Real Holmesdale Reserves"###context:CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR)
###question:When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration?###answer:SELECT duration FROM table_245801_2 WHERE spacecraft = "Salyut 7 – VE-4 – EVA 1"###context:CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR)
###question:When first woman eva is the comment what is the end -utc?###answer:SELECT end___utc FROM table_245801_2 WHERE comments = "First woman EVA"###context:CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR)
###question:What series did the racer earn 68 points in?###answer:SELECT series FROM table_24585157_1 WHERE points = "68"###context:CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR)
###question:Name the duration for georgi grechko###answer:SELECT duration__days_ FROM table_245801_1 WHERE crew = "Georgi Grechko"###context:CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR)
###question:Name the flight up for 10 december 1982 19:02:36 utc###answer:SELECT flight_up FROM table_245801_1 WHERE landing_date = "10 December 1982 19:02:36 UTC"###context:CREATE TABLE table_245801_1 (flight_up VARCHAR, landing_date VARCHAR)
###question:Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrov###answer:SELECT launch_date FROM table_245801_1 WHERE crew = "Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov"###context:CREATE TABLE table_245801_1 (launch_date VARCHAR, crew VARCHAR)