output
stringlengths
18
557
instruction
stringlengths
22
540
SELECT record FROM table_name_30 WHERE res = "win" AND event = "extreme fighting 1"
CREATE TABLE table_name_30 (record VARCHAR, res VARCHAR, event VARCHAR), Which Record has the Res of win with the Event of extreme fighting 1?
SELECT MIN(attendance) FROM table_name_3 WHERE record = "8-4"
CREATE TABLE table_name_3 (attendance INTEGER, record VARCHAR), What was the attendance where the record was 8-4?
SELECT MAX(total) FROM table_name_99 WHERE bronze < 12 AND gold = 0 AND silver = 1
CREATE TABLE table_name_99 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR), What is the largest total for a team with fewer than 12 bronze, 1 silver and 0 gold medals?
SELECT MAX(total) FROM table_name_87 WHERE bronze = 1 AND rank = "7" AND gold > 0
CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR), What is the largest total for a team with 1 bronze, 0 gold medals and ranking of 7?
SELECT SUM(bronze) FROM table_name_19 WHERE silver < 0
CREATE TABLE table_name_19 (bronze INTEGER, silver INTEGER), What is the number of bronze medals when there are fewer than 0 silver medals?
SELECT MAX(silver) FROM table_name_32 WHERE total < 1
CREATE TABLE table_name_32 (silver INTEGER, total INTEGER), What is the highest number of silver medals for a team with total less than 1?
SELECT player FROM table_name_68 WHERE hometown = "tampa, florida"
CREATE TABLE table_name_68 (player VARCHAR, hometown VARCHAR), Which player is from Tampa, Florida?
SELECT college FROM table_name_85 WHERE player = "jordan phillips"
CREATE TABLE table_name_85 (college VARCHAR, player VARCHAR), Which college is Jordan Phillips playing for?
SELECT college FROM table_name_5 WHERE position = "defensive line" AND school = "grant high school"
CREATE TABLE table_name_5 (college VARCHAR, position VARCHAR, school VARCHAR), What college has a position of defensive line and Grant high school?
SELECT position FROM table_name_47 WHERE school = "plant high school"
CREATE TABLE table_name_47 (position VARCHAR, school VARCHAR), What position is for Plant high school?
SELECT position FROM table_name_94 WHERE school = "dr. phillips high school"
CREATE TABLE table_name_94 (position VARCHAR, school VARCHAR), What position is for Dr. Phillips high school?
SELECT hometown FROM table_name_19 WHERE player = "ray drew"
CREATE TABLE table_name_19 (hometown VARCHAR, player VARCHAR), Which hometown has a player of Ray Drew?
SELECT MAX(byes) FROM table_name_95 WHERE against < 1867 AND wins = 11
CREATE TABLE table_name_95 (byes INTEGER, against VARCHAR, wins VARCHAR), What is the most byes with 11 wins and fewer than 1867 againsts?
SELECT COUNT(draws) FROM table_name_15 WHERE wins < 9 AND byes < 2
CREATE TABLE table_name_15 (draws VARCHAR, wins VARCHAR, byes VARCHAR), What are the draws when wins are fwewer than 9 and byes fewer than 2?
SELECT MIN(draws) FROM table_name_65 WHERE losses < 7 AND tallangatta_dfl = "mitta united"
CREATE TABLE table_name_65 (draws INTEGER, losses VARCHAR, tallangatta_dfl VARCHAR), What are the fewest draws with less than 7 losses and Mitta United is the Tallagatta DFL?
SELECT SUM(losses) FROM table_name_47 WHERE wins = 9 AND against > 1326
CREATE TABLE table_name_47 (losses INTEGER, wins VARCHAR, against VARCHAR), What are the losses when there are 9 wins and more than 1326 against?
SELECT decision FROM table_name_53 WHERE record = "45–18–6"
CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR), What was the decision of the Red Wings game when they had a record of 45–18–6?
SELECT r_51_o FROM table_name_8 WHERE d_42_o = "r 19"
CREATE TABLE table_name_8 (r_51_o VARCHAR, d_42_o VARCHAR), Which R 51 O value corresponds to a D 42 O value of r 19?
SELECT MAX(round) FROM table_name_14 WHERE school_club_team = "louisville" AND pick > 75
CREATE TABLE table_name_14 (round INTEGER, school_club_team VARCHAR, pick VARCHAR), What's the highest round that louisville drafted into when their pick was over 75?
SELECT MIN(round) FROM table_name_31 WHERE school_club_team = "southern mississippi"
CREATE TABLE table_name_31 (round INTEGER, school_club_team VARCHAR), Where's the first round that southern mississippi shows up during the draft?
SELECT MIN(population) FROM table_name_38 WHERE regional_county_municipality = "brome-missisquoi" AND name = "cowansville" AND region < 16
CREATE TABLE table_name_38 (population INTEGER, region VARCHAR, regional_county_municipality VARCHAR, name VARCHAR), Cowansville has less than 16 regions and is a Brome-Missisquoi Municipality, what is their population?
SELECT MIN(population) FROM table_name_64 WHERE type = "m" AND name = "saint-blaise-sur-richelieu" AND area__km_2__ < 68.42
CREATE TABLE table_name_64 (population INTEGER, area__km_2__ VARCHAR, type VARCHAR, name VARCHAR), Saint-Blaise-Sur-Richelieu is smaller than 68.42 km^2, what is the population of this type M municipality?
SELECT MIN(code) FROM table_name_14 WHERE regional_county_municipality = "le haut-saint-laurent" AND region > 16
CREATE TABLE table_name_14 (code INTEGER, regional_county_municipality VARCHAR, region VARCHAR), What is the code for a Le Haut-Saint-Laurent municipality that has 16 or more regions?
SELECT location FROM table_name_74 WHERE tournament = "security pacific senior classic"
CREATE TABLE table_name_74 (location VARCHAR, tournament VARCHAR), Where was the security pacific senior classic?
SELECT home_team AS score FROM table_name_69 WHERE away_team = "north melbourne"
CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR), What is the Home team score for the Away team of North Melbourne?
SELECT date FROM table_name_81 WHERE away_team = "footscray"
CREATE TABLE table_name_81 (date VARCHAR, away_team VARCHAR), On what date the footscray's away game?
SELECT date FROM table_name_3 WHERE result = "3–2"
CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR), What was the date of the game with a result of 3–2?
SELECT date FROM table_name_27 WHERE goal = 7
CREATE TABLE table_name_27 (date VARCHAR, goal VARCHAR), What was the date of the game with a goal of 7?
SELECT opponent FROM table_name_91 WHERE date = "april 16"
CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR), Who is the opponent on april 16?
SELECT record FROM table_name_43 WHERE date = "april 23"
CREATE TABLE table_name_43 (record VARCHAR, date VARCHAR), What is the team's record on april 23?
SELECT competition FROM table_name_12 WHERE result = "loss" AND location = "berlin" AND score = "0-3"
CREATE TABLE table_name_12 (competition VARCHAR, score VARCHAR, result VARCHAR, location VARCHAR), what is the competition when the result is loss in berlin with a score of 0-3?
SELECT date FROM table_name_57 WHERE location = "prague" AND competition = "world group, consolation round"
CREATE TABLE table_name_57 (date VARCHAR, location VARCHAR, competition VARCHAR), what is the date for the game in prague for the world group, consolation round competition?
SELECT competition FROM table_name_3 WHERE location = "tokyo" AND result = "loss"
CREATE TABLE table_name_3 (competition VARCHAR, location VARCHAR, result VARCHAR), What is the competition in tokyo with the result loss?
SELECT year FROM table_name_84 WHERE date = "not played"
CREATE TABLE table_name_84 (year VARCHAR, date VARCHAR), what is the year when the date is not played?
SELECT score FROM table_name_45 WHERE result = "loss" AND year = "1980" AND competition = "world group, consolation round"
CREATE TABLE table_name_45 (score VARCHAR, competition VARCHAR, result VARCHAR, year VARCHAR), what is the score when the result is loss, the year is 1980 and the competition is world group, consolation round?
SELECT location_attendance FROM table_name_5 WHERE game > 64 AND date = "march 16"
CREATE TABLE table_name_5 (location_attendance VARCHAR, game VARCHAR, date VARCHAR), How many attended the game on march 16 after over 64 games?
SELECT COUNT(game) FROM table_name_12 WHERE high_rebounds = "radoslav nesterović (8)" AND high_assists = "josé calderón (9)"
CREATE TABLE table_name_12 (game VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR), What numbered game featured a High rebounds of radoslav nesterović (8), and a High assists of josé calderón (9)?
SELECT sales FROM table_name_51 WHERE position < 13 AND artist = "dj casper"
CREATE TABLE table_name_51 (sales VARCHAR, position VARCHAR, artist VARCHAR), What were the sales for Dj Casper when he was in a position lower than 13?
SELECT score FROM table_name_27 WHERE date = "january 12"
CREATE TABLE table_name_27 (score VARCHAR, date VARCHAR), What was the score on January 12?
SELECT home FROM table_name_61 WHERE visitor = "ottawa senators" AND score = "1–5"
CREATE TABLE table_name_61 (home VARCHAR, visitor VARCHAR, score VARCHAR), Which home team had a visitor of Ottawa Senators with a score of 1–5?
SELECT team FROM table_name_38 WHERE number = 14 AND years_with_franchise = "1993-2000"
CREATE TABLE table_name_38 (team VARCHAR, number VARCHAR, years_with_franchise VARCHAR), Which team is number 14 and had a franchise in 1993-2000?
SELECT name FROM table_name_61 WHERE position = "g" AND team = "petron blaze boosters" AND year_retired = "2000"
CREATE TABLE table_name_61 (name VARCHAR, year_retired VARCHAR, position VARCHAR, team VARCHAR), Who was the player in Position G on the Petron Blaze Boosters and retired in 2000?
SELECT years_with_franchise FROM table_name_16 WHERE number = 9
CREATE TABLE table_name_16 (years_with_franchise VARCHAR, number VARCHAR), How many years did the team in slot number 9 have a franchise?
SELECT MAX(matches) FROM table_name_32 WHERE point = 43 AND final_rank < 7
CREATE TABLE table_name_32 (matches INTEGER, point VARCHAR, final_rank VARCHAR), Tell me the highest matches for point 43 and final rank less than 7
SELECT AVG(final_rank) FROM table_name_8 WHERE lose > 10 AND point < 43
CREATE TABLE table_name_8 (final_rank INTEGER, lose VARCHAR, point VARCHAR), Tell me the average final rank for loe more than 10 and point less than 43
SELECT AVG(lose) FROM table_name_96 WHERE lost_point > 16 AND goal_difference < 37 AND point < 43
CREATE TABLE table_name_96 (lose INTEGER, point VARCHAR, lost_point VARCHAR, goal_difference VARCHAR), I want the average lose for lost point more than 16 and goal difference less than 37 and point less than 43
SELECT COUNT(matches) FROM table_name_14 WHERE draw < 7 AND lost_point = 16 AND lose > 4
CREATE TABLE table_name_14 (matches VARCHAR, lose VARCHAR, draw VARCHAR, lost_point VARCHAR), I want the total number of matches for draw less than 7 and lost point of 16 with lose more than 4
SELECT MAX(point) FROM table_name_98 WHERE lost_point = 33 AND league_point < 52
CREATE TABLE table_name_98 (point INTEGER, lost_point VARCHAR, league_point VARCHAR), Tell me the highest point with lost point being 33 and league point less than 52
SELECT laps FROM table_name_31 WHERE grid > 1 AND time_retired = "halfshaft"
CREATE TABLE table_name_31 (laps VARCHAR, grid VARCHAR, time_retired VARCHAR), How many laps for a grid larger than 1 with a Time/Retired of halfshaft?
SELECT AVG(grid) FROM table_name_61 WHERE laps > 8 AND time_retired = "+2 laps" AND driver = "peter gethin"
CREATE TABLE table_name_61 (grid INTEGER, driver VARCHAR, laps VARCHAR, time_retired VARCHAR), What is the average grid that has over 8 laps, a Time/Retired of +2 laps, and peter gethin driving?
SELECT MIN(grid) FROM table_name_20 WHERE constructor = "brm" AND laps > 54
CREATE TABLE table_name_20 (grid INTEGER, constructor VARCHAR, laps VARCHAR), What is the low grid that has brm and over 54 laps?
SELECT city_of_license FROM table_name_62 WHERE frequency_mhz > 94.1
CREATE TABLE table_name_62 (city_of_license VARCHAR, frequency_mhz INTEGER), What city has larger than 94.1 as a frequency?
SELECT AVG(frequency_mhz) FROM table_name_2 WHERE call_sign = "w224bn"
CREATE TABLE table_name_2 (frequency_mhz INTEGER, call_sign VARCHAR), What is the Frequency MHz for the station with a call sign of w224bn?
SELECT class FROM table_name_45 WHERE city_of_license = "black mountain, north carolina"
CREATE TABLE table_name_45 (class VARCHAR, city_of_license VARCHAR), What class is the city of black mountain, north carolina?
SELECT fcc_info FROM table_name_35 WHERE frequency_mhz > 92.7 AND call_sign = "w262al"
CREATE TABLE table_name_35 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR), What is the FCC frequency for the station w262al which has a Frequency MHz larger than 92.7?
SELECT grid FROM table_name_74 WHERE time_retired = "+ 1:24.3"
CREATE TABLE table_name_74 (grid VARCHAR, time_retired VARCHAR), What grad has a Time/Retired of + 1:24.3?
SELECT MIN(laps) FROM table_name_20 WHERE grid > 6 AND driver = "henri pescarolo"
CREATE TABLE table_name_20 (laps INTEGER, grid VARCHAR, driver VARCHAR), What is the low lap total for henri pescarolo with a grad larger than 6?
SELECT MIN(laps) FROM table_name_60 WHERE time_retired = "+ 3:27.3" AND grid > 16
CREATE TABLE table_name_60 (laps INTEGER, time_retired VARCHAR, grid VARCHAR), What is the low lap total for a grid larger than 16 and has a Time/Retired of + 3:27.3?
SELECT published_in FROM table_name_22 WHERE setting = "mars" AND publication_date = "july 1934"
CREATE TABLE table_name_22 (published_in VARCHAR, setting VARCHAR, publication_date VARCHAR), Name what was published in july 1934 with a setting of mars
SELECT publication_date FROM table_name_25 WHERE fictional_date = "2112"
CREATE TABLE table_name_25 (publication_date VARCHAR, fictional_date VARCHAR), Name the publication date when the fictional date is 2112
SELECT title FROM table_name_84 WHERE published_in = "astounding stories" AND main_characters = "grant calthorpe, lee neilan"
CREATE TABLE table_name_84 (title VARCHAR, published_in VARCHAR, main_characters VARCHAR), Name the title when the main characters are grant calthorpe, lee neilan and the published in of astounding stories
SELECT club FROM table_name_28 WHERE runners_up > 1 AND last_final_won = "2010"
CREATE TABLE table_name_28 (club VARCHAR, runners_up VARCHAR, last_final_won VARCHAR), What club has over 1 runners-up and last won the final in 2010?
SELECT wins FROM table_name_54 WHERE total_final_appearances < 2 AND club = "dunfermline athletic"
CREATE TABLE table_name_54 (wins VARCHAR, total_final_appearances VARCHAR, club VARCHAR), How manywins for dunfermline athletic that has a total final appearances less than 2?
SELECT crowd FROM table_name_84 WHERE away_team = "hawthorn"
CREATE TABLE table_name_84 (crowd VARCHAR, away_team VARCHAR), What was the crowd size of the match featuring Hawthorn as the Away team?
SELECT home_team AS score FROM table_name_59 WHERE home_team = "north melbourne"
CREATE TABLE table_name_59 (home_team VARCHAR), What score did the home team of north melbourne get?
SELECT home_team FROM table_name_14 WHERE away_team = "collingwood"
CREATE TABLE table_name_14 (home_team VARCHAR, away_team VARCHAR), Which home team played the away team of collingwood?
SELECT method FROM table_name_36 WHERE time = "5:00" AND opponent = "adriano martins"
CREATE TABLE table_name_36 (method VARCHAR, time VARCHAR, opponent VARCHAR), What method had Adriano Martins as an opponent and a time of 5:00?
SELECT COUNT(round) FROM table_name_10 WHERE time = "5:00" AND opponent = "drew fickett"
CREATE TABLE table_name_10 (round VARCHAR, time VARCHAR, opponent VARCHAR), What is the total number of rounds when Drew Fickett was the opponent and the time is 5:00?
SELECT competition FROM table_name_68 WHERE location = "bamako"
CREATE TABLE table_name_68 (competition VARCHAR, location VARCHAR), What competition is located in bamako?
SELECT score FROM table_name_28 WHERE opponent = "algeria" AND location = "porto-novo"
CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, location VARCHAR), What is the score from the game where Algeria is the opponent at Porto-Novo?
SELECT AVG(rd__number) FROM table_name_64 WHERE player = "moe lemay"
CREATE TABLE table_name_64 (rd__number INTEGER, player VARCHAR), What is the mean road number when Moe Lemay is the player?
SELECT COUNT(pl_gp) FROM table_name_13 WHERE pick__number = 178 AND rd__number > 9
CREATE TABLE table_name_13 (pl_gp VARCHAR, pick__number VARCHAR, rd__number VARCHAR), What is the sum number of Pl GP when the pick number is 178 and the road number is bigger than 9?
SELECT SUM(pl_gp) FROM table_name_90 WHERE pick__number = 199 AND reg_gp > 0
CREATE TABLE table_name_90 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR), What is the total number of Pl GP when the pick number is 199 and the Reg GP is bigger than 0?
SELECT position FROM table_name_33 WHERE school = "east texas state"
CREATE TABLE table_name_33 (position VARCHAR, school VARCHAR), What position did the player from East Texas State play?
SELECT date FROM table_name_71 WHERE week < 2
CREATE TABLE table_name_71 (date VARCHAR, week INTEGER), What day did they play before week 2?
SELECT cons FROM table_name_19 WHERE lib_dem = "8%" AND lead = "27%"
CREATE TABLE table_name_19 (cons VARCHAR, lib_dem VARCHAR, lead VARCHAR), What is the cons for lib dem of 8% and a lead of 27%
SELECT lead FROM table_name_58 WHERE others = "5%"
CREATE TABLE table_name_58 (lead VARCHAR, others VARCHAR), I want the lead for others being 5%
SELECT plaid_cymru FROM table_name_9 WHERE date_s__conducted = "4 may 2011"
CREATE TABLE table_name_9 (plaid_cymru VARCHAR, date_s__conducted VARCHAR), I want the plaid cymru for 4 may 2011
SELECT plaid_cymru FROM table_name_77 WHERE polling_organisation_client = "yougov/itv wales" AND date_s__conducted = "4 may 2011"
CREATE TABLE table_name_77 (plaid_cymru VARCHAR, polling_organisation_client VARCHAR, date_s__conducted VARCHAR), I want the plaid cymru for Polling organisation/client of yougov/itv wales for 4 may 2011
SELECT others FROM table_name_60 WHERE cons = "21%" AND lead = "24%"
CREATE TABLE table_name_60 (others VARCHAR, cons VARCHAR, lead VARCHAR), Name the others for cons of 21% and lead of 24%
SELECT date_s__conducted FROM table_name_69 WHERE plaid_cymru = "19%"
CREATE TABLE table_name_69 (date_s__conducted VARCHAR, plaid_cymru VARCHAR), Tell me the dates conducted for plaid cymru of 19%
SELECT score FROM table_name_9 WHERE date = "20/6/97"
CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR), What was the score on 20/6/97?
SELECT score FROM table_name_83 WHERE date = "20/6/97"
CREATE TABLE table_name_83 (score VARCHAR, date VARCHAR), What was the score on 20/6/97?
SELECT tries FROM table_name_10 WHERE date = "14/6/97"
CREATE TABLE table_name_10 (tries VARCHAR, date VARCHAR), What were the tries on 14/6/97?
SELECT goals FROM table_name_86 WHERE date = "3/10/97"
CREATE TABLE table_name_86 (goals VARCHAR, date VARCHAR), What were the goals on 3/10/97?
SELECT laps FROM table_name_67 WHERE grid = 3
CREATE TABLE table_name_67 (laps VARCHAR, grid VARCHAR), Tell me the laps for 3 grids
SELECT away_team AS score FROM table_name_44 WHERE away_team = "footscray"
CREATE TABLE table_name_44 (away_team VARCHAR), What was the Away team score for Footscray?
SELECT home_team AS score FROM table_name_36 WHERE away_team = "south melbourne"
CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR), What was the Home team score for the team that played South Melbourne?
SELECT SUM(interview) FROM table_name_57 WHERE average = 8.363 AND evening_gown > 8.37
CREATE TABLE table_name_57 (interview INTEGER, average VARCHAR, evening_gown VARCHAR), Tell me the sum of interview for evening gown more than 8.37 and average of 8.363
SELECT COUNT(swimsuit) FROM table_name_54 WHERE interview < 9.09 AND evening_gown < 8.21 AND average = 8.453
CREATE TABLE table_name_54 (swimsuit VARCHAR, average VARCHAR, interview VARCHAR, evening_gown VARCHAR), Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09
SELECT state FROM table_name_84 WHERE evening_gown > 8.86 AND swimsuit < 8.96 AND interview < 8.7
CREATE TABLE table_name_84 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, swimsuit VARCHAR), Name the state with an evening gown more than 8.86 and interview less than 8.7 and swimsuit less than 8.96
SELECT SUM(stellar_mass___m__) FROM table_name_57 WHERE type = "m0"
CREATE TABLE table_name_57 (stellar_mass___m__ INTEGER, type VARCHAR), What is the total stellar mass of the type m0?
SELECT MAX(planetary_mass___m) AS ⊕__ FROM table_name_5 WHERE rv__cm_s_ = 65 AND period__days_ < 21
CREATE TABLE table_name_5 (planetary_mass___m INTEGER, rv__cm_s_ VARCHAR, period__days_ VARCHAR), What is the highest planetary mass having an RV (cm/s) of 65 and a Period (days) less than 21?
SELECT MIN(period__days_) FROM table_name_1 WHERE planetary_mass___m⊕__ = 1 AND stellar_mass___m__ > 0.21 AND type = "m0"
CREATE TABLE table_name_1 (period__days_ INTEGER, type VARCHAR, planetary_mass___m⊕__ VARCHAR, stellar_mass___m__ VARCHAR), What is the smallest period (days) to have a planetary mass of 1, a stellar mass greater than 0.21 and of the type M0?
SELECT AVG(word__number) FROM table_name_9 WHERE name = "crs" AND subframe__number < 2
CREATE TABLE table_name_9 (word__number INTEGER, name VARCHAR, subframe__number VARCHAR), What is the average word count with crs and subframes lesser than 2?
SELECT page__number FROM table_name_79 WHERE word__number > 5 AND bits = "18–22"
CREATE TABLE table_name_79 (page__number VARCHAR, word__number VARCHAR, bits VARCHAR), What is the page count and word count greater than 5 with Bits of 18–22?
SELECT SUM(subframe__number) FROM table_name_48 WHERE bits = "18–22"
CREATE TABLE table_name_48 (subframe__number INTEGER, bits VARCHAR), What is the total subframe count with Bits of 18–22?
SELECT SUM(attendance) FROM table_name_76 WHERE tie_no = 19
CREATE TABLE table_name_76 (attendance INTEGER, tie_no VARCHAR), How many attended tie number 19?
SELECT away_team FROM table_name_95 WHERE tie_no > 16 AND home_team = "forest green rovers"
CREATE TABLE table_name_95 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR), Who was the away team in a tie no larger than 16 with forest green rovers at home?
SELECT MAX(attendance) FROM table_name_9 WHERE home_team = "stevenage borough"
CREATE TABLE table_name_9 (attendance INTEGER, home_team VARCHAR), What is the highest attendance for games with stevenage borough at home?