question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which dance style had a draw smaller than 15 and 18 points? | CREATE TABLE table_name_54 (dance_styles VARCHAR, draw VARCHAR, points VARCHAR) | SELECT dance_styles FROM table_name_54 WHERE draw < 15 AND points = 18 | ### Context: CREATE TABLE table_name_54 (dance_styles VARCHAR, draw VARCHAR, points VARCHAR) ### Question: Which dance style had a draw smaller than 15 and 18 points? ### Answer: SELECT dance_styles FROM table_name_54 WHERE draw < 15 AND points = 18 |
What was the away team's score for the match played at Victoria Park? | CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_89 WHERE venue = "victoria park" | ### Context: CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score for the match played at Victoria Park? ### Answer: SELECT away_team AS score FROM table_name_89 WHERE venue = "victoria park" |
What is Collingwood's home venue? | CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_45 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR) ### Question: What is Collingwood's home venue? ### Answer: SELECT venue FROM table_name_45 WHERE home_team = "collingwood" |
What was the away teams score when they played Carlton? | CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_19 WHERE home_team = "carlton" | ### Context: CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the away teams score when they played Carlton? ### Answer: SELECT away_team AS score FROM table_name_19 WHERE home_team = "carlton" |
What is the latest year featuring candace parker? | CREATE TABLE table_name_47 (year INTEGER, player VARCHAR) | SELECT MAX(year) FROM table_name_47 WHERE player = "candace parker" | ### Context: CREATE TABLE table_name_47 (year INTEGER, player VARCHAR) ### Question: What is the latest year featuring candace parker? ### Answer: SELECT MAX(year) FROM table_name_47 WHERE player = "candace parker" |
What is the largest crowd when north melbourne is the home side? | CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_94 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR) ### Question: What is the largest crowd when north melbourne is the home side? ### Answer: SELECT MAX(crowd) FROM table_name_94 WHERE home_team = "north melbourne" |
What is the smallest crowd at victoria park? | CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_22 WHERE venue = "victoria park" | ### Context: CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR) ### Question: What is the smallest crowd at victoria park? ### Answer: SELECT MIN(crowd) FROM table_name_22 WHERE venue = "victoria park" |
What day was geelong the away side? | CREATE TABLE table_name_96 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_96 WHERE away_team = "geelong" | ### Context: CREATE TABLE table_name_96 (date VARCHAR, away_team VARCHAR) ### Question: What day was geelong the away side? ### Answer: SELECT date FROM table_name_96 WHERE away_team = "geelong" |
What is the name of the stadium in Brisbane? | CREATE TABLE table_name_17 (stadium VARCHAR, city VARCHAR) | SELECT stadium FROM table_name_17 WHERE city = "brisbane" | ### Context: CREATE TABLE table_name_17 (stadium VARCHAR, city VARCHAR) ### Question: What is the name of the stadium in Brisbane? ### Answer: SELECT stadium FROM table_name_17 WHERE city = "brisbane" |
What was the result of the match that had a score of 58-6? | CREATE TABLE table_name_92 (result VARCHAR, score VARCHAR) | SELECT result FROM table_name_92 WHERE score = "58-6" | ### Context: CREATE TABLE table_name_92 (result VARCHAR, score VARCHAR) ### Question: What was the result of the match that had a score of 58-6? ### Answer: SELECT result FROM table_name_92 WHERE score = "58-6" |
What was the score for the match that had the result of Hunter Mariners def. Castleford Tigers? | CREATE TABLE table_name_12 (score VARCHAR, result VARCHAR) | SELECT score FROM table_name_12 WHERE result = "hunter mariners def. castleford tigers" | ### Context: CREATE TABLE table_name_12 (score VARCHAR, result VARCHAR) ### Question: What was the score for the match that had the result of Hunter Mariners def. Castleford Tigers? ### Answer: SELECT score FROM table_name_12 WHERE result = "hunter mariners def. castleford tigers" |
For the match ending in a score of 66-20, what was the stadium? | CREATE TABLE table_name_92 (stadium VARCHAR, score VARCHAR) | SELECT stadium FROM table_name_92 WHERE score = "66-20" | ### Context: CREATE TABLE table_name_92 (stadium VARCHAR, score VARCHAR) ### Question: For the match ending in a score of 66-20, what was the stadium? ### Answer: SELECT stadium FROM table_name_92 WHERE score = "66-20" |
In what city is the Don Valley Stadium located? | CREATE TABLE table_name_61 (city VARCHAR, stadium VARCHAR) | SELECT city FROM table_name_61 WHERE stadium = "don valley stadium" | ### Context: CREATE TABLE table_name_61 (city VARCHAR, stadium VARCHAR) ### Question: In what city is the Don Valley Stadium located? ### Answer: SELECT city FROM table_name_61 WHERE stadium = "don valley stadium" |
Which championship was the 100m backstroke performed? | CREATE TABLE table_name_22 (meet VARCHAR, event VARCHAR) | SELECT meet FROM table_name_22 WHERE event = "100m backstroke" | ### Context: CREATE TABLE table_name_22 (meet VARCHAR, event VARCHAR) ### Question: Which championship was the 100m backstroke performed? ### Answer: SELECT meet FROM table_name_22 WHERE event = "100m backstroke" |
What event has a time of 7:45.67? | CREATE TABLE table_name_62 (event VARCHAR, time VARCHAR) | SELECT event FROM table_name_62 WHERE time = "7:45.67" | ### Context: CREATE TABLE table_name_62 (event VARCHAR, time VARCHAR) ### Question: What event has a time of 7:45.67? ### Answer: SELECT event FROM table_name_62 WHERE time = "7:45.67" |
What nationality has a year larger than 2009 with a position of power forward? | CREATE TABLE table_name_32 (nationality VARCHAR, year VARCHAR, position VARCHAR) | SELECT nationality FROM table_name_32 WHERE year > 2009 AND position = "power forward" | ### Context: CREATE TABLE table_name_32 (nationality VARCHAR, year VARCHAR, position VARCHAR) ### Question: What nationality has a year larger than 2009 with a position of power forward? ### Answer: SELECT nationality FROM table_name_32 WHERE year > 2009 AND position = "power forward" |
Who plays for the chicago bulls? | CREATE TABLE table_name_92 (player VARCHAR, team VARCHAR) | SELECT player FROM table_name_92 WHERE team = "chicago bulls" | ### Context: CREATE TABLE table_name_92 (player VARCHAR, team VARCHAR) ### Question: Who plays for the chicago bulls? ### Answer: SELECT player FROM table_name_92 WHERE team = "chicago bulls" |
What are the main places for the streymoy region with an area of larger than 6.1? | CREATE TABLE table_name_91 (main_places VARCHAR, regions VARCHAR, area VARCHAR) | SELECT main_places FROM table_name_91 WHERE regions = "streymoy" AND area > 6.1 | ### Context: CREATE TABLE table_name_91 (main_places VARCHAR, regions VARCHAR, area VARCHAR) ### Question: What are the main places for the streymoy region with an area of larger than 6.1? ### Answer: SELECT main_places FROM table_name_91 WHERE regions = "streymoy" AND area > 6.1 |
What is the sum of people per km2 for the sandoy region with an area of 112.1? | CREATE TABLE table_name_41 (people_per_km² INTEGER, regions VARCHAR, area VARCHAR) | SELECT SUM(people_per_km²) FROM table_name_41 WHERE regions = "sandoy" AND area = 112.1 | ### Context: CREATE TABLE table_name_41 (people_per_km² INTEGER, regions VARCHAR, area VARCHAR) ### Question: What is the sum of people per km2 for the sandoy region with an area of 112.1? ### Answer: SELECT SUM(people_per_km²) FROM table_name_41 WHERE regions = "sandoy" AND area = 112.1 |
what is the week there were 41,604 people in attendance? | CREATE TABLE table_name_62 (week INTEGER, attendance VARCHAR) | SELECT AVG(week) FROM table_name_62 WHERE attendance = 41 OFFSET 604 | ### Context: CREATE TABLE table_name_62 (week INTEGER, attendance VARCHAR) ### Question: what is the week there were 41,604 people in attendance? ### Answer: SELECT AVG(week) FROM table_name_62 WHERE attendance = 41 OFFSET 604 |
What is the average crowd size for games with hawthorn as the home side? | CREATE TABLE table_name_8 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_8 WHERE home_team = "hawthorn" | ### Context: CREATE TABLE table_name_8 (crowd INTEGER, home_team VARCHAR) ### Question: What is the average crowd size for games with hawthorn as the home side? ### Answer: SELECT AVG(crowd) FROM table_name_8 WHERE home_team = "hawthorn" |
What is the home team's score at glenferrie oval? | CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_66 WHERE venue = "glenferrie oval" | ### Context: CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team's score at glenferrie oval? ### Answer: SELECT home_team AS score FROM table_name_66 WHERE venue = "glenferrie oval" |
Who had the lowest Best time that also had a Qual 2 of 49.887? | CREATE TABLE table_name_13 (best INTEGER, qual_2 VARCHAR) | SELECT MIN(best) FROM table_name_13 WHERE qual_2 = "49.887" | ### Context: CREATE TABLE table_name_13 (best INTEGER, qual_2 VARCHAR) ### Question: Who had the lowest Best time that also had a Qual 2 of 49.887? ### Answer: SELECT MIN(best) FROM table_name_13 WHERE qual_2 = "49.887" |
What was CTE Racing-hvm's Best with a Qual 2 of 50.312? | CREATE TABLE table_name_77 (best VARCHAR, team VARCHAR, qual_2 VARCHAR) | SELECT best FROM table_name_77 WHERE team = "cte racing-hvm" AND qual_2 = "50.312" | ### Context: CREATE TABLE table_name_77 (best VARCHAR, team VARCHAR, qual_2 VARCHAR) ### Question: What was CTE Racing-hvm's Best with a Qual 2 of 50.312? ### Answer: SELECT best FROM table_name_77 WHERE team = "cte racing-hvm" AND qual_2 = "50.312" |
What was the home team score when essendon was the away team? | CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_51 WHERE away_team = "essendon" | ### Context: CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score when essendon was the away team? ### Answer: SELECT home_team AS score FROM table_name_51 WHERE away_team = "essendon" |
When richmond was the Away team what was the score of the home team? | CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_37 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) ### Question: When richmond was the Away team what was the score of the home team? ### Answer: SELECT home_team AS score FROM table_name_37 WHERE away_team = "richmond" |
Which service does the network of atn urdu offer? | CREATE TABLE table_name_74 (service VARCHAR, network VARCHAR) | SELECT service FROM table_name_74 WHERE network = "atn urdu" | ### Context: CREATE TABLE table_name_74 (service VARCHAR, network VARCHAR) ### Question: Which service does the network of atn urdu offer? ### Answer: SELECT service FROM table_name_74 WHERE network = "atn urdu" |
Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable? | CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR) | SELECT origin_of_programming FROM table_name_12 WHERE genre = "general" AND network = "ntv bangla" AND service = "cogeco cable" | ### Context: CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR) ### Question: Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable? ### Answer: SELECT origin_of_programming FROM table_name_12 WHERE genre = "general" AND network = "ntv bangla" AND service = "cogeco cable" |
Which service has a hindi language, general genre and zee tv network? | CREATE TABLE table_name_95 (service VARCHAR, network VARCHAR, language VARCHAR, genre VARCHAR) | SELECT service FROM table_name_95 WHERE language = "hindi" AND genre = "general" AND network = "zee tv" | ### Context: CREATE TABLE table_name_95 (service VARCHAR, network VARCHAR, language VARCHAR, genre VARCHAR) ### Question: Which service has a hindi language, general genre and zee tv network? ### Answer: SELECT service FROM table_name_95 WHERE language = "hindi" AND genre = "general" AND network = "zee tv" |
Which network has an origina of Programming in India, a general genre, a service of bell fibe tv, and tamil as its language? | CREATE TABLE table_name_9 (network VARCHAR, language VARCHAR, service VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) | SELECT network FROM table_name_9 WHERE origin_of_programming = "india" AND genre = "general" AND service = "bell fibe tv" AND language = "tamil" | ### Context: CREATE TABLE table_name_9 (network VARCHAR, language VARCHAR, service VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) ### Question: Which network has an origina of Programming in India, a general genre, a service of bell fibe tv, and tamil as its language? ### Answer: SELECT network FROM table_name_9 WHERE origin_of_programming = "india" AND genre = "general" AND service = "bell fibe tv" AND language = "tamil" |
Which language has Programming from India, general genre, a network of ptc punjabi and bell fibe tv service? | CREATE TABLE table_name_80 (language VARCHAR, service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) | SELECT language FROM table_name_80 WHERE origin_of_programming = "india" AND genre = "general" AND network = "ptc punjabi" AND service = "bell fibe tv" | ### Context: CREATE TABLE table_name_80 (language VARCHAR, service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) ### Question: Which language has Programming from India, general genre, a network of ptc punjabi and bell fibe tv service? ### Answer: SELECT language FROM table_name_80 WHERE origin_of_programming = "india" AND genre = "general" AND network = "ptc punjabi" AND service = "bell fibe tv" |
What is the average number of bronzes when the rank is below 11 for trinidad and tobago with less than 1 total medal? | CREATE TABLE table_name_94 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR) | SELECT AVG(bronze) FROM table_name_94 WHERE rank < 11 AND nation = "trinidad and tobago" AND total < 1 | ### Context: CREATE TABLE table_name_94 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR) ### Question: What is the average number of bronzes when the rank is below 11 for trinidad and tobago with less than 1 total medal? ### Answer: SELECT AVG(bronze) FROM table_name_94 WHERE rank < 11 AND nation = "trinidad and tobago" AND total < 1 |
What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10? | CREATE TABLE table_name_86 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) | SELECT SUM(gold) FROM table_name_86 WHERE silver = 1 AND bronze < 2 AND total = 1 AND rank < 10 | ### Context: CREATE TABLE table_name_86 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) ### Question: What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10? ### Answer: SELECT SUM(gold) FROM table_name_86 WHERE silver = 1 AND bronze < 2 AND total = 1 AND rank < 10 |
Who did Winfield Scott have an allegiance with? | CREATE TABLE table_name_28 (allegiance VARCHAR, name VARCHAR) | SELECT allegiance FROM table_name_28 WHERE name = "winfield scott" | ### Context: CREATE TABLE table_name_28 (allegiance VARCHAR, name VARCHAR) ### Question: Who did Winfield Scott have an allegiance with? ### Answer: SELECT allegiance FROM table_name_28 WHERE name = "winfield scott" |
What was the July 2013 population estimate of the location which had a population density larger than 14.1? | CREATE TABLE table_name_10 (population_density___km_2__ INTEGER) | SELECT COUNT(2013 AS _population__july_est_) FROM table_name_10 WHERE population_density___km_2__ > 14.1 | ### Context: CREATE TABLE table_name_10 (population_density___km_2__ INTEGER) ### Question: What was the July 2013 population estimate of the location which had a population density larger than 14.1? ### Answer: SELECT COUNT(2013 AS _population__july_est_) FROM table_name_10 WHERE population_density___km_2__ > 14.1 |
What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%? | CREATE TABLE table_name_45 (rank INTEGER, population_density___km_2__ VARCHAR, _percentage_growth__2006_11_ VARCHAR) | SELECT MAX(rank) FROM table_name_45 WHERE population_density___km_2__ > 5.7 AND _percentage_growth__2006_11_ = "5.7%" | ### Context: CREATE TABLE table_name_45 (rank INTEGER, population_density___km_2__ VARCHAR, _percentage_growth__2006_11_ VARCHAR) ### Question: What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%? ### Answer: SELECT MAX(rank) FROM table_name_45 WHERE population_density___km_2__ > 5.7 AND _percentage_growth__2006_11_ = "5.7%" |
What was the lowest 2011 Census population of an area with a land area larger than 908,607.67 km²? | CREATE TABLE table_name_38 (population___2011_census__ INTEGER, land_area__km²_ INTEGER) | SELECT MIN(population___2011_census__) FROM table_name_38 WHERE land_area__km²_ > 908 OFFSET 607.67 | ### Context: CREATE TABLE table_name_38 (population___2011_census__ INTEGER, land_area__km²_ INTEGER) ### Question: What was the lowest 2011 Census population of an area with a land area larger than 908,607.67 km²? ### Answer: SELECT MIN(population___2011_census__) FROM table_name_38 WHERE land_area__km²_ > 908 OFFSET 607.67 |
Which rider from the 1971 Isle of Man Junior TT 250cc final standings had a speed equal to 86.15mph? | CREATE TABLE table_name_78 (rider VARCHAR, speed VARCHAR) | SELECT rider FROM table_name_78 WHERE speed = "86.15mph" | ### Context: CREATE TABLE table_name_78 (rider VARCHAR, speed VARCHAR) ### Question: Which rider from the 1971 Isle of Man Junior TT 250cc final standings had a speed equal to 86.15mph? ### Answer: SELECT rider FROM table_name_78 WHERE speed = "86.15mph" |
Which rider had a points score equal to 10? | CREATE TABLE table_name_60 (rider VARCHAR, points VARCHAR) | SELECT rider FROM table_name_60 WHERE points = 10 | ### Context: CREATE TABLE table_name_60 (rider VARCHAR, points VARCHAR) ### Question: Which rider had a points score equal to 10? ### Answer: SELECT rider FROM table_name_60 WHERE points = 10 |
Which Start has a 0 Conv, 0 Pens and 8 Tries? | CREATE TABLE table_name_54 (start VARCHAR, tries VARCHAR, conv VARCHAR, pens VARCHAR) | SELECT start FROM table_name_54 WHERE conv = "0" AND pens = "0" AND tries = "8" | ### Context: CREATE TABLE table_name_54 (start VARCHAR, tries VARCHAR, conv VARCHAR, pens VARCHAR) ### Question: Which Start has a 0 Conv, 0 Pens and 8 Tries? ### Answer: SELECT start FROM table_name_54 WHERE conv = "0" AND pens = "0" AND tries = "8" |
Which Player has 0 Pens and 12 Starts? | CREATE TABLE table_name_42 (player VARCHAR, pens VARCHAR, start VARCHAR) | SELECT player FROM table_name_42 WHERE pens = "0" AND start = "12" | ### Context: CREATE TABLE table_name_42 (player VARCHAR, pens VARCHAR, start VARCHAR) ### Question: Which Player has 0 Pens and 12 Starts? ### Answer: SELECT player FROM table_name_42 WHERE pens = "0" AND start = "12" |
Which Start has 8 Tries and 0 Convs? | CREATE TABLE table_name_58 (start VARCHAR, tries VARCHAR, conv VARCHAR) | SELECT start FROM table_name_58 WHERE tries = "8" AND conv = "0" | ### Context: CREATE TABLE table_name_58 (start VARCHAR, tries VARCHAR, conv VARCHAR) ### Question: Which Start has 8 Tries and 0 Convs? ### Answer: SELECT start FROM table_name_58 WHERE tries = "8" AND conv = "0" |
Who was the away team for the game at Victoria Park? | CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_47 WHERE venue = "victoria park" | ### Context: CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team for the game at Victoria Park? ### Answer: SELECT away_team FROM table_name_47 WHERE venue = "victoria park" |
What was round 7's lowest overall? | CREATE TABLE table_name_72 (overall INTEGER, round VARCHAR) | SELECT MIN(overall) FROM table_name_72 WHERE round = 7 | ### Context: CREATE TABLE table_name_72 (overall INTEGER, round VARCHAR) ### Question: What was round 7's lowest overall? ### Answer: SELECT MIN(overall) FROM table_name_72 WHERE round = 7 |
Who had the smallest overall under 22? | CREATE TABLE table_name_51 (player VARCHAR, overall INTEGER) | SELECT player FROM table_name_51 WHERE overall < 22 | ### Context: CREATE TABLE table_name_51 (player VARCHAR, overall INTEGER) ### Question: Who had the smallest overall under 22? ### Answer: SELECT player FROM table_name_51 WHERE overall < 22 |
What was Cal State-Los Angeles' position with an Overall above 22? | CREATE TABLE table_name_77 (position VARCHAR, overall VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_77 WHERE overall > 22 AND school_club_team = "cal state-los angeles" | ### Context: CREATE TABLE table_name_77 (position VARCHAR, overall VARCHAR, school_club_team VARCHAR) ### Question: What was Cal State-Los Angeles' position with an Overall above 22? ### Answer: SELECT position FROM table_name_77 WHERE overall > 22 AND school_club_team = "cal state-los angeles" |
Who played for Memphis State? | CREATE TABLE table_name_47 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_47 WHERE school_club_team = "memphis state" | ### Context: CREATE TABLE table_name_47 (player VARCHAR, school_club_team VARCHAR) ### Question: Who played for Memphis State? ### Answer: SELECT player FROM table_name_47 WHERE school_club_team = "memphis state" |
What is the largest crowd for the St Kilda as the away team? | CREATE TABLE table_name_26 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_26 WHERE away_team = "st kilda" | ### Context: CREATE TABLE table_name_26 (crowd INTEGER, away_team VARCHAR) ### Question: What is the largest crowd for the St Kilda as the away team? ### Answer: SELECT MAX(crowd) FROM table_name_26 WHERE away_team = "st kilda" |
What was the crowd size when Essendon was the home team? | CREATE TABLE table_name_98 (crowd VARCHAR, home_team VARCHAR) | SELECT crowd FROM table_name_98 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_98 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the crowd size when Essendon was the home team? ### Answer: SELECT crowd FROM table_name_98 WHERE home_team = "essendon" |
Which venue had a crowd larger than 20,000? | CREATE TABLE table_name_68 (venue VARCHAR, crowd INTEGER) | SELECT venue FROM table_name_68 WHERE crowd > 20 OFFSET 000 | ### Context: CREATE TABLE table_name_68 (venue VARCHAR, crowd INTEGER) ### Question: Which venue had a crowd larger than 20,000? ### Answer: SELECT venue FROM table_name_68 WHERE crowd > 20 OFFSET 000 |
Which away team played at Lake Oval? | CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_50 WHERE venue = "lake oval" | ### Context: CREATE TABLE table_name_50 (away_team VARCHAR, venue VARCHAR) ### Question: Which away team played at Lake Oval? ### Answer: SELECT away_team FROM table_name_50 WHERE venue = "lake oval" |
What is the total number of the crowd at Glenferrie Oval? | CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR) | SELECT COUNT(crowd) FROM table_name_28 WHERE venue = "glenferrie oval" | ### Context: CREATE TABLE table_name_28 (crowd VARCHAR, venue VARCHAR) ### Question: What is the total number of the crowd at Glenferrie Oval? ### Answer: SELECT COUNT(crowd) FROM table_name_28 WHERE venue = "glenferrie oval" |
The Western Oval venue has what date? | CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_37 WHERE venue = "western oval" | ### Context: CREATE TABLE table_name_37 (date VARCHAR, venue VARCHAR) ### Question: The Western Oval venue has what date? ### Answer: SELECT date FROM table_name_37 WHERE venue = "western oval" |
What is the kickoff time for the Miami Dolphins? | CREATE TABLE table_name_81 (kickoff VARCHAR, opponent VARCHAR) | SELECT kickoff FROM table_name_81 WHERE opponent = "miami dolphins" | ### Context: CREATE TABLE table_name_81 (kickoff VARCHAR, opponent VARCHAR) ### Question: What is the kickoff time for the Miami Dolphins? ### Answer: SELECT kickoff FROM table_name_81 WHERE opponent = "miami dolphins" |
What was the final of the New England Patriots game? | CREATE TABLE table_name_66 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_66 WHERE opponent = "new england patriots" | ### Context: CREATE TABLE table_name_66 (result VARCHAR, opponent VARCHAR) ### Question: What was the final of the New England Patriots game? ### Answer: SELECT result FROM table_name_66 WHERE opponent = "new england patriots" |
What is the largest attendance on august 10, 1963, and a week larger than 1? | CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR, week VARCHAR) | SELECT MAX(attendance) FROM table_name_75 WHERE date = "august 10, 1963" AND week > 1 | ### Context: CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: What is the largest attendance on august 10, 1963, and a week larger than 1? ### Answer: SELECT MAX(attendance) FROM table_name_75 WHERE date = "august 10, 1963" AND week > 1 |
What was the score of the away team when the home team was south melbourne? | CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_79 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the score of the away team when the home team was south melbourne? ### Answer: SELECT away_team AS score FROM table_name_79 WHERE home_team = "south melbourne" |
What is the smallest crowd at princes park? | CREATE TABLE table_name_57 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_57 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_57 (crowd INTEGER, venue VARCHAR) ### Question: What is the smallest crowd at princes park? ### Answer: SELECT MIN(crowd) FROM table_name_57 WHERE venue = "princes park" |
What is the highest ranked nation with 15 silver medals and no more than 47 total? | CREATE TABLE table_name_53 (rank INTEGER, silver VARCHAR, total VARCHAR) | SELECT MAX(rank) FROM table_name_53 WHERE silver = 15 AND total < 47 | ### Context: CREATE TABLE table_name_53 (rank INTEGER, silver VARCHAR, total VARCHAR) ### Question: What is the highest ranked nation with 15 silver medals and no more than 47 total? ### Answer: SELECT MAX(rank) FROM table_name_53 WHERE silver = 15 AND total < 47 |
What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances? | CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR) | SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10 | ### Context: CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR) ### Question: What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances? ### Answer: SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10 |
What is the example with the associative type? | CREATE TABLE table_name_56 (example VARCHAR, type VARCHAR) | SELECT example FROM table_name_56 WHERE type = "associative" | ### Context: CREATE TABLE table_name_56 (example VARCHAR, type VARCHAR) ### Question: What is the example with the associative type? ### Answer: SELECT example FROM table_name_56 WHERE type = "associative" |
What is the Suffix of the intensive and valency change of 0? | CREATE TABLE table_name_21 (suffix VARCHAR, valency_change VARCHAR, type VARCHAR) | SELECT suffix FROM table_name_21 WHERE valency_change = "0" AND type = "intensive" | ### Context: CREATE TABLE table_name_21 (suffix VARCHAR, valency_change VARCHAR, type VARCHAR) ### Question: What is the Suffix of the intensive and valency change of 0? ### Answer: SELECT suffix FROM table_name_21 WHERE valency_change = "0" AND type = "intensive" |
WHat is the Valency change of associative type? | CREATE TABLE table_name_1 (valency_change VARCHAR, type VARCHAR) | SELECT valency_change FROM table_name_1 WHERE type = "associative" | ### Context: CREATE TABLE table_name_1 (valency_change VARCHAR, type VARCHAR) ### Question: WHat is the Valency change of associative type? ### Answer: SELECT valency_change FROM table_name_1 WHERE type = "associative" |
Who is the home team when hawthorn is the away side? | CREATE TABLE table_name_66 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_66 WHERE away_team = "hawthorn" | ### Context: CREATE TABLE table_name_66 (home_team VARCHAR, away_team VARCHAR) ### Question: Who is the home team when hawthorn is the away side? ### Answer: SELECT home_team FROM table_name_66 WHERE away_team = "hawthorn" |
What was the away team that played at Windy Hill? | CREATE TABLE table_name_29 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_29 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_29 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team that played at Windy Hill? ### Answer: SELECT away_team FROM table_name_29 WHERE venue = "windy hill" |
What was the away team at the match where the crowd was larger than 30,000? | CREATE TABLE table_name_3 (away_team VARCHAR, crowd INTEGER) | SELECT away_team FROM table_name_3 WHERE crowd > 30 OFFSET 000 | ### Context: CREATE TABLE table_name_3 (away_team VARCHAR, crowd INTEGER) ### Question: What was the away team at the match where the crowd was larger than 30,000? ### Answer: SELECT away_team FROM table_name_3 WHERE crowd > 30 OFFSET 000 |
What is the smallest crowd when richmond is away? | CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR) | SELECT MIN(crowd) FROM table_name_44 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR) ### Question: What is the smallest crowd when richmond is away? ### Answer: SELECT MIN(crowd) FROM table_name_44 WHERE away_team = "richmond" |
What is melbourne's home team score? | CREATE TABLE table_name_48 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_48 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_48 (home_team VARCHAR) ### Question: What is melbourne's home team score? ### Answer: SELECT home_team AS score FROM table_name_48 WHERE home_team = "melbourne" |
Who is the color commentator in 2008? | CREATE TABLE table_name_16 (color_commentator_s_ VARCHAR, year VARCHAR) | SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008 | ### Context: CREATE TABLE table_name_16 (color_commentator_s_ VARCHAR, year VARCHAR) ### Question: Who is the color commentator in 2008? ### Answer: SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008 |
Which member of the National Party is from the Hinkler electorate? | CREATE TABLE table_name_6 (member VARCHAR, party VARCHAR, electorate VARCHAR) | SELECT member FROM table_name_6 WHERE party = "national" AND electorate = "hinkler" | ### Context: CREATE TABLE table_name_6 (member VARCHAR, party VARCHAR, electorate VARCHAR) ### Question: Which member of the National Party is from the Hinkler electorate? ### Answer: SELECT member FROM table_name_6 WHERE party = "national" AND electorate = "hinkler" |
Which member is from the state of SA and the grey electorate? | CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR) | SELECT member FROM table_name_74 WHERE state = "sa" AND electorate = "grey" | ### Context: CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR) ### Question: Which member is from the state of SA and the grey electorate? ### Answer: SELECT member FROM table_name_74 WHERE state = "sa" AND electorate = "grey" |
In which state is the Petrie electorate? | CREATE TABLE table_name_39 (state VARCHAR, electorate VARCHAR) | SELECT state FROM table_name_39 WHERE electorate = "petrie" | ### Context: CREATE TABLE table_name_39 (state VARCHAR, electorate VARCHAR) ### Question: In which state is the Petrie electorate? ### Answer: SELECT state FROM table_name_39 WHERE electorate = "petrie" |
What round was the draft pick of tight end with an Overall larger than 21? | CREATE TABLE table_name_68 (round VARCHAR, position VARCHAR, overall VARCHAR) | SELECT COUNT(round) FROM table_name_68 WHERE position = "tight end" AND overall > 21 | ### Context: CREATE TABLE table_name_68 (round VARCHAR, position VARCHAR, overall VARCHAR) ### Question: What round was the draft pick of tight end with an Overall larger than 21? ### Answer: SELECT COUNT(round) FROM table_name_68 WHERE position = "tight end" AND overall > 21 |
Which player is a wide receiver picked in round 7? | CREATE TABLE table_name_77 (player VARCHAR, position VARCHAR, round VARCHAR) | SELECT player FROM table_name_77 WHERE position = "wide receiver" AND round = 7 | ### Context: CREATE TABLE table_name_77 (player VARCHAR, position VARCHAR, round VARCHAR) ### Question: Which player is a wide receiver picked in round 7? ### Answer: SELECT player FROM table_name_77 WHERE position = "wide receiver" AND round = 7 |
What is the name of the running back pick? | CREATE TABLE table_name_3 (player VARCHAR, position VARCHAR) | SELECT player FROM table_name_3 WHERE position = "running back" | ### Context: CREATE TABLE table_name_3 (player VARCHAR, position VARCHAR) ### Question: What is the name of the running back pick? ### Answer: SELECT player FROM table_name_3 WHERE position = "running back" |
When did the VFL pay at Victoria Park? | CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_17 WHERE venue = "victoria park" | ### Context: CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR) ### Question: When did the VFL pay at Victoria Park? ### Answer: SELECT date FROM table_name_17 WHERE venue = "victoria park" |
When did South Melbourne play as the away team? | CREATE TABLE table_name_45 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_45 WHERE away_team = "south melbourne" | ### Context: CREATE TABLE table_name_45 (date VARCHAR, away_team VARCHAR) ### Question: When did South Melbourne play as the away team? ### Answer: SELECT date FROM table_name_45 WHERE away_team = "south melbourne" |
What was home team Essendon's opponents score? | CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_9 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) ### Question: What was home team Essendon's opponents score? ### Answer: SELECT away_team AS score FROM table_name_9 WHERE home_team = "essendon" |
When was The Love Eterne released? | CREATE TABLE table_name_2 (year VARCHAR, title VARCHAR) | SELECT year FROM table_name_2 WHERE title = "the love eterne" | ### Context: CREATE TABLE table_name_2 (year VARCHAR, title VARCHAR) ### Question: When was The Love Eterne released? ### Answer: SELECT year FROM table_name_2 WHERE title = "the love eterne" |
How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras? | CREATE TABLE table_name_18 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR) | SELECT COUNT(heat) FROM table_name_18 WHERE lane = 5 AND rank > 110 AND nationality = "honduras" | ### Context: CREATE TABLE table_name_18 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR) ### Question: How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras? ### Answer: SELECT COUNT(heat) FROM table_name_18 WHERE lane = 5 AND rank > 110 AND nationality = "honduras" |
How many heats had 2 lanes, a rank above 75, and nationality of Madagascar? | CREATE TABLE table_name_48 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR) | SELECT COUNT(heat) FROM table_name_48 WHERE lane = 2 AND rank > 75 AND nationality = "madagascar" | ### Context: CREATE TABLE table_name_48 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR) ### Question: How many heats had 2 lanes, a rank above 75, and nationality of Madagascar? ### Answer: SELECT COUNT(heat) FROM table_name_48 WHERE lane = 2 AND rank > 75 AND nationality = "madagascar" |
What is the sum of every heat for the nationality of Macedonia with a rank less than 114? | CREATE TABLE table_name_13 (heat INTEGER, nationality VARCHAR, rank VARCHAR) | SELECT SUM(heat) FROM table_name_13 WHERE nationality = "macedonia" AND rank < 114 | ### Context: CREATE TABLE table_name_13 (heat INTEGER, nationality VARCHAR, rank VARCHAR) ### Question: What is the sum of every heat for the nationality of Macedonia with a rank less than 114? ### Answer: SELECT SUM(heat) FROM table_name_13 WHERE nationality = "macedonia" AND rank < 114 |
What was the least number of heats with more than 8 lanes for the Nationality of Germany? | CREATE TABLE table_name_88 (heat INTEGER, nationality VARCHAR, lane VARCHAR) | SELECT MIN(heat) FROM table_name_88 WHERE nationality = "germany" AND lane > 8 | ### Context: CREATE TABLE table_name_88 (heat INTEGER, nationality VARCHAR, lane VARCHAR) ### Question: What was the least number of heats with more than 8 lanes for the Nationality of Germany? ### Answer: SELECT MIN(heat) FROM table_name_88 WHERE nationality = "germany" AND lane > 8 |
When the VFL played Victoria Park what was the home team score? | CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_11 WHERE venue = "victoria park" | ### Context: CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR) ### Question: When the VFL played Victoria Park what was the home team score? ### Answer: SELECT home_team AS score FROM table_name_11 WHERE venue = "victoria park" |
What driver has over 19 points and a grid of over 2? | CREATE TABLE table_name_65 (driver VARCHAR, points VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_65 WHERE points > 19 AND grid > 2 | ### Context: CREATE TABLE table_name_65 (driver VARCHAR, points VARCHAR, grid VARCHAR) ### Question: What driver has over 19 points and a grid of over 2? ### Answer: SELECT driver FROM table_name_65 WHERE points > 19 AND grid > 2 |
What was the score for the away team when geelong was the home team? | CREATE TABLE table_name_4 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_4 WHERE home_team = "geelong" | ### Context: CREATE TABLE table_name_4 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the score for the away team when geelong was the home team? ### Answer: SELECT away_team AS score FROM table_name_4 WHERE home_team = "geelong" |
What was the score of the home team when they played footscray? | CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_8 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the score of the home team when they played footscray? ### Answer: SELECT home_team AS score FROM table_name_8 WHERE away_team = "footscray" |
What was the score for the home team of essendon? | CREATE TABLE table_name_45 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_45 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_45 (home_team VARCHAR) ### Question: What was the score for the home team of essendon? ### Answer: SELECT home_team AS score FROM table_name_45 WHERE home_team = "essendon" |
What was the score for the Essendon home team? | CREATE TABLE table_name_31 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_31 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_31 (home_team VARCHAR) ### Question: What was the score for the Essendon home team? ### Answer: SELECT home_team AS score FROM table_name_31 WHERE home_team = "essendon" |
What was the smallest crowd for the Richmond home team? | CREATE TABLE table_name_56 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_56 WHERE home_team = "richmond" | ### Context: CREATE TABLE table_name_56 (crowd INTEGER, home_team VARCHAR) ### Question: What was the smallest crowd for the Richmond home team? ### Answer: SELECT MIN(crowd) FROM table_name_56 WHERE home_team = "richmond" |
What was the largest crowd at the Brunswick Street Oval? | CREATE TABLE table_name_75 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_75 WHERE venue = "brunswick street oval" | ### Context: CREATE TABLE table_name_75 (crowd INTEGER, venue VARCHAR) ### Question: What was the largest crowd at the Brunswick Street Oval? ### Answer: SELECT MAX(crowd) FROM table_name_75 WHERE venue = "brunswick street oval" |
Who was the home team when VFL played at Windy Hill? | CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_16 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team when VFL played at Windy Hill? ### Answer: SELECT home_team FROM table_name_16 WHERE venue = "windy hill" |
What was the attendance when the VFL played Glenferrie Oval? | CREATE TABLE table_name_82 (crowd INTEGER, venue VARCHAR) | SELECT SUM(crowd) FROM table_name_82 WHERE venue = "glenferrie oval" | ### Context: CREATE TABLE table_name_82 (crowd INTEGER, venue VARCHAR) ### Question: What was the attendance when the VFL played Glenferrie Oval? ### Answer: SELECT SUM(crowd) FROM table_name_82 WHERE venue = "glenferrie oval" |
What was the attendance when North Melbourne was the away team? | CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR) | SELECT AVG(crowd) FROM table_name_77 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR) ### Question: What was the attendance when North Melbourne was the away team? ### Answer: SELECT AVG(crowd) FROM table_name_77 WHERE away_team = "north melbourne" |
When did Essendon play as the home team? | CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_70 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR) ### Question: When did Essendon play as the home team? ### Answer: SELECT date FROM table_name_70 WHERE home_team = "essendon" |
Can you give me the age of the Virtues of Wisdom? | CREATE TABLE table_name_47 (approximate_age VARCHAR, virtues VARCHAR) | SELECT approximate_age FROM table_name_47 WHERE virtues = "wisdom" | ### Context: CREATE TABLE table_name_47 (approximate_age VARCHAR, virtues VARCHAR) ### Question: Can you give me the age of the Virtues of Wisdom? ### Answer: SELECT approximate_age FROM table_name_47 WHERE virtues = "wisdom" |
What Virtue looks at the intimacy vs. isolation crisis? | CREATE TABLE table_name_48 (virtues VARCHAR, psycho_social_crisis VARCHAR) | SELECT virtues FROM table_name_48 WHERE psycho_social_crisis = "intimacy vs. isolation" | ### Context: CREATE TABLE table_name_48 (virtues VARCHAR, psycho_social_crisis VARCHAR) ### Question: What Virtue looks at the intimacy vs. isolation crisis? ### Answer: SELECT virtues FROM table_name_48 WHERE psycho_social_crisis = "intimacy vs. isolation" |
Can you give me the age of the Significant Relationship of Family? | CREATE TABLE table_name_41 (approximate_age VARCHAR, significant_relationship VARCHAR) | SELECT approximate_age FROM table_name_41 WHERE significant_relationship = "family" | ### Context: CREATE TABLE table_name_41 (approximate_age VARCHAR, significant_relationship VARCHAR) ### Question: Can you give me the age of the Significant Relationship of Family? ### Answer: SELECT approximate_age FROM table_name_41 WHERE significant_relationship = "family" |
The Significant Relationship of Parents belongs with what Virtue? | CREATE TABLE table_name_84 (virtues VARCHAR, significant_relationship VARCHAR) | SELECT virtues FROM table_name_84 WHERE significant_relationship = "parents" | ### Context: CREATE TABLE table_name_84 (virtues VARCHAR, significant_relationship VARCHAR) ### Question: The Significant Relationship of Parents belongs with what Virtue? ### Answer: SELECT virtues FROM table_name_84 WHERE significant_relationship = "parents" |
Who is the away side at windy hill? | CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_35 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR) ### Question: Who is the away side at windy hill? ### Answer: SELECT away_team FROM table_name_35 WHERE venue = "windy hill" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.