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