text stringlengths 114 1.06k |
|---|
### question: what is the name of the episode when the production code is 11.01? ### answer: SELECT title FROM table_2226817_12 WHERE production_code = "11.01" ### context: CREATE TABLE table_2226817_12 (title VARCHAR, production_code VARCHAR) |
### question: what is the name of the episode if the production code is 11.12? ### answer: SELECT title FROM table_2226817_12 WHERE production_code = "11.12" ### context: CREATE TABLE table_2226817_12 (title VARCHAR, production_code VARCHAR) |
### question: how many episodes has been directed by Mark K. Samuels ? ### answer: SELECT COUNT(no_in_series) FROM table_2226817_12 WHERE directed_by = "Mark K. Samuels" ### context: CREATE TABLE table_2226817_12 (no_in_series VARCHAR, directed_by VARCHAR) |
### question: Who directed what was written by Michael G. Moye & Ron Leavitt & J. Stanford Parker? ### answer: SELECT directed_by FROM table_2226817_3 WHERE written_by = "Michael G. Moye & Ron Leavitt & J. Stanford Parker" ### context: CREATE TABLE table_2226817_3 (directed_by VARCHAR, written_by VARCHAR) |
### question: What are all the production codes of episodes written by Michael G. Moye? ### answer: SELECT production_code FROM table_2226817_8 WHERE written_by = "Michael G. Moye" ### context: CREATE TABLE table_2226817_8 (production_code VARCHAR, written_by VARCHAR) |
### question: Who is the writer of episode 13? ### answer: SELECT COUNT(written_by) FROM table_2226817_8 WHERE no_in_season = 13 ### context: CREATE TABLE table_2226817_8 (written_by VARCHAR, no_in_season VARCHAR) |
### question: Which series number has the production code 7.07? ### answer: SELECT COUNT(no_in_series) FROM table_2226817_8 WHERE production_code = "7.07" ### context: CREATE TABLE table_2226817_8 (no_in_series VARCHAR, production_code VARCHAR) |
### question: How many seasons have the production code 7.01 for an episode? ### answer: SELECT MAX(no_in_season) FROM table_2226817_8 WHERE production_code = "7.01" ### context: CREATE TABLE table_2226817_8 (no_in_season INTEGER, production_code VARCHAR) |
### question: How many episodes in the series are from season 12? ### answer: SELECT no_in_series FROM table_2226817_8 WHERE no_in_season = 12 ### context: CREATE TABLE table_2226817_8 (no_in_series VARCHAR, no_in_season VARCHAR) |
### question: How many seasons had episode 158? ### answer: SELECT MIN(no_in_season) FROM table_2226817_9 WHERE no_in_series = 158 ### context: CREATE TABLE table_2226817_9 (no_in_season INTEGER, no_in_series VARCHAR) |
### question: What is the production code of the episode directed by Stacie Lipp? ### answer: SELECT production_code FROM table_2226817_9 WHERE written_by = "Stacie Lipp" ### context: CREATE TABLE table_2226817_9 (production_code VARCHAR, written_by VARCHAR) |
### question: What is the name of episode 165? ### answer: SELECT title FROM table_2226817_9 WHERE no_in_series = 165 ### context: CREATE TABLE table_2226817_9 (title VARCHAR, no_in_series VARCHAR) |
### question: How many episodes have the production code 8.04 ### answer: SELECT COUNT(directed_by) FROM table_2226817_9 WHERE production_code = "8.04" ### context: CREATE TABLE table_2226817_9 (directed_by VARCHAR, production_code VARCHAR) |
### question: What is the Alpha 2 code for the area also known as TCA? ### answer: SELECT alpha_2_code FROM table_222771_1 WHERE alpha_3_code = "TCA" ### context: CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, alpha_3_code VARCHAR) |
### question: What is the Alpha 3 code for the area also known as FO? ### answer: SELECT alpha_3_code FROM table_222771_1 WHERE alpha_2_code = "FO" ### context: CREATE TABLE table_222771_1 (alpha_3_code VARCHAR, alpha_2_code VARCHAR) |
### question: What is the alpha 2 code for the area also known as NZL? ### answer: SELECT alpha_2_code FROM table_222771_1 WHERE alpha_3_code = "NZL" ### context: CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, alpha_3_code VARCHAR) |
### question: What is the ISO for South Sudan? ### answer: SELECT iso_3166_2_codes FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = "South Sudan" ### context: CREATE TABLE table_222771_1 (iso_3166_2_codes VARCHAR, english_short_name__upper_lower_case_ VARCHAR) |
### question: What is the Alpha 2 code for Papua New Guinea? ### answer: SELECT alpha_2_code FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = "Papua New Guinea" ### context: CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, english_short_name__upper_lower_case_ VARCHAR) |
### question: What is the number reference for LIE? ### answer: SELECT numeric_code FROM table_222771_1 WHERE alpha_3_code = "LIE" ### context: CREATE TABLE table_222771_1 (numeric_code VARCHAR, alpha_3_code VARCHAR) |
### question: How many launch dates are there for digital transmission? ### answer: SELECT COUNT(launch_date) FROM table_22274142_1 WHERE transmission = "Digital" ### context: CREATE TABLE table_22274142_1 (launch_date VARCHAR, transmission VARCHAR) |
### question: Who wrote the title with production code 7acx14? ### answer: SELECT written_by FROM table_22269839_1 WHERE production_code = "7ACX14" ### context: CREATE TABLE table_22269839_1 (written_by VARCHAR, production_code VARCHAR) |
### question: Who directed the title written by cherry chevapravatdumrong? ### answer: SELECT directed_by FROM table_22269839_1 WHERE written_by = "Cherry Chevapravatdumrong" ### context: CREATE TABLE table_22269839_1 (directed_by VARCHAR, written_by VARCHAR) |
### question: Who wrote the title with the production code is 7acx08? ### answer: SELECT written_by FROM table_22269839_1 WHERE production_code = "7ACX08" ### context: CREATE TABLE table_22269839_1 (written_by VARCHAR, production_code VARCHAR) |
### question: Who directed the episode written by patrick meighan? ### answer: SELECT directed_by FROM table_22269839_1 WHERE written_by = "Patrick Meighan" ### context: CREATE TABLE table_22269839_1 (directed_by VARCHAR, written_by VARCHAR) |
### question: When is every date that control site condition or owner is machine shop on Martin Dr.? ### answer: SELECT dates FROM table_22282917_26 WHERE control_site_condition_owner = "machine shop on Martin Dr." ### context: CREATE TABLE table_22282917_26 (dates VARCHAR, control_site_condition_owner VARCHAR) |
### question: What is every missile type with a code and location of M-20 Harbor Drive? ### answer: SELECT missile_type FROM table_22282917_26 WHERE code_ & _location = "M-20 Harbor Drive" ### context: CREATE TABLE table_22282917_26 (missile_type VARCHAR, code_ VARCHAR, _location VARCHAR) |
### question: What is every code and location where the launch site condition and owner is obliterated? ### answer: SELECT code_ & _location FROM table_22282917_26 WHERE launch_site_condition_owner = "Obliterated" ### context: CREATE TABLE table_22282917_26 (code_ VARCHAR, _location VARCHAR, launch_site_condition_owner... |
### question: What is every control site condition and owner if launch site condition and owner is Lakefront Office Buildings? ### answer: SELECT control_site_condition_owner FROM table_22282917_26 WHERE launch_site_condition_owner = "lakefront office buildings" ### context: CREATE TABLE table_22282917_26 (control_site... |
### question: Which team had an outgoing manager of Behtash Fariba? ### answer: SELECT team FROM table_22297140_3 WHERE outgoing_manager = "Behtash Fariba" ### context: CREATE TABLE table_22297140_3 (team VARCHAR, outgoing_manager VARCHAR) |
### question: Which team had a manager who was replaced by Faraz Kamalvand? ### answer: SELECT team FROM table_22297140_3 WHERE replaced_by = "Faraz Kamalvand" ### context: CREATE TABLE table_22297140_3 (team VARCHAR, replaced_by VARCHAR) |
### question: Which outgoing manager was replaced by Jafar Fatahi? ### answer: SELECT outgoing_manager FROM table_22297140_3 WHERE replaced_by = "Jafar Fatahi" ### context: CREATE TABLE table_22297140_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) |
### question: Which team had a manager replaced by Ebrahim Talebi? ### answer: SELECT team FROM table_22297140_3 WHERE replaced_by = "Ebrahim Talebi" ### context: CREATE TABLE table_22297140_3 (team VARCHAR, replaced_by VARCHAR) |
### question: What was the date in which Behtash Fariba left his team? ### answer: SELECT date_of_vacancy FROM table_22297140_3 WHERE outgoing_manager = "Behtash Fariba" ### context: CREATE TABLE table_22297140_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) |
### question: What was the manner of leaving the team for the manager of Gostaresh Foolad? ### answer: SELECT manner_of_departure FROM table_22297140_3 WHERE team = "Gostaresh Foolad" ### context: CREATE TABLE table_22297140_3 (manner_of_departure VARCHAR, team VARCHAR) |
### question: How much was the cost of in-county tuition per credit hour at the Gloucester College by the fall of 2009? ### answer: SELECT in_county_tuition_per_credit_hour__fall_2009_ FROM table_22308881_2 WHERE college = "Gloucester" ### context: CREATE TABLE table_22308881_2 (in_county_tuition_per_credit_hour__fall_... |
### question: How much was the in-county tuition per credit hour at the Mercer College by the fall of 2009? ### answer: SELECT in_county_tuition_per_credit_hour__fall_2009_ FROM table_22308881_2 WHERE college = "Mercer" ### context: CREATE TABLE table_22308881_2 (in_county_tuition_per_credit_hour__fall_2009_ VARCHAR, c... |
### question: Who was the replacement manager for the vacancy of 12 Dec 2009? ### answer: SELECT replaced_by FROM table_22297198_3 WHERE date_of_vacancy = "12 Dec 2009" ### context: CREATE TABLE table_22297198_3 (replaced_by VARCHAR, date_of_vacancy VARCHAR) |
### question: What team did Alireza mansourian leave? ### answer: SELECT team FROM table_22297198_3 WHERE outgoing_manager = "Alireza Mansourian" ### context: CREATE TABLE table_22297198_3 (team VARCHAR, outgoing_manager VARCHAR) |
### question: Why did Majid bagherinia leave? ### answer: SELECT manner_of_departure FROM table_22297198_3 WHERE outgoing_manager = "Majid Bagherinia" ### context: CREATE TABLE table_22297198_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) |
### question: What team did a manager leave on 12 Dec 2009 ### answer: SELECT team FROM table_22297198_3 WHERE date_of_vacancy = "12 Dec 2009" ### context: CREATE TABLE table_22297198_3 (team VARCHAR, date_of_vacancy VARCHAR) |
### question: How many teams did Farhad Kazemi leave? ### answer: SELECT COUNT(team) FROM table_22297198_3 WHERE outgoing_manager = "Farhad Kazemi" ### context: CREATE TABLE table_22297198_3 (team VARCHAR, outgoing_manager VARCHAR) |
### question: If the school is Rend Lake College, what is the team name? ### answer: SELECT team_name FROM table_22319599_1 WHERE school = "Rend Lake College" ### context: CREATE TABLE table_22319599_1 (team_name VARCHAR, school VARCHAR) |
### question: What is the minimum possible for the NJCAA championships? ### answer: SELECT MIN(njcaa_championships) FROM table_22319599_1 ### context: CREATE TABLE table_22319599_1 (njcaa_championships INTEGER) |
### question: If the varsity team is 6, what is the location? ### answer: SELECT location FROM table_22319599_1 WHERE varsity_teams = 6 ### context: CREATE TABLE table_22319599_1 (location VARCHAR, varsity_teams VARCHAR) |
### question: If the school is John A. Logan College, what are the colors? ### answer: SELECT colors FROM table_22319599_1 WHERE school = "John A. Logan College" ### context: CREATE TABLE table_22319599_1 (colors VARCHAR, school VARCHAR) |
### question: On how many different dates was the race at the Silverstone circuit? ### answer: SELECT COUNT(date) FROM table_22334183_3 WHERE circuit = "Silverstone" ### context: CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR) |
### question: When was the circuit Donington Park? ### answer: SELECT date FROM table_22334183_3 WHERE circuit = "Donington Park" ### context: CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR) |
### question: What is the weight is the name is Stuart Craig? ### answer: SELECT weight FROM table_22344463_2 WHERE name = "Stuart Craig" ### context: CREATE TABLE table_22344463_2 (weight VARCHAR, name VARCHAR) |
### question: If the name is Timo Higgins, what is the total date of birth amount? ### answer: SELECT COUNT(date_of_birth) FROM table_22344463_2 WHERE name = "Timo Higgins" ### context: CREATE TABLE table_22344463_2 (date_of_birth VARCHAR, name VARCHAR) |
### question: If the height is 181cm, what was the position? ### answer: SELECT position FROM table_22344463_2 WHERE height = "181cm" ### context: CREATE TABLE table_22344463_2 (position VARCHAR, height VARCHAR) |
### question: If the home team is UMBC and the weight is 78kg, what the the name total number? ### answer: SELECT COUNT(name) FROM table_22344463_2 WHERE weight = "78kg" AND home_team = "UMBC" ### context: CREATE TABLE table_22344463_2 (name VARCHAR, weight VARCHAR, home_team VARCHAR) |
### question: If the height is 185cm and the home team is Heaton Mersey, what is the date of birth? ### answer: SELECT date_of_birth FROM table_22344463_2 WHERE height = "185cm" AND home_team = "Heaton Mersey" ### context: CREATE TABLE table_22344463_2 (date_of_birth VARCHAR, height VARCHAR, home_team VARCHAR) |
### question: How many viewers tuned in for season 2? ### answer: SELECT us_viewers__million_ FROM table_22347090_4 WHERE no_in_season = 2 ### context: CREATE TABLE table_22347090_4 (us_viewers__million_ VARCHAR, no_in_season VARCHAR) |
### question: Who directed the episode that has 3x6752 listed as the production code? ### answer: SELECT directed_by FROM table_22347090_4 WHERE production_code = "3X6752" ### context: CREATE TABLE table_22347090_4 (directed_by VARCHAR, production_code VARCHAR) |
### question: Which series number had 1.98 million viewers? ### answer: SELECT MIN(no_in_series) FROM table_22347090_4 WHERE us_viewers__million_ = "1.98" ### context: CREATE TABLE table_22347090_4 (no_in_series INTEGER, us_viewers__million_ VARCHAR) |
### question: Name the viewers for production code for 3x6704 ### answer: SELECT us_viewers__million_ FROM table_22347090_5 WHERE production_code = "3X6704" ### context: CREATE TABLE table_22347090_5 (us_viewers__million_ VARCHAR, production_code VARCHAR) |
### question: Name the viewers for production code being 3x6706 ### answer: SELECT us_viewers__million_ FROM table_22347090_5 WHERE production_code = "3X6706" ### context: CREATE TABLE table_22347090_5 (us_viewers__million_ VARCHAR, production_code VARCHAR) |
### question: Name the title that got 1.54 viewers ### answer: SELECT title FROM table_22347090_5 WHERE us_viewers__million_ = "1.54" ### context: CREATE TABLE table_22347090_5 (title VARCHAR, us_viewers__million_ VARCHAR) |
### question: Name the number of number in season for 26 ### answer: SELECT COUNT(no_in_season) FROM table_22347090_5 WHERE no_in_series = 26 ### context: CREATE TABLE table_22347090_5 (no_in_season VARCHAR, no_in_series VARCHAR) |
### question: Who wrote the episode that has a production code 3x7557? ### answer: SELECT written_by FROM table_22347090_6 WHERE production_code = "3X7557" ### context: CREATE TABLE table_22347090_6 (written_by VARCHAR, production_code VARCHAR) |
### question: How many directors are there for the episode that had 1.59 million U.S. viewers? ### answer: SELECT COUNT(directed_by) FROM table_22347090_6 WHERE us_viewers__million_ = "1.59" ### context: CREATE TABLE table_22347090_6 (directed_by VARCHAR, us_viewers__million_ VARCHAR) |
### question: What is the production code for the episode that had 1.32 million U.S. viewers? ### answer: SELECT production_code FROM table_22347090_6 WHERE us_viewers__million_ = "1.32" ### context: CREATE TABLE table_22347090_6 (production_code VARCHAR, us_viewers__million_ VARCHAR) |
### question: What episode number in the series had a production code of 3x7554? ### answer: SELECT MIN(no_in_series) FROM table_22347090_6 WHERE production_code = "3X7554" ### context: CREATE TABLE table_22347090_6 (no_in_series INTEGER, production_code VARCHAR) |
### question: What is the name of episode number 41 in the series? ### answer: SELECT title FROM table_22347090_6 WHERE no_in_series = 41 ### context: CREATE TABLE table_22347090_6 (title VARCHAR, no_in_series VARCHAR) |
### question: Who has the minimum number of silver? ### answer: SELECT MIN(silver) FROM table_22355_20 ### context: CREATE TABLE table_22355_20 (silver INTEGER) |
### question: Who is the athlete who's rank is 8 and competed in the olympics during 1948β1952? ### answer: SELECT athlete FROM table_22355_20 WHERE rank = 8 AND olympics = "1948β1952" ### context: CREATE TABLE table_22355_20 (athlete VARCHAR, rank VARCHAR, olympics VARCHAR) |
### question: What is the nation who won 1 bronze in the Olympics during 1924β1928? ### answer: SELECT nation FROM table_22355_20 WHERE olympics = "1924β1928" AND bronze = 1 ### context: CREATE TABLE table_22355_20 (nation VARCHAR, olympics VARCHAR, bronze VARCHAR) |
### question: Who is the athlete from the nation of Ethiopia (eth) who had a rank bigger than 7.0? ### answer: SELECT athlete FROM table_22355_20 WHERE nation = "Ethiopia (ETH)" AND rank > 7.0 ### context: CREATE TABLE table_22355_20 (athlete VARCHAR, nation VARCHAR, rank VARCHAR) |
### question: What is the maximum number of golds? ### answer: SELECT MAX(gold) FROM table_22355_26 ### context: CREATE TABLE table_22355_26 (gold INTEGER) |
### question: What is the smallest amount of silver? ### answer: SELECT MIN(silver) FROM table_22355_29 ### context: CREATE TABLE table_22355_29 (silver INTEGER) |
### question: Name the nation for abdon pamich category:articles with hcards ### answer: SELECT nation FROM table_22355_44 WHERE athlete = "Abdon Pamich Category:Articles with hCards" ### context: CREATE TABLE table_22355_44 (nation VARCHAR, athlete VARCHAR) |
### question: Name the silver for ronald weigel category:articles with hcards ### answer: SELECT MAX(silver) FROM table_22355_44 WHERE athlete = "Ronald Weigel Category:Articles with hCards" ### context: CREATE TABLE table_22355_44 (silver INTEGER, athlete VARCHAR) |
### question: What's the minimal rank of a athlete shown in the chart? ### answer: SELECT MIN(rank) FROM table_22355_5 ### context: CREATE TABLE table_22355_5 (rank INTEGER) |
### question: which is the minimun amount of gold medals? ### answer: SELECT MIN(gold) FROM table_22355_35 ### context: CREATE TABLE table_22355_35 (gold INTEGER) |
### question: which is the minimun amount of silver medals? ### answer: SELECT MIN(silver) FROM table_22355_35 ### context: CREATE TABLE table_22355_35 (silver INTEGER) |
### question: What is the lowest overall number for total(min. 2 medals)? ### answer: SELECT MIN(total_min_2_medals_) FROM table_22355_65 ### context: CREATE TABLE table_22355_65 (total_min_2_medals_ INTEGER) |
### question: What is the maximum rank of the nation that won 4 gold medals? ### answer: SELECT MAX(rank) FROM table_22355_62 WHERE gold = 4 ### context: CREATE TABLE table_22355_62 (rank INTEGER, gold VARCHAR) |
### question: Name the most rank ### answer: SELECT MAX(rank) FROM table_22355_68 ### context: CREATE TABLE table_22355_68 (rank INTEGER) |
### question: Name the most rank for 2 gold ### answer: SELECT MIN(rank) FROM table_22355_68 WHERE gold = 2 ### context: CREATE TABLE table_22355_68 (rank INTEGER, gold VARCHAR) |
### question: Name the most total ### answer: SELECT MAX(total) FROM table_22360_3 ### context: CREATE TABLE table_22360_3 (total INTEGER) |
### question: Name the silver for baseball ### answer: SELECT MIN(silver) FROM table_22360_3 WHERE discipline = "Baseball" ### context: CREATE TABLE table_22360_3 (silver INTEGER, discipline VARCHAR) |
### question: Name the discipline for bronze being 0 ### answer: SELECT discipline FROM table_22360_3 WHERE bronze = 0 ### context: CREATE TABLE table_22360_3 (discipline VARCHAR, bronze VARCHAR) |
### question: Name the most tier 1 capital for irish nationwide ### answer: SELECT MAX(tier_1_capital), _β¬_million FROM table_22368322_2 WHERE institution = "Irish Nationwide" ### context: CREATE TABLE table_22368322_2 (_β¬_million VARCHAR, tier_1_capital INTEGER, institution VARCHAR) |
### question: Name the tier 1 ratio for irish life and permanent ### answer: SELECT tier_1_ratio FROM table_22368322_2 WHERE institution = "Irish Life and Permanent" ### context: CREATE TABLE table_22368322_2 (tier_1_ratio VARCHAR, institution VARCHAR) |
### question: Name the total number of tier 1 capital for allied irish banks ### answer: SELECT COUNT(tier_1_capital), _β¬_million FROM table_22368322_2 WHERE institution = "Allied Irish Banks" ### context: CREATE TABLE table_22368322_2 (_β¬_million VARCHAR, tier_1_capital VARCHAR, institution VARCHAR) |
### question: Name the date of report for tier 1 ratio being 3.9% ### answer: SELECT date_of_report FROM table_22368322_2 WHERE tier_1_ratio = "3.9%" ### context: CREATE TABLE table_22368322_2 (date_of_report VARCHAR, tier_1_ratio VARCHAR) |
### question: What season ended on April 18? ### answer: SELECT season FROM table_22383603_1 WHERE finish__incl_championship_ = "April 18" ### context: CREATE TABLE table_22383603_1 (season VARCHAR, finish__incl_championship_ VARCHAR) |
### question: When did the season start that ended with the top record of Lindenwood (20β0β0)? ### answer: SELECT start__reg_season_ FROM table_22383603_1 WHERE top_record = "Lindenwood (20β0β0)" ### context: CREATE TABLE table_22383603_1 (start__reg_season_ VARCHAR, top_record VARCHAR) |
### question: What is the year range of season 4? ### answer: SELECT season FROM table_22383603_1 WHERE no = 4 ### context: CREATE TABLE table_22383603_1 (season VARCHAR, no VARCHAR) |
### question: When is the finish of the season that started on September 25? ### answer: SELECT finish__incl_championship_ FROM table_22383603_1 WHERE start__reg_season_ = "September 25" ### context: CREATE TABLE table_22383603_1 (finish__incl_championship_ VARCHAR, start__reg_season_ VARCHAR) |
### question: On what air date were there 2.15 million u.s. viewers? ### answer: SELECT original_air_date FROM table_22380270_1 WHERE us_viewers__millions_ = "2.15" ### context: CREATE TABLE table_22380270_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) |
### question: Who was the writer for the episode with 2.15 million u.s.viewers? ### answer: SELECT written_by FROM table_22380270_1 WHERE us_viewers__millions_ = "2.15" ### context: CREATE TABLE table_22380270_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) |
### question: Who walked in space from STS-101 Eva 1? ### answer: SELECT spacewalkers FROM table_22385461_1 WHERE spacecraft = "STS-101 EVA 1" ### context: CREATE TABLE table_22385461_1 (spacewalkers VARCHAR, spacecraft VARCHAR) |
### question: What is the end (UTC) if the duration is 6 hours, 55 minutes? ### answer: SELECT end__utc_ FROM table_22385461_8 WHERE duration = "6 hours, 55 minutes" ### context: CREATE TABLE table_22385461_8 (end__utc_ VARCHAR, duration VARCHAR) |
### question: If the end (UTC) is January 31, 2007 23:09, what is the name of the spacewalkers? ### answer: SELECT spacewalkers FROM table_22385461_8 WHERE end__utc_ = "January 31, 2007 23:09" ### context: CREATE TABLE table_22385461_8 (spacewalkers VARCHAR, end__utc_ VARCHAR) |
### question: What are the names of the spacewalkers for end (UTC) October 30, 2007 15:53? ### answer: SELECT spacewalkers FROM table_22385461_8 WHERE end__utc_ = "October 30, 2007 15:53" ### context: CREATE TABLE table_22385461_8 (spacewalkers VARCHAR, end__utc_ VARCHAR) |
### question: Which position is player bernie doan? ### answer: SELECT position FROM table_22402438_7 WHERE player = "Bernie Doan" ### context: CREATE TABLE table_22402438_7 (position VARCHAR, player VARCHAR) |
### question: How many pick # are there for the goaltender position? ### answer: SELECT MIN(pick__number) FROM table_22402438_7 WHERE position = "Goaltender" ### context: CREATE TABLE table_22402438_7 (pick__number INTEGER, position VARCHAR) |
### question: How many college/junior/clubteams have John garrett as the player? ### answer: SELECT COUNT(college_junior_club_team) FROM table_22402438_7 WHERE player = "John Garrett" ### context: CREATE TABLE table_22402438_7 (college_junior_club_team VARCHAR, player VARCHAR) |
### question: Who is the player with the pick# 80? ### answer: SELECT player FROM table_22402438_7 WHERE pick__number = 80 ### context: CREATE TABLE table_22402438_7 (player VARCHAR, pick__number VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.