question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
When the network mask is 255.255.255.128 what is the lowest available subnet?
columns: - name: available_subnets type: INTEGER - name: network_mask type: VARCHAR table: table_149426_4
SELECT MIN(available_subnets) FROM table_149426_4 WHERE network_mask = "255.255.255.128"
How many Games have a Drawn larger than 0, and a Lost of 1?
columns: - name: games type: VARCHAR - name: drawn type: VARCHAR - name: lost type: VARCHAR table: table_name_94
SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1
Name the driver for 3 rounds
columns: - name: driver type: VARCHAR - name: rounds type: VARCHAR table: table_name_24
SELECT driver FROM table_name_24 WHERE rounds = "3"
On what date was James P. Buchanan (d)'s successor seated?
columns: - name: date_successor_seated type: VARCHAR - name: vacator type: VARCHAR table: table_2159547_3
SELECT date_successor_seated FROM table_2159547_3 WHERE vacator = "James P. Buchanan (D)"
Who were the guests on a show where the production code is 6152?
columns: - name: guest type: VARCHAR - name: production_code type: VARCHAR table: table_25691838_12
SELECT guest FROM table_25691838_12 WHERE production_code = 6152
What is the ICAO with commenced operations before 1989?
columns: - name: icao type: VARCHAR - name: commenced_operations type: INTEGER table: table_name_2
SELECT icao FROM table_name_2 WHERE commenced_operations < 1989
What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard?
columns: - name: province type: VARCHAR - name: soccer_stadium type: VARCHAR table: table_27369069_4
SELECT province FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
How many % same-sex marriages are there for the year 2008?
columns: - name: _percentage_same_sex_marriages type: VARCHAR - name: year type: VARCHAR table: table_19614212_1
SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE year = "2008"
What's the highest Rank for the County of Offaly, the Player of Mark Corrigan, and the Total that is smaller than 8?
columns: - name: rank type: INTEGER - name: total type: VARCHAR - name: county type: VARCHAR - name: player type: VARCHAR table: table_name_49
SELECT MAX(rank) FROM table_name_49 WHERE county = "offaly" AND player = "mark corrigan" AND total < 8
What is GTO Winning Team Mike Keyser's RND number?
columns: - name: rnd type: VARCHAR - name: gto_winning_team type: VARCHAR table: table_13657749_2
SELECT rnd FROM table_13657749_2 WHERE gto_winning_team = "Mike Keyser"
Which Country has a Rank of 5?
columns: - name: country type: VARCHAR - name: rank type: VARCHAR table: table_name_23
SELECT country FROM table_name_23 WHERE rank = 5
What's the slalom when the average time was greater than 99.25?
columns: - name: slalom type: INTEGER - name: average type: INTEGER table: table_name_5
SELECT AVG(slalom) FROM table_name_5 WHERE average > 99.25
What is Date, when Athlete is "Yussuf Alli"?
columns: - name: date type: VARCHAR - name: athlete type: VARCHAR table: table_name_15
SELECT date FROM table_name_15 WHERE athlete = "yussuf alli"
Name the most wins for losses more than 2 and points of two with place larger than 7
columns: - name: wins type: INTEGER - name: place type: VARCHAR - name: losses type: VARCHAR - name: points type: VARCHAR table: table_name_4
SELECT MAX(wins) FROM table_name_4 WHERE losses > "2" AND points = "2" AND place > 7
What is the ethernet ports of the m1500 appliance?
columns: - name: ethernet_ports type: VARCHAR - name: name type: VARCHAR table: table_name_5
SELECT ethernet_ports FROM table_name_5 WHERE name = "m1500"
WHat is the lowest amount of bronze medals for teams with 9 silvers and less than 27 points?
columns: - name: bronze type: INTEGER - name: silver type: VARCHAR - name: total type: VARCHAR table: table_name_56
SELECT MIN(bronze) FROM table_name_56 WHERE silver = 9 AND total < 27
What is the Score of the Scarborough Home game?
columns: - name: score type: VARCHAR - name: home_team type: VARCHAR table: table_name_72
SELECT score FROM table_name_72 WHERE home_team = "scarborough"
What language is spoken after 2007 for the role of urvashi mathur?
columns: - name: language type: VARCHAR - name: year type: VARCHAR - name: role type: VARCHAR table: table_name_56
SELECT language FROM table_name_56 WHERE year > 2007 AND role = "urvashi mathur"
What is Date, when Opponent is At Saskatchewan Roughriders?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_name_13
SELECT date FROM table_name_13 WHERE opponent = "at saskatchewan roughriders"
Which Outcome has a Score of 6–4, 2–6, 6–3?
columns: - name: outcome type: VARCHAR - name: score type: VARCHAR table: table_name_86
SELECT outcome FROM table_name_86 WHERE score = "6–4, 2–6, 6–3"
What is the pick number for the kansas city royals?
columns: - name: pick type: INTEGER - name: team type: VARCHAR table: table_name_12
SELECT SUM(pick) FROM table_name_12 WHERE team = "kansas city royals"
What is the prime mover of the locomotive with a fa-2 model?
columns: - name: prime_mover type: VARCHAR - name: model type: VARCHAR table: table_name_16
SELECT prime_mover FROM table_name_16 WHERE model = "fa-2"
When j.r. smith (26) has the highest amount of points what is the score?
columns: - name: score type: VARCHAR - name: high_points type: VARCHAR table: table_23285849_10
SELECT score FROM table_23285849_10 WHERE high_points = "J.R. Smith (26)"
When has a Record of 1–0?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_name_52
SELECT date FROM table_name_52 WHERE record = "1–0"
What is the Stadium that hosts the team Jacksonville Jaguars?
columns: - name: stadium type: VARCHAR - name: host_team type: VARCHAR table: table_name_1
SELECT stadium FROM table_name_1 WHERE host_team = "jacksonville jaguars"
Which rowers represented the country of portugal?
columns: - name: rowers type: VARCHAR - name: country type: VARCHAR table: table_name_4
SELECT rowers FROM table_name_4 WHERE country = "portugal"
What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?
columns: - name: venue type: VARCHAR - name: date type: VARCHAR table: table_name_46
SELECT venue FROM table_name_46 WHERE date = "23,24,26,27,28,29 feb, 1 mar 1912"
If the hometown is Windhoek, what is the represented?
columns: - name: represented type: VARCHAR - name: hometown type: VARCHAR table: table_23576576_2
SELECT represented FROM table_23576576_2 WHERE hometown = "Windhoek"
Which stadium did Rashid Budaj coach?
columns: - name: stadium type: VARCHAR - name: coach type: VARCHAR table: table_name_76
SELECT stadium FROM table_name_76 WHERE coach = "rashid budaj"
Who was the winner of the race at barbagallo raceway?
columns: - name: winner type: VARCHAR - name: circuit type: VARCHAR table: table_20884160_1
SELECT winner FROM table_20884160_1 WHERE circuit = "Barbagallo Raceway"
Which OWGR pts has Dates of may 10-13?
columns: - name: owgr_pts type: INTEGER - name: dates type: VARCHAR table: table_name_37
SELECT SUM(owgr_pts) FROM table_name_37 WHERE dates = "may 10-13"
Who is the lw position player from a round greater than 10?
columns: - name: player type: VARCHAR - name: position type: VARCHAR - name: round type: VARCHAR table: table_name_76
SELECT player FROM table_name_76 WHERE position = "lw" AND round > 10
Which Top-10 has a Top-25 smaller than 18, and a Top-5 of 6, and a Cuts made smaller than 20?
columns: - name: top_10 type: INTEGER - name: cuts_made type: VARCHAR - name: top_25 type: VARCHAR - name: top_5 type: VARCHAR table: table_name_57
SELECT MAX(top_10) FROM table_name_57 WHERE top_25 < 18 AND top_5 = 6 AND cuts_made < 20
WHAT IS THE GREGORIAN CALENDAR FOR AQUARIUS?
columns: - name: gregorian_calendar type: VARCHAR - name: sign_of_zodiac type: VARCHAR table: table_name_77
SELECT gregorian_calendar FROM table_name_77 WHERE sign_of_zodiac = "aquarius"
Who was the recipient for Outstanding actress television series prior to 2008?
columns: - name: recipient type: VARCHAR - name: year type: INTEGER table: table_name_7
SELECT recipient FROM table_name_7 WHERE year < 2008
What was the outcome for the India Open?
columns: - name: outcome type: VARCHAR - name: venue type: VARCHAR table: table_name_34
SELECT outcome FROM table_name_34 WHERE venue = "india open"
Which Result has a Game of game 1?
columns: - name: result type: VARCHAR - name: game type: VARCHAR table: table_name_86
SELECT result FROM table_name_86 WHERE game = "game 1"
What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?
columns: - name: _number_of_candidates type: INTEGER - name: general_election type: VARCHAR - name: result type: VARCHAR - name: _number_of_seats_won type: VARCHAR table: table_name_81
SELECT AVG(_number_of_candidates) FROM table_name_81 WHERE result = "liberal majority" AND _number_of_seats_won = 51 AND general_election > 2008
Who did the Jets play in the Meadowlands on week 14?
columns: - name: opponent type: VARCHAR - name: game_site type: VARCHAR - name: week type: VARCHAR table: table_name_46
SELECT opponent FROM table_name_46 WHERE game_site = "the meadowlands" AND week = 14
Which award was given in 2012?
columns: - name: award type: VARCHAR - name: year type: VARCHAR table: table_name_16
SELECT award FROM table_name_16 WHERE year = "2012"
What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?
columns: - name: sunlight_hours type: INTEGER - name: city_town type: VARCHAR - name: days_with_frost type: VARCHAR table: table_name_98
SELECT MIN(sunlight_hours) FROM table_name_98 WHERE city_town = "ourense" AND days_with_frost > 30
What name is associated with League 142?
columns: - name: name type: VARCHAR - name: league type: VARCHAR table: table_14962287_2
SELECT name FROM table_14962287_2 WHERE league = 142
What's the value for race 4 for driver kevin heffernan?
columns: - name: race_4 type: VARCHAR - name: driver type: VARCHAR table: table_name_61
SELECT race_4 FROM table_name_61 WHERE driver = "kevin heffernan"
What was the last round the team drafted?
columns: - name: round type: INTEGER table: table_14999879_2
SELECT MAX(round) FROM table_14999879_2
what is the smallest number of laps marco simoncelli has with grid less than 8 and gilera as the manufacturer?
columns: - name: laps type: INTEGER - name: grid type: VARCHAR - name: manufacturer type: VARCHAR - name: rider type: VARCHAR table: table_name_96
SELECT MIN(laps) FROM table_name_96 WHERE manufacturer = "gilera" AND rider = "marco simoncelli" AND grid < 8
What is the district with the candidates leven powell (f) 63.8% roger west (dr) 36.4%?
columns: - name: district type: VARCHAR - name: candidates type: VARCHAR table: table_2668405_17
SELECT district FROM table_2668405_17 WHERE candidates = "Leven Powell (F) 63.8% Roger West (DR) 36.4%"
Name the security forces for 2009
columns: - name: security_forces type: VARCHAR - name: year type: VARCHAR table: table_name_82
SELECT security_forces FROM table_name_82 WHERE year = "2009"
Which ceremony has the best lyricist category?
columns: - name: ceremony type: VARCHAR - name: category type: VARCHAR table: table_name_67
SELECT ceremony FROM table_name_67 WHERE category = "best lyricist"
What is the total number of rank for the country of greece?
columns: - name: rank type: VARCHAR - name: country type: VARCHAR table: table_name_19
SELECT COUNT(rank) FROM table_name_19 WHERE country = "greece"
How many Red Breasted Nuthatch coins created before 2007 were minted, on average?
columns: - name: mintage type: INTEGER - name: animal type: VARCHAR - name: year type: VARCHAR table: table_name_42
SELECT AVG(mintage) FROM table_name_42 WHERE animal = "red breasted nuthatch" AND year < 2007
Which event was held in Beijing?
columns: - name: event type: VARCHAR - name: venue type: VARCHAR table: table_name_44
SELECT event FROM table_name_44 WHERE venue = "beijing"
What series # had an original air date of november 30, 1996?
columns: - name: series__number type: INTEGER - name: original_air_date type: VARCHAR table: table_name_52
SELECT MIN(series__number) FROM table_name_52 WHERE original_air_date = "november 30, 1996"
What Team has Bob Wollek as a Driver with 76 Laps in C1 Class?
columns: - name: team type: VARCHAR - name: driver type: VARCHAR - name: class type: VARCHAR - name: laps type: VARCHAR table: table_name_63
SELECT team FROM table_name_63 WHERE class = "c1" AND laps = 76 AND driver = "bob wollek"
What is the average time with a rank lower than 2 for Andy Turner?
columns: - name: time type: INTEGER - name: rank type: VARCHAR - name: name type: VARCHAR table: table_name_24
SELECT AVG(time) FROM table_name_24 WHERE rank > 2 AND name = "andy turner"
What years had a ranking of 1?
columns: - name: years type: VARCHAR - name: ranking type: VARCHAR table: table_name_99
SELECT years FROM table_name_99 WHERE ranking = 1
What was the incumbent for texas 19?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1341663_44
SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 19"
Who's the incumbent in the district first elected in 1976?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1341604_19
SELECT incumbent FROM table_1341604_19 WHERE first_elected = 1976
What team won the regular season when georgia state won the tournament?
columns: - name: regular_season_winner type: VARCHAR - name: tournament_winner type: VARCHAR table: table_24348134_3
SELECT regular_season_winner FROM table_24348134_3 WHERE tournament_winner = "Georgia State"
What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433?
columns: - name: interview type: INTEGER - name: country type: VARCHAR - name: swimsuit type: VARCHAR table: table_name_66
SELECT MIN(interview) FROM table_name_66 WHERE country = "missouri" AND swimsuit > 9.433
What is the least amount of wickets?
columns: - name: wickets type: INTEGER table: table_27922491_8
SELECT MIN(wickets) FROM table_27922491_8
what country has a score of 69-70-72=211?
columns: - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_63
SELECT place FROM table_name_63 WHERE score = 69 - 70 - 72 = 211
What is the points sum of the series with less than 0 poles?
columns: - name: points type: INTEGER - name: poles type: INTEGER table: table_name_28
SELECT SUM(points) FROM table_name_28 WHERE poles < 0
For what round was the opponent mercedes paz with a result of 4–6, 6–1, 6–3?
columns: - name: round type: VARCHAR - name: opponent type: VARCHAR - name: result type: VARCHAR table: table_name_95
SELECT round FROM table_name_95 WHERE opponent = "mercedes paz" AND result = "4–6, 6–1, 6–3"
what is the venue when the event is 4x400 m relay and the competition is asian championships?
columns: - name: venue type: VARCHAR - name: event type: VARCHAR - name: competition type: VARCHAR table: table_name_7
SELECT venue FROM table_name_7 WHERE event = "4x400 m relay" AND competition = "asian championships"
When did Fitzroy play as the away team?
columns: - name: date type: VARCHAR - name: away_team type: VARCHAR table: table_name_70
SELECT date FROM table_name_70 WHERE away_team = "fitzroy"
Who were the home team during the game that aired on Fox after 2007 on October 23?
columns: - name: designated_home type: VARCHAR - name: date type: VARCHAR - name: television type: VARCHAR - name: year type: VARCHAR table: table_name_53
SELECT designated_home FROM table_name_53 WHERE television = "fox" AND year > 2007 AND date = "october 23"
What is the total number of Grid, when Rider is Aleix Espargaro?
columns: - name: grid type: VARCHAR - name: rider type: VARCHAR table: table_name_2
SELECT COUNT(grid) FROM table_name_2 WHERE rider = "aleix espargaro"
Name the space crusade when the english is of finnish
columns: - name: space_crusade type: VARCHAR - name: english type: VARCHAR table: table_name_7
SELECT space_crusade FROM table_name_7 WHERE english = "finnish"
How many total rounds were there at UFC 114?
columns: - name: round type: VARCHAR - name: event type: VARCHAR table: table_name_30
SELECT COUNT(round) FROM table_name_30 WHERE event = "ufc 114"
Name the record for february 27
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_67
SELECT record FROM table_name_67 WHERE date = "february 27"
Name the class aaaaa for 2005-06
columns: - name: class_aAAAA type: VARCHAR - name: school_year type: VARCHAR table: table_14601528_2
SELECT class_aAAAA FROM table_14601528_2 WHERE school_year = "2005-06"
What date did the Fai Cup with Derry City F.C. as runners-up take place?
columns: - name: date type: VARCHAR - name: competition type: VARCHAR - name: runners_up type: VARCHAR table: table_name_33
SELECT date FROM table_name_33 WHERE competition = "fai cup" AND runners_up = "derry city f.c."
When the Total is less than 1, and Bronze is 0, how many Gold medals are there?
columns: - name: gold type: INTEGER - name: bronze type: VARCHAR - name: total type: VARCHAR table: table_name_73
SELECT SUM(gold) FROM table_name_73 WHERE bronze = 0 AND total < 1
Which constructor has a Time/Retired of +37.311?
columns: - name: constructor type: VARCHAR - name: time_retired type: VARCHAR table: table_name_91
SELECT constructor FROM table_name_91 WHERE time_retired = "+37.311"
What year had a score of 6–7(5), 2–6 and opponent of Brenda Schultz-Mccarthy?
columns: - name: year type: VARCHAR - name: opponent_in_the_final type: VARCHAR - name: score type: VARCHAR table: table_name_96
SELECT year FROM table_name_96 WHERE opponent_in_the_final = "brenda schultz-mccarthy" AND score = "6–7(5), 2–6"
In the game where Joe Johnson (31) was the high points scorer, what was the final score?
columns: - name: score type: VARCHAR - name: high_points type: VARCHAR table: table_name_79
SELECT score FROM table_name_79 WHERE high_points = "joe johnson (31)"
What's the maximal L3 cache for any of the models given?
columns: - name: l2_cache__mb_ type: INTEGER table: table_269920_3
SELECT MAX(l2_cache__mb_) FROM table_269920_3
Can you tell me the Finals that has the Conference Finals smaller than 12, and the Semifinals of 0, and the Total of 3?
columns: - name: finals type: VARCHAR - name: total type: VARCHAR - name: conference_finals type: VARCHAR - name: semifinals type: VARCHAR table: table_name_80
SELECT finals FROM table_name_80 WHERE conference_finals < 12 AND semifinals = 0 AND total = 3
What was the score for the player than won $450?
columns: - name: score type: VARCHAR - name: money___$__ type: VARCHAR table: table_name_64
SELECT score FROM table_name_64 WHERE money___$__ = 450
Who was the incumbent when ran william b. oliver (d) unopposed?
columns: - name: incumbent type: VARCHAR - name: candidates type: VARCHAR table: table_1346118_2
SELECT incumbent FROM table_1346118_2 WHERE candidates = "William B. Oliver (D) Unopposed"
Which club team was the player from who was selected in a round under 4?
columns: - name: club_team type: VARCHAR - name: round type: INTEGER table: table_name_12
SELECT club_team FROM table_name_12 WHERE round < 4
Who was the High Assist in game 1?
columns: - name: high_assists type: VARCHAR - name: game type: VARCHAR table: table_17323042_11
SELECT high_assists FROM table_17323042_11 WHERE game = 1
What is Year(s) Won, when Total is "145", and when Country is "United States"?
columns: - name: year_s__won type: VARCHAR - name: total type: VARCHAR - name: country type: VARCHAR table: table_name_40
SELECT year_s__won FROM table_name_40 WHERE total = 145 AND country = "united states"
What is Location Attendance, when High Assists is "Rafer Alston (7)", and when High Rebounds is "Yao Ming (13)"?
columns: - name: location_attendance type: VARCHAR - name: high_assists type: VARCHAR - name: high_rebounds type: VARCHAR table: table_name_64
SELECT location_attendance FROM table_name_64 WHERE high_assists = "rafer alston (7)" AND high_rebounds = "yao ming (13)"
Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5?
columns: - name: opponent_in_the_final type: VARCHAR - name: score_in_the_final type: VARCHAR table: table_name_62
SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = "6–2, 6–3, 2–6, 7–5"
What country has CD format and catalog RCD 10523?
columns: - name: country type: VARCHAR - name: format type: VARCHAR - name: catalog type: VARCHAR table: table_name_45
SELECT country FROM table_name_45 WHERE format = "cd" AND catalog = "rcd 10523"
Which Debut year has a Player of bob hayton, and Games smaller than 2?
columns: - name: debut_year type: INTEGER - name: player type: VARCHAR - name: games type: VARCHAR table: table_name_44
SELECT AVG(debut_year) FROM table_name_44 WHERE player = "bob hayton" AND games < 2
What is the lost number when the team played 26 games and there were 83 points?
columns: - name: lost type: VARCHAR - name: played type: VARCHAR - name: points type: VARCHAR table: table_name_32
SELECT lost FROM table_name_32 WHERE played = "26" AND points = "83"
Name the number of dates for alouettes
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_24126518_2
SELECT COUNT(date) FROM table_24126518_2 WHERE opponent = "Alouettes"
How many dams are there in the Lake and Peninsula area?
columns: - name: _number_s_dam_and_gnis_query_link type: INTEGER - name: borough_or_census_area type: VARCHAR table: table_17978052_2
SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = "Lake and Peninsula"
WHAT IS THE AWAY TEAM WITH A TIE NUMBER 1?
columns: - name: away_team type: VARCHAR - name: tie_no type: VARCHAR table: table_name_46
SELECT away_team FROM table_name_46 WHERE tie_no = "1"
What Series has a season that is older than 2003 with a Podiums entry of 1 and a Points entry that is n/a?
columns: - name: series type: VARCHAR - name: points type: VARCHAR - name: season type: VARCHAR - name: podiums type: VARCHAR table: table_name_96
SELECT series FROM table_name_96 WHERE season < 2003 AND podiums = "1" AND points = "n/a"
What is the game number with a score of 116–138?
columns: - name: game type: VARCHAR - name: score type: VARCHAR table: table_name_31
SELECT COUNT(game) FROM table_name_31 WHERE score = "116–138"
Who played on December 25, 1925?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_56
SELECT competition FROM table_name_56 WHERE date = "december 25, 1925"
What is the year leicester was established?
columns: - name: established type: INTEGER - name: location type: VARCHAR table: table_142950_1
SELECT MAX(established) FROM table_142950_1 WHERE location = "Leicester"
What Country has a number smaller than 56 in 2005 and of 14 in 2006?
columns: - name: Id type: VARCHAR table: table_name_47
SELECT COUNT(2004) FROM table_name_47 WHERE 2005 < 56 AND 2006 = 14
WHAT IS THE 8TH THAT HAS A 7TH OF AUDIO BULLYS?
columns: - name: eighth type: VARCHAR - name: seventh type: VARCHAR table: table_name_61
SELECT eighth FROM table_name_61 WHERE seventh = "audio bullys"
What was the winning score in the PGA Championship?
columns: - name: winning_score type: VARCHAR - name: championship type: VARCHAR table: table_name_14
SELECT winning_score FROM table_name_14 WHERE championship = "pga championship"
What is the date of the Outback Steakhouse Pro-Am Tournament?
columns: - name: date type: VARCHAR - name: tournament type: VARCHAR table: table_name_94
SELECT date FROM table_name_94 WHERE tournament = "outback steakhouse pro-am"
What is the biggest crowd when carlton is the away squad?
columns: - name: crowd type: INTEGER - name: away_team type: VARCHAR table: table_name_48
SELECT MAX(crowd) FROM table_name_48 WHERE away_team = "carlton"