Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
53,900
<question>: Which Directed by has an Original air date of april 29, 2000? <context>: 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"
53,901
<question>: What was the result of the game from September 10, 2000? <context>: CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_68 WHERE date = "september 10, 2000"
53,902
<question>: Which award ceremony took place on May 15, 1965? <context>: CREATE TABLE table_name_91 (ceremony VARCHAR, date VARCHAR)
SELECT ceremony FROM table_name_91 WHERE date = "may 15, 1965"
53,903
<question>: Which movie was awarded Film of the Year on May 8, 1964? <context>: 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"
53,904
<question>: Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160? <context>: 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
53,905
<question>: Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428? <context>: 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
53,906
<question>: Can you tell me the Name that has the DCSF number of 2117? <context>: CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR)
SELECT name FROM table_name_11 WHERE dcsf_number = 2117
53,907
<question>: Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60? <context>: 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
53,908
<question>: What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070? <context>: 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
53,909
<question>: What is Date, when Week is 11? <context>: CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_45 WHERE week = 11
53,910
<question>: What is the lowest Week, when Attendance is 38,624? <context>: CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_27 WHERE attendance = 38 OFFSET 624
53,911
<question>: How much international mail has a change of +35,7% later than 2008? <context>: 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
53,912
<question>: What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278? <context>: 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
53,913
<question>: How much international freight has a change of +0,2% with more than 0 international mail? <context>: 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
53,914
<question>: What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail? <context>: 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
53,915
<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? <context>: 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
53,916
<question>: what is the venue when the date is 16 january 1996? <context>: CREATE TABLE table_name_99 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_99 WHERE date = "16 january 1996"
53,917
<question>: what is the competition when the date is 16 january 1996? <context>: CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_14 WHERE date = "16 january 1996"
53,918
<question>: WHAT IS THE RECORD FOR FEBRUARY 11? <context>: CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_62 WHERE date = "february 11"
53,919
<question>: What was the award before 2001? <context>: CREATE TABLE table_name_32 (award VARCHAR, year INTEGER)
SELECT award FROM table_name_32 WHERE year < 2001
53,920
<question>: What is the highest week for a game that was located at the Molson Stadium? <context>: CREATE TABLE table_name_66 (week INTEGER, location VARCHAR)
SELECT MAX(week) FROM table_name_66 WHERE location = "molson stadium"
53,921
<question>: What is the average week number for games that had 28,800 fans in attendance? <context>: CREATE TABLE table_name_19 (week INTEGER, attendance VARCHAR)
SELECT AVG(week) FROM table_name_19 WHERE attendance = "28,800"
53,922
<question>: Who did the argonauts play against during the game that had 19,423 fans in attendance? <context>: CREATE TABLE table_name_45 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_45 WHERE attendance = "19,423"
53,923
<question>: What was Juli's winning margin on Aug 24, 1986? <context>: CREATE TABLE table_name_10 (margin_of_victory VARCHAR, date VARCHAR)
SELECT margin_of_victory FROM table_name_10 WHERE date = "aug 24, 1986"
53,924
<question>: What was the margin of victory at the LPGA Championship? <context>: CREATE TABLE table_name_65 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_65 WHERE tournament = "lpga championship"
53,925
<question>: What is the highest value for Ties, when Losses is less than 8? <context>: CREATE TABLE table_name_72 (ties INTEGER, losses INTEGER)
SELECT MAX(ties) FROM table_name_72 WHERE losses < 8
53,926
<question>: What is the total number of Losses, when Ties is 2, and when Wins is greater than 8? <context>: CREATE TABLE table_name_81 (losses VARCHAR, ties VARCHAR, wins VARCHAR)
SELECT COUNT(losses) FROM table_name_81 WHERE ties = 2 AND wins > 8
53,927
<question>: What is the highest React that has a 7.61 Mark and a heat bigger than 1? <context>: 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
53,928
<question>: What is the Cause of death of the Officer with a Date of death of 1956-09-07? <context>: 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"
53,929
<question>: What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805? <context>: 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"
53,930
<question>: What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18? <context>: 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"
53,931
<question>: What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire? <context>: 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"
53,932
<question>: What is Team, when Tries Against is 8? <context>: CREATE TABLE table_name_40 (team VARCHAR, tries_against VARCHAR)
SELECT team FROM table_name_40 WHERE tries_against = "8"
53,933
<question>: What is Tries Against, when Tries For is 20? <context>: CREATE TABLE table_name_22 (tries_against VARCHAR, tries_for VARCHAR)
SELECT tries_against FROM table_name_22 WHERE tries_for = "20"
53,934
<question>: What is Tries Against, when Points For is 98? <context>: CREATE TABLE table_name_22 (tries_against VARCHAR, points_for VARCHAR)
SELECT tries_against FROM table_name_22 WHERE points_for = "98"
53,935
<question>: What is Points Against, when Try Diff is +22? <context>: CREATE TABLE table_name_88 (points_against VARCHAR, try_diff VARCHAR)
SELECT points_against FROM table_name_88 WHERE try_diff = "+22"
53,936
<question>: What is Record, when Event is "Independent Event", and when Method is "Submission (Peruvian Necktie)"? <context>: 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)"
53,937
<question>: What is Event, when Method is "Submission (Armbar)", and when Opponent is "Jason St. Louis"? <context>: 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"
53,938
<question>: What is Res., when Event is "KOTC 11 - Domination"? <context>: CREATE TABLE table_name_81 (res VARCHAR, event VARCHAR)
SELECT res FROM table_name_81 WHERE event = "kotc 11 - domination"
53,939
<question>: How many were in attendance with a Result of l 17–10? <context>: CREATE TABLE table_name_76 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_76 WHERE result = "l 17–10"
53,940
<question>: How many were in attendance in a week lower than 5 with a Bye result? <context>: CREATE TABLE table_name_69 (attendance VARCHAR, week VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_69 WHERE week < 5 AND result = "bye"
53,941
<question>: On what date was the result w 26–20? <context>: CREATE TABLE table_name_54 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_54 WHERE result = "w 26–20"
53,942
<question>: Who was the opponent in a week below 14 on October 10, 1993? <context>: 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"
53,943
<question>: Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000? <context>: 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
53,944
<question>: Name the average Wins which has a Top 10 smaller than 0? <context>: CREATE TABLE table_name_5 (wins INTEGER, top_10 INTEGER)
SELECT AVG(wins) FROM table_name_5 WHERE top_10 < 0
53,945
<question>: Which Points Classification does the General Classification of Cyril Dessel have? <context>: CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification VARCHAR)
SELECT points_classification FROM table_name_9 WHERE general_classification = "cyril dessel"
53,946
<question>: What is the Team Classification if the Winner is Cyril Dessel? <context>: CREATE TABLE table_name_30 (team_classification VARCHAR, winner VARCHAR)
SELECT team_classification FROM table_name_30 WHERE winner = "cyril dessel"
53,947
<question>: In the final Stage with a Mountains Classification of Christophe Moreau, what is the Team Classification? <context>: 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"
53,948
<question>: What is the Mountains Classification for Winner Thor hushovd with Sprints Classification of no award? <context>: 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"
53,949
<question>: What is the Mountains Classification for Winner josé luis carrasco? <context>: CREATE TABLE table_name_2 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_name_2 WHERE winner = "josé luis carrasco"
53,950
<question>: Which channel has Joel Meyers as the Play by play commentator? <context>: CREATE TABLE table_name_71 (channel VARCHAR, play_by_play VARCHAR)
SELECT channel FROM table_name_71 WHERE play_by_play = "joel meyers"
53,951
<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? <context>: 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"
53,952
<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 ? <context>: 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"
53,953
<question>: Who is the play by play commentator for the game that has Alan Massengale as Studio Host? <context>: 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"
53,954
<question>: which channel will have play by play commentator Paul Sunderland, Studio Host Bill Macdonald and Studi Analysty Jack Haley? <context>: 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"
53,955
<question>: How many Assists have a Club of adler mannheim, and Points larger than 57? <context>: 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
53,956
<question>: How many points have 41 assists? <context>: CREATE TABLE table_name_28 (points INTEGER, assists VARCHAR)
SELECT SUM(points) FROM table_name_28 WHERE assists = 41
53,957
<question>: Which Goals have a Player of david mcllwain, and Games larger than 52? <context>: 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
53,958
<question>: Which Platform is the one that has a Stop number of 99014? <context>: CREATE TABLE table_name_28 (platform VARCHAR, stop_no VARCHAR)
SELECT platform FROM table_name_28 WHERE stop_no = "99014"
53,959
<question>: Which Line has a Platform of 3? <context>: CREATE TABLE table_name_62 (line VARCHAR, platform VARCHAR)
SELECT line FROM table_name_62 WHERE platform = "3"
53,960
<question>: Which Destination has a Stopping pattern of [2777] mciver station platforms? <context>: CREATE TABLE table_name_47 (destination VARCHAR, stopping_pattern VARCHAR)
SELECT destination FROM table_name_47 WHERE stopping_pattern = "[2777] mciver station platforms"
53,961
<question>: Which Stop # has a Platform of [2777] mciver station platforms? <context>: CREATE TABLE table_name_50 (stop_no VARCHAR, platform VARCHAR)
SELECT stop_no FROM table_name_50 WHERE platform = "[2777] mciver station platforms"
53,962
<question>: Which Line has a Stopping pattern of all stations, A, b, p? <context>: CREATE TABLE table_name_59 (line VARCHAR, stopping_pattern VARCHAR)
SELECT line FROM table_name_59 WHERE stopping_pattern = "all stations, a, b, p"
53,963
<question>: Which Stopping pattern has a Platform of [2777] mciver station platforms? <context>: CREATE TABLE table_name_50 (stopping_pattern VARCHAR, platform VARCHAR)
SELECT stopping_pattern FROM table_name_50 WHERE platform = "[2777] mciver station platforms"
53,964
<question>: Who was runner-up at Berlin when the result was 2-0 with 100,000 fans in attendance? <context>: 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"
53,965
<question>: Who was the champion at berlin when the result was 2-0 with 100,000 fans in attendance? <context>: 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"
53,966
<question>: What year had an attendance of 90,000? <context>: CREATE TABLE table_name_38 (year VARCHAR, attendance VARCHAR)
SELECT year FROM table_name_38 WHERE attendance = "90,000"
53,967
<question>: What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc? <context>: 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"
53,968
<question>: Who was the champion when the attendance was 70,000? <context>: CREATE TABLE table_name_43 (champion VARCHAR, attendance VARCHAR)
SELECT champion FROM table_name_43 WHERE attendance = "70,000"
53,969
<question>: What is the Height (ft) of the Churchill House with a Height (m) less than 59? <context>: 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
53,970
<question>: Total for 1994, 1997 years won? <context>: CREATE TABLE table_name_33 (total INTEGER, year_s__won VARCHAR)
SELECT SUM(total) FROM table_name_33 WHERE year_s__won = "1994, 1997"
53,971
<question>: Player than won in 2003? <context>: CREATE TABLE table_name_94 (player VARCHAR, year_s__won VARCHAR)
SELECT player FROM table_name_94 WHERE year_s__won = "2003"
53,972
<question>: Average total for jim furyk? <context>: CREATE TABLE table_name_33 (total INTEGER, player VARCHAR)
SELECT AVG(total) FROM table_name_33 WHERE player = "jim furyk"
53,973
<question>: Which record had a visitor of New Jersey Devils on May 7? <context>: 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"
53,974
<question>: What was the record on May 8? <context>: CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_44 WHERE date = "may 8"
53,975
<question>: What is Nelspruit's population? <context>: CREATE TABLE table_name_74 (population__2013_ VARCHAR, largest_city VARCHAR)
SELECT COUNT(population__2013_) FROM table_name_74 WHERE largest_city = "nelspruit"
53,976
<question>: Which Time has a Round of 3, and a Record of 2–0? <context>: CREATE TABLE table_name_12 (time VARCHAR, round VARCHAR, record VARCHAR)
SELECT time FROM table_name_12 WHERE round = 3 AND record = "2–0"
53,977
<question>: What were the average laps on a grid of 11? <context>: CREATE TABLE table_name_37 (laps INTEGER, grid VARCHAR)
SELECT AVG(laps) FROM table_name_37 WHERE grid = 11
53,978
<question>: Where is the location with a record of 50-19? <context>: CREATE TABLE table_name_34 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_34 WHERE record = "50-19"
53,979
<question>: Which game had a record of 45-16? <context>: CREATE TABLE table_name_12 (game INTEGER, record VARCHAR)
SELECT AVG(game) FROM table_name_12 WHERE record = "45-16"
53,980
<question>: Which game is located in Boston Garden and has a record of 49-17? <context>: 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"
53,981
<question>: What is the largest 1st LBSC number with a LBSC Name of northcote? <context>: CREATE TABLE table_name_23 (lbsc_name VARCHAR)
SELECT MAX(1 AS st_lbsc_no) FROM table_name_23 WHERE lbsc_name = "northcote"
53,982
<question>: What is the result when the round shows 34? <context>: CREATE TABLE table_name_17 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_17 WHERE round = 34
53,983
<question>: What is the venue when Woking was the opponent, and the round was less than 29? <context>: CREATE TABLE table_name_28 (venue VARCHAR, opponent VARCHAR, round VARCHAR)
SELECT venue FROM table_name_28 WHERE opponent = "woking" AND round < 29
53,984
<question>: What is the round number when the opponent was Wrexham, and the venue shows as Away? <context>: CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT COUNT(round) FROM table_name_19 WHERE opponent = "wrexham" AND venue = "away"
53,985
<question>: what is the lowest position when the name is esv türkheim, and Drawn more than 0? <context>: 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
53,986
<question>: what is the highest drawn when played is more than 14? <context>: CREATE TABLE table_name_79 (drawn INTEGER, played INTEGER)
SELECT MAX(drawn) FROM table_name_79 WHERE played > 14
53,987
<question>: what is the least drawn when the name is sv apfeldorf and the position is more than 8? <context>: 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
53,988
<question>: who is the winner when the team is mobil 1 racing? <context>: CREATE TABLE table_name_31 (winner VARCHAR, team VARCHAR)
SELECT winner FROM table_name_31 WHERE team = "mobil 1 racing"
53,989
<question>: what is the circuit when the date is 16 april? <context>: CREATE TABLE table_name_60 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_60 WHERE date = "16 april"
53,990
<question>: what is the circuit when the date is 4 june? <context>: CREATE TABLE table_name_94 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_94 WHERE date = "4 june"
53,991
<question>: what is the race title when the winner is dick johnson and the circuit is sandown raceway? <context>: 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"
53,992
<question>: On what date was the game 1 played at Portland? <context>: 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"
53,993
<question>: Who was the road team on May 2? <context>: CREATE TABLE table_name_3 (road_team VARCHAR, date VARCHAR)
SELECT road_team FROM table_name_3 WHERE date = "may 2"
53,994
<question>: Who was the road team on May 2? <context>: CREATE TABLE table_name_24 (road_team VARCHAR, date VARCHAR)
SELECT road_team FROM table_name_24 WHERE date = "may 2"
53,995
<question>: On what date did Portland play game 5 at home? <context>: 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"
53,996
<question>: Which game of the season was played on April 22? <context>: CREATE TABLE table_name_5 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_5 WHERE date = "april 22"
53,997
<question>: What is the highest round a fight lasted against masutatsu yano? <context>: CREATE TABLE table_name_26 (round INTEGER, opponent VARCHAR)
SELECT MAX(round) FROM table_name_26 WHERE opponent = "masutatsu yano"
53,998
<question>: What was the method of resolution when Katsuhisa Fujii's record was 0-1? <context>: CREATE TABLE table_name_31 (method VARCHAR, record VARCHAR)
SELECT method FROM table_name_31 WHERE record = "0-1"
53,999
<question>: What is the jersey number of the player from years 1986 – 1991 1997 – 1999? <context>: 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"