question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the number of votes for the party which got more than 28 seats?
CREATE TABLE table_name_67 (votes VARCHAR, seats INTEGER)
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 which got more than 28 seats? ### Answer: 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)
SELECT MIN(votes) FROM table_name_86 WHERE party = "labour"
### Context: CREATE TABLE table_name_86 (votes INTEGER, party VARCHAR) ### Question: What is the number of votes for the Party of Labour? ### Answer: 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)
SELECT percentage FROM table_name_15 WHERE seats = 80
### Context: CREATE TABLE table_name_15 (percentage VARCHAR, seats 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
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)
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: 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
Which highest number of Seats has votes of 244,867?
CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR)
SELECT MAX(seats) FROM table_name_83 WHERE votes = 244 OFFSET 867
### Context: CREATE TABLE table_name_83 (seats INTEGER, votes 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
What was the Date of the game of the Home team of melbourne?
CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)
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 Date of the game of the Home team of melbourne? ### Answer: 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)
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 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"
what was the away team for the north melbourne home team?
CREATE TABLE table_name_60 (away_team VARCHAR, home_team VARCHAR)
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 for the north melbourne home team? ### Answer: 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)
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 score in a game with north melbourne as home team? ### Answer: 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)
SELECT away_team AS score FROM table_name_15 WHERE away_team = "st kilda"
### Context: CREATE TABLE table_name_15 (away_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"
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)
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: 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
What does a hand of Theoretical return have as a 3 credit?
CREATE TABLE table_name_34 (hand VARCHAR)
SELECT 3 AS _credits FROM table_name_34 WHERE hand = "theoretical return"
### Context: CREATE TABLE table_name_34 (hand 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"
What does full house have as a 5 credits?
CREATE TABLE table_name_58 (hand VARCHAR)
SELECT 5 AS _credits FROM table_name_58 WHERE hand = "full house"
### Context: CREATE TABLE table_name_58 (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"
What would be the 4 credits result of a straight?
CREATE TABLE table_name_28 (hand VARCHAR)
SELECT 4 AS _credits FROM table_name_28 WHERE hand = "straight"
### Context: CREATE TABLE table_name_28 (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"
Who was the home team at the game that had a score of 2 – 2?
CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_96 WHERE score = "2 – 2"
### Context: CREATE TABLE table_name_96 (home VARCHAR, score 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"
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)
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 Colorado was the visiting team and Chicago was the home team? ### Answer: 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)
SELECT date FROM table_name_34 WHERE record = "8–3–1"
### Context: CREATE TABLE table_name_34 (date VARCHAR, record 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"
Who was the opponents of the 5th Wicket Partnership?
CREATE TABLE table_name_3 (opponents VARCHAR, wicket_partnership VARCHAR)
SELECT opponents FROM table_name_3 WHERE wicket_partnership = "5th"
### Context: CREATE TABLE table_name_3 (opponents VARCHAR, wicket_partnership VARCHAR) ### Question: Who was the opponents of the 5th Wicket Partnership? ### Answer: 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)
SELECT season FROM table_name_70 WHERE competition = "champions league"
### Context: CREATE TABLE table_name_70 (season VARCHAR, competition VARCHAR) ### Question: In which season was there a competition in the Champions League? ### Answer: 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)
SELECT score FROM table_name_68 WHERE club = "rsc anderlecht"
### Context: CREATE TABLE table_name_68 (score VARCHAR, club VARCHAR) ### Question: What scores did the RSC Anderlecht club have? ### Answer: 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)
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: 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"
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)
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 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
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)
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: 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"
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)
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 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"
I want the constructor for brakes and grid less than 14
CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)
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: 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
How may episodes did season 1 have?
CREATE TABLE table_name_22 (episodes VARCHAR, season_no VARCHAR)
SELECT COUNT(episodes) FROM table_name_22 WHERE season_no = 1
### Context: CREATE TABLE table_name_22 (episodes VARCHAR, season_no VARCHAR) ### Question: How may episodes did season 1 have? ### Answer: 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)
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: 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"
What was the entrant in round 16 were Ferrari was the constructor?
CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)
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: 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"
Tell me the country with ICAO of zgha
CREATE TABLE table_name_71 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_71 WHERE icao = "zgha"
### Context: CREATE TABLE table_name_71 (country VARCHAR, icao VARCHAR) ### Question: Tell me the country with ICAO of zgha ### Answer: 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)
SELECT icao FROM table_name_51 WHERE city = "xi'an"
### Context: CREATE TABLE table_name_51 (icao VARCHAR, city VARCHAR) ### Question: I want the ICAO for city of xi'an ### Answer: 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)
SELECT iata FROM table_name_32 WHERE icao = "zgkl"
### Context: CREATE TABLE table_name_32 (iata VARCHAR, icao VARCHAR) ### Question: I want the IATA for ICAO of zgkl ### Answer: 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)
SELECT region FROM table_name_28 WHERE icao = "vmmc"
### Context: CREATE TABLE table_name_28 (region VARCHAR, icao VARCHAR) ### Question: I want the region for ICAO of vmmc ### Answer: 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)
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: 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
Who built the car that has a Time/Retired of 1:36:38.887?
CREATE TABLE table_name_66 (constructor VARCHAR, time_retired VARCHAR)
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 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"
Who was the leading scorer on 9 January 2008?
CREATE TABLE table_name_99 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_99 WHERE date = "9 january 2008"
### Context: CREATE TABLE table_name_99 (leading_scorer VARCHAR, date VARCHAR) ### Question: Who was the leading scorer on 9 January 2008? ### Answer: 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)
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 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
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)
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 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
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)
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 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
What is the Crowd number for the Away team of Richmond?
CREATE TABLE table_name_41 (crowd INTEGER, away_team VARCHAR)
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 Crowd number for the Away team of Richmond? ### Answer: 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)
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 Home team score for the Venue named Glenferrie Oval? ### Answer: 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)
SELECT MIN(crowd) FROM table_name_96 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_96 (crowd INTEGER, 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"
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)
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 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"
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)
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: 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"
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)
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: 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"
I want the event for method of points with notes of opening round
CREATE TABLE table_name_16 (event VARCHAR, method VARCHAR, notes VARCHAR)
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: 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"
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)
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: 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
What denomination is mt lawley?
CREATE TABLE table_name_5 (denomination VARCHAR, location VARCHAR)
SELECT denomination FROM table_name_5 WHERE location = "mt lawley"
### Context: CREATE TABLE table_name_5 (denomination VARCHAR, location VARCHAR) ### Question: What denomination is mt lawley? ### Answer: 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)
SELECT day_boarding FROM table_name_84 WHERE location = "mt lawley"
### Context: CREATE TABLE table_name_84 (day_boarding VARCHAR, location VARCHAR) ### Question: Is mt lawley day or boarding? ### Answer: 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)
SELECT AVG(founded) FROM table_name_6 WHERE location = "claremont"
### Context: CREATE TABLE table_name_6 (founded INTEGER, location VARCHAR) ### Question: What is the average year founded for schools in claremont? ### Answer: 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)
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 north melbourne was the home team who was the Away team? ### Answer: 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)
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 collingwood played as the home team who was the away team? ### Answer: 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)
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: 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"
What is the lowest attendance for a stadium that has an average smaller than 307?
CREATE TABLE table_name_24 (lowest INTEGER, average INTEGER)
SELECT AVG(lowest) FROM table_name_24 WHERE average < 307
### Context: CREATE TABLE table_name_24 (lowest INTEGER, average INTEGER) ### 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
When the home team was South Melbourne, what did the away team score?
CREATE TABLE table_name_64 (away_team VARCHAR, home_team VARCHAR)
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: 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"
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)
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 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
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)
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 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
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)
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 number of silvers a team with more than 95 total medals has? ### Answer: 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)
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: 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
Who is the home team who plays at Glenferrie Oval?
CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_95 WHERE venue = "glenferrie oval"
### Context: CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR) ### Question: Who is the home team who plays at Glenferrie Oval? ### Answer: 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)
SELECT away_team AS score FROM table_name_29 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_29 (away_team VARCHAR) ### Question: What did the away team Carlton score? ### Answer: 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)
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: 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"
Who was the host that garnered ratings of 9.4/27?
CREATE TABLE table_name_29 (host VARCHAR, ratings VARCHAR)
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 host that garnered ratings of 9.4/27? ### Answer: 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)
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 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"
Who was the host that garnered ratings of 9.6/26?
CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR)
SELECT host FROM table_name_30 WHERE ratings = "9.6/26"
### Context: CREATE TABLE table_name_30 (host 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"
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)
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: 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"
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)
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: 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"
What was the lowest Attendance for Games played on the Date of February 5?
CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)
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 lowest Attendance for Games played on the Date of February 5? ### Answer: 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)
SELECT SUM(attendance) FROM table_name_61 WHERE visitor = "chicago"
### Context: CREATE TABLE table_name_61 (attendance INTEGER, visitor 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"
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)
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: 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
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)
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: 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
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)
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 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"
Who had the fastest lap at the Australian Grand Prix?
CREATE TABLE table_name_36 (fastest_lap VARCHAR, grand_prix VARCHAR)
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: Who had the fastest lap at the Australian Grand Prix? ### Answer: 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)
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 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)"
Tell me the team 1 for team 2 being civitavecchiese (latium a)
CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR)
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 team 1 for team 2 being civitavecchiese (latium a) ### Answer: 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)
SELECT 1 AS st_leg FROM table_name_55 WHERE team_1 = "budoni (sardinia)"
### Context: CREATE TABLE table_name_55 (team_1 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)"
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)
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: 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"
What dates were the games after game 6 played?
CREATE TABLE table_name_56 (date VARCHAR, game INTEGER)
SELECT date FROM table_name_56 WHERE game > 6
### Context: CREATE TABLE table_name_56 (date VARCHAR, game INTEGER) ### Question: What dates were the games after game 6 played? ### Answer: 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)
SELECT 1977 FROM table_name_9 WHERE 1972 = "grand slam tournaments"
### Context: CREATE TABLE table_name_9 (Id VARCHAR) ### 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"
What is the tournament that had Grand Slam Tournaments in 1976?
CREATE TABLE table_name_13 (tournament VARCHAR)
SELECT tournament FROM table_name_13 WHERE 1976 = "grand slam tournaments"
### Context: CREATE TABLE table_name_13 (tournament 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"
What is the 1976 value of the Australian Open?
CREATE TABLE table_name_35 (tournament VARCHAR)
SELECT 1976 FROM table_name_35 WHERE tournament = "australian open"
### Context: CREATE TABLE table_name_35 (tournament VARCHAR) ### Question: What is the 1976 value of the Australian Open? ### Answer: 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)
SELECT 1977 FROM table_name_65 WHERE 1974 = "a"
### Context: CREATE TABLE table_name_65 (Id VARCHAR) ### Question: What is the 1977 value that has a 1974 a value? ### Answer: 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)
SELECT week FROM table_name_87 WHERE record = "4-10"
### Context: CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR) ### Question: Which week led to a record of 4-10? ### Answer: 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)
SELECT week FROM table_name_91 WHERE opponent = "san diego chargers"
### Context: CREATE TABLE table_name_91 (week VARCHAR, opponent VARCHAR) ### Question: Which week was the game against the San Diego Chargers? ### Answer: 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)
SELECT height FROM table_name_93 WHERE hometown = "huntington, wv"
### Context: CREATE TABLE table_name_93 (height VARCHAR, hometown 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"
What school is the player who has a hometown of Chicago, IL from?
CREATE TABLE table_name_45 (school VARCHAR, hometown VARCHAR)
SELECT school FROM table_name_45 WHERE hometown = "chicago, il"
### Context: CREATE TABLE table_name_45 (school 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"
Which college is the player from South Medford High School headed to?
CREATE TABLE table_name_67 (college VARCHAR, school VARCHAR)
SELECT college FROM table_name_67 WHERE school = "south medford high school"
### Context: CREATE TABLE table_name_67 (college VARCHAR, school 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"
Which school is the player who is headed to Duke from?
CREATE TABLE table_name_68 (school VARCHAR, college VARCHAR)
SELECT school FROM table_name_68 WHERE college = "duke"
### Context: CREATE TABLE table_name_68 (school VARCHAR, college VARCHAR) ### Question: Which school is the player who is headed to Duke from? ### Answer: 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)
SELECT hometown FROM table_name_83 WHERE college = "duke"
### Context: CREATE TABLE table_name_83 (hometown 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"
Who was Louise when Tracy Venner was Dainty June?
CREATE TABLE table_name_83 (louise VARCHAR, dainty_june VARCHAR)
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 Louise when Tracy Venner was Dainty June? ### Answer: 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)
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 Tammy Blanchard was Louise? ### Answer: 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)
SELECT dainty_june FROM table_name_27 WHERE herbie = "boyd gaines"
### Context: CREATE TABLE table_name_27 (dainty_june VARCHAR, herbie VARCHAR) ### Question: Who was Dainty June when Boyd Gaines was Herbie? ### Answer: 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)
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: 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"
Who was rose in the 1975 Broadway Revival?
CREATE TABLE table_name_60 (rose VARCHAR, productions VARCHAR)
SELECT rose FROM table_name_60 WHERE productions = "1975 broadway revival"
### Context: CREATE TABLE table_name_60 (rose VARCHAR, productions VARCHAR) ### Question: Who was rose in the 1975 Broadway Revival? ### Answer: 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)
SELECT productions FROM table_name_96 WHERE herbie = "rex robbins"
### Context: CREATE TABLE table_name_96 (productions VARCHAR, herbie VARCHAR) ### Question: Which production had Rex Robbins as Herbie? ### Answer: 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)
SELECT date FROM table_name_50 WHERE venue = "vfl park"
### Context: CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR) ### Question: On what date was the venue VFL Park? ### Answer: 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)
SELECT date FROM table_name_92 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_92 (date VARCHAR, home_team VARCHAR) ### Question: What date did Footscray play at home? ### Answer: 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)
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 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"
What was the lowest pick number for the Boston Celtics?
CREATE TABLE table_name_5 (pick INTEGER, team VARCHAR)
SELECT MIN(pick) FROM table_name_5 WHERE team = "boston celtics"
### Context: CREATE TABLE table_name_5 (pick INTEGER, 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"
Who is the visitor team on 23 November 2007?
CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR)
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 visitor team on 23 November 2007? ### Answer: 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)
SELECT leading_scorer FROM table_name_61 WHERE date = "20 november 2007"
### Context: CREATE TABLE table_name_61 (leading_scorer 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"