question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Who is the regular season winner for the Ivy League conference?
CREATE TABLE table_21091982_3 (regular_season_winner VARCHAR, conference VARCHAR)
SELECT regular_season_winner FROM table_21091982_3 WHERE conference = "Ivy League"
How many courses are there in total?
CREATE TABLE COURSE (Id VARCHAR)
SELECT COUNT(*) FROM COURSE
What is the total number of laps with a Driver of eddie irvine?
CREATE TABLE table_name_93 (laps INTEGER, driver VARCHAR)
SELECT SUM(laps) FROM table_name_93 WHERE driver = "eddie irvine"
What is the area (km2) for the place with a 2010 population of 153085?
CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, population__2010_ VARCHAR)
SELECT area__km_2__ FROM table_261222_1 WHERE population__2010_ = 153085
What ranking is james franklin?
CREATE TABLE table_name_69 (rank VARCHAR, player VARCHAR)
SELECT rank FROM table_name_69 WHERE player = "james franklin"
what being the maximum total passengers 2008 with change 2008/09 being 6.5%
CREATE TABLE table_13836704_4 (total_passengers_2008 INTEGER, change_2008_09 VARCHAR)
SELECT MAX(total_passengers_2008) FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
Which teams had 10 goals scored against them
CREATE TABLE table_15420044_1 (team VARCHAR, against VARCHAR)
SELECT team FROM table_15420044_1 WHERE against = 10
What is the second qualifying time for the dale coyne racing team with a first qualifying time of 1:00.081?
CREATE TABLE table_name_31 (qual_2 VARCHAR, team VARCHAR, qual_1 VARCHAR)
SELECT qual_2 FROM table_name_31 WHERE team = "dale coyne racing" AND qual_1 = "1:00.081"
What day was the margin of victory 1 stroke when the tournament was colonial national invitation?
CREATE TABLE table_name_5 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND tournament = "colonial national invitation"
WHAT IS THE YEAR'S TALLEST VALUE WITH FLOORS LESS THAN 24, AND 05.0 210 north charles street?
CREATE TABLE table_name_10 (years_as_tallest VARCHAR, floors VARCHAR, street_address VARCHAR)
SELECT years_as_tallest FROM table_name_10 WHERE floors < 24 AND street_address = "05.0 210 north charles street"
What highest Year has Wins 15 and Losses less than 5?
CREATE TABLE table_name_78 (year INTEGER, wins VARCHAR, loses VARCHAR)
SELECT MAX(year) FROM table_name_78 WHERE wins = 15 AND loses < 5
Who was the minister of the labor party and had 26 goverments?
CREATE TABLE table_name_82 (minister VARCHAR, party VARCHAR, governments VARCHAR)
SELECT minister FROM table_name_82 WHERE party = "labor party" AND governments = "26"
What actor played the "female, older" role in the original production?
CREATE TABLE table_17827271_1 (actor_in_original_production VARCHAR, actor_required VARCHAR)
SELECT actor_in_original_production FROM table_17827271_1 WHERE actor_required = "Female, older"
What is the description of the type of the company who concluded its contracts most recently?
CREATE TABLE Maintenance_Contracts (maintenance_contract_company_id VARCHAR, contract_end_date VARCHAR); CREATE TABLE Third_Party_Companies (company_name VARCHAR, company_id VARCHAR, company_type_code VARCHAR); CREATE TABLE Ref_Company_Types (company_type_code VARCHAR)
SELECT T1.company_name FROM Third_Party_Companies AS T1 JOIN Maintenance_Contracts AS T2 ON T1.company_id = T2.maintenance_contract_company_id JOIN Ref_Company_Types AS T3 ON T1.company_type_code = T3.company_type_code ORDER BY T2.contract_end_date DESC LIMIT 1
How many people attended the home game for South Melbourne?
CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)
SELECT SUM(crowd) FROM table_name_58 WHERE home_team = "south melbourne"
When did the opponent knockout Barry Prior in more than 2 rounds?
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)
SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior"
Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178?
CREATE TABLE table_name_16 (rank INTEGER, borough VARCHAR, population VARCHAR)
SELECT MIN(rank) FROM table_name_16 WHERE borough = "richmondshire" AND population > 8 OFFSET 178
Who is the candidate wehre district is louisiana 1?
CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 1"
The event WC Rio De Janeiro with a total of 16 has what as rank points?
CREATE TABLE table_name_85 (rank_points VARCHAR, event VARCHAR, total VARCHAR)
SELECT rank_points FROM table_name_85 WHERE event = "wc rio de janeiro" AND total = "16"
When turquoise is the map colour what is the length?
CREATE TABLE table_17839_1 (length VARCHAR, map_colour VARCHAR)
SELECT length FROM table_17839_1 WHERE map_colour = "Turquoise"
When is the tournament of konica san jose classic?
CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_41 WHERE tournament = "konica san jose classic"
Who had the Points classification for Stage 13?
CREATE TABLE table_name_20 (points_classification VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_name_20 WHERE stage = "13"
What was the English title of Ladrones Y Mentirosos?
CREATE TABLE table_27423508_1 (english_title VARCHAR, spanish_title VARCHAR)
SELECT english_title FROM table_27423508_1 WHERE spanish_title = "Ladrones y mentirosos"
How many Winners have a Third of 1, and Runners-up smaller than 0?
CREATE TABLE table_name_27 (winners VARCHAR, third VARCHAR, runners_up VARCHAR)
SELECT COUNT(winners) FROM table_name_27 WHERE third = 1 AND runners_up < 0
Name the order number for 1960s
CREATE TABLE table_19508635_1 (order__number VARCHAR, theme VARCHAR)
SELECT order__number FROM table_19508635_1 WHERE theme = "1960s"
What were the high rebounds on February 24?
CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_15869204_7 WHERE date = "February 24"
What is 你 朋友's Label?
CREATE TABLE table_name_92 (label VARCHAR, chinese__simplified_ VARCHAR)
SELECT label FROM table_name_92 WHERE chinese__simplified_ = "你 朋友"
WHAT IS THE RECORD FOR DATE NOVEMBER 14?
CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_44 WHERE date = "november 14"
What was the score when the NY Islanders was the visiting team?
CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_67 WHERE visitor = "ny islanders"
What date was the ship 'Wyandotte' launched?
CREATE TABLE table_name_45 (launched VARCHAR, ship VARCHAR)
SELECT launched FROM table_name_45 WHERE ship = "wyandotte"
Where the length is 91', what is the year built?
CREATE TABLE table_name_38 (year_built VARCHAR, length VARCHAR)
SELECT year_built FROM table_name_38 WHERE length = "91'"
The UFC 44 event has what method?
CREATE TABLE table_name_98 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_98 WHERE event = "ufc 44"
What championship after 1997 was the score 1–6, 4–6, 7–5, 5–7?
CREATE TABLE table_name_3 (championship VARCHAR, year VARCHAR, score VARCHAR)
SELECT championship FROM table_name_3 WHERE year > 1997 AND score = "1–6, 4–6, 7–5, 5–7"
What is the average number of rooms of apartments with type code "Studio"?
CREATE TABLE Apartments (room_count INTEGER, apt_type_code VARCHAR)
SELECT AVG(room_count) FROM Apartments WHERE apt_type_code = "Studio"
What is the Series leader with a Date that is may 31?
CREATE TABLE table_name_64 (series_leader VARCHAR, date VARCHAR)
SELECT series_leader FROM table_name_64 WHERE date = "may 31"
How many losses does the club with 539 points for have?
CREATE TABLE table_1676073_13 (lost VARCHAR, points_for VARCHAR)
SELECT lost FROM table_1676073_13 WHERE points_for = "539"
What was the position of the team that had a goal difference of less than -11 and played less than 38 games?
CREATE TABLE table_name_98 (position INTEGER, goal_difference VARCHAR, played VARCHAR)
SELECT SUM(position) FROM table_name_98 WHERE goal_difference < -11 AND played < 38
Who wrote episode number 28?
CREATE TABLE table_26561506_1 (written_by VARCHAR, no VARCHAR)
SELECT written_by FROM table_26561506_1 WHERE no = 28
What day in february was game 53?
CREATE TABLE table_name_96 (february INTEGER, game VARCHAR)
SELECT AVG(february) FROM table_name_96 WHERE game = 53
What college or league did the round 2 pick with d position come from?
CREATE TABLE table_name_12 (college_junior_club_team__league_ VARCHAR, round VARCHAR, position VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_12 WHERE round = 2 AND position = "d"
When did the episode featuring a master using Brazilian jiu-jitsu air?
CREATE TABLE table_14937957_1 (original_airdate VARCHAR, martial_art_style VARCHAR)
SELECT original_airdate FROM table_14937957_1 WHERE martial_art_style = "Brazilian Jiu-Jitsu"
How much is a product with a Sampling Rate of 12-bit 40khz?
CREATE TABLE table_name_65 (price VARCHAR, sampling_rate VARCHAR)
SELECT price FROM table_name_65 WHERE sampling_rate = "12-bit 40khz"
How many times was frank m. clark the incumbent?
CREATE TABLE table_1341865_40 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(result) FROM table_1341865_40 WHERE incumbent = "Frank M. Clark"
what is the meaning of the latin day name "dies saturni"?
CREATE TABLE table_2624098_1 (latin_day_name_meaning VARCHAR, glossed_from_latin_day_name VARCHAR)
SELECT latin_day_name_meaning FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Saturni"
When the Away team is fitzroy on the Date of 15 july 1967, what was the Home team playing?
CREATE TABLE table_name_89 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_89 WHERE date = "15 july 1967" AND away_team = "fitzroy"
what is the most laps with the time/retired is differential and the grid is more than 2?
CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
SELECT MAX(laps) FROM table_name_35 WHERE time_retired = "differential" AND grid > 2
What the episode count for Ben 10: Alien Force Volume 8 on DVD?
CREATE TABLE table_name_90 (episode_count VARCHAR, dvd_title VARCHAR)
SELECT episode_count FROM table_name_90 WHERE dvd_title = "ben 10: alien force volume 8"
What is the Losing bonus with an extra try bonus?
CREATE TABLE table_name_89 (losing_bonus VARCHAR, try_bonus VARCHAR)
SELECT losing_bonus FROM table_name_89 WHERE try_bonus = "try bonus"
Which club has a League of american basketball association, and a Venue of tba?
CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR)
SELECT club FROM table_name_86 WHERE league = "american basketball association" AND venue = "tba"
Who was the Human Resources & Operations person between 2003-2004?
CREATE TABLE table_name_14 (human_resources_ VARCHAR, _operations VARCHAR, year VARCHAR)
SELECT human_resources_ & _operations FROM table_name_14 WHERE year = "2003-2004"
Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95
CREATE TABLE table_name_31 (_number_of_total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)
SELECT MAX(_number_of_total_votes) FROM table_name_31 WHERE _percentage_of_popular_vote = "32.41%" AND _number_of_seats_won > 95
what is the place when the score is 70-70=140?
CREATE TABLE table_name_53 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_53 WHERE score = 70 - 70 = 140
What is the lowest round that Adam Wiesel was picked?
CREATE TABLE table_name_9 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_9 WHERE player = "adam wiesel"
How many Stolen Ends have Ends Lost smaller than 44, and Blank Ends smaller than 7?
CREATE TABLE table_name_83 (stolen_ends VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR)
SELECT COUNT(stolen_ends) FROM table_name_83 WHERE ends_lost < 44 AND blank_ends < 7
What is the latest year for Entrant of equipe talbot gitanes with less than 1 point?
CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, points VARCHAR)
SELECT MAX(year) FROM table_name_68 WHERE entrant = "equipe talbot gitanes" AND points < 1
Name the duration for georgi grechko
CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR)
SELECT duration__days_ FROM table_245801_1 WHERE crew = "Georgi Grechko"
What country was the series finale present and was shown Monday to Sunday at 18:45-21:00?
CREATE TABLE table_name_70 (country VARCHAR, timeslot VARCHAR, series_finale VARCHAR, weekly_schedule VARCHAR)
SELECT country FROM table_name_70 WHERE series_finale = "present" AND weekly_schedule = "monday to sunday" AND timeslot = "18:45-21:00"
What joined year does Dropped Athletics have?
CREATE TABLE table_1973729_2 (joined INTEGER, current_conference VARCHAR)
SELECT MAX(joined) FROM table_1973729_2 WHERE current_conference = "Dropped athletics"
What is the average number of wins for teams with 14 losses and against over 2200?
CREATE TABLE table_name_41 (wins INTEGER, losses VARCHAR, against VARCHAR)
SELECT AVG(wins) FROM table_name_41 WHERE losses = 14 AND against > 2200
Name the bayonet lug with ar-15 lightweight
CREATE TABLE table_name_92 (bayonet_lug VARCHAR, name VARCHAR)
SELECT bayonet_lug FROM table_name_92 WHERE name = "ar-15 lightweight"
What shows for 2006 when 2002 is Grand Slam Tournaments?
CREATE TABLE table_name_52 (Id VARCHAR)
SELECT 2006 FROM table_name_52 WHERE 2002 = "grand slam tournaments"
How many times was the incumbent mike capuano
CREATE TABLE table_1341395_22 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(result) FROM table_1341395_22 WHERE incumbent = "Mike Capuano"
What is the episode number that has production code 8abx15?
CREATE TABLE table_10088101_1 (no_in_series INTEGER, production_code VARCHAR)
SELECT MIN(no_in_series) FROM table_10088101_1 WHERE production_code = "8ABX15"
Which year did USA undergo a disaster?
CREATE TABLE table_name_15 (year VARCHAR, countries_affected VARCHAR)
SELECT year FROM table_name_15 WHERE countries_affected = "usa"
What is the gross capacity of the unit that started commercial operation on August 28, 1987?
CREATE TABLE table_name_17 (gross_capacity VARCHAR, commercial_operation VARCHAR)
SELECT gross_capacity FROM table_name_17 WHERE commercial_operation = "august 28, 1987"
what i the maximum number in the series where the production code is 3wab07?
CREATE TABLE table_20726262_4 (no_in_series INTEGER, production_code VARCHAR)
SELECT MAX(no_in_series) FROM table_20726262_4 WHERE production_code = "3WAB07"
What are the percentages in 2001 in all the provinces where the percentage in 2011 is 0.2%?
CREATE TABLE table_1939405_2 (_percentage_2001 VARCHAR, _percentage_2011 VARCHAR)
SELECT _percentage_2001 FROM table_1939405_2 WHERE _percentage_2011 = "0.2%"
When a school has authority of state and a decile greater than 1, what is the roll number?
CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR)
SELECT roll FROM table_name_66 WHERE authority = "state" AND decile > 1
Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport?
CREATE TABLE table_name_88 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR)
SELECT numbers__quantity_ordered_ FROM table_name_88 WHERE make__model = "eldorado national passport"
Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40?
CREATE TABLE table_name_79 (win_percentage INTEGER, points VARCHAR, record__w_l_t___otl_ VARCHAR)
SELECT AVG(win_percentage) FROM table_name_79 WHERE points < 472 AND record__w_l_t___otl_ = "140–220–40"
what where the playoffs where the avg attendance of the team was 3416
CREATE TABLE table_1908049_1 (playoffs VARCHAR, avg_attendance VARCHAR)
SELECT playoffs FROM table_1908049_1 WHERE avg_attendance = 3416
What was the attendance for the game when the challenge leader was at Big East (4-2)?
CREATE TABLE table_20540006_6 (attendance INTEGER, challenge_leader VARCHAR)
SELECT MAX(attendance) FROM table_20540006_6 WHERE challenge_leader = "Big East (4-2)"
In which position is the team Cerro Porteño?
CREATE TABLE table_14911550_5 (position VARCHAR, team VARCHAR)
SELECT position FROM table_14911550_5 WHERE team = "Cerro Porteño"
What is the highest grid for rider Fonsi Nieto?
CREATE TABLE table_name_7 (grid INTEGER, rider VARCHAR)
SELECT MAX(grid) FROM table_name_7 WHERE rider = "fonsi nieto"
What was the score of the game after game 6 on October 28?
CREATE TABLE table_name_32 (score VARCHAR, game VARCHAR, october VARCHAR)
SELECT score FROM table_name_32 WHERE game > 6 AND october = 28
What is the pick # for player wes lysack?
CREATE TABLE table_21321804_1 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_21321804_1 WHERE player = "Wes Lysack"
What is every specialization with the website Jstu.edu.bd
CREATE TABLE table_2112260_1 (specialization VARCHAR, website VARCHAR)
SELECT specialization FROM table_2112260_1 WHERE website = "jstu.edu.bd"
How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?
CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR)
SELECT COUNT(womens_doubles) FROM table_12232843_1 WHERE mens_singles = "Jamie van Hooijdonk"
Can you tell me the Home or the Away that has the Shirt Number larger than 18?
CREATE TABLE table_name_25 (home_or_away VARCHAR, shirt_number INTEGER)
SELECT home_or_away FROM table_name_25 WHERE shirt_number > 18
What is every entry for passed when NO votes is 312187?
CREATE TABLE table_256286_43 (passed VARCHAR, no_votes VARCHAR)
SELECT passed FROM table_256286_43 WHERE no_votes = 312187
What was the attendance on September 19, 1971, after week 1?
CREATE TABLE table_name_38 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT AVG(attendance) FROM table_name_38 WHERE date = "september 19, 1971" AND week > 1
What is the scoring aerage for 111419?
CREATE TABLE table_13026799_3 (scoring_average VARCHAR, earnings__$_ VARCHAR)
SELECT scoring_average FROM table_13026799_3 WHERE earnings__$_ = 111419
What is the Rank of the game with an Attendance of 93,039?
CREATE TABLE table_name_98 (rank VARCHAR, attendance VARCHAR)
SELECT COUNT(rank) FROM table_name_98 WHERE attendance = 93 OFFSET 039
What is the lowest rank for Andre Vonarburg, when the notes are FB?
CREATE TABLE table_name_54 (rank INTEGER, notes VARCHAR, athlete VARCHAR)
SELECT MIN(rank) FROM table_name_54 WHERE notes = "fb" AND athlete = "andre vonarburg"
Which Bronze has a Nation of austria, and a Total larger than 6?
CREATE TABLE table_name_21 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT MAX(bronze) FROM table_name_21 WHERE nation = "austria" AND total > 6
Name the most pick for evgeny korolev
CREATE TABLE table_2840500_8 (pick INTEGER, player VARCHAR)
SELECT MAX(pick) FROM table_2840500_8 WHERE player = "Evgeny Korolev"
What is the name of the player from Spain with a rank lower than 3?
CREATE TABLE table_name_62 (name VARCHAR, nationality VARCHAR, ranking VARCHAR)
SELECT name FROM table_name_62 WHERE nationality = "spain" AND ranking > 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?
CREATE TABLE table_name_80 (finals VARCHAR, total VARCHAR, conference_finals VARCHAR, semifinals VARCHAR)
SELECT finals FROM table_name_80 WHERE conference_finals < 12 AND semifinals = 0 AND total = 3
For the game that was played on october 22 in west side grounds, what is the total attendance
CREATE TABLE table_name_41 (attendance VARCHAR, location VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_41 WHERE location = "west side grounds" AND date = "october 22"
What is the shooting preference of Matthew Myers, acquired in 2010?
CREATE TABLE table_name_99 (shoots VARCHAR, acquired VARCHAR, player VARCHAR)
SELECT shoots FROM table_name_99 WHERE acquired = 2010 AND player = "matthew myers"
What is the record where arco arena 17361 is location attendance?
CREATE TABLE table_23285805_8 (record VARCHAR, location_attendance VARCHAR)
SELECT record FROM table_23285805_8 WHERE location_attendance = "Arco Arena 17361"
What did the golfer from Australia score?
CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_13 WHERE country = "australia"
Born in 1982, this guard has what listed as a height?
CREATE TABLE table_name_44 (height VARCHAR, position VARCHAR, year_born VARCHAR)
SELECT height FROM table_name_44 WHERE position = "guard" AND year_born = 1982
Who is the artist for strip numbers 3932-4031a?
CREATE TABLE table_2161859_1 (artist VARCHAR, strip_numbers VARCHAR)
SELECT artist FROM table_2161859_1 WHERE strip_numbers = "3932-4031A"
What is the least rank with more than 3 losses and less than 25 sets lost?
CREATE TABLE table_name_34 (rank INTEGER, loss VARCHAR, sets_lost VARCHAR)
SELECT MIN(rank) FROM table_name_34 WHERE loss > 3 AND sets_lost < 25
Find the weight of the youngest dog.
CREATE TABLE pets (weight VARCHAR, pet_age VARCHAR)
SELECT weight FROM pets ORDER BY pet_age LIMIT 1
How many different set of candidates were there when the incumbent was david e. finley?
CREATE TABLE table_1346137_4 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1346137_4 WHERE incumbent = "David E. Finley"
What's the 2005 result when 2001 is sf?
CREATE TABLE table_name_64 (Id VARCHAR)
SELECT 2005 FROM table_name_64 WHERE 2001 = "sf"
How many connection catagories are there for Tampa?
CREATE TABLE table_2093995_1 (connections VARCHAR, stations VARCHAR)
SELECT COUNT(connections) FROM table_2093995_1 WHERE stations = "Tampa"
What is the highest attendace of the game with the Lakers as the home team?
CREATE TABLE table_name_56 (attendance INTEGER, home VARCHAR)
SELECT MAX(attendance) FROM table_name_56 WHERE home = "lakers"