text stringlengths 114 1.06k |
|---|
### question: Which country had a tower destroyed in 1899? ### answer: SELECT country FROM table_name_55 WHERE year = "1899" ### context: CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR) |
### question: Who was the opponent at the game when the record was 28–45? ### answer: SELECT opponent FROM table_name_66 WHERE record = "28–45" ### context: CREATE TABLE table_name_66 (opponent VARCHAR, record VARCHAR) |
### question: Which entrant has 4 points and BRM p25 for the Chassis? ### answer: SELECT entrant FROM table_name_33 WHERE pts = "4" AND chassis = "brm p25" ### context: CREATE TABLE table_name_33 (entrant VARCHAR, pts VARCHAR, chassis VARCHAR) |
### question: Who is the entrant when the year is less than 1953? ### answer: SELECT entrant FROM table_name_97 WHERE year < 1953 ### context: CREATE TABLE table_name_97 (entrant VARCHAR, year INTEGER) |
### question: How many points were scored when the Chassis is BRM p25? ### answer: SELECT pts FROM table_name_57 WHERE chassis = "brm p25" ### context: CREATE TABLE table_name_57 (pts VARCHAR, chassis VARCHAR) |
### question: Name the episode that aired october 8, 1988 ### answer: SELECT episode_title FROM table_name_81 WHERE original_airdate = "october 8, 1988" ### context: CREATE TABLE table_name_81 (episode_title VARCHAR, original_airdate VARCHAR) |
### question: Name the original airdate for mr. buckston ### answer: SELECT original_airdate FROM table_name_23 WHERE identity_ies_ = "mr. buckston" ### context: CREATE TABLE table_name_23 (original_airdate VARCHAR, identity_ies_ VARCHAR) |
### question: What is the name of the player taken in round 23? ### answer: SELECT name FROM table_name_2 WHERE round = 23 ### context: CREATE TABLE table_name_2 (name VARCHAR, round VARCHAR) |
### question: What engine was used in 1999? ### answer: SELECT engine FROM table_name_76 WHERE year = "1999" ### context: CREATE TABLE table_name_76 (engine VARCHAR, year VARCHAR) |
### question: What rank did the chassis reynard 94i have in 1996? ### answer: SELECT rank FROM table_name_66 WHERE chassis = "reynard 94i" AND year = "1996" ### context: CREATE TABLE table_name_66 (rank VARCHAR, chassis VARCHAR, year VARCHAR) |
### question: What rank did the dallara chassis finish in 2000? ### answer: SELECT rank FROM table_name_93 WHERE year = "2000" AND chassis = "dallara" ### context: CREATE TABLE table_name_93 (rank VARCHAR, year VARCHAR, chassis VARCHAR) |
### question: Which engine finished 7th with the reynard 95i chassis? ### answer: SELECT engine FROM table_name_51 WHERE rank = "7th" AND chassis = "reynard 95i" ### context: CREATE TABLE table_name_51 (engine VARCHAR, rank VARCHAR, chassis VARCHAR) |
### question: What highest Year has Wins 15 and Losses less than 5? ### answer: SELECT MAX(year) FROM table_name_78 WHERE wins = 15 AND loses < 5 ### context: CREATE TABLE table_name_78 (year INTEGER, wins VARCHAR, loses VARCHAR) |
### question: What average Year has Losses 4, and Wins less than 18, and Draws greater than 1? ### answer: SELECT AVG(year) FROM table_name_24 WHERE loses = 4 AND wins < 18 AND draws > 1 ### context: CREATE TABLE table_name_24 (year INTEGER, draws VARCHAR, loses VARCHAR, wins VARCHAR) |
### question: What average Wins has Losses 2, and Draws less than 0? ### answer: SELECT AVG(wins) FROM table_name_92 WHERE loses = 2 AND draws < 0 ### context: CREATE TABLE table_name_92 (wins INTEGER, loses VARCHAR, draws VARCHAR) |
### question: What average Loses has Draws less than 0? ### answer: SELECT AVG(loses) FROM table_name_40 WHERE draws < 0 ### context: CREATE TABLE table_name_40 (loses INTEGER, draws INTEGER) |
### question: What sum of Losses has Year greater than 1972, and Competition of nswrfl, and Draws 0, and Wins 16? ### answer: SELECT SUM(loses) FROM table_name_18 WHERE year > 1972 AND competition = "nswrfl" AND draws = 0 AND wins = 16 ### context: CREATE TABLE table_name_18 (loses INTEGER, wins VARCHAR, draws VARCHAR,... |
### question: What is the height of the player who currently plays for Alta Gestión Fuenlabrada? ### answer: SELECT height FROM table_name_59 WHERE current_club = "alta gestión fuenlabrada" ### context: CREATE TABLE table_name_59 (height VARCHAR, current_club VARCHAR) |
### question: What position does Mario Kasun play? ### answer: SELECT position FROM table_name_94 WHERE player = "mario kasun" ### context: CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR) |
### question: What is the largest number Lost to david nalbandian with a Win Rate of 20%? ### answer: SELECT MAX(lost) FROM table_name_91 WHERE win__percentage = "20%" AND opponent = "david nalbandian" ### context: CREATE TABLE table_name_91 (lost INTEGER, win__percentage VARCHAR, opponent VARCHAR) |
### question: What is the smallest number of Matches with less than 97 losses and a Win rate of 28.68%? ### answer: SELECT MIN(matches) FROM table_name_59 WHERE win__percentage = "28.68%" AND lost < 97 ### context: CREATE TABLE table_name_59 (matches INTEGER, win__percentage VARCHAR, lost VARCHAR) |
### question: What is the total number of Lost for the Highest Ranking of – –? ### answer: SELECT COUNT(lost) FROM table_name_61 WHERE highest_ranking = "– –" ### context: CREATE TABLE table_name_61 (lost VARCHAR, highest_ranking VARCHAR) |
### question: what lane did inna nikitina have? ### answer: SELECT MAX(lane) FROM table_name_74 WHERE name = "inna nikitina" ### context: CREATE TABLE table_name_74 (lane INTEGER, name VARCHAR) |
### question: what is the name that saw 4 heats and a lane higher than 7? ### answer: SELECT name FROM table_name_68 WHERE heat = 4 AND lane > 7 ### context: CREATE TABLE table_name_68 (name VARCHAR, heat VARCHAR, lane VARCHAR) |
### question: What is the highest NBR number that corresponds to the J class and the road number of 1211? ### answer: SELECT MAX(nbr_number) FROM table_name_29 WHERE class = "j" AND road_number = 1211 ### context: CREATE TABLE table_name_29 (nbr_number INTEGER, class VARCHAR, road_number VARCHAR) |
### question: How many road numbers are before 1922? ### answer: SELECT COUNT(road_number) FROM table_name_18 WHERE year < 1922 ### context: CREATE TABLE table_name_18 (road_number VARCHAR, year INTEGER) |
### question: Which original operator is in the 25nc class? ### answer: SELECT original_operator FROM table_name_65 WHERE class = "25nc" ### context: CREATE TABLE table_name_65 (original_operator VARCHAR, class VARCHAR) |
### question: Which class starts after 1939 and has a road number smaller than 3508? ### answer: SELECT class FROM table_name_9 WHERE year > 1939 AND road_number < 3508 ### context: CREATE TABLE table_name_9 (class VARCHAR, year VARCHAR, road_number VARCHAR) |
### question: Name the LB&SCR number that has SR number of 8597–8600 ### answer: SELECT lb & scr_no FROM table_name_7 WHERE sr_no = "8597–8600" ### context: CREATE TABLE table_name_7 (lb VARCHAR, scr_no VARCHAR, sr_no VARCHAR) |
### question: What is the time of songs that have the writer Aaron Schroeder and Wally Gold? ### answer: SELECT time FROM table_name_55 WHERE writer_s_ = "aaron schroeder and wally gold" ### context: CREATE TABLE table_name_55 (time VARCHAR, writer_s_ VARCHAR) |
### question: On songs that have a release date of 6/17/61, a track larger than 20, and a writer of Woody Harris, what is the chart peak? ### answer: SELECT chart_peak FROM table_name_46 WHERE release_date = "6/17/61" AND track > 20 AND writer_s_ = "woody harris" ### context: CREATE TABLE table_name_46 (chart_peak VARC... |
### question: What catalogue is the song It's Now or Never? ### answer: SELECT catalogue FROM table_name_86 WHERE song_title = "it's now or never" ### context: CREATE TABLE table_name_86 (catalogue VARCHAR, song_title VARCHAR) |
### question: On songs with track numbers smaller than number 17 and catalogues of LSP 2231, who are the writer(s)? ### answer: SELECT writer_s_ FROM table_name_27 WHERE catalogue = "lsp 2231" AND track < 17 ### context: CREATE TABLE table_name_27 (writer_s_ VARCHAR, catalogue VARCHAR, track VARCHAR) |
### question: What year did he start at 13? ### answer: SELECT year FROM table_name_6 WHERE start = "13" ### context: CREATE TABLE table_name_6 (year VARCHAR, start VARCHAR) |
### question: What was the finish place with a qual of 123.660? ### answer: SELECT finish FROM table_name_26 WHERE qual = "123.660" ### context: CREATE TABLE table_name_26 (finish VARCHAR, qual VARCHAR) |
### question: What was the rank with the qual of 115.095? ### answer: SELECT rank FROM table_name_86 WHERE qual = "115.095" ### context: CREATE TABLE table_name_86 (rank VARCHAR, qual VARCHAR) |
### question: Who was the runner-up when the margin was 1 stroke? ### answer: SELECT runner_s__up FROM table_name_1 WHERE margin = "1 stroke" ### context: CREATE TABLE table_name_1 (runner_s__up VARCHAR, margin VARCHAR) |
### question: What was the score in the year 2004? ### answer: SELECT score FROM table_name_72 WHERE year = "2004" ### context: CREATE TABLE table_name_72 (score VARCHAR, year VARCHAR) |
### question: Who was the runner-up when the year was 2008? ### answer: SELECT runner_s__up FROM table_name_58 WHERE year = "2008" ### context: CREATE TABLE table_name_58 (runner_s__up VARCHAR, year VARCHAR) |
### question: In what year was the score 204 (-6)? ### answer: SELECT year FROM table_name_3 WHERE score = "204 (-6)" ### context: CREATE TABLE table_name_3 (year VARCHAR, score VARCHAR) |
### question: What was the country when the margin was 2 strokes, and when the score was 276 (-4)? ### answer: SELECT country FROM table_name_45 WHERE margin = "2 strokes" AND score = "276 (-4)" ### context: CREATE TABLE table_name_45 (country VARCHAR, margin VARCHAR, score VARCHAR) |
### question: What is the Overall Record for the School in Milford? ### answer: SELECT overall_record FROM table_name_28 WHERE school = "milford" ### context: CREATE TABLE table_name_28 (overall_record VARCHAR, school VARCHAR) |
### question: What was the top first place prize in 1997? ### answer: SELECT MAX(first_prize___) AS $__ FROM table_name_49 WHERE year = 1997 ### context: CREATE TABLE table_name_49 (first_prize___ INTEGER, year VARCHAR) |
### question: What was the total purse in the years after 1996 with a score of 272 (-16) when frank nobilo won? ### answer: SELECT SUM(purse___) AS $__ FROM table_name_27 WHERE score = "272 (-16)" AND winner = "frank nobilo" AND year > 1996 ### context: CREATE TABLE table_name_27 (purse___ INTEGER, year VARCHAR, score ... |
### question: What is the average Rank for a lane smaller than 3 with a nationality of Australia? ### answer: SELECT AVG(rank) FROM table_name_55 WHERE lane < 3 AND nationality = "australia" ### context: CREATE TABLE table_name_55 (rank INTEGER, lane VARCHAR, nationality VARCHAR) |
### question: what is the number of lane with a rank more than 2 for Louise ørnstedt? ### answer: SELECT COUNT(lane) FROM table_name_86 WHERE rank > 2 AND name = "louise ørnstedt" ### context: CREATE TABLE table_name_86 (lane VARCHAR, rank VARCHAR, name VARCHAR) |
### question: What shows for nationality when there is a rank larger than 6, and a Time of 2:14.95? ### answer: SELECT nationality FROM table_name_52 WHERE rank > 6 AND time = "2:14.95" ### context: CREATE TABLE table_name_52 (nationality VARCHAR, rank VARCHAR, time VARCHAR) |
### question: What is the Total Region number of hte one that has Eidsvold at 970 and Biggenden larger than 1,570? ### answer: SELECT COUNT(total_region) FROM table_name_40 WHERE eidsvold = 970 AND biggenden > 1 OFFSET 570 ### context: CREATE TABLE table_name_40 (total_region VARCHAR, eidsvold VARCHAR, biggenden VARCHA... |
### question: What is the average year with alfredo salazar fina salazar in mixed doubles? ### answer: SELECT AVG(year) FROM table_name_41 WHERE mixed_doubles = "alfredo salazar fina salazar" ### context: CREATE TABLE table_name_41 (year INTEGER, mixed_doubles VARCHAR) |
### question: Which venue had an extra of Team Competition and a result of 1st? ### answer: SELECT venue FROM table_name_48 WHERE extra = "team competition" AND result = "1st" ### context: CREATE TABLE table_name_48 (venue VARCHAR, extra VARCHAR, result VARCHAR) |
### question: Which venue led to a result of 23rd? ### answer: SELECT venue FROM table_name_96 WHERE result = "23rd" ### context: CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR) |
### question: Which venue had an extra of Junior Race? ### answer: SELECT venue FROM table_name_68 WHERE extra = "junior race" ### context: CREATE TABLE table_name_68 (venue VARCHAR, extra VARCHAR) |
### question: Which venue led to a result of 13th and had an extra of Long Race? ### answer: SELECT venue FROM table_name_51 WHERE extra = "long race" AND result = "13th" ### context: CREATE TABLE table_name_51 (venue VARCHAR, extra VARCHAR, result VARCHAR) |
### question: What is the percentage of Terry McAuliffe that has a Date Administered on May 31 – june 2 ### answer: SELECT terry_mcauliffe FROM table_name_86 WHERE dates_administered = "may 31 – june 2" ### context: CREATE TABLE table_name_86 (terry_mcauliffe VARCHAR, dates_administered VARCHAR) |
### question: Which Source has Terry McAuliffe of 36% ### answer: SELECT source FROM table_name_80 WHERE terry_mcauliffe = "36%" ### context: CREATE TABLE table_name_80 (source VARCHAR, terry_mcauliffe VARCHAR) |
### question: Which Terry McAuliffe is it that has a Dates Administered on June 6–7? ### answer: SELECT terry_mcauliffe FROM table_name_8 WHERE dates_administered = "june 6–7" ### context: CREATE TABLE table_name_8 (terry_mcauliffe VARCHAR, dates_administered VARCHAR) |
### question: Which Source has a Brian Moran of 19%? ### answer: SELECT source FROM table_name_64 WHERE brian_moran = "19%" ### context: CREATE TABLE table_name_64 (source VARCHAR, brian_moran VARCHAR) |
### question: What team played on the road against the Buffalo Bills at home ? ### answer: SELECT visiting_team FROM table_name_21 WHERE host_team = "buffalo bills" ### context: CREATE TABLE table_name_21 (visiting_team VARCHAR, host_team VARCHAR) |
### question: Which week did the Baltimore Ravens play at home ? ### answer: SELECT week FROM table_name_79 WHERE host_team = "baltimore ravens" ### context: CREATE TABLE table_name_79 (week VARCHAR, host_team VARCHAR) |
### question: What was the final score on week 14 ? ### answer: SELECT final_score FROM table_name_53 WHERE week = 14 ### context: CREATE TABLE table_name_53 (final_score VARCHAR, week VARCHAR) |
### question: When did the Baltimore Ravens play at home ? ### answer: SELECT date FROM table_name_79 WHERE host_team = "baltimore ravens" ### context: CREATE TABLE table_name_79 (date VARCHAR, host_team VARCHAR) |
### question: What was the final score in week 3 ? ### answer: SELECT final_score FROM table_name_46 WHERE week = 3 ### context: CREATE TABLE table_name_46 (final_score VARCHAR, week VARCHAR) |
### question: To what party does Ralph Jacobi belong? ### answer: SELECT party FROM table_name_79 WHERE member = "ralph jacobi" ### context: CREATE TABLE table_name_79 (party VARCHAR, member VARCHAR) |
### question: When was Hon Les Johnson in office? ### answer: SELECT term_in_office FROM table_name_74 WHERE member = "hon les johnson" ### context: CREATE TABLE table_name_74 (term_in_office VARCHAR, member VARCHAR) |
### question: Which party had a member from the state of Vic and an Electorate called Wannon? ### answer: SELECT party FROM table_name_23 WHERE state = "vic" AND electorate = "wannon" ### context: CREATE TABLE table_name_23 (party VARCHAR, state VARCHAR, electorate VARCHAR) |
### question: What party is Mick Young a member of? ### answer: SELECT party FROM table_name_45 WHERE member = "mick young" ### context: CREATE TABLE table_name_45 (party VARCHAR, member VARCHAR) |
### question: Which tires were in Class C in years before 1983? ### answer: SELECT tyres FROM table_name_70 WHERE class = "c" AND year < 1983 ### context: CREATE TABLE table_name_70 (tyres VARCHAR, class VARCHAR, year VARCHAR) |
### question: What is the earliest year that had a co-driver of Roger Enever? ### answer: SELECT MIN(year) FROM table_name_77 WHERE co_drivers = "roger enever" ### context: CREATE TABLE table_name_77 (year INTEGER, co_drivers VARCHAR) |
### question: Which date has 3 as the goal? ### answer: SELECT date FROM table_name_55 WHERE goal = 3 ### context: CREATE TABLE table_name_55 (date VARCHAR, goal VARCHAR) |
### question: What Label released on October 25, 1984, in the format of Stereo LP? ### answer: SELECT label FROM table_name_79 WHERE date = "october 25, 1984" AND format = "stereo lp" ### context: CREATE TABLE table_name_79 (label VARCHAR, date VARCHAR, format VARCHAR) |
### question: What are the catalogs of releases from Sony Music Direct? ### answer: SELECT catalog FROM table_name_72 WHERE label = "sony music direct" ### context: CREATE TABLE table_name_72 (catalog VARCHAR, label VARCHAR) |
### question: What is the region of the release of a CD with catalog 32xa-119? ### answer: SELECT region FROM table_name_58 WHERE format = "cd" AND catalog = "32xa-119" ### context: CREATE TABLE table_name_58 (region VARCHAR, format VARCHAR, catalog VARCHAR) |
### question: What is the catalog of the release from January 23, 2002? ### answer: SELECT catalog FROM table_name_59 WHERE date = "january 23, 2002" ### context: CREATE TABLE table_name_59 (catalog VARCHAR, date VARCHAR) |
### question: What was the region of the release from May 27, 2009? ### answer: SELECT region FROM table_name_55 WHERE date = "may 27, 2009" ### context: CREATE TABLE table_name_55 (region VARCHAR, date VARCHAR) |
### question: What is the region of the Alfa Records release with catalog ALCA-282? ### answer: SELECT region FROM table_name_54 WHERE label = "alfa records" AND catalog = "alca-282" ### context: CREATE TABLE table_name_54 (region VARCHAR, label VARCHAR, catalog VARCHAR) |
### question: What is the to par for the player from the United States with a 72-67-80-71=290 score? ### answer: SELECT to_par FROM table_name_14 WHERE country = "united states" AND score = 72 - 67 - 80 - 71 = 290 ### context: CREATE TABLE table_name_14 (to_par VARCHAR, country VARCHAR, score VARCHAR) |
### question: Name the rank for laps less than 130 and year of 1951 ### answer: SELECT rank FROM table_name_31 WHERE laps < 130 AND year = "1951" ### context: CREATE TABLE table_name_31 (rank VARCHAR, laps VARCHAR, year VARCHAR) |
### question: Name the year for laps of 200 and rank of 24 ### answer: SELECT year FROM table_name_14 WHERE laps = 200 AND rank = "24" ### context: CREATE TABLE table_name_14 (year VARCHAR, laps VARCHAR, rank VARCHAR) |
### question: Name the rank with finish of 12 and year of 1963 ### answer: SELECT rank FROM table_name_29 WHERE finish = "12" AND year = "1963" ### context: CREATE TABLE table_name_29 (rank VARCHAR, finish VARCHAR, year VARCHAR) |
### question: Name the rank with laps of 200 and qual of 148.374 ### answer: SELECT rank FROM table_name_5 WHERE laps = 200 AND qual = "148.374" ### context: CREATE TABLE table_name_5 (rank VARCHAR, laps VARCHAR, qual VARCHAR) |
### question: Name the finish with Laps more than 200 ### answer: SELECT finish FROM table_name_17 WHERE laps > 200 ### context: CREATE TABLE table_name_17 (finish VARCHAR, laps INTEGER) |
### question: Name the rank for 151 Laps ### answer: SELECT rank FROM table_name_18 WHERE laps = 151 ### context: CREATE TABLE table_name_18 (rank VARCHAR, laps VARCHAR) |
### question: The qual of totals took place during what year? ### answer: SELECT year FROM table_name_61 WHERE qual = "totals" ### context: CREATE TABLE table_name_61 (year VARCHAR, qual VARCHAR) |
### question: What year did the finish of 15 happen in? ### answer: SELECT year FROM table_name_16 WHERE finish = "15" ### context: CREATE TABLE table_name_16 (year VARCHAR, finish VARCHAR) |
### question: What's the Finish rank of 31? ### answer: SELECT finish FROM table_name_71 WHERE rank = "31" ### context: CREATE TABLE table_name_71 (finish VARCHAR, rank VARCHAR) |
### question: What year did the rank of 31 happen in? ### answer: SELECT year FROM table_name_75 WHERE rank = "31" ### context: CREATE TABLE table_name_75 (year VARCHAR, rank VARCHAR) |
### question: Which item resulted in a score of 4-1? ### answer: SELECT score FROM table_name_77 WHERE result = "4-1" ### context: CREATE TABLE table_name_77 (score VARCHAR, result VARCHAR) |
### question: Which item has a score of 5-1? ### answer: SELECT score FROM table_name_6 WHERE result = "5-1" ### context: CREATE TABLE table_name_6 (score VARCHAR, result VARCHAR) |
### question: Which competition had a 4-1 result, and a score of 4-1? ### answer: SELECT competition FROM table_name_19 WHERE result = "4-1" AND score = "4-1" ### context: CREATE TABLE table_name_19 (competition VARCHAR, result VARCHAR, score VARCHAR) |
### question: Name the 2009 ffor 2010 of 1r and 2012 of a and 2008 of 2r ### answer: SELECT 2009 FROM table_name_44 WHERE 2010 = "1r" AND 2012 = "a" AND 2008 = "2r" ### context: CREATE TABLE table_name_44 (Id VARCHAR) |
### question: Name the 2011 for 2012 of a and 2010 of 1r with 2008 of 2r ### answer: SELECT 2011 FROM table_name_92 WHERE 2012 = "a" AND 2010 = "1r" AND 2008 = "2r" ### context: CREATE TABLE table_name_92 (Id VARCHAR) |
### question: Name the 2010 for tournament of us open ### answer: SELECT 2010 FROM table_name_95 WHERE tournament = "us open" ### context: CREATE TABLE table_name_95 (tournament VARCHAR) |
### question: Name the 2010 for 2011 of a and 2008 of 1r ### answer: SELECT 2010 FROM table_name_61 WHERE 2011 = "a" AND 2008 = "1r" ### context: CREATE TABLE table_name_61 (Id VARCHAR) |
### question: Name the 2011 when 2010 is 2r ### answer: SELECT 2011 FROM table_name_94 WHERE 2010 = "2r" ### context: CREATE TABLE table_name_94 (Id VARCHAR) |
### question: Name the tournament when it has 2011 of 2r ### answer: SELECT tournament FROM table_name_94 WHERE 2011 = "2r" ### context: CREATE TABLE table_name_94 (tournament VARCHAR) |
### question: What was the average attendance for games with a loss of papelbon (0–1)? ### answer: SELECT AVG(attendance) FROM table_name_66 WHERE loss = "papelbon (0–1)" ### context: CREATE TABLE table_name_66 (attendance INTEGER, loss VARCHAR) |
### question: When the team had their record of 16–14, what was the total attendance? ### answer: SELECT COUNT(attendance) FROM table_name_74 WHERE record = "16–14" ### context: CREATE TABLE table_name_74 (attendance VARCHAR, record VARCHAR) |
### question: Who was in a with opponent St. Johnstone? ### answer: SELECT scorers FROM table_name_8 WHERE venue = "a" AND opponent = "st. johnstone" ### context: CREATE TABLE table_name_8 (scorers VARCHAR, venue VARCHAR, opponent VARCHAR) |
### question: What venue was on 27 May 2000? ### answer: SELECT venue FROM table_name_81 WHERE date = "27 may 2000" ### context: CREATE TABLE table_name_81 (venue VARCHAR, date VARCHAR) |
### question: Who was on 12 March 2000? ### answer: SELECT scorers FROM table_name_24 WHERE date = "12 march 2000" ### context: CREATE TABLE table_name_24 (scorers VARCHAR, date VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.