text
stringlengths 114
1.06k
|
---|
### question: What is the number of votes for the party which got more than 28 seats? ### answer: SELECT COUNT(votes) FROM table_name_67 WHERE seats > 28 ### context: CREATE TABLE table_name_67 (votes VARCHAR, seats INTEGER)
|
### question: What is the number of votes for the Party of Labour? ### answer: SELECT MIN(votes) FROM table_name_86 WHERE party = "labour" ### context: CREATE TABLE table_name_86 (votes INTEGER, party VARCHAR)
|
### question: What is the percentage of votes for the party that has Seats of 80? ### answer: SELECT percentage FROM table_name_15 WHERE seats = 80 ### context: CREATE TABLE table_name_15 (percentage VARCHAR, seats VARCHAR)
|
### question: Who is the leader of the party which has Seats less than 28, a percentage of votes 54.03, and more votes than 120,801? ### answer: SELECT leader FROM table_name_18 WHERE seats < 28 AND percentage = "54.03" AND votes > 120 OFFSET 801 ### context: CREATE TABLE table_name_18 (leader VARCHAR, votes VARCHAR, seats VARCHAR, percentage VARCHAR)
|
### question: Which highest number of Seats has votes of 244,867? ### answer: SELECT MAX(seats) FROM table_name_83 WHERE votes = 244 OFFSET 867 ### context: CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR)
|
### question: What was the Date of the game of the Home team of melbourne? ### answer: SELECT date FROM table_name_89 WHERE home_team = "melbourne" ### context: CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)
|
### question: What was the score of the Home team in the game that had the Away team of south melbourne? ### answer: SELECT home_team AS score FROM table_name_29 WHERE away_team = "south melbourne" ### context: CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR)
|
### question: what was the away team for the north melbourne home team? ### answer: SELECT away_team FROM table_name_60 WHERE home_team = "north melbourne" ### context: CREATE TABLE table_name_60 (away_team VARCHAR, home_team VARCHAR)
|
### question: what was the away team score in a game with north melbourne as home team? ### answer: SELECT away_team AS score FROM table_name_31 WHERE home_team = "melbourne" ### context: CREATE TABLE table_name_31 (away_team VARCHAR, home_team VARCHAR)
|
### question: what was the away team with st kilda as the away team? ### answer: SELECT away_team AS score FROM table_name_15 WHERE away_team = "st kilda" ### context: CREATE TABLE table_name_15 (away_team VARCHAR)
|
### question: How many yards for the player with 1 solo tackle and over 0 sacks? ### answer: SELECT MAX(yards) FROM table_name_25 WHERE solo = 1 AND sack > 0 ### context: CREATE TABLE table_name_25 (yards INTEGER, solo VARCHAR, sack VARCHAR)
|
### question: What does a hand of Theoretical return have as a 3 credit? ### answer: SELECT 3 AS _credits FROM table_name_34 WHERE hand = "theoretical return" ### context: CREATE TABLE table_name_34 (hand VARCHAR)
|
### question: What does full house have as a 5 credits? ### answer: SELECT 5 AS _credits FROM table_name_58 WHERE hand = "full house" ### context: CREATE TABLE table_name_58 (hand VARCHAR)
|
### question: What would be the 4 credits result of a straight? ### answer: SELECT 4 AS _credits FROM table_name_28 WHERE hand = "straight" ### context: CREATE TABLE table_name_28 (hand VARCHAR)
|
### question: Who was the home team at the game that had a score of 2 β 2? ### answer: SELECT home FROM table_name_96 WHERE score = "2 β 2" ### context: CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)
|
### question: What was the date of the game when Colorado was the visiting team and Chicago was the home team? ### answer: SELECT date FROM table_name_36 WHERE visitor = "colorado" AND home = "chicago" ### context: CREATE TABLE table_name_36 (date VARCHAR, visitor VARCHAR, home VARCHAR)
|
### question: What was the date of the game when the Avalanche had a record of 8β3β1? ### answer: SELECT date FROM table_name_34 WHERE record = "8β3β1" ### context: CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)
|
### question: Who was the opponents of the 5th Wicket Partnership? ### answer: SELECT opponents FROM table_name_3 WHERE wicket_partnership = "5th" ### context: CREATE TABLE table_name_3 (opponents VARCHAR, wicket_partnership VARCHAR)
|
### question: In which season was there a competition in the Champions League? ### answer: SELECT season FROM table_name_70 WHERE competition = "champions league" ### context: CREATE TABLE table_name_70 (season VARCHAR, competition VARCHAR)
|
### question: What scores did the RSC Anderlecht club have? ### answer: SELECT score FROM table_name_68 WHERE club = "rsc anderlecht" ### context: CREATE TABLE table_name_68 (score VARCHAR, club VARCHAR)
|
### question: What is the highest opening week net gross of the movie ranked higher than 5 from Reliance Entertainment? ### answer: SELECT MAX(opening_week_nett_gross) FROM table_name_42 WHERE rank < 5 AND studio_s_ = "reliance entertainment" ### context: CREATE TABLE table_name_42 (opening_week_nett_gross INTEGER, rank VARCHAR, studio_s_ VARCHAR)
|
### question: Tell me the total number of Grid for Bob Evans and Laps less than 68 ### answer: SELECT COUNT(grid) FROM table_name_86 WHERE driver = "bob evans" AND laps < 68 ### context: CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR)
|
### question: Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones ### answer: SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = "alan jones" ### context: CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
|
### question: I want the sum of Laps with Grid less than 11 for jean-pierre jarier ### answer: SELECT SUM(laps) FROM table_name_7 WHERE grid < 11 AND driver = "jean-pierre jarier" ### context: CREATE TABLE table_name_7 (laps INTEGER, grid VARCHAR, driver VARCHAR)
|
### question: I want the constructor for brakes and grid less than 14 ### answer: SELECT constructor FROM table_name_39 WHERE time_retired = "brakes" AND grid < 14 ### context: CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)
|
### question: How may episodes did season 1 have? ### answer: SELECT COUNT(episodes) FROM table_name_22 WHERE season_no = 1 ### context: CREATE TABLE table_name_22 (episodes VARCHAR, season_no VARCHAR)
|
### question: Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1? ### answer: SELECT chassis FROM table_name_41 WHERE entrant = "larrousse f1" AND driver = "aguri suzuki" ### context: CREATE TABLE table_name_41 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)
|
### question: What was the entrant in round 16 were Ferrari was the constructor? ### answer: SELECT entrant FROM table_name_70 WHERE rounds = "16" AND constructor = "ferrari" ### context: CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)
|
### question: Tell me the country with ICAO of zgha ### answer: SELECT country FROM table_name_71 WHERE icao = "zgha" ### context: CREATE TABLE table_name_71 (country VARCHAR, icao VARCHAR)
|
### question: I want the ICAO for city of xi'an ### answer: SELECT icao FROM table_name_51 WHERE city = "xi'an" ### context: CREATE TABLE table_name_51 (icao VARCHAR, city VARCHAR)
|
### question: I want the IATA for ICAO of zgkl ### answer: SELECT iata FROM table_name_32 WHERE icao = "zgkl" ### context: CREATE TABLE table_name_32 (iata VARCHAR, icao VARCHAR)
|
### question: I want the region for ICAO of vmmc ### answer: SELECT region FROM table_name_28 WHERE icao = "vmmc" ### context: CREATE TABLE table_name_28 (region VARCHAR, icao VARCHAR)
|
### question: What is the high grid number for a Time/Retired of + 3 laps, and a Laps smaller than 57? ### answer: SELECT MAX(grid) FROM table_name_29 WHERE time_retired = "+ 3 laps" AND laps < 57 ### context: CREATE TABLE table_name_29 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
|
### question: Who built the car that has a Time/Retired of 1:36:38.887? ### answer: SELECT constructor FROM table_name_66 WHERE time_retired = "1:36:38.887" ### context: CREATE TABLE table_name_66 (constructor VARCHAR, time_retired VARCHAR)
|
### question: Who was the leading scorer on 9 January 2008? ### answer: SELECT leading_scorer FROM table_name_99 WHERE date = "9 january 2008" ### context: CREATE TABLE table_name_99 (leading_scorer VARCHAR, date VARCHAR)
|
### question: What is the number played for the Barcelona B club, with wins under 11? ### answer: SELECT SUM(played) FROM table_name_2 WHERE club = "barcelona b" AND wins < 11 ### context: CREATE TABLE table_name_2 (played INTEGER, club VARCHAR, wins VARCHAR)
|
### question: What was the biggest draws, for wins under 4, and points of 20-18? ### answer: SELECT MAX(draws) FROM table_name_29 WHERE points = "20-18" AND wins < 4 ### context: CREATE TABLE table_name_29 (draws INTEGER, points VARCHAR, wins VARCHAR)
|
### question: What is the average of goals against, where overall goals are more than 35 and the goal difference is 20? ### answer: SELECT AVG(goals_against) FROM table_name_68 WHERE goals_for > 35 AND goal_difference = 20 ### context: CREATE TABLE table_name_68 (goals_against INTEGER, goals_for VARCHAR, goal_difference VARCHAR)
|
### question: What is the Crowd number for the Away team of Richmond? ### answer: SELECT SUM(crowd) FROM table_name_41 WHERE away_team = "richmond" ### context: CREATE TABLE table_name_41 (crowd INTEGER, away_team VARCHAR)
|
### question: What is the Home team score for the Venue named Glenferrie Oval? ### answer: SELECT home_team AS score FROM table_name_31 WHERE venue = "glenferrie oval" ### context: CREATE TABLE table_name_31 (home_team VARCHAR, venue VARCHAR)
|
### question: What is the smallest Crowd number for the Venue named Princes Park? ### answer: SELECT MIN(crowd) FROM table_name_96 WHERE venue = "princes park" ### context: CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)
|
### question: Tell me the notes with method of points and event of adcc 2001 absolute with result of loss ### answer: SELECT notes FROM table_name_72 WHERE method = "points" AND event = "adcc 2001 absolute" AND result = "loss" ### context: CREATE TABLE table_name_72 (notes VARCHAR, result VARCHAR, method VARCHAR, event VARCHAR)
|
### question: Tell me the lowest date for result of win and method of points with notes of opening round ### answer: SELECT MIN(date) FROM table_name_59 WHERE result = "win" AND method = "points" AND notes = "opening round" ### context: CREATE TABLE table_name_59 (date INTEGER, notes VARCHAR, result VARCHAR, method VARCHAR)
|
### question: Name the result with notes of quarter-finals and event of adcc 2001 absolute ### answer: SELECT result FROM table_name_65 WHERE notes = "quarter-finals" AND event = "adcc 2001 absolute" ### context: CREATE TABLE table_name_65 (result VARCHAR, notes VARCHAR, event VARCHAR)
|
### question: I want the event for method of points with notes of opening round ### answer: SELECT event FROM table_name_16 WHERE method = "points" AND notes = "opening round" ### context: CREATE TABLE table_name_16 (event VARCHAR, method VARCHAR, notes VARCHAR)
|
### question: How many win total which has the rank smaller than 3 and events smaller than 22 ### answer: SELECT COUNT(wins) FROM table_name_71 WHERE events < 22 AND rank < 3 ### context: CREATE TABLE table_name_71 (wins VARCHAR, events VARCHAR, rank VARCHAR)
|
### question: What denomination is mt lawley? ### answer: SELECT denomination FROM table_name_5 WHERE location = "mt lawley" ### context: CREATE TABLE table_name_5 (denomination VARCHAR, location VARCHAR)
|
### question: Is mt lawley day or boarding? ### answer: SELECT day_boarding FROM table_name_84 WHERE location = "mt lawley" ### context: CREATE TABLE table_name_84 (day_boarding VARCHAR, location VARCHAR)
|
### question: What is the average year founded for schools in claremont? ### answer: SELECT AVG(founded) FROM table_name_6 WHERE location = "claremont" ### context: CREATE TABLE table_name_6 (founded INTEGER, location VARCHAR)
|
### question: When north melbourne was the home team who was the Away team? ### answer: SELECT away_team FROM table_name_32 WHERE home_team = "north melbourne" ### context: CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR)
|
### question: When collingwood played as the home team who was the away team? ### answer: SELECT away_team FROM table_name_88 WHERE home_team = "collingwood" ### context: CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)
|
### question: When the Away team was south melbourne what was the home team? ### answer: SELECT home_team FROM table_name_52 WHERE away_team = "south melbourne" ### context: CREATE TABLE table_name_52 (home_team VARCHAR, away_team VARCHAR)
|
### question: What is the lowest attendance for a stadium that has an average smaller than 307? ### answer: SELECT AVG(lowest) FROM table_name_24 WHERE average < 307 ### context: CREATE TABLE table_name_24 (lowest INTEGER, average INTEGER)
|
### question: When the home team was South Melbourne, what did the away team score? ### answer: SELECT away_team AS score FROM table_name_64 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_64 (away_team VARCHAR, home_team VARCHAR)
|
### question: What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold? ### answer: SELECT AVG(rank) FROM table_name_15 WHERE bronze < 13 AND total = 11 AND gold > 4 ### context: CREATE TABLE table_name_15 (rank INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)
|
### question: What is the lowest bronze a team with 9 silvers, a total larger than 13, and more than 13 gold medals has? ### answer: SELECT MIN(bronze) FROM table_name_58 WHERE silver = 9 AND total > 13 AND gold > 13 ### context: CREATE TABLE table_name_58 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)
|
### question: What is the highest number of silvers a team with more than 95 total medals has? ### answer: SELECT MAX(silver) FROM table_name_6 WHERE total > 95 ### context: CREATE TABLE table_name_6 (silver INTEGER, total INTEGER)
|
### question: What is the highest total medals a team with less than 15 gold, less than 5 bronze, and a rank larger than 10 has? ### answer: SELECT MAX(total) FROM table_name_96 WHERE gold < 15 AND bronze < 5 AND rank > 10 ### context: CREATE TABLE table_name_96 (total INTEGER, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
|
### question: Who is the home team who plays at Glenferrie Oval? ### answer: SELECT home_team FROM table_name_95 WHERE venue = "glenferrie oval" ### context: CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)
|
### question: What did the away team Carlton score? ### answer: SELECT away_team AS score FROM table_name_29 WHERE away_team = "carlton" ### context: CREATE TABLE table_name_29 (away_team VARCHAR)
|
### question: What position did Lee Gilmour play while having more than 4 Tries and 20 points? ### answer: SELECT position FROM table_name_58 WHERE tries > 4 AND points = 20 AND player = "lee gilmour" ### context: CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, tries VARCHAR, points VARCHAR)
|
### question: Who was the host that garnered ratings of 9.4/27? ### answer: SELECT host FROM table_name_29 WHERE ratings = "9.4/27" ### context: CREATE TABLE table_name_29 (host VARCHAR, ratings VARCHAR)
|
### question: Who was the lap-by-lap broadcaster before 1994 who garnered ratings of 8.0/21? ### answer: SELECT lap_by_lap FROM table_name_29 WHERE year < 1994 AND ratings = "8.0/21" ### context: CREATE TABLE table_name_29 (lap_by_lap VARCHAR, year VARCHAR, ratings VARCHAR)
|
### question: Who was the host that garnered ratings of 9.6/26? ### answer: SELECT host FROM table_name_30 WHERE ratings = "9.6/26" ### context: CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR)
|
### question: What were the ratings for host Chris Economaki who had 12.3 million viewers? ### answer: SELECT ratings FROM table_name_83 WHERE host = "chris economaki" AND viewers = "12.3 million" ### context: CREATE TABLE table_name_83 (ratings VARCHAR, host VARCHAR, viewers VARCHAR)
|
### question: Who was the network who had Ken Squier as a host and 13.9 million viewers? ### answer: SELECT network FROM table_name_74 WHERE host = "ken squier" AND viewers = "13.9 million" ### context: CREATE TABLE table_name_74 (network VARCHAR, host VARCHAR, viewers VARCHAR)
|
### question: What was the lowest Attendance for Games played on the Date of February 5? ### answer: SELECT MIN(attendance) FROM table_name_1 WHERE date = "february 5" ### context: CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)
|
### question: What was the total Attendance for Games while Chicago was the visiting Team? ### answer: SELECT SUM(attendance) FROM table_name_61 WHERE visitor = "chicago" ### context: CREATE TABLE table_name_61 (attendance INTEGER, visitor VARCHAR)
|
### question: What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11? ### answer: SELECT pole_position FROM table_name_30 WHERE fastest_lap = "rubens barrichello" AND round > 11 ### context: CREATE TABLE table_name_30 (pole_position VARCHAR, fastest_lap VARCHAR, round VARCHAR)
|
### question: Which Grand Prix did David Coulthard win with Michael Schumacher in the pole position before round 9? ### answer: SELECT grand_prix FROM table_name_58 WHERE winning_driver = "david coulthard" AND pole_position = "michael schumacher" AND round < 9 ### context: CREATE TABLE table_name_58 (grand_prix VARCHAR, round VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)
|
### question: Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver. ### answer: SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher" ### context: CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
|
### question: Who had the fastest lap at the Australian Grand Prix? ### answer: SELECT fastest_lap FROM table_name_36 WHERE grand_prix = "australian grand prix" ### context: CREATE TABLE table_name_36 (fastest_lap VARCHAR, grand_prix VARCHAR)
|
### question: Tell me the team 2 for team 1 being la nuova piovese (veneto a) ### answer: SELECT team_2 FROM table_name_46 WHERE team_1 = "la nuova piovese (veneto a)" ### context: CREATE TABLE table_name_46 (team_2 VARCHAR, team_1 VARCHAR)
|
### question: Tell me the team 1 for team 2 being civitavecchiese (latium a) ### answer: SELECT team_1 FROM table_name_8 WHERE team_2 = "civitavecchiese (latium a)" ### context: CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR)
|
### question: Tell me the 1st leg for team being budoni (Sardinia) ### answer: SELECT 1 AS st_leg FROM table_name_55 WHERE team_1 = "budoni (sardinia)" ### context: CREATE TABLE table_name_55 (team_1 VARCHAR)
|
### question: How many attended the game at Busch Stadium (ii) when the time was 3:54? ### answer: SELECT attendance FROM table_name_88 WHERE location = "busch stadium (ii)" AND time = "3:54" ### context: CREATE TABLE table_name_88 (attendance VARCHAR, location VARCHAR, time VARCHAR)
|
### question: What dates were the games after game 6 played? ### answer: SELECT date FROM table_name_56 WHERE game > 6 ### context: CREATE TABLE table_name_56 (date VARCHAR, game INTEGER)
|
### question: What is the 1977 value that had Grand Slam Tournaments in 1972? ### answer: SELECT 1977 FROM table_name_9 WHERE 1972 = "grand slam tournaments" ### context: CREATE TABLE table_name_9 (Id VARCHAR)
|
### question: What is the tournament that had Grand Slam Tournaments in 1976? ### answer: SELECT tournament FROM table_name_13 WHERE 1976 = "grand slam tournaments" ### context: CREATE TABLE table_name_13 (tournament VARCHAR)
|
### question: What is the 1976 value of the Australian Open? ### answer: SELECT 1976 FROM table_name_35 WHERE tournament = "australian open" ### context: CREATE TABLE table_name_35 (tournament VARCHAR)
|
### question: What is the 1977 value that has a 1974 a value? ### answer: SELECT 1977 FROM table_name_65 WHERE 1974 = "a" ### context: CREATE TABLE table_name_65 (Id VARCHAR)
|
### question: Which week led to a record of 4-10? ### answer: SELECT week FROM table_name_87 WHERE record = "4-10" ### context: CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR)
|
### question: Which week was the game against the San Diego Chargers? ### answer: SELECT week FROM table_name_91 WHERE opponent = "san diego chargers" ### context: CREATE TABLE table_name_91 (week VARCHAR, opponent VARCHAR)
|
### question: What is the height of the player who is from Huntington, WV? ### answer: SELECT height FROM table_name_93 WHERE hometown = "huntington, wv" ### context: CREATE TABLE table_name_93 (height VARCHAR, hometown VARCHAR)
|
### question: What school is the player who has a hometown of Chicago, IL from? ### answer: SELECT school FROM table_name_45 WHERE hometown = "chicago, il" ### context: CREATE TABLE table_name_45 (school VARCHAR, hometown VARCHAR)
|
### question: Which college is the player from South Medford High School headed to? ### answer: SELECT college FROM table_name_67 WHERE school = "south medford high school" ### context: CREATE TABLE table_name_67 (college VARCHAR, school VARCHAR)
|
### question: Which school is the player who is headed to Duke from? ### answer: SELECT school FROM table_name_68 WHERE college = "duke" ### context: CREATE TABLE table_name_68 (school VARCHAR, college VARCHAR)
|
### question: What is the hometown of the player who is headed to Duke? ### answer: SELECT hometown FROM table_name_83 WHERE college = "duke" ### context: CREATE TABLE table_name_83 (hometown VARCHAR, college VARCHAR)
|
### question: Who was Louise when Tracy Venner was Dainty June? ### answer: SELECT louise FROM table_name_83 WHERE dainty_june = "tracy venner" ### context: CREATE TABLE table_name_83 (louise VARCHAR, dainty_june VARCHAR)
|
### question: Who was Dainty June when Tammy Blanchard was Louise? ### answer: SELECT dainty_june FROM table_name_5 WHERE louise = "tammy blanchard" ### context: CREATE TABLE table_name_5 (dainty_june VARCHAR, louise VARCHAR)
|
### question: Who was Dainty June when Boyd Gaines was Herbie? ### answer: SELECT dainty_june FROM table_name_27 WHERE herbie = "boyd gaines" ### context: CREATE TABLE table_name_27 (dainty_june VARCHAR, herbie VARCHAR)
|
### question: What production had Angela Lansbury as Rose and Barrie Ingham as Herbie? ### answer: SELECT productions FROM table_name_53 WHERE rose = "angela lansbury" AND herbie = "barrie ingham" ### context: CREATE TABLE table_name_53 (productions VARCHAR, rose VARCHAR, herbie VARCHAR)
|
### question: Who was rose in the 1975 Broadway Revival? ### answer: SELECT rose FROM table_name_60 WHERE productions = "1975 broadway revival" ### context: CREATE TABLE table_name_60 (rose VARCHAR, productions VARCHAR)
|
### question: Which production had Rex Robbins as Herbie? ### answer: SELECT productions FROM table_name_96 WHERE herbie = "rex robbins" ### context: CREATE TABLE table_name_96 (productions VARCHAR, herbie VARCHAR)
|
### question: On what date was the venue VFL Park? ### answer: SELECT date FROM table_name_50 WHERE venue = "vfl park" ### context: CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)
|
### question: What date did Footscray play at home? ### answer: SELECT date FROM table_name_92 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_92 (date VARCHAR, home_team VARCHAR)
|
### question: What did the home team score when they played the away team of Geelong? ### answer: SELECT home_team AS score FROM table_name_10 WHERE away_team = "geelong" ### context: CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)
|
### question: What was the lowest pick number for the Boston Celtics? ### answer: SELECT MIN(pick) FROM table_name_5 WHERE team = "boston celtics" ### context: CREATE TABLE table_name_5 (pick INTEGER, team VARCHAR)
|
### question: Who is the visitor team on 23 November 2007? ### answer: SELECT visitor FROM table_name_98 WHERE date = "23 november 2007" ### context: CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR)
|
### question: Who is the leading scorer of the game on 20 November 2007? ### answer: SELECT leading_scorer FROM table_name_61 WHERE date = "20 november 2007" ### context: CREATE TABLE table_name_61 (leading_scorer VARCHAR, date VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.