text
stringlengths
114
1.06k
### 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" ### context: CREATE TABLE table_name_27 (directed_by VARCHAR, original_air_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" ### context: CREATE TABLE table_name_68 (result 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" ### context: CREATE TABLE table_name_91 (ceremony 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" ### context: CREATE TABLE table_name_2 (film_of_the_year VARCHAR, date 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 ### context: CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VAR...
### 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 ### context: CREATE TABLE table_name_54 (intake INTEGER, faith 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 ### context: CREATE TABLE table_name_11 (name VARCHAR, dcsf_number 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 ### context: CREATE TABLE table_name_36 (ofsted_number INTEGER, type VARCHAR, intake 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 ### context: CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR, att...
### question: What is Date, when Week is 11? ### answer: SELECT date FROM table_name_45 WHERE week = 11 ### context: CREATE TABLE table_name_45 (date VARCHAR, week 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 ### context: CREATE TABLE table_name_27 (week INTEGER, attendance 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 ### context: CREATE TABLE table_name_35 (international_mail INTEGER, change VARCHAR, year 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 ### context: CREATE TABLE table_name_23 (domestic_freight INTEGER, change V...
### 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 ### context: CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, internation...
### 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 ### context: CREATE TABLE table_name_45 (international_mail INTEGER, change VARCHAR, d...
### 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 tota...
### question: what is the venue when the date is 16 january 1996? ### answer: 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 competition when the date is 16 january 1996? ### answer: 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 RECORD FOR FEBRUARY 11? ### answer: SELECT record FROM table_name_62 WHERE date = "february 11" ### context: CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)
### question: What was the award before 2001? ### answer: SELECT award FROM table_name_32 WHERE year < 2001 ### context: CREATE TABLE table_name_32 (award VARCHAR, year INTEGER)
### 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" ### context: CREATE TABLE table_name_66 (week INTEGER, location 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" ### context: CREATE TABLE table_name_19 (week INTEGER, 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" ### context: CREATE TABLE table_name_45 (opponent VARCHAR, attendance 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" ### context: CREATE TABLE table_name_10 (margin_of_victory VARCHAR, date 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" ### context: CREATE TABLE table_name_65 (margin_of_victory VARCHAR, tournament VARCHAR)
### 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 ### context: CREATE TABLE table_name_72 (ties INTEGER, losses INTEGER)
### 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 ### context: CREATE TABLE table_name_81 (losses VARCHAR, ties VARCHAR, wins 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 ### context: CREATE TABLE table_name_84 (react INTEGER, mark VARCHAR, heat 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" ### context: CREATE TABLE table_name_49 (cause_of_death VARCHAR, date_of_death 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" ### context: CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, b...
### 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" ### context: CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_...
### 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" ### context: CREATE TABLE table_name_17 (rank VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)
### question: What is Team, when Tries Against is 8? ### answer: SELECT team FROM table_name_40 WHERE tries_against = "8" ### context: CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR)
### question: What is Tries Against, when Tries For is 20? ### answer: 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 Points For is 98? ### answer: 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 Points Against, when Try Diff is +22? ### answer: 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 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)" ### context: CREATE TABLE table_name_2 (record VARCHAR, event VARCHAR, method VA...
### 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" ### context: CREATE TABLE table_name_54 (event VARCHAR, method VARCHAR, opponent VARCHAR)
### question: What is Res., when Event is "KOTC 11 - Domination"? ### answer: SELECT res FROM table_name_81 WHERE event = "kotc 11 - domination" ### context: CREATE TABLE table_name_81 (res VARCHAR, event 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" ### context: CREATE TABLE table_name_76 (attendance 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" ### context: CREATE TABLE table_name_69 (attendance VARCHAR, week 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" ### context: CREATE TABLE table_name_54 (date VARCHAR, result 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" ### context: CREATE TABLE table_name_18 (opponent VARCHAR, week VARCHAR, date 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 ### context: CREATE TABLE table_name_29 (top_5 INTEGER, position VARCHAR, year VARCHAR)
### 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 ### context: CREATE TABLE table_name_5 (wins INTEGER, top_10 INTEGER)
### 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" ### context: CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification 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" ### context: CREATE TABLE table_name_30 (team_classification VARCHAR, winner 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" ### context: CREATE TABLE table_name_8 (team_classification VARCHAR, m...
### 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" ### context: CREATE TABLE table_name_94 (mountains_classification VARCH...
### question: What is the Mountains Classification for Winner josé luis carrasco? ### answer: SELECT mountains_classification FROM table_name_2 WHERE winner = "josé luis carrasco" ### context: CREATE TABLE table_name_2 (mountains_classification VARCHAR, winner 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" ### context: CREATE TABLE table_name_71 (channel VARCHAR, play_by_play 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" ### context: CREATE TABLE table_name_19 (studio_host VA...
### 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" ### context: CREATE TABLE table_name_57 (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" ### context: CREATE TABLE table_name_17 (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" ### context: CREATE TABLE t...
### 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 ### context: CREATE TABLE table_name_60 (assists INTEGER, club VARCHAR, points VARCHAR)
### question: How many points have 41 assists? ### answer: SELECT SUM(points) FROM table_name_28 WHERE assists = 41 ### context: CREATE TABLE table_name_28 (points INTEGER, assists 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 ### context: CREATE TABLE table_name_7 (goals INTEGER, player VARCHAR, games 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" ### context: CREATE TABLE table_name_28 (platform VARCHAR, stop_no VARCHAR)
### question: Which Line has a Platform of 3? ### answer: SELECT line FROM table_name_62 WHERE platform = "3" ### context: CREATE TABLE table_name_62 (line VARCHAR, platform 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" ### context: CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern 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" ### context: CREATE TABLE table_name_50 (stop_no VARCHAR, platform 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" ### context: CREATE TABLE table_name_59 (line VARCHAR, stopping_pattern 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" ### context: CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform 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" ### context: CREATE TABLE table_name_20 (runner_up VARCHAR, attendance VARCHAR, venue VARCHAR, result VA...
### 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" ### context: CREATE TABLE table_name_65 (champion VARCHAR, result VARCHAR, venue VARCHAR, attendance V...
### question: What year had an attendance of 90,000? ### answer: SELECT year FROM table_name_38 WHERE attendance = "90,000" ### context: CREATE TABLE table_name_38 (year VARCHAR, attendance 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" ### context: CREATE TABLE table_name_39 (year INTEGER, attendance VARCHAR, runner_up VARCHAR)
### question: Who was the champion when the attendance was 70,000? ### answer: SELECT champion FROM table_name_43 WHERE attendance = "70,000" ### context: CREATE TABLE table_name_43 (champion VARCHAR, attendance 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 ### context: CREATE TABLE table_name_12 (height__ft_ VARCHAR, name VARCHAR, height__m_ VARCHAR)
### question: Total for 1994, 1997 years won? ### answer: 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: Player than won in 2003? ### answer: SELECT player FROM table_name_94 WHERE year_s__won = "2003" ### context: CREATE TABLE table_name_94 (player VARCHAR, year_s__won VARCHAR)
### question: Average total for jim furyk? ### answer: SELECT AVG(total) FROM table_name_33 WHERE player = "jim furyk" ### context: CREATE TABLE table_name_33 (total INTEGER, player 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" ### context: CREATE TABLE table_name_78 (record VARCHAR, visitor VARCHAR, date VARCHAR)
### question: What was the record on May 8? ### answer: SELECT record FROM table_name_44 WHERE date = "may 8" ### context: CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)
### question: What is Nelspruit's population? ### answer: 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: 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" ### context: CREATE TABLE table_name_12 (time VARCHAR, round VARCHAR, record VARCHAR)
### question: What were the average laps on a grid of 11? ### answer: SELECT AVG(laps) FROM table_name_37 WHERE grid = 11 ### context: CREATE TABLE table_name_37 (laps INTEGER, grid VARCHAR)
### question: Where is the location with a record of 50-19? ### answer: SELECT location FROM table_name_34 WHERE record = "50-19" ### context: CREATE TABLE table_name_34 (location VARCHAR, record VARCHAR)
### question: Which game had a record of 45-16? ### answer: SELECT AVG(game) FROM table_name_12 WHERE record = "45-16" ### context: CREATE TABLE table_name_12 (game INTEGER, 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" ### context: CREATE TABLE table_name_81 (game VARCHAR, location VARCHAR, record 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" ### context: CREATE TABLE table_name_23 (lbsc_name VARCHAR)
### question: What is the result when the round shows 34? ### answer: SELECT result FROM table_name_17 WHERE round = 34 ### context: CREATE TABLE table_name_17 (result 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 ### context: CREATE TABLE table_name_28 (venue VARCHAR, opponent VARCHAR, round 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" ### context: CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue 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 ### context: CREATE TABLE table_name_12 (position INTEGER, name VARCHAR, drawn VARCHAR)
### question: what is the highest drawn when played is more than 14? ### answer: SELECT MAX(drawn) FROM table_name_79 WHERE played > 14 ### context: CREATE TABLE table_name_79 (drawn INTEGER, played INTEGER)
### 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 ### context: CREATE TABLE table_name_94 (drawn INTEGER, name VARCHAR, position 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" ### context: CREATE TABLE table_name_31 (winner VARCHAR, team VARCHAR)
### question: what is the circuit when the date is 16 april? ### answer: 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 4 june? ### answer: SELECT circuit FROM table_name_94 WHERE date = "4 june" ### context: CREATE TABLE table_name_94 (circuit VARCHAR, date 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" ### context: CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit 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" ### context: CREATE TABLE table_name_73 (date VARCHAR, home_team VARCHAR, game VARCHAR)
### question: Who was the road team on May 2? ### answer: 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_24 WHERE date = "may 2" ### context: CREATE TABLE table_name_24 (road_team VARCHAR, date 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" ### context: CREATE TABLE table_name_98 (date VARCHAR, home_team VARCHAR, game VARCHAR)
### question: Which game of the season was played on April 22? ### answer: SELECT game FROM table_name_5 WHERE date = "april 22" ### context: CREATE TABLE table_name_5 (game VARCHAR, date 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" ### context: CREATE TABLE table_name_26 (round INTEGER, opponent 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" ### context: CREATE TABLE table_name_31 (method VARCHAR, record 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" ### context: CREATE TABLE table_name_54 (jersey_number_s_ VARCHAR, years VARCHAR)