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