question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which Directed by has an Original air date of april 29, 2000?
CREATE TABLE table_name_27 (directed_by VARCHAR, original_air_date VARCHAR)
SELECT directed_by FROM table_name_27 WHERE original_air_date = "april 29, 2000"
### Context: CREATE TABLE table_name_27 (directed_by VARCHAR, original_air_date VARCHAR) ### Question: Which Directed by has an Original air date of april 29, 2000? ### Answer: SELECT directed_by FROM table_name_27 WHERE original_air_date = "april 29, 2000"
What was the result of the game from September 10, 2000?
CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_68 WHERE date = "september 10, 2000"
### Context: CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game from September 10, 2000? ### Answer: SELECT result FROM table_name_68 WHERE date = "september 10, 2000"
Which award ceremony took place on May 15, 1965?
CREATE TABLE table_name_91 (ceremony VARCHAR, date VARCHAR)
SELECT ceremony FROM table_name_91 WHERE date = "may 15, 1965"
### Context: CREATE TABLE table_name_91 (ceremony VARCHAR, date VARCHAR) ### Question: Which award ceremony took place on May 15, 1965? ### Answer: SELECT ceremony FROM table_name_91 WHERE date = "may 15, 1965"
Which movie was awarded Film of the Year on May 8, 1964?
CREATE TABLE table_name_2 (film_of_the_year VARCHAR, date VARCHAR)
SELECT film_of_the_year FROM table_name_2 WHERE date = "may 8, 1964"
### Context: CREATE TABLE table_name_2 (film_of_the_year VARCHAR, date VARCHAR) ### Question: Which movie was awarded Film of the Year on May 8, 1964? ### Answer: SELECT film_of_the_year FROM table_name_2 WHERE date = "may 8, 1964"
Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160?
CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR)
SELECT MAX(dcsf_number) FROM table_name_52 WHERE name = "field" AND ofsted_number > 117160
### Context: CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR) ### Question: Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160? ### Answer: SELECT MAX(dcsf_number) FROM table_name_52 WHERE name = "field" AND ofsted_number > 117160
Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428?
CREATE TABLE table_name_54 (intake INTEGER, faith VARCHAR, dcsf_number VARCHAR)
SELECT SUM(intake) FROM table_name_54 WHERE faith = "rc" AND dcsf_number > 2428
### Context: CREATE TABLE table_name_54 (intake INTEGER, faith VARCHAR, dcsf_number VARCHAR) ### Question: Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428? ### Answer: SELECT SUM(intake) FROM table_name_54 WHERE faith = "rc" AND dcsf_number > 2428
Can you tell me the Name that has the DCSF number of 2117?
CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR)
SELECT name FROM table_name_11 WHERE dcsf_number = 2117
### Context: CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR) ### Question: Can you tell me the Name that has the DCSF number of 2117? ### Answer: SELECT name FROM table_name_11 WHERE dcsf_number = 2117
Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60?
CREATE TABLE table_name_36 (ofsted_number INTEGER, type VARCHAR, intake VARCHAR)
SELECT MAX(ofsted_number) FROM table_name_36 WHERE type = "infants" AND intake > 60
### Context: CREATE TABLE table_name_36 (ofsted_number INTEGER, type VARCHAR, intake VARCHAR) ### Question: Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60? ### Answer: SELECT MAX(ofsted_number) FROM table_name_36 WHERE type = "infants" AND intake > 60
What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070?
CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at chicago bears" AND attendance > 49 OFFSET 070
### Context: CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR, attendance VARCHAR) ### Question: What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070? ### Answer: SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at chicago bears" AND attendance > 49 OFFSET 070
What is Date, when Week is 11?
CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_45 WHERE week = 11
### Context: CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR) ### Question: What is Date, when Week is 11? ### Answer: SELECT date FROM table_name_45 WHERE week = 11
What is the lowest Week, when Attendance is 38,624?
CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_27 WHERE attendance = 38 OFFSET 624
### Context: CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR) ### Question: What is the lowest Week, when Attendance is 38,624? ### Answer: SELECT MIN(week) FROM table_name_27 WHERE attendance = 38 OFFSET 624
How much international mail has a change of +35,7% later than 2008?
CREATE TABLE table_name_35 (international_mail INTEGER, change VARCHAR, year VARCHAR)
SELECT SUM(international_mail) FROM table_name_35 WHERE change = "+35,7%" AND year > 2008
### Context: CREATE TABLE table_name_35 (international_mail INTEGER, change VARCHAR, year VARCHAR) ### Question: How much international mail has a change of +35,7% later than 2008? ### Answer: SELECT SUM(international_mail) FROM table_name_35 WHERE change = "+35,7%" AND year > 2008
What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278?
CREATE TABLE table_name_23 (domestic_freight INTEGER, change VARCHAR, total_freight_and_mail VARCHAR)
SELECT MAX(domestic_freight) FROM table_name_23 WHERE change = "+9,8%" AND total_freight_and_mail > 3 OFFSET 278
### Context: CREATE TABLE table_name_23 (domestic_freight INTEGER, change VARCHAR, total_freight_and_mail VARCHAR) ### Question: What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278? ### Answer: SELECT MAX(domestic_freight) FROM table_name_23 WHERE change = "+9,8%" AND total_freight_and_mail > 3 OFFSET 278
How much international freight has a change of +0,2% with more than 0 international mail?
CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, international_mail VARCHAR)
SELECT COUNT(international_freight) FROM table_name_75 WHERE change = "+0,2%" AND international_mail > 0
### Context: CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, international_mail VARCHAR) ### Question: How much international freight has a change of +0,2% with more than 0 international mail? ### Answer: SELECT COUNT(international_freight) FROM table_name_75 WHERE change = "+0,2%" AND international_mail > 0
What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail?
CREATE TABLE table_name_45 (international_mail INTEGER, change VARCHAR, domestic_mail VARCHAR)
SELECT MAX(international_mail) FROM table_name_45 WHERE change = "+0,2%" AND domestic_mail < 0
### Context: CREATE TABLE table_name_45 (international_mail INTEGER, change VARCHAR, domestic_mail VARCHAR) ### Question: What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail? ### Answer: SELECT MAX(international_mail) FROM table_name_45 WHERE change = "+0,2%" AND domestic_mail < 0
What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?
CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR)
SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695
### Context: CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR) ### Question: What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695? ### Answer: SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695
what is the venue when the date is 16 january 1996?
CREATE TABLE table_name_99 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_99 WHERE date = "16 january 1996"
### Context: CREATE TABLE table_name_99 (venue VARCHAR, date VARCHAR) ### Question: what is the venue when the date is 16 january 1996? ### Answer: SELECT venue FROM table_name_99 WHERE date = "16 january 1996"
what is the competition when the date is 16 january 1996?
CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_14 WHERE date = "16 january 1996"
### Context: CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR) ### Question: what is the competition when the date is 16 january 1996? ### Answer: SELECT competition FROM table_name_14 WHERE date = "16 january 1996"
WHAT IS THE RECORD FOR FEBRUARY 11?
CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_62 WHERE date = "february 11"
### Context: CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR) ### Question: WHAT IS THE RECORD FOR FEBRUARY 11? ### Answer: SELECT record FROM table_name_62 WHERE date = "february 11"
What was the award before 2001?
CREATE TABLE table_name_32 (award VARCHAR, year INTEGER)
SELECT award FROM table_name_32 WHERE year < 2001
### Context: CREATE TABLE table_name_32 (award VARCHAR, year INTEGER) ### Question: What was the award before 2001? ### Answer: SELECT award FROM table_name_32 WHERE year < 2001
What is the highest week for a game that was located at the Molson Stadium?
CREATE TABLE table_name_66 (week INTEGER, location VARCHAR)
SELECT MAX(week) FROM table_name_66 WHERE location = "molson stadium"
### Context: CREATE TABLE table_name_66 (week INTEGER, location VARCHAR) ### Question: What is the highest week for a game that was located at the Molson Stadium? ### Answer: SELECT MAX(week) FROM table_name_66 WHERE location = "molson stadium"
What is the average week number for games that had 28,800 fans in attendance?
CREATE TABLE table_name_19 (week INTEGER, attendance VARCHAR)
SELECT AVG(week) FROM table_name_19 WHERE attendance = "28,800"
### Context: CREATE TABLE table_name_19 (week INTEGER, attendance VARCHAR) ### Question: What is the average week number for games that had 28,800 fans in attendance? ### Answer: SELECT AVG(week) FROM table_name_19 WHERE attendance = "28,800"
Who did the argonauts play against during the game that had 19,423 fans in attendance?
CREATE TABLE table_name_45 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_45 WHERE attendance = "19,423"
### Context: CREATE TABLE table_name_45 (opponent VARCHAR, attendance VARCHAR) ### Question: Who did the argonauts play against during the game that had 19,423 fans in attendance? ### Answer: SELECT opponent FROM table_name_45 WHERE attendance = "19,423"
What was Juli's winning margin on Aug 24, 1986?
CREATE TABLE table_name_10 (margin_of_victory VARCHAR, date VARCHAR)
SELECT margin_of_victory FROM table_name_10 WHERE date = "aug 24, 1986"
### Context: CREATE TABLE table_name_10 (margin_of_victory VARCHAR, date VARCHAR) ### Question: What was Juli's winning margin on Aug 24, 1986? ### Answer: SELECT margin_of_victory FROM table_name_10 WHERE date = "aug 24, 1986"
What was the margin of victory at the LPGA Championship?
CREATE TABLE table_name_65 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_65 WHERE tournament = "lpga championship"
### Context: CREATE TABLE table_name_65 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What was the margin of victory at the LPGA Championship? ### Answer: SELECT margin_of_victory FROM table_name_65 WHERE tournament = "lpga championship"
What is the highest value for Ties, when Losses is less than 8?
CREATE TABLE table_name_72 (ties INTEGER, losses INTEGER)
SELECT MAX(ties) FROM table_name_72 WHERE losses < 8
### Context: CREATE TABLE table_name_72 (ties INTEGER, losses INTEGER) ### Question: What is the highest value for Ties, when Losses is less than 8? ### Answer: SELECT MAX(ties) FROM table_name_72 WHERE losses < 8
What is the total number of Losses, when Ties is 2, and when Wins is greater than 8?
CREATE TABLE table_name_81 (losses VARCHAR, ties VARCHAR, wins VARCHAR)
SELECT COUNT(losses) FROM table_name_81 WHERE ties = 2 AND wins > 8
### Context: CREATE TABLE table_name_81 (losses VARCHAR, ties VARCHAR, wins VARCHAR) ### Question: What is the total number of Losses, when Ties is 2, and when Wins is greater than 8? ### Answer: SELECT COUNT(losses) FROM table_name_81 WHERE ties = 2 AND wins > 8
What is the highest React that has a 7.61 Mark and a heat bigger than 1?
CREATE TABLE table_name_84 (react INTEGER, mark VARCHAR, heat VARCHAR)
SELECT MAX(react) FROM table_name_84 WHERE mark = "7.61" AND heat > 1
### Context: CREATE TABLE table_name_84 (react INTEGER, mark VARCHAR, heat VARCHAR) ### Question: What is the highest React that has a 7.61 Mark and a heat bigger than 1? ### Answer: SELECT MAX(react) FROM table_name_84 WHERE mark = "7.61" AND heat > 1
What is the Cause of death of the Officer with a Date of death of 1956-09-07?
CREATE TABLE table_name_49 (cause_of_death VARCHAR, date_of_death VARCHAR)
SELECT cause_of_death FROM table_name_49 WHERE date_of_death = "1956-09-07"
### Context: CREATE TABLE table_name_49 (cause_of_death VARCHAR, date_of_death VARCHAR) ### Question: What is the Cause of death of the Officer with a Date of death of 1956-09-07? ### Answer: SELECT cause_of_death FROM table_name_49 WHERE date_of_death = "1956-09-07"
What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?
CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)
SELECT tenure FROM table_name_95 WHERE cause_of_death = "helicopter accident" AND badge_serial_number = "16805"
### Context: CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR) ### Question: What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805? ### Answer: SELECT tenure FROM table_name_95 WHERE cause_of_death = "helicopter accident" AND badge_serial_number = "16805"
What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18?
CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_of_death VARCHAR, rank VARCHAR, cause_of_death VARCHAR)
SELECT badge_serial_number FROM table_name_58 WHERE rank = "policeman" AND cause_of_death = "gunfire" AND date_of_death = "1919-02-18"
### Context: CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_of_death VARCHAR, rank VARCHAR, cause_of_death VARCHAR) ### Question: What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18? ### Answer: SELECT badge_serial_number FROM table_name_58 WHERE rank = "policeman" AND cause_of_death = "gunfire" AND date_of_death = "1919-02-18"
What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire?
CREATE TABLE table_name_17 (rank VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)
SELECT rank FROM table_name_17 WHERE cause_of_death = "gunfire" AND badge_serial_number = "11755"
### Context: CREATE TABLE table_name_17 (rank VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR) ### Question: What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire? ### Answer: SELECT rank FROM table_name_17 WHERE cause_of_death = "gunfire" AND badge_serial_number = "11755"
What is Team, when Tries Against is 8?
CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR)
SELECT team FROM table_name_40 WHERE tries_against = "8"
### Context: CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR) ### Question: What is Team, when Tries Against is 8? ### Answer: SELECT team FROM table_name_40 WHERE tries_against = "8"
What is Tries Against, when Tries For is 20?
CREATE TABLE table_name_22 (tries_against VARCHAR, tries_for VARCHAR)
SELECT tries_against FROM table_name_22 WHERE tries_for = "20"
### Context: CREATE TABLE table_name_22 (tries_against VARCHAR, tries_for VARCHAR) ### Question: What is Tries Against, when Tries For is 20? ### Answer: SELECT tries_against FROM table_name_22 WHERE tries_for = "20"
What is Tries Against, when Points For is 98?
CREATE TABLE table_name_22 (tries_against VARCHAR, points_for VARCHAR)
SELECT tries_against FROM table_name_22 WHERE points_for = "98"
### Context: CREATE TABLE table_name_22 (tries_against VARCHAR, points_for VARCHAR) ### Question: What is Tries Against, when Points For is 98? ### Answer: SELECT tries_against FROM table_name_22 WHERE points_for = "98"
What is Points Against, when Try Diff is +22?
CREATE TABLE table_name_88 (points_against VARCHAR, try_diff VARCHAR)
SELECT points_against FROM table_name_88 WHERE try_diff = "+22"
### Context: CREATE TABLE table_name_88 (points_against VARCHAR, try_diff VARCHAR) ### Question: What is Points Against, when Try Diff is +22? ### Answer: SELECT points_against FROM table_name_88 WHERE try_diff = "+22"
What is Record, when Event is "Independent Event", and when Method is "Submission (Peruvian Necktie)"?
CREATE TABLE table_name_2 (record VARCHAR, event VARCHAR, method VARCHAR)
SELECT record FROM table_name_2 WHERE event = "independent event" AND method = "submission (peruvian necktie)"
### Context: CREATE TABLE table_name_2 (record VARCHAR, event VARCHAR, method VARCHAR) ### Question: What is Record, when Event is "Independent Event", and when Method is "Submission (Peruvian Necktie)"? ### Answer: SELECT record FROM table_name_2 WHERE event = "independent event" AND method = "submission (peruvian necktie)"
What is Event, when Method is "Submission (Armbar)", and when Opponent is "Jason St. Louis"?
CREATE TABLE table_name_54 (event VARCHAR, method VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_54 WHERE method = "submission (armbar)" AND opponent = "jason st. louis"
### Context: CREATE TABLE table_name_54 (event VARCHAR, method VARCHAR, opponent VARCHAR) ### Question: What is Event, when Method is "Submission (Armbar)", and when Opponent is "Jason St. Louis"? ### Answer: SELECT event FROM table_name_54 WHERE method = "submission (armbar)" AND opponent = "jason st. louis"
What is Res., when Event is "KOTC 11 - Domination"?
CREATE TABLE table_name_81 (res VARCHAR, event VARCHAR)
SELECT res FROM table_name_81 WHERE event = "kotc 11 - domination"
### Context: CREATE TABLE table_name_81 (res VARCHAR, event VARCHAR) ### Question: What is Res., when Event is "KOTC 11 - Domination"? ### Answer: SELECT res FROM table_name_81 WHERE event = "kotc 11 - domination"
How many were in attendance with a Result of l 17–10?
CREATE TABLE table_name_76 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_76 WHERE result = "l 17–10"
### Context: CREATE TABLE table_name_76 (attendance VARCHAR, result VARCHAR) ### Question: How many were in attendance with a Result of l 17–10? ### Answer: SELECT attendance FROM table_name_76 WHERE result = "l 17–10"
How many were in attendance in a week lower than 5 with a Bye result?
CREATE TABLE table_name_69 (attendance VARCHAR, week VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_69 WHERE week < 5 AND result = "bye"
### Context: CREATE TABLE table_name_69 (attendance VARCHAR, week VARCHAR, result VARCHAR) ### Question: How many were in attendance in a week lower than 5 with a Bye result? ### Answer: SELECT attendance FROM table_name_69 WHERE week < 5 AND result = "bye"
On what date was the result w 26–20?
CREATE TABLE table_name_54 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_54 WHERE result = "w 26–20"
### Context: CREATE TABLE table_name_54 (date VARCHAR, result VARCHAR) ### Question: On what date was the result w 26–20? ### Answer: SELECT date FROM table_name_54 WHERE result = "w 26–20"
Who was the opponent in a week below 14 on October 10, 1993?
CREATE TABLE table_name_18 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_18 WHERE week < 14 AND date = "october 10, 1993"
### Context: CREATE TABLE table_name_18 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: Who was the opponent in a week below 14 on October 10, 1993? ### Answer: SELECT opponent FROM table_name_18 WHERE week < 14 AND date = "october 10, 1993"
Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000?
CREATE TABLE table_name_29 (top_5 INTEGER, position VARCHAR, year VARCHAR)
SELECT AVG(top_5) FROM table_name_29 WHERE position = "52nd" AND year < 2000
### Context: CREATE TABLE table_name_29 (top_5 INTEGER, position VARCHAR, year VARCHAR) ### Question: Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000? ### Answer: SELECT AVG(top_5) FROM table_name_29 WHERE position = "52nd" AND year < 2000
Name the average Wins which has a Top 10 smaller than 0?
CREATE TABLE table_name_5 (wins INTEGER, top_10 INTEGER)
SELECT AVG(wins) FROM table_name_5 WHERE top_10 < 0
### Context: CREATE TABLE table_name_5 (wins INTEGER, top_10 INTEGER) ### Question: Name the average Wins which has a Top 10 smaller than 0? ### Answer: SELECT AVG(wins) FROM table_name_5 WHERE top_10 < 0
Which Points Classification does the General Classification of Cyril Dessel have?
CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification VARCHAR)
SELECT points_classification FROM table_name_9 WHERE general_classification = "cyril dessel"
### Context: CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification VARCHAR) ### Question: Which Points Classification does the General Classification of Cyril Dessel have? ### Answer: SELECT points_classification FROM table_name_9 WHERE general_classification = "cyril dessel"
What is the Team Classification if the Winner is Cyril Dessel?
CREATE TABLE table_name_30 (team_classification VARCHAR, winner VARCHAR)
SELECT team_classification FROM table_name_30 WHERE winner = "cyril dessel"
### Context: CREATE TABLE table_name_30 (team_classification VARCHAR, winner VARCHAR) ### Question: What is the Team Classification if the Winner is Cyril Dessel? ### Answer: SELECT team_classification FROM table_name_30 WHERE winner = "cyril dessel"
In the final Stage with a Mountains Classification of Christophe Moreau, what is the Team Classification?
CREATE TABLE table_name_8 (team_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)
SELECT team_classification FROM table_name_8 WHERE mountains_classification = "christophe moreau" AND stage = "final"
### Context: CREATE TABLE table_name_8 (team_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR) ### Question: In the final Stage with a Mountains Classification of Christophe Moreau, what is the Team Classification? ### Answer: SELECT team_classification FROM table_name_8 WHERE mountains_classification = "christophe moreau" AND stage = "final"
What is the Mountains Classification for Winner Thor hushovd with Sprints Classification of no award?
CREATE TABLE table_name_94 (mountains_classification VARCHAR, winner VARCHAR, sprints_classification VARCHAR)
SELECT mountains_classification FROM table_name_94 WHERE winner = "thor hushovd" AND sprints_classification = "no award"
### Context: CREATE TABLE table_name_94 (mountains_classification VARCHAR, winner VARCHAR, sprints_classification VARCHAR) ### Question: What is the Mountains Classification for Winner Thor hushovd with Sprints Classification of no award? ### Answer: SELECT mountains_classification FROM table_name_94 WHERE winner = "thor hushovd" AND sprints_classification = "no award"
What is the Mountains Classification for Winner josé luis carrasco?
CREATE TABLE table_name_2 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_name_2 WHERE winner = "josé luis carrasco"
### Context: CREATE TABLE table_name_2 (mountains_classification VARCHAR, winner VARCHAR) ### Question: What is the Mountains Classification for Winner josé luis carrasco? ### Answer: SELECT mountains_classification FROM table_name_2 WHERE winner = "josé luis carrasco"
Which channel has Joel Meyers as the Play by play commentator?
CREATE TABLE table_name_71 (channel VARCHAR, play_by_play VARCHAR)
SELECT channel FROM table_name_71 WHERE play_by_play = "joel meyers"
### Context: CREATE TABLE table_name_71 (channel VARCHAR, play_by_play VARCHAR) ### Question: Which channel has Joel Meyers as the Play by play commentator? ### Answer: SELECT channel FROM table_name_71 WHERE play_by_play = "joel meyers"
Who is the studio host for the game that has Paul Sunderland as play by play commentator and Jack Haley as the Studio Analyst?
CREATE TABLE table_name_19 (studio_host VARCHAR, play_by_play VARCHAR, studio_analysts VARCHAR)
SELECT studio_host FROM table_name_19 WHERE play_by_play = "paul sunderland" AND studio_analysts = "jack haley"
### Context: CREATE TABLE table_name_19 (studio_host VARCHAR, play_by_play VARCHAR, studio_analysts VARCHAR) ### Question: Who is the studio host for the game that has Paul Sunderland as play by play commentator and Jack Haley as the Studio Analyst? ### Answer: SELECT studio_host FROM table_name_19 WHERE play_by_play = "paul sunderland" AND studio_analysts = "jack haley"
Who is the studio host for the game broadcasted by Fox Sports Net west and has Chick Hearn as the play by play commentator ?
CREATE TABLE table_name_57 (studio_host VARCHAR, channel VARCHAR, play_by_play VARCHAR)
SELECT studio_host FROM table_name_57 WHERE channel = "fox sports net west" AND play_by_play = "chick hearn"
### Context: CREATE TABLE table_name_57 (studio_host VARCHAR, channel VARCHAR, play_by_play VARCHAR) ### Question: Who is the studio host for the game broadcasted by Fox Sports Net west and has Chick Hearn as the play by play commentator ? ### Answer: SELECT studio_host FROM table_name_57 WHERE channel = "fox sports net west" AND play_by_play = "chick hearn"
Who is the play by play commentator for the game that has Alan Massengale as Studio Host?
CREATE TABLE table_name_17 (play_by_play VARCHAR, studio_host VARCHAR)
SELECT play_by_play FROM table_name_17 WHERE studio_host = "alan massengale"
### Context: CREATE TABLE table_name_17 (play_by_play VARCHAR, studio_host VARCHAR) ### Question: Who is the play by play commentator for the game that has Alan Massengale as Studio Host? ### Answer: SELECT play_by_play FROM table_name_17 WHERE studio_host = "alan massengale"
which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley?
CREATE TABLE table_name_82 (channel VARCHAR, studio_analysts VARCHAR, play_by_play VARCHAR, studio_host VARCHAR)
SELECT channel FROM table_name_82 WHERE play_by_play = "paul sunderland" AND studio_host = "bill macdonald" AND studio_analysts = "jack haley"
### Context: CREATE TABLE table_name_82 (channel VARCHAR, studio_analysts VARCHAR, play_by_play VARCHAR, studio_host VARCHAR) ### Question: which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley? ### Answer: SELECT channel FROM table_name_82 WHERE play_by_play = "paul sunderland" AND studio_host = "bill macdonald" AND studio_analysts = "jack haley"
How many Assists have a Club of adler mannheim, and Points larger than 57?
CREATE TABLE table_name_60 (assists INTEGER, club VARCHAR, points VARCHAR)
SELECT SUM(assists) FROM table_name_60 WHERE club = "adler mannheim" AND points > 57
### Context: CREATE TABLE table_name_60 (assists INTEGER, club VARCHAR, points VARCHAR) ### Question: How many Assists have a Club of adler mannheim, and Points larger than 57? ### Answer: SELECT SUM(assists) FROM table_name_60 WHERE club = "adler mannheim" AND points > 57
How many points have 41 assists?
CREATE TABLE table_name_28 (points INTEGER, assists VARCHAR)
SELECT SUM(points) FROM table_name_28 WHERE assists = 41
### Context: CREATE TABLE table_name_28 (points INTEGER, assists VARCHAR) ### Question: How many points have 41 assists? ### Answer: SELECT SUM(points) FROM table_name_28 WHERE assists = 41
Which Goals have a Player of david mcllwain, and Games larger than 52?
CREATE TABLE table_name_7 (goals INTEGER, player VARCHAR, games VARCHAR)
SELECT MAX(goals) FROM table_name_7 WHERE player = "david mcllwain" AND games > 52
### Context: CREATE TABLE table_name_7 (goals INTEGER, player VARCHAR, games VARCHAR) ### Question: Which Goals have a Player of david mcllwain, and Games larger than 52? ### Answer: SELECT MAX(goals) FROM table_name_7 WHERE player = "david mcllwain" AND games > 52
Which Platform is the one that has a Stop number of 99014?
CREATE TABLE table_name_28 (platform VARCHAR, stop_no VARCHAR)
SELECT platform FROM table_name_28 WHERE stop_no = "99014"
### Context: CREATE TABLE table_name_28 (platform VARCHAR, stop_no VARCHAR) ### Question: Which Platform is the one that has a Stop number of 99014? ### Answer: SELECT platform FROM table_name_28 WHERE stop_no = "99014"
Which Line has a Platform of 3?
CREATE TABLE table_name_62 (line VARCHAR, platform VARCHAR)
SELECT line FROM table_name_62 WHERE platform = "3"
### Context: CREATE TABLE table_name_62 (line VARCHAR, platform VARCHAR) ### Question: Which Line has a Platform of 3? ### Answer: SELECT line FROM table_name_62 WHERE platform = "3"
Which Destination has a Stopping pattern of [2777] mciver station platforms?
CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern VARCHAR)
SELECT destination FROM table_name_47 WHERE stopping_pattern = "[2777] mciver station platforms"
### Context: CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern VARCHAR) ### Question: Which Destination has a Stopping pattern of [2777] mciver station platforms? ### Answer: SELECT destination FROM table_name_47 WHERE stopping_pattern = "[2777] mciver station platforms"
Which Stop # has a Platform of [2777] mciver station platforms?
CREATE TABLE table_name_50 (stop_no VARCHAR, platform VARCHAR)
SELECT stop_no FROM table_name_50 WHERE platform = "[2777] mciver station platforms"
### Context: CREATE TABLE table_name_50 (stop_no VARCHAR, platform VARCHAR) ### Question: Which Stop # has a Platform of [2777] mciver station platforms? ### Answer: SELECT stop_no FROM table_name_50 WHERE platform = "[2777] mciver station platforms"
Which Line has a Stopping pattern of all stations, A, b, p?
CREATE TABLE table_name_59 (line VARCHAR, stopping_pattern VARCHAR)
SELECT line FROM table_name_59 WHERE stopping_pattern = "all stations, a, b, p"
### Context: CREATE TABLE table_name_59 (line VARCHAR, stopping_pattern VARCHAR) ### Question: Which Line has a Stopping pattern of all stations, A, b, p? ### Answer: SELECT line FROM table_name_59 WHERE stopping_pattern = "all stations, a, b, p"
Which Stopping pattern has a Platform of [2777] mciver station platforms?
CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR)
SELECT stopping_pattern FROM table_name_50 WHERE platform = "[2777] mciver station platforms"
### Context: CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR) ### Question: Which Stopping pattern has a Platform of [2777] mciver station platforms? ### Answer: SELECT stopping_pattern FROM table_name_50 WHERE platform = "[2777] mciver station platforms"
Who was runner-up at Berlin when the result was 2-0 with 100,000 fans in attendance?
CREATE TABLE table_name_20 (runner_up VARCHAR, attendance VARCHAR, venue VARCHAR, result VARCHAR)
SELECT runner_up FROM table_name_20 WHERE venue = "berlin" AND result = "2-0" AND attendance = "100,000"
### Context: CREATE TABLE table_name_20 (runner_up VARCHAR, attendance VARCHAR, venue VARCHAR, result VARCHAR) ### Question: Who was runner-up at Berlin when the result was 2-0 with 100,000 fans in attendance? ### Answer: SELECT runner_up FROM table_name_20 WHERE venue = "berlin" AND result = "2-0" AND attendance = "100,000"
Who was the champion at berlin when the result was 2-0 with 100,000 fans in attendance?
CREATE TABLE table_name_65 (champion VARCHAR, result VARCHAR, venue VARCHAR, attendance VARCHAR)
SELECT champion FROM table_name_65 WHERE venue = "berlin" AND attendance = "100,000" AND result = "2-0"
### Context: CREATE TABLE table_name_65 (champion VARCHAR, result VARCHAR, venue VARCHAR, attendance VARCHAR) ### Question: Who was the champion at berlin when the result was 2-0 with 100,000 fans in attendance? ### Answer: SELECT champion FROM table_name_65 WHERE venue = "berlin" AND attendance = "100,000" AND result = "2-0"
What year had an attendance of 90,000?
CREATE TABLE table_name_38 (year VARCHAR, attendance VARCHAR)
SELECT year FROM table_name_38 WHERE attendance = "90,000"
### Context: CREATE TABLE table_name_38 (year VARCHAR, attendance VARCHAR) ### Question: What year had an attendance of 90,000? ### Answer: SELECT year FROM table_name_38 WHERE attendance = "90,000"
What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?
CREATE TABLE table_name_39 (year INTEGER, attendance VARCHAR, runner_up VARCHAR)
SELECT SUM(year) FROM table_name_39 WHERE attendance = "95,000" AND runner_up = "dresdner sc"
### Context: CREATE TABLE table_name_39 (year INTEGER, attendance VARCHAR, runner_up VARCHAR) ### Question: What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc? ### Answer: SELECT SUM(year) FROM table_name_39 WHERE attendance = "95,000" AND runner_up = "dresdner sc"
Who was the champion when the attendance was 70,000?
CREATE TABLE table_name_43 (champion VARCHAR, attendance VARCHAR)
SELECT champion FROM table_name_43 WHERE attendance = "70,000"
### Context: CREATE TABLE table_name_43 (champion VARCHAR, attendance VARCHAR) ### Question: Who was the champion when the attendance was 70,000? ### Answer: SELECT champion FROM table_name_43 WHERE attendance = "70,000"
What is the Height (ft) of the Churchill House with a Height (m) less than 59?
CREATE TABLE table_name_12 (height__ft_ VARCHAR, name VARCHAR, height__m_ VARCHAR)
SELECT COUNT(height__ft_) FROM table_name_12 WHERE name = "churchill house" AND height__m_ < 59
### Context: CREATE TABLE table_name_12 (height__ft_ VARCHAR, name VARCHAR, height__m_ VARCHAR) ### Question: What is the Height (ft) of the Churchill House with a Height (m) less than 59? ### Answer: SELECT COUNT(height__ft_) FROM table_name_12 WHERE name = "churchill house" AND height__m_ < 59
Total for 1994, 1997 years won?
CREATE TABLE table_name_33 (total INTEGER, year_s__won VARCHAR)
SELECT SUM(total) FROM table_name_33 WHERE year_s__won = "1994, 1997"
### Context: CREATE TABLE table_name_33 (total INTEGER, year_s__won VARCHAR) ### Question: Total for 1994, 1997 years won? ### Answer: SELECT SUM(total) FROM table_name_33 WHERE year_s__won = "1994, 1997"
Player than won in 2003?
CREATE TABLE table_name_94 (player VARCHAR, year_s__won VARCHAR)
SELECT player FROM table_name_94 WHERE year_s__won = "2003"
### Context: CREATE TABLE table_name_94 (player VARCHAR, year_s__won VARCHAR) ### Question: Player than won in 2003? ### Answer: SELECT player FROM table_name_94 WHERE year_s__won = "2003"
Average total for jim furyk?
CREATE TABLE table_name_33 (total INTEGER, player VARCHAR)
SELECT AVG(total) FROM table_name_33 WHERE player = "jim furyk"
### Context: CREATE TABLE table_name_33 (total INTEGER, player VARCHAR) ### Question: Average total for jim furyk? ### Answer: SELECT AVG(total) FROM table_name_33 WHERE player = "jim furyk"
Which record had a visitor of New Jersey Devils on May 7?
CREATE TABLE table_name_78 (record VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT record FROM table_name_78 WHERE visitor = "new jersey devils" AND date = "may 7"
### Context: CREATE TABLE table_name_78 (record VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: Which record had a visitor of New Jersey Devils on May 7? ### Answer: SELECT record FROM table_name_78 WHERE visitor = "new jersey devils" AND date = "may 7"
What was the record on May 8?
CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_44 WHERE date = "may 8"
### Context: CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR) ### Question: What was the record on May 8? ### Answer: SELECT record FROM table_name_44 WHERE date = "may 8"
What is Nelspruit's population?
CREATE TABLE table_name_74 (population__2013_ VARCHAR, largest_city VARCHAR)
SELECT COUNT(population__2013_) FROM table_name_74 WHERE largest_city = "nelspruit"
### Context: CREATE TABLE table_name_74 (population__2013_ VARCHAR, largest_city VARCHAR) ### Question: What is Nelspruit's population? ### Answer: SELECT COUNT(population__2013_) FROM table_name_74 WHERE largest_city = "nelspruit"
Which Time has a Round of 3, and a Record of 2–0?
CREATE TABLE table_name_12 (time VARCHAR, round VARCHAR, record VARCHAR)
SELECT time FROM table_name_12 WHERE round = 3 AND record = "2–0"
### Context: CREATE TABLE table_name_12 (time VARCHAR, round VARCHAR, record VARCHAR) ### Question: Which Time has a Round of 3, and a Record of 2–0? ### Answer: SELECT time FROM table_name_12 WHERE round = 3 AND record = "2–0"
What were the average laps on a grid of 11?
CREATE TABLE table_name_37 (laps INTEGER, grid VARCHAR)
SELECT AVG(laps) FROM table_name_37 WHERE grid = 11
### Context: CREATE TABLE table_name_37 (laps INTEGER, grid VARCHAR) ### Question: What were the average laps on a grid of 11? ### Answer: SELECT AVG(laps) FROM table_name_37 WHERE grid = 11
Where is the location with a record of 50-19?
CREATE TABLE table_name_34 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_34 WHERE record = "50-19"
### Context: CREATE TABLE table_name_34 (location VARCHAR, record VARCHAR) ### Question: Where is the location with a record of 50-19? ### Answer: SELECT location FROM table_name_34 WHERE record = "50-19"
Which game had a record of 45-16?
CREATE TABLE table_name_12 (game INTEGER, record VARCHAR)
SELECT AVG(game) FROM table_name_12 WHERE record = "45-16"
### Context: CREATE TABLE table_name_12 (game INTEGER, record VARCHAR) ### Question: Which game had a record of 45-16? ### Answer: SELECT AVG(game) FROM table_name_12 WHERE record = "45-16"
Which game is located in Boston Garden and has a record of 49-17?
CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record VARCHAR)
SELECT game FROM table_name_81 WHERE location = "boston garden" AND record = "49-17"
### Context: CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record VARCHAR) ### Question: Which game is located in Boston Garden and has a record of 49-17? ### Answer: SELECT game FROM table_name_81 WHERE location = "boston garden" AND record = "49-17"
What is the largest 1st LBSC number with a LBSC Name of northcote?
CREATE TABLE table_name_23 (lbsc_name VARCHAR)
SELECT MAX(1 AS st_lbsc_no) FROM table_name_23 WHERE lbsc_name = "northcote"
### Context: CREATE TABLE table_name_23 (lbsc_name VARCHAR) ### Question: What is the largest 1st LBSC number with a LBSC Name of northcote? ### Answer: SELECT MAX(1 AS st_lbsc_no) FROM table_name_23 WHERE lbsc_name = "northcote"
What is the result when the round shows 34?
CREATE TABLE table_name_17 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_17 WHERE round = 34
### Context: CREATE TABLE table_name_17 (result VARCHAR, round VARCHAR) ### Question: What is the result when the round shows 34? ### Answer: SELECT result FROM table_name_17 WHERE round = 34
What is the venue when Woking was the opponent, and the round was less than 29?
CREATE TABLE table_name_28 (venue VARCHAR, opponent VARCHAR, round VARCHAR)
SELECT venue FROM table_name_28 WHERE opponent = "woking" AND round < 29
### Context: CREATE TABLE table_name_28 (venue VARCHAR, opponent VARCHAR, round VARCHAR) ### Question: What is the venue when Woking was the opponent, and the round was less than 29? ### Answer: SELECT venue FROM table_name_28 WHERE opponent = "woking" AND round < 29
What is the round number when the opponent was Wrexham, and the venue shows as Away?
CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT COUNT(round) FROM table_name_19 WHERE opponent = "wrexham" AND venue = "away"
### Context: CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR) ### Question: What is the round number when the opponent was Wrexham, and the venue shows as Away? ### Answer: SELECT COUNT(round) FROM table_name_19 WHERE opponent = "wrexham" AND venue = "away"
what is the lowest position when the name is esv türkheim, and Drawn more than 0?
CREATE TABLE table_name_12 (position INTEGER, name VARCHAR, drawn VARCHAR)
SELECT MIN(position) FROM table_name_12 WHERE name = "esv türkheim" AND drawn > 0
### Context: CREATE TABLE table_name_12 (position INTEGER, name VARCHAR, drawn VARCHAR) ### Question: what is the lowest position when the name is esv türkheim, and Drawn more than 0? ### Answer: SELECT MIN(position) FROM table_name_12 WHERE name = "esv türkheim" AND drawn > 0
what is the highest drawn when played is more than 14?
CREATE TABLE table_name_79 (drawn INTEGER, played INTEGER)
SELECT MAX(drawn) FROM table_name_79 WHERE played > 14
### Context: CREATE TABLE table_name_79 (drawn INTEGER, played INTEGER) ### Question: what is the highest drawn when played is more than 14? ### Answer: SELECT MAX(drawn) FROM table_name_79 WHERE played > 14
what is the least drawn when the name is sv apfeldorf and the position is more than 8?
CREATE TABLE table_name_94 (drawn INTEGER, name VARCHAR, position VARCHAR)
SELECT MIN(drawn) FROM table_name_94 WHERE name = "sv apfeldorf" AND position > 8
### Context: CREATE TABLE table_name_94 (drawn INTEGER, name VARCHAR, position VARCHAR) ### Question: what is the least drawn when the name is sv apfeldorf and the position is more than 8? ### Answer: SELECT MIN(drawn) FROM table_name_94 WHERE name = "sv apfeldorf" AND position > 8
who is the winner when the team is mobil 1 racing?
CREATE TABLE table_name_31 (winner VARCHAR, team VARCHAR)
SELECT winner FROM table_name_31 WHERE team = "mobil 1 racing"
### Context: CREATE TABLE table_name_31 (winner VARCHAR, team VARCHAR) ### Question: who is the winner when the team is mobil 1 racing? ### Answer: SELECT winner FROM table_name_31 WHERE team = "mobil 1 racing"
what is the circuit when the date is 16 april?
CREATE TABLE table_name_60 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_60 WHERE date = "16 april"
### Context: CREATE TABLE table_name_60 (circuit VARCHAR, date VARCHAR) ### Question: what is the circuit when the date is 16 april? ### Answer: SELECT circuit FROM table_name_60 WHERE date = "16 april"
what is the circuit when the date is 4 june?
CREATE TABLE table_name_94 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_94 WHERE date = "4 june"
### Context: CREATE TABLE table_name_94 (circuit VARCHAR, date VARCHAR) ### Question: what is the circuit when the date is 4 june? ### Answer: SELECT circuit FROM table_name_94 WHERE date = "4 june"
what is the race title when the winner is dick johnson and the circuit is sandown raceway?
CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)
SELECT race_title FROM table_name_53 WHERE winner = "dick johnson" AND circuit = "sandown raceway"
### Context: CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR) ### Question: what is the race title when the winner is dick johnson and the circuit is sandown raceway? ### Answer: SELECT race_title FROM table_name_53 WHERE winner = "dick johnson" AND circuit = "sandown raceway"
On what date was the game 1 played at Portland?
CREATE TABLE table_name_73 (date VARCHAR, home_team VARCHAR, game VARCHAR)
SELECT date FROM table_name_73 WHERE home_team = "portland" AND game = "game 1"
### Context: CREATE TABLE table_name_73 (date VARCHAR, home_team VARCHAR, game VARCHAR) ### Question: On what date was the game 1 played at Portland? ### Answer: SELECT date FROM table_name_73 WHERE home_team = "portland" AND game = "game 1"
Who was the road team on May 2?
CREATE TABLE table_name_3 (road_team VARCHAR, date VARCHAR)
SELECT road_team FROM table_name_3 WHERE date = "may 2"
### Context: CREATE TABLE table_name_3 (road_team VARCHAR, date VARCHAR) ### Question: Who was the road team on May 2? ### Answer: SELECT road_team FROM table_name_3 WHERE date = "may 2"
Who was the road team on May 2?
CREATE TABLE table_name_24 (road_team VARCHAR, date VARCHAR)
SELECT road_team FROM table_name_24 WHERE date = "may 2"
### Context: CREATE TABLE table_name_24 (road_team VARCHAR, date VARCHAR) ### Question: Who was the road team on May 2? ### Answer: SELECT road_team FROM table_name_24 WHERE date = "may 2"
On what date did Portland play game 5 at home?
CREATE TABLE table_name_98 (date VARCHAR, home_team VARCHAR, game VARCHAR)
SELECT date FROM table_name_98 WHERE home_team = "portland" AND game = "game 5"
### Context: CREATE TABLE table_name_98 (date VARCHAR, home_team VARCHAR, game VARCHAR) ### Question: On what date did Portland play game 5 at home? ### Answer: SELECT date FROM table_name_98 WHERE home_team = "portland" AND game = "game 5"
Which game of the season was played on April 22?
CREATE TABLE table_name_5 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_5 WHERE date = "april 22"
### Context: CREATE TABLE table_name_5 (game VARCHAR, date VARCHAR) ### Question: Which game of the season was played on April 22? ### Answer: SELECT game FROM table_name_5 WHERE date = "april 22"
What is the highest round a fight lasted against masutatsu yano?
CREATE TABLE table_name_26 (round INTEGER, opponent VARCHAR)
SELECT MAX(round) FROM table_name_26 WHERE opponent = "masutatsu yano"
### Context: CREATE TABLE table_name_26 (round INTEGER, opponent VARCHAR) ### Question: What is the highest round a fight lasted against masutatsu yano? ### Answer: SELECT MAX(round) FROM table_name_26 WHERE opponent = "masutatsu yano"
What was the method of resolution when Katsuhisa Fujii's record was 0-1?
CREATE TABLE table_name_31 (method VARCHAR, record VARCHAR)
SELECT method FROM table_name_31 WHERE record = "0-1"
### Context: CREATE TABLE table_name_31 (method VARCHAR, record VARCHAR) ### Question: What was the method of resolution when Katsuhisa Fujii's record was 0-1? ### Answer: SELECT method FROM table_name_31 WHERE record = "0-1"
What is the jersey number of the player from years 1986 – 1991 1997 – 1999?
CREATE TABLE table_name_54 (jersey_number_s_ VARCHAR, years VARCHAR)
SELECT jersey_number_s_ FROM table_name_54 WHERE years = "1986 – 1991 1997 – 1999"
### Context: CREATE TABLE table_name_54 (jersey_number_s_ VARCHAR, years VARCHAR) ### Question: What is the jersey number of the player from years 1986 – 1991 1997 – 1999? ### Answer: SELECT jersey_number_s_ FROM table_name_54 WHERE years = "1986 – 1991 1997 – 1999"