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