Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
24,500 | <question>: What is the home team for victoria park? <context>: CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_93 WHERE venue = "victoria park" |
24,501 | <question>: Which home team has a Away team of hawthorn? <context>: CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_86 WHERE away_team = "hawthorn" |
24,502 | <question>: Who is the opponent with a score of 6–5 13? <context>: CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_82 WHERE score = "6–5 13" |
24,503 | <question>: Who is the opponent with a save of ||33,453||36–27? <context>: CREATE TABLE table_name_39 (opponent VARCHAR, save VARCHAR) | SELECT opponent FROM table_name_39 WHERE save = "||33,453||36–27" |
24,504 | <question>: What is the top grid that laps less than 66 and a retried engine? <context>: CREATE TABLE table_name_28 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) | SELECT MAX(grid) FROM table_name_28 WHERE time_retired = "engine" AND laps < 66 |
24,505 | <question>: What is the top lap that had a tyre time? <context>: CREATE TABLE table_name_31 (laps INTEGER, time_retired VARCHAR) | SELECT MAX(laps) FROM table_name_31 WHERE time_retired = "tyre" |
24,506 | <question>: What is the top grid that roger williamson lapped less than 7? <context>: CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR) | SELECT MAX(grid) FROM table_name_73 WHERE driver = "roger williamson" AND laps < 7 |
24,507 | <question>: What opponent does she fight when she is 10-1? <context>: CREATE TABLE table_name_31 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_31 WHERE record = "10-1" |
24,508 | <question>: What is the highest number of rounds for a 3:16 fight? <context>: CREATE TABLE table_name_98 (round INTEGER, time VARCHAR) | SELECT MAX(round) FROM table_name_98 WHERE time = "3:16" |
24,509 | <question>: What day is south melbourne at home? <context>: CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_35 WHERE home_team = "south melbourne" |
24,510 | <question>: What is the listed crowd when hawthorn is away? <context>: CREATE TABLE table_name_72 (crowd VARCHAR, away_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_72 WHERE away_team = "hawthorn" |
24,511 | <question>: What is the home team's score at mcg? <context>: CREATE TABLE table_name_49 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_49 WHERE venue = "mcg" |
24,512 | <question>: Tell me who was the opponent on May 6 <context>: CREATE TABLE table_name_33 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_33 WHERE date = "may 6" |
24,513 | <question>: Name the score when the opponent was the dodgers on april 21 <context>: CREATE TABLE table_name_61 (score VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT score FROM table_name_61 WHERE opponent = "dodgers" AND date = "april 21" |
24,514 | <question>: What is the number of the pick for round 11? <context>: CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR) | SELECT SUM(pick) FROM table_name_15 WHERE round = 11 |
24,515 | <question>: What is the largest pick in round 8? <context>: CREATE TABLE table_name_82 (pick INTEGER, round VARCHAR) | SELECT MAX(pick) FROM table_name_82 WHERE round = 8 |
24,516 | <question>: What is the position of the player for Washington school? <context>: CREATE TABLE table_name_44 (position VARCHAR, school VARCHAR) | SELECT position FROM table_name_44 WHERE school = "washington" |
24,517 | <question>: Who gave the play by play commentary with studio host Ward Cornell? <context>: CREATE TABLE table_name_89 (play_by_play VARCHAR, studio_host VARCHAR) | SELECT play_by_play FROM table_name_89 WHERE studio_host = "ward cornell" |
24,518 | <question>: Were the color commentators who worked with Bill Hewitt doing the play-by-play? <context>: CREATE TABLE table_name_95 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR) | SELECT colour_commentator_s_ FROM table_name_95 WHERE play_by_play = "bill hewitt" |
24,519 | <question>: Who did the play-by-play with studio host Ward Cornell and color commentator Bob Goldham? <context>: CREATE TABLE table_name_13 (play_by_play VARCHAR, studio_host VARCHAR, colour_commentator_s_ VARCHAR) | SELECT play_by_play FROM table_name_13 WHERE studio_host = "ward cornell" AND colour_commentator_s_ = "bob goldham" |
24,520 | <question>: Who did the play-by-play on the CBC network before 1961? <context>: CREATE TABLE table_name_53 (play_by_play VARCHAR, network VARCHAR, year VARCHAR) | SELECT play_by_play FROM table_name_53 WHERE network = "cbc" AND year < 1961 |
24,521 | <question>: What's the award for #100? <context>: CREATE TABLE table_name_84 (award VARCHAR, result VARCHAR) | SELECT award FROM table_name_84 WHERE result = "#100" |
24,522 | <question>: Which award was nominated for in 2000? <context>: CREATE TABLE table_name_37 (award VARCHAR, year VARCHAR, result VARCHAR) | SELECT award FROM table_name_37 WHERE year = 2000 AND result = "nominated" |
24,523 | <question>: What were the results before the year 2000? <context>: CREATE TABLE table_name_7 (result VARCHAR, year INTEGER) | SELECT result FROM table_name_7 WHERE year < 2000 |
24,524 | <question>: What is the 2nd leg of the Comunicaciones team? <context>: CREATE TABLE table_name_78 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_78 WHERE team_1 = "comunicaciones" |
24,525 | <question>: What is the 1st leg where Team 1 is C.D. Plaza Amador? <context>: CREATE TABLE table_name_12 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_12 WHERE team_1 = "c.d. plaza amador" |
24,526 | <question>: What is the 1st leg where Team 1 is C.D. Plaza Amador? <context>: CREATE TABLE table_name_48 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_48 WHERE team_1 = "c.d. plaza amador" |
24,527 | <question>: Who played on a hard surface? <context>: CREATE TABLE table_name_14 (partner VARCHAR, surface VARCHAR) | SELECT partner FROM table_name_14 WHERE surface = "hard" |
24,528 | <question>: What is north melbourne's score as an away side? <context>: CREATE TABLE table_name_80 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_80 WHERE away_team = "north melbourne" |
24,529 | <question>: What is the average year of the Fantasia Section Award? <context>: CREATE TABLE table_name_16 (year INTEGER, award VARCHAR) | SELECT AVG(year) FROM table_name_16 WHERE award = "fantasia section award" |
24,530 | <question>: What is the sum total of picks for drake players from the tri-cities blackhawks? <context>: CREATE TABLE table_name_24 (pick INTEGER, team VARCHAR, college VARCHAR) | SELECT SUM(pick) FROM table_name_24 WHERE team = "tri-cities blackhawks" AND college = "drake" |
24,531 | <question>: What is the lowest pick number for players from king's (ny)? <context>: CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR) | SELECT MIN(pick) FROM table_name_13 WHERE college = "king's (ny)" |
24,532 | <question>: Who was the Home Team while Calgary was visiting while having an Attendance above 15,655? <context>: CREATE TABLE table_name_22 (home VARCHAR, visitor VARCHAR, attendance VARCHAR) | SELECT home FROM table_name_22 WHERE visitor = "calgary" AND attendance > 15 OFFSET 655 |
24,533 | <question>: What is the lowest Frequency where the Hemholtz pitch is d? <context>: CREATE TABLE table_name_48 (frequency___hz__ INTEGER, helmholtz_pitch VARCHAR) | SELECT MIN(frequency___hz__) FROM table_name_48 WHERE helmholtz_pitch = "d" |
24,534 | <question>: What is the scientific pitch when the Helmholtz pitch is D? <context>: CREATE TABLE table_name_33 (scientific_pitch VARCHAR, helmholtz_pitch VARCHAR) | SELECT scientific_pitch FROM table_name_33 WHERE helmholtz_pitch = "d" |
24,535 | <question>: What company constrcuted the vehicle with a circuit of oulton park on 15 april? <context>: CREATE TABLE table_name_17 (constructor VARCHAR, circuit VARCHAR, date VARCHAR) | SELECT constructor FROM table_name_17 WHERE circuit = "oulton park" AND date = "15 april" |
24,536 | <question>: What is the name of the race on 16 september? <context>: CREATE TABLE table_name_29 (race_name VARCHAR, date VARCHAR) | SELECT race_name FROM table_name_29 WHERE date = "16 september" |
24,537 | <question>: What is the circuit held on 15 april? <context>: CREATE TABLE table_name_49 (circuit VARCHAR, date VARCHAR) | SELECT circuit FROM table_name_49 WHERE date = "15 april" |
24,538 | <question>: What date was the xiv international gold cup? <context>: CREATE TABLE table_name_80 (date VARCHAR, race_name VARCHAR) | SELECT date FROM table_name_80 WHERE race_name = "xiv international gold cup" |
24,539 | <question>: Name the date for race title lakeside <context>: CREATE TABLE table_name_21 (date VARCHAR, race_title VARCHAR) | SELECT date FROM table_name_21 WHERE race_title = "lakeside" |
24,540 | <question>: Name the team for launceston <context>: CREATE TABLE table_name_60 (team VARCHAR, race_title VARCHAR) | SELECT team FROM table_name_60 WHERE race_title = "launceston" |
24,541 | <question>: Who has a bowling style of source:? <context>: CREATE TABLE table_name_7 (player VARCHAR, bowling_style VARCHAR) | SELECT player FROM table_name_7 WHERE bowling_style = "source:" |
24,542 | <question>: What first class team does sanath jayasuriya play for? <context>: CREATE TABLE table_name_51 (first_class_team VARCHAR, player VARCHAR) | SELECT first_class_team FROM table_name_51 WHERE player = "sanath jayasuriya" |
24,543 | <question>: When was roshan mahanama born? <context>: CREATE TABLE table_name_71 (date_of_birth VARCHAR, player VARCHAR) | SELECT date_of_birth FROM table_name_71 WHERE player = "roshan mahanama" |
24,544 | <question>: When was avishka gunawardene born? <context>: CREATE TABLE table_name_51 (date_of_birth VARCHAR, player VARCHAR) | SELECT date_of_birth FROM table_name_51 WHERE player = "avishka gunawardene" |
24,545 | <question>: What was the venue where the result was 2-1? <context>: CREATE TABLE table_name_33 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_33 WHERE result = "2-1" |
24,546 | <question>: What was the score of the match with a 3-0 result? <context>: CREATE TABLE table_name_44 (score VARCHAR, result VARCHAR) | SELECT score FROM table_name_44 WHERE result = "3-0" |
24,547 | <question>: What is the score of the match on July 29, 1990? <context>: CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_79 WHERE date = "july 29, 1990" |
24,548 | <question>: What is the venue of the 1990 Asian games? <context>: CREATE TABLE table_name_77 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_77 WHERE competition = "1990 asian games" |
24,549 | <question>: What is the score of the match on October 5, 1990? <context>: CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_82 WHERE date = "october 5, 1990" |
24,550 | <question>: What is the competition at the ta'qali venue? <context>: CREATE TABLE table_name_21 (competition VARCHAR, venue VARCHAR) | SELECT competition FROM table_name_21 WHERE venue = "ta'qali" |
24,551 | <question>: What is the average against score of all teams with less than 7 losses, more than 6 draws, and 25 points? <context>: CREATE TABLE table_name_99 (against INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) | SELECT AVG(against) FROM table_name_99 WHERE lost < 7 AND drawn > 6 AND points = 25 |
24,552 | <question>: What is the lowest number of points of any team with less than 6 draws and less than 18 matches played? <context>: CREATE TABLE table_name_3 (points INTEGER, drawn VARCHAR, played VARCHAR) | SELECT MIN(points) FROM table_name_3 WHERE drawn < 6 AND played < 18 |
24,553 | <question>: What is the sum of the points of all teams that had against scores less than 14? <context>: CREATE TABLE table_name_96 (points INTEGER, against INTEGER) | SELECT SUM(points) FROM table_name_96 WHERE against < 14 |
24,554 | <question>: What construction completed on 08/10/2007? <context>: CREATE TABLE table_name_46 (listed VARCHAR, construction_completed VARCHAR) | SELECT listed FROM table_name_46 WHERE construction_completed = "08/10/2007" |
24,555 | <question>: What away team played at western oval? <context>: CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_11 WHERE venue = "western oval" |
24,556 | <question>: What home team has an Away team of richmond? <context>: CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_28 WHERE away_team = "richmond" |
24,557 | <question>: Which home team has an Away team of essendon? <context>: CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_76 WHERE away_team = "essendon" |
24,558 | <question>: Which Tuesday does big brother 12 air? <context>: CREATE TABLE table_name_16 (tuesday VARCHAR, series VARCHAR) | SELECT tuesday FROM table_name_16 WHERE series = "big brother 12" |
24,559 | <question>: Which series airs Saturday on Channel 5? <context>: CREATE TABLE table_name_20 (series VARCHAR, saturday VARCHAR) | SELECT series FROM table_name_20 WHERE saturday = "channel 5" |
24,560 | <question>: Which Thursday does big brother 13 air? <context>: CREATE TABLE table_name_59 (thursday VARCHAR, series VARCHAR) | SELECT thursday FROM table_name_59 WHERE series = "big brother 13" |
24,561 | <question>: What is the most lost games for the team with a difference smaller than 86 and points of 32? <context>: CREATE TABLE table_name_74 (lost INTEGER, points VARCHAR, difference VARCHAR) | SELECT MAX(lost) FROM table_name_74 WHERE points = 32 AND difference < 86 |
24,562 | <question>: What is the average points for a team that lost 4 and played more than 28 games? <context>: CREATE TABLE table_name_56 (points INTEGER, lost VARCHAR, played VARCHAR) | SELECT AVG(points) FROM table_name_56 WHERE lost = 4 AND played > 28 |
24,563 | <question>: What is the highest difference for the team that had less than 0 draws? <context>: CREATE TABLE table_name_98 (difference INTEGER, drew INTEGER) | SELECT MAX(difference) FROM table_name_98 WHERE drew < 0 |
24,564 | <question>: What is the total number of bronze when the total is less than 1? <context>: CREATE TABLE table_name_51 (bronze INTEGER, total INTEGER) | SELECT SUM(bronze) FROM table_name_51 WHERE total < 1 |
24,565 | <question>: What is the full amount of Total for Austria when the number of gold is less than 0? <context>: CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, gold VARCHAR) | SELECT SUM(total) FROM table_name_45 WHERE nation = "austria" AND gold < 0 |
24,566 | <question>: What is the name of Rank 5? <context>: CREATE TABLE table_name_89 (name VARCHAR, rank VARCHAR) | SELECT name FROM table_name_89 WHERE rank = 5 |
24,567 | <question>: What is the rank of Rmax Rpeak ( Pflops ) of 17.173 20.133? <context>: CREATE TABLE table_name_7 (rank INTEGER, rmax_rpeak___pflops__ VARCHAR) | SELECT AVG(rank) FROM table_name_7 WHERE rmax_rpeak___pflops__ = "17.173 20.133" |
24,568 | <question>: What is the tyre on the race where Bruce Mclaren had the fastest lap? <context>: CREATE TABLE table_name_58 (tyre VARCHAR, fastest_lap VARCHAR) | SELECT tyre FROM table_name_58 WHERE fastest_lap = "bruce mclaren" |
24,569 | <question>: What is the constructor at the United States Grand Prix? <context>: CREATE TABLE table_name_65 (constructor VARCHAR, race VARCHAR) | SELECT constructor FROM table_name_65 WHERE race = "united states grand prix" |
24,570 | <question>: What is the date of the circuit of Monaco? <context>: CREATE TABLE table_name_97 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_97 WHERE circuit = "monaco" |
24,571 | <question>: What is the tyre for the circuit of Prince George, which had Jim Clark as the fastest lap? <context>: CREATE TABLE table_name_82 (tyre VARCHAR, fastest_lap VARCHAR, circuit VARCHAR) | SELECT tyre FROM table_name_82 WHERE fastest_lap = "jim clark" AND circuit = "prince george" |
24,572 | <question>: What is the date of the circuit of nürburgring, which had Graham Hill as the winning driver? <context>: CREATE TABLE table_name_47 (date VARCHAR, winning_driver VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_47 WHERE winning_driver = "graham hill" AND circuit = "nürburgring" |
24,573 | <question>: What game did Eoin Holohan play in? <context>: CREATE TABLE table_name_69 (game VARCHAR, player VARCHAR) | SELECT game FROM table_name_69 WHERE player = "eoin holohan" |
24,574 | <question>: what is the weekly rank for living when the air date is october 6, 2008? <context>: CREATE TABLE table_name_96 (weekly_rank_for_living VARCHAR, air_date VARCHAR) | SELECT weekly_rank_for_living FROM table_name_96 WHERE air_date = "october 6, 2008" |
24,575 | <question>: what is the episode with the 183,000 viewers? <context>: CREATE TABLE table_name_64 (episode VARCHAR, viewers VARCHAR) | SELECT episode FROM table_name_64 WHERE viewers = "183,000" |
24,576 | <question>: How many viewers for the episode with the weekly rank for living of 4? <context>: CREATE TABLE table_name_25 (viewers VARCHAR, weekly_rank_for_living VARCHAR) | SELECT viewers FROM table_name_25 WHERE weekly_rank_for_living = "4" |
24,577 | <question>: Which Away team score has a Venue of kardinia park? <context>: CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_42 WHERE venue = "kardinia park" |
24,578 | <question>: Which Home team score has a Home team of geelong? <context>: CREATE TABLE table_name_47 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_47 WHERE home_team = "geelong" |
24,579 | <question>: Which Venue has a Home team of geelong? <context>: CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_45 WHERE home_team = "geelong" |
24,580 | <question>: Which school is in Raleigh, NC? <context>: CREATE TABLE table_name_23 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_name_23 WHERE hometown = "raleigh, nc" |
24,581 | <question>: Which college does Peyton Siva play for? <context>: CREATE TABLE table_name_44 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_44 WHERE player = "peyton siva" |
24,582 | <question>: Which height is associated with Franklin High School? <context>: CREATE TABLE table_name_40 (height VARCHAR, school VARCHAR) | SELECT height FROM table_name_40 WHERE school = "franklin high school" |
24,583 | <question>: How tall is Daniel Orton? <context>: CREATE TABLE table_name_93 (height VARCHAR, player VARCHAR) | SELECT height FROM table_name_93 WHERE player = "daniel orton" |
24,584 | <question>: Which school is in Riverside, CA? <context>: CREATE TABLE table_name_76 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_name_76 WHERE hometown = "riverside, ca" |
24,585 | <question>: During which round was a Hawkeyes player selected for the defensive back position? <context>: CREATE TABLE table_name_87 (round VARCHAR, position VARCHAR) | SELECT round FROM table_name_87 WHERE position = "defensive back" |
24,586 | <question>: What was the latest round that Derek Pagel was selected with a pick higher than 50? <context>: CREATE TABLE table_name_22 (round INTEGER, pick VARCHAR, player VARCHAR) | SELECT MAX(round) FROM table_name_22 WHERE pick > 50 AND player = "derek pagel" |
24,587 | <question>: When is the earliest began operation with a length of sultan ismail and over 27 stations? <context>: CREATE TABLE table_name_7 (began_operation INTEGER, length__km_ VARCHAR, stations VARCHAR) | SELECT MIN(began_operation) FROM table_name_7 WHERE length__km_ = "sultan ismail" AND stations > 27 |
24,588 | <question>: What is the average operation beginning with a length of ampang and over 27 stations? <context>: CREATE TABLE table_name_12 (began_operation INTEGER, length__km_ VARCHAR, stations VARCHAR) | SELECT AVG(began_operation) FROM table_name_12 WHERE length__km_ = "ampang" AND stations > 27 |
24,589 | <question>: what is the nationality of the ship appam? <context>: CREATE TABLE table_name_24 (nationality VARCHAR, ship VARCHAR) | SELECT nationality FROM table_name_24 WHERE ship = "appam" |
24,590 | <question>: what is the tonnage grt of the ship author? <context>: CREATE TABLE table_name_40 (tonnage_grt VARCHAR, ship VARCHAR) | SELECT tonnage_grt FROM table_name_40 WHERE ship = "author" |
24,591 | <question>: what is the most tonnage grt of any ship sunk or captured on 16 jan 16? <context>: CREATE TABLE table_name_80 (tonnage_grt INTEGER, date VARCHAR) | SELECT MAX(tonnage_grt) FROM table_name_80 WHERE date = "16 jan 16" |
24,592 | <question>: what is the total tonnage grt of the cargo ship(s) sunk or captured on 4 feb 16? <context>: CREATE TABLE table_name_94 (tonnage_grt VARCHAR, type VARCHAR, date VARCHAR) | SELECT COUNT(tonnage_grt) FROM table_name_94 WHERE type = "cargo ship" AND date = "4 feb 16" |
24,593 | <question>: What Rank has a gold smaller than 1, and a silver larger than 0? <context>: CREATE TABLE table_name_25 (rank VARCHAR, gold VARCHAR, silver VARCHAR) | SELECT rank FROM table_name_25 WHERE gold < 1 AND silver > 0 |
24,594 | <question>: What year was the Line of Gardermobanen completed? <context>: CREATE TABLE table_name_20 (year_completed VARCHAR, line VARCHAR) | SELECT year_completed FROM table_name_20 WHERE line = "gardermobanen" |
24,595 | <question>: Which line is the Geumjeong tunnel? <context>: CREATE TABLE table_name_82 (line VARCHAR, name VARCHAR) | SELECT line FROM table_name_82 WHERE name = "geumjeong tunnel" |
24,596 | <question>: What is the Date with a Round with sf? <context>: CREATE TABLE table_name_67 (date VARCHAR, round VARCHAR) | SELECT date FROM table_name_67 WHERE round = "sf" |
24,597 | <question>: What is the Opponent with a Round with 3, and a Venue of home? <context>: CREATE TABLE table_name_24 (opponent VARCHAR, round VARCHAR, venue VARCHAR) | SELECT opponent FROM table_name_24 WHERE round = "3" AND venue = "home" |
24,598 | <question>: What is the Date with an Opponent with wimbledon, and a Result of drew 0-0? <context>: CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, result VARCHAR) | SELECT date FROM table_name_75 WHERE opponent = "wimbledon" AND result = "drew 0-0" |
24,599 | <question>: What is the Round with a Opponent with blackburn? <context>: CREATE TABLE table_name_15 (round VARCHAR, opponent VARCHAR) | SELECT round FROM table_name_15 WHERE opponent = "blackburn" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.