Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
42,500
<question>: What is the colonized year for the chartered year 1958? <context>: CREATE TABLE table_name_83 (colonized VARCHAR, chartered VARCHAR)
SELECT colonized FROM table_name_83 WHERE chartered = "1958"
42,501
<question>: When was shippensburg university Colonized? <context>: CREATE TABLE table_name_56 (colonized VARCHAR, school VARCHAR)
SELECT colonized FROM table_name_56 WHERE school = "shippensburg university"
42,502
<question>: What is the colonized date for the n/a charter range for appalachian state? <context>: CREATE TABLE table_name_61 (colonized VARCHAR, charter_range VARCHAR, school VARCHAR)
SELECT colonized FROM table_name_61 WHERE charter_range = "n/a" AND school = "appalachian state"
42,503
<question>: What state has colony as a status and shippensburg university as the school? <context>: CREATE TABLE table_name_71 (state VARCHAR, status VARCHAR, school VARCHAR)
SELECT state FROM table_name_71 WHERE status = "colony" AND school = "shippensburg university"
42,504
<question>: What was the Home Team Score for the Windy Hill Venue? <context>: CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_63 WHERE venue = "windy hill"
42,505
<question>: What is the Essendon Home Team's venue? <context>: CREATE TABLE table_name_61 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_61 WHERE home_team = "essendon"
42,506
<question>: How large a crowd did the Fitzroy Away team draw? <context>: CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_15 WHERE away_team = "fitzroy"
42,507
<question>: What is Van Waiters position? <context>: CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_84 WHERE player = "van waiters"
42,508
<question>: What is the capacity of the team in tucson, USA? <context>: CREATE TABLE table_name_95 (capacity VARCHAR, country VARCHAR, city VARCHAR)
SELECT capacity FROM table_name_95 WHERE country = "usa" AND city = "tucson"
42,509
<question>: What is the date for the podcast episode number 103? <context>: CREATE TABLE table_name_21 (podcast_date VARCHAR, episode_number VARCHAR)
SELECT podcast_date FROM table_name_21 WHERE episode_number = 103
42,510
<question>: What is the name of the podcast on November 21, 2004? <context>: CREATE TABLE table_name_87 (title VARCHAR, podcast_date VARCHAR)
SELECT title FROM table_name_87 WHERE podcast_date = "november 21, 2004"
42,511
<question>: What was the tonnage of the Great Britain ship Batna? <context>: CREATE TABLE table_name_26 (tonnage VARCHAR, nationality VARCHAR, ship VARCHAR)
SELECT tonnage FROM table_name_26 WHERE nationality = "great britain" AND ship = "batna"
42,512
<question>: How many silver medals were won when there were 4 gold and 22 in total? <context>: CREATE TABLE table_name_26 (silver INTEGER, gold VARCHAR, total VARCHAR)
SELECT MIN(silver) FROM table_name_26 WHERE gold = 4 AND total = 22
42,513
<question>: What car number has 130 points? <context>: CREATE TABLE table_name_58 (car__number VARCHAR, points VARCHAR)
SELECT car__number FROM table_name_58 WHERE points = 130
42,514
<question>: What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24, <context>: CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, points VARCHAR, car__number VARCHAR)
SELECT MIN(laps) FROM table_name_49 WHERE points > 96 AND car__number < 24 AND driver = "ryan newman"
42,515
<question>: What is the sum of car numbers with less than 126 points and 147 laps? <context>: CREATE TABLE table_name_30 (car__number INTEGER, points VARCHAR, laps VARCHAR)
SELECT SUM(car__number) FROM table_name_30 WHERE points < 126 AND laps = 147
42,516
<question>: How many total laps for the driver with Winnings of $116,033, and a Car # smaller than 18? <context>: CREATE TABLE table_name_53 (laps VARCHAR, winnings VARCHAR, car__number VARCHAR)
SELECT COUNT(laps) FROM table_name_53 WHERE winnings = "$116,033" AND car__number < 18
42,517
<question>: What was the home team's score at kardinia park? <context>: CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_7 WHERE venue = "kardinia park"
42,518
<question>: What is the venue when melbourne is the away team? <context>: CREATE TABLE table_name_25 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_25 WHERE away_team = "melbourne"
42,519
<question>: What is the smallest crowd that Footscray had as the away team? <context>: CREATE TABLE table_name_49 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_49 WHERE away_team = "footscray"
42,520
<question>: Where is the Mackey Arena located? <context>: CREATE TABLE table_name_87 (city VARCHAR, venue VARCHAR)
SELECT city FROM table_name_87 WHERE venue = "mackey arena"
42,521
<question>: What state has the University of California, Los Angeles? <context>: CREATE TABLE table_name_67 (state VARCHAR, host VARCHAR)
SELECT state FROM table_name_67 WHERE host = "university of california, los angeles"
42,522
<question>: What region does the University of California, Los Angeles play in? <context>: CREATE TABLE table_name_37 (region VARCHAR, state VARCHAR, host VARCHAR)
SELECT region FROM table_name_37 WHERE state = "california" AND host = "university of california, los angeles"
42,523
<question>: What venue is in Santa Barbara, California? <context>: CREATE TABLE table_name_58 (venue VARCHAR, state VARCHAR, city VARCHAR)
SELECT venue FROM table_name_58 WHERE state = "california" AND city = "santa barbara"
42,524
<question>: What Venue is in Colorado? <context>: CREATE TABLE table_name_19 (venue VARCHAR, state VARCHAR)
SELECT venue FROM table_name_19 WHERE state = "colorado"
42,525
<question>: What city is Mackey Arena in? <context>: CREATE TABLE table_name_46 (city VARCHAR, venue VARCHAR)
SELECT city FROM table_name_46 WHERE venue = "mackey arena"
42,526
<question>: What lane is David Carry in heat 1? <context>: CREATE TABLE table_name_80 (lane VARCHAR, heat VARCHAR, name VARCHAR)
SELECT COUNT(lane) FROM table_name_80 WHERE heat = 1 AND name = "david carry"
42,527
<question>: Who is the opponent after week 9 at rich stadium? <context>: CREATE TABLE table_name_29 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_name_29 WHERE week > 9 AND game_site = "rich stadium"
42,528
<question>: What was the attendance on 1997-12-14? <context>: CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_54 WHERE date = "1997-12-14"
42,529
<question>: For the 1967 Cleveland Browns season what is the total number of times they played the Minnesota Vikings and had an atttendance smaller than 68,431? <context>: CREATE TABLE table_name_93 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_93 WHERE opponent = "minnesota vikings" AND attendance < 68 OFFSET 431
42,530
<question>: What is the lowest attendance for a game before 10 weeks on November 12, 1967 <context>: CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_37 WHERE week < 10 AND date = "november 12, 1967"
42,531
<question>: What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed? <context>: CREATE TABLE table_name_49 (injured INTEGER, place VARCHAR, killed VARCHAR)
SELECT MIN(injured) FROM table_name_49 WHERE place = "mayurbhanj, odisha" AND killed < 1
42,532
<question>: Which Away team has Carlton for it's Home team? <context>: CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_96 WHERE home_team = "carlton"
42,533
<question>: Which Venue has Footscray as it's Home team? <context>: CREATE TABLE table_name_3 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_3 WHERE home_team = "footscray"
42,534
<question>: What home team has Richmond listed as their Away team? <context>: CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_69 WHERE away_team = "richmond"
42,535
<question>: What is the number of the crowd for the home team of South Melbourne? <context>: CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR)
SELECT SUM(crowd) FROM table_name_18 WHERE home_team = "south melbourne"
42,536
<question>: What is the away team score for the home team listed as Footscray? <context>: CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_16 WHERE home_team = "footscray"
42,537
<question>: Which venue exceeded a crowd size of 33,642? <context>: CREATE TABLE table_name_26 (venue VARCHAR, crowd INTEGER)
SELECT venue FROM table_name_26 WHERE crowd > 33 OFFSET 642
42,538
<question>: What was the attendance at the Meadowlands against the New England Patriots? <context>: CREATE TABLE table_name_63 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_63 WHERE game_site = "the meadowlands" AND opponent = "new england patriots"
42,539
<question>: What game did Jets have an attendance of 78,722? <context>: CREATE TABLE table_name_8 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_name_8 WHERE attendance = "78,722"
42,540
<question>: Who played the Rams on October 2, 2005? <context>: CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_22 WHERE date = "october 2, 2005"
42,541
<question>: What was the attendance of the game on December 11, 2005? <context>: CREATE TABLE table_name_82 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_82 WHERE date = "december 11, 2005"
42,542
<question>: What was the result of the game played in front of 65,473? <context>: CREATE TABLE table_name_19 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_19 WHERE attendance = "65,473"
42,543
<question>: How large was the crowd at Carlton's home game? <context>: CREATE TABLE table_name_10 (crowd VARCHAR, home_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_10 WHERE home_team = "carlton"
42,544
<question>: What was the score when St Kilda played as the home team? <context>: CREATE TABLE table_name_59 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_59 WHERE home_team = "st kilda"
42,545
<question>: What was the crowd when the VFL played Windy Hill? <context>: CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_49 WHERE venue = "windy hill"
42,546
<question>: What was Carlton's score when they were the away team? <context>: CREATE TABLE table_name_86 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_86 WHERE away_team = "carlton"
42,547
<question>: What was the away team that played at Corio Oval? <context>: CREATE TABLE table_name_9 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_9 WHERE venue = "corio oval"
42,548
<question>: Which Home team faced the Away team, Hawthorn? <context>: CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "hawthorn"
42,549
<question>: What was the Home team's score when the Venue was mcg? <context>: CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_95 WHERE venue = "mcg"
42,550
<question>: What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup? <context>: CREATE TABLE table_name_9 (division VARCHAR, fa_cup VARCHAR, season VARCHAR)
SELECT COUNT(division) FROM table_name_9 WHERE fa_cup = "round of 16" AND season > 2012
42,551
<question>: What is the division in the season with 13 tms and pos smaller than 8? <context>: CREATE TABLE table_name_36 (division VARCHAR, tms VARCHAR, pos VARCHAR)
SELECT COUNT(division) FROM table_name_36 WHERE tms = 13 AND pos < 8
42,552
<question>: Of the games before week 3 which had attendance great than 65,904? <context>: CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_88 WHERE week < 3 AND attendance > 65 OFFSET 904
42,553
<question>: What was the first week to have attendance of 65,866? <context>: CREATE TABLE table_name_31 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_31 WHERE attendance = 65 OFFSET 866
42,554
<question>: Where is the Belhaven College SSAC conference location? <context>: CREATE TABLE table_name_23 (location VARCHAR, current_conference VARCHAR, institution VARCHAR)
SELECT location FROM table_name_23 WHERE current_conference = "ssac" AND institution = "belhaven college"
42,555
<question>: What American Southwest Conference school was founded in 1883? <context>: CREATE TABLE table_name_87 (institution VARCHAR, founded VARCHAR, current_conference VARCHAR)
SELECT institution FROM table_name_87 WHERE founded > 1883 AND current_conference = "american southwest"
42,556
<question>: Which League showed 7,975 for an average attendance? <context>: CREATE TABLE table_name_20 (league VARCHAR, attendance_average VARCHAR)
SELECT league FROM table_name_20 WHERE attendance_average = "7,975"
42,557
<question>: What is the average attendance of the team that had a regular season result of 2nd aisa, 24-16? <context>: CREATE TABLE table_name_68 (attendance_average VARCHAR, reg_season VARCHAR)
SELECT attendance_average FROM table_name_68 WHERE reg_season = "2nd aisa, 24-16"
42,558
<question>: Who won Group VI, when Group 1 was won by deportivo, group IV by sevilla, and group III by Valencia? <context>: CREATE TABLE table_name_75 (group_vI VARCHAR, group_iII VARCHAR, valencia VARCHAR, group_i VARCHAR, group_iV VARCHAR, sevilla VARCHAR)
SELECT group_vI FROM table_name_75 WHERE group_i = "deportivo" AND group_iV = sevilla AND group_iII = valencia
42,559
<question>: Who won group III when group 1 was of the racing club? <context>: CREATE TABLE table_name_99 (group_iII VARCHAR, group_i VARCHAR)
SELECT group_iII FROM table_name_99 WHERE group_i = "racing club"
42,560
<question>: Which team is John Williams a rider for? <context>: CREATE TABLE table_name_7 (team VARCHAR, rider VARCHAR)
SELECT team FROM table_name_7 WHERE rider = "john williams"
42,561
<question>: How big was the crowd when Geelong was the home team? <context>: CREATE TABLE table_name_96 (crowd VARCHAR, home_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_96 WHERE home_team = "geelong"
42,562
<question>: Who was the away team when Hawthorn was the home team? <context>: CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_23 WHERE home_team = "hawthorn"
42,563
<question>: What is the total in the case where theere are 6 lecturers and fewer than 48 professors? <context>: CREATE TABLE table_name_96 (total INTEGER, lecturers VARCHAR, professors VARCHAR)
SELECT AVG(total) FROM table_name_96 WHERE lecturers = 6 AND professors < 48
42,564
<question>: What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40? <context>: CREATE TABLE table_name_33 (total VARCHAR, professors VARCHAR, associate_professors VARCHAR, lecturers VARCHAR)
SELECT COUNT(total) FROM table_name_33 WHERE associate_professors > 4 AND lecturers = 5 AND professors < 40
42,565
<question>: How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81? <context>: CREATE TABLE table_name_71 (lecturers VARCHAR, total VARCHAR, associate_professors VARCHAR, assistant_professors VARCHAR, professors VARCHAR)
SELECT COUNT(lecturers) FROM table_name_71 WHERE assistant_professors > 8 AND professors > 14 AND associate_professors < 35 AND total > 81
42,566
<question>: What is the maximum number of associate professors when there are more than 5 assistant professors and fewer than 14 professors? <context>: CREATE TABLE table_name_29 (associate_professors INTEGER, assistant_professors VARCHAR, professors VARCHAR)
SELECT MAX(associate_professors) FROM table_name_29 WHERE assistant_professors > 5 AND professors < 14
42,567
<question>: Which country has the banglavision Network? <context>: CREATE TABLE table_name_85 (origin_of_programming VARCHAR, network VARCHAR)
SELECT origin_of_programming FROM table_name_85 WHERE network = "banglavision"
42,568
<question>: Which general service in India is a part of the zee variasi network? <context>: CREATE TABLE table_name_96 (service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)
SELECT service FROM table_name_96 WHERE origin_of_programming = "india" AND genre = "general" AND network = "zee variasi"
42,569
<question>: Which sliding tackle has no dump tackle and a restricted shoulder charge? <context>: CREATE TABLE table_name_3 (sliding_tackle VARCHAR, dump_tackle VARCHAR, shoulder_charge VARCHAR)
SELECT sliding_tackle FROM table_name_3 WHERE dump_tackle = "no" AND shoulder_charge = "restricted"
42,570
<question>: Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball? <context>: CREATE TABLE table_name_49 (bumping_blocking VARCHAR, ankle_tap VARCHAR, steal_intercept_ball VARCHAR)
SELECT bumping_blocking FROM table_name_49 WHERE ankle_tap = "yes" AND steal_intercept_ball = "yes"
42,571
<question>: Which body tackle has yes for the diving tackle and the sliding tackle classified as a trip? <context>: CREATE TABLE table_name_56 (body_tackle VARCHAR, diving_tackle VARCHAR, sliding_tackle VARCHAR)
SELECT body_tackle FROM table_name_56 WHERE diving_tackle = "yes" AND sliding_tackle = "classified as a trip"
42,572
<question>: Which Chicken wing has no steal/intercept ball? <context>: CREATE TABLE table_name_76 (chicken_wing VARCHAR, steal_intercept_ball VARCHAR)
SELECT chicken_wing FROM table_name_76 WHERE steal_intercept_ball = "no"
42,573
<question>: Which steal/intercept ball has no for both the sliding tackle and dump tackle? <context>: CREATE TABLE table_name_37 (steal_intercept_ball VARCHAR, sliding_tackle VARCHAR, dump_tackle VARCHAR)
SELECT steal_intercept_ball FROM table_name_37 WHERE sliding_tackle = "no" AND dump_tackle = "no"
42,574
<question>: Which shoulder charge has restricted as the body tackle? <context>: CREATE TABLE table_name_45 (shoulder_charge VARCHAR, body_tackle VARCHAR)
SELECT shoulder_charge FROM table_name_45 WHERE body_tackle = "restricted"
42,575
<question>: Which player has West Virginia listed as their school/country? <context>: CREATE TABLE table_name_11 (player VARCHAR, school_country VARCHAR)
SELECT player FROM table_name_11 WHERE school_country = "west virginia"
42,576
<question>: What is the average crowd size when fitzroy plays at home? <context>: CREATE TABLE table_name_41 (crowd INTEGER, home_team VARCHAR)
SELECT AVG(crowd) FROM table_name_41 WHERE home_team = "fitzroy"
42,577
<question>: What is the result of the election with 3,871 total votes? <context>: CREATE TABLE table_name_89 (results VARCHAR, total_votes INTEGER)
SELECT results FROM table_name_89 WHERE total_votes > 3 OFFSET 871
42,578
<question>: What is the lowest number of bids in the Missouri Valley conference? <context>: CREATE TABLE table_name_47 (_number_of_bids INTEGER, conference VARCHAR)
SELECT MIN(_number_of_bids) FROM table_name_47 WHERE conference = "missouri valley"
42,579
<question>: What was the attendance on the bye week? <context>: CREATE TABLE table_name_3 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_3 WHERE date = "bye"
42,580
<question>: What was the last week when the team had a bye week? <context>: CREATE TABLE table_name_58 (week INTEGER, result VARCHAR)
SELECT MAX(week) FROM table_name_58 WHERE result = "bye"
42,581
<question>: Where was the game held where North Melbourne was the away team? <context>: CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_89 WHERE away_team = "north melbourne"
42,582
<question>: What was the smallest crowd size for a home game for Richmond? <context>: CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR)
SELECT MIN(crowd) FROM table_name_47 WHERE home_team = "richmond"
42,583
<question>: When did the 1966 Cleveland Browns play the Green Bay Packers? <context>: CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_98 WHERE opponent = "green bay packers"
42,584
<question>: How many points did South Melbourne score as the home team? <context>: CREATE TABLE table_name_26 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_26 WHERE home_team = "south melbourne"
42,585
<question>: On what date was the home team Footscray? <context>: CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_49 WHERE home_team = "footscray"
42,586
<question>: What is the average amount of goals that have a goal difference or 8 and the losses are smaller than 12? <context>: CREATE TABLE table_name_99 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR)
SELECT AVG(goals_for) FROM table_name_99 WHERE goal_difference = 8 AND losses < 12
42,587
<question>: How many goals have a Lokomotiv Plovdiv club and goals against larger than 58? <context>: CREATE TABLE table_name_80 (goals_for VARCHAR, club VARCHAR, goals_against VARCHAR)
SELECT COUNT(goals_for) FROM table_name_80 WHERE club = "lokomotiv plovdiv" AND goals_against > 58
42,588
<question>: What is the average goal difference using slavia sofia club? <context>: CREATE TABLE table_name_8 (goal_difference INTEGER, club VARCHAR)
SELECT AVG(goal_difference) FROM table_name_8 WHERE club = "slavia sofia"
42,589
<question>: What is the played average that has botev plovdiv as the club and wins larger than 11? <context>: CREATE TABLE table_name_43 (played INTEGER, club VARCHAR, wins VARCHAR)
SELECT AVG(played) FROM table_name_43 WHERE club = "botev plovdiv" AND wins > 11
42,590
<question>: Where did they play on their bye week? <context>: CREATE TABLE table_name_83 (game_site VARCHAR, record VARCHAR)
SELECT game_site FROM table_name_83 WHERE record = "bye"
42,591
<question>: What is the kickoff that has a NFL.com recap, is played before week 17, and is played at arrowhead stadium? <context>: CREATE TABLE table_name_53 (kickoff VARCHAR, game_site VARCHAR, nflcom_recap VARCHAR, week VARCHAR)
SELECT kickoff FROM table_name_53 WHERE nflcom_recap = "recap" AND week < 17 AND game_site = "arrowhead stadium"
42,592
<question>: Who is the home team at brunswick street oval? <context>: CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_17 WHERE venue = "brunswick street oval"
42,593
<question>: What is the home team's score at brunswick street oval? <context>: CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_82 WHERE venue = "brunswick street oval"
42,594
<question>: Which match had the largest crowd size where the away team was North Melbourne? <context>: CREATE TABLE table_name_43 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_43 WHERE away_team = "north melbourne"
42,595
<question>: What was North Melbourne's score as an away team? <context>: CREATE TABLE table_name_66 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_66 WHERE away_team = "north melbourne"
42,596
<question>: What was the away team's score against Hawthorn? <context>: CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_9 WHERE home_team = "hawthorn"
42,597
<question>: What was the away team that played the home team of Geelong? <context>: CREATE TABLE table_name_49 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_49 WHERE home_team = "geelong"
42,598
<question>: Which week with Green Bay Packers as an opponent is the highest? <context>: CREATE TABLE table_name_52 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_name_52 WHERE opponent = "green bay packers"
42,599
<question>: What is the number of starts for the player who lost fewer than 22 and has more than 4 tries? <context>: CREATE TABLE table_name_11 (start INTEGER, lost VARCHAR, tries VARCHAR)
SELECT AVG(start) FROM table_name_11 WHERE lost < 22 AND tries > 4