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