Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
14,900
<question>: What is the average number of Tries for Nathan McAvoy? <context>: CREATE TABLE table_name_60 (tries INTEGER, player VARCHAR)
SELECT AVG(tries) FROM table_name_60 WHERE player = "nathan mcavoy"
14,901
<question>: What is the average number of Tries with less than 28 Points for Mike Forshaw? <context>: CREATE TABLE table_name_79 (tries INTEGER, player VARCHAR, points VARCHAR)
SELECT AVG(tries) FROM table_name_79 WHERE player = "mike forshaw" AND points < 28
14,902
<question>: What position did the player from the saskatchewan roughriders (via toronto) play? <context>: CREATE TABLE table_name_31 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_name_31 WHERE cfl_team = "saskatchewan roughriders (via toronto)"
14,903
<question>: What numbered pick was dominic picard, ol, selected? <context>: CREATE TABLE table_name_8 (pick__number VARCHAR, position VARCHAR, player VARCHAR)
SELECT pick__number FROM table_name_8 WHERE position = "ol" AND player = "dominic picard"
14,904
<question>: Name the date which has a home team of north melbourne <context>: CREATE TABLE table_name_3 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_3 WHERE home_team = "north melbourne"
14,905
<question>: Name the away team for home team of fitzroy <context>: CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_17 WHERE home_team = "fitzroy"
14,906
<question>: What was the score for the away team that played at Glenferrie Oval? <context>: CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_27 WHERE venue = "glenferrie oval"
14,907
<question>: When was the attendance at a venue bigger than 35,151? <context>: CREATE TABLE table_name_36 (date VARCHAR, crowd INTEGER)
SELECT date FROM table_name_36 WHERE crowd > 35 OFFSET 151
14,908
<question>: Tell me the total number of Laps for Qual being larger than 142.81 with Grid of 12 <context>: CREATE TABLE table_name_68 (laps VARCHAR, qual VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_68 WHERE qual > 142.81 AND grid = 12
14,909
<question>: Tell me the total number of Qual Laps higher than 93 with a Rank of 32 with Grid less than 32 <context>: CREATE TABLE table_name_16 (qual VARCHAR, grid VARCHAR, laps VARCHAR, rank VARCHAR)
SELECT COUNT(qual) FROM table_name_16 WHERE laps > 93 AND rank = 32 AND grid < 32
14,910
<question>: Tell me the payload that has an In service for 2011 <context>: CREATE TABLE table_name_99 (payload__kg_ VARCHAR, in_service VARCHAR)
SELECT payload__kg_ FROM table_name_99 WHERE in_service = "2011"
14,911
<question>: Tell me the dimension that has a range of 8,000 – 10,000 <context>: CREATE TABLE table_name_57 (dimension__m_ VARCHAR, range__km_ VARCHAR)
SELECT dimension__m_ FROM table_name_57 WHERE range__km_ = "8,000 – 10,000"
14,912
<question>: Name the project which has a missle of agni-iii <context>: CREATE TABLE table_name_92 (project VARCHAR, missile VARCHAR)
SELECT project FROM table_name_92 WHERE missile = "agni-iii"
14,913
<question>: Name the payload that has a weight of 12,000 <context>: CREATE TABLE table_name_35 (payload__kg_ VARCHAR, weight__kg_ VARCHAR)
SELECT payload__kg_ FROM table_name_35 WHERE weight__kg_ = "12,000"
14,914
<question>: Name the typ for project of igmdp and weight of 16,000 <context>: CREATE TABLE table_name_65 (type VARCHAR, project VARCHAR, weight__kg_ VARCHAR)
SELECT type FROM table_name_65 WHERE project = "igmdp" AND weight__kg_ = "16,000"
14,915
<question>: What is the record of the game with Andrew Bogut (21) as the leading scorer? <context>: CREATE TABLE table_name_43 (record VARCHAR, leading_scorer VARCHAR)
SELECT record FROM table_name_43 WHERE leading_scorer = "andrew bogut (21)"
14,916
<question>: Who was the home team of the game on 26 February 2008? <context>: CREATE TABLE table_name_5 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_5 WHERE date = "26 february 2008"
14,917
<question>: Who is the leading scorer of the game on 9 February 2008? <context>: CREATE TABLE table_name_31 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_31 WHERE date = "9 february 2008"
14,918
<question>: Who is the leading scorer of the game on 13 February 2008? <context>: CREATE TABLE table_name_52 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_52 WHERE date = "13 february 2008"
14,919
<question>: Who is the visitor team of the game with Andrew Bogut (21) as the leading scorer? <context>: CREATE TABLE table_name_97 (visitor VARCHAR, leading_scorer VARCHAR)
SELECT visitor FROM table_name_97 WHERE leading_scorer = "andrew bogut (21)"
14,920
<question>: What is the lowest number of events a tournament with more tha 5 cuts and less than 13 top-25 has? <context>: CREATE TABLE table_name_75 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)
SELECT MIN(events) FROM table_name_75 WHERE cuts_made > 5 AND top_25 < 13
14,921
<question>: What is the highest top-10 a tournament with 16 cuts and less than 13 top-25 has? <context>: CREATE TABLE table_name_81 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR)
SELECT MAX(top_10) FROM table_name_81 WHERE cuts_made = 16 AND top_25 < 13
14,922
<question>: What is the top-25 of the U.S. open, which has less than 7 events? <context>: CREATE TABLE table_name_93 (top_25 INTEGER, tournament VARCHAR, events VARCHAR)
SELECT SUM(top_25) FROM table_name_93 WHERE tournament = "u.s. open" AND events < 7
14,923
<question>: How many events does the tournament with a top-10 of 2 and more than 5 cuts have? <context>: CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR)
SELECT SUM(events) FROM table_name_77 WHERE top_10 = 2 AND cuts_made > 5
14,924
<question>: What Pick number is Rich Burtness? <context>: CREATE TABLE table_name_26 (pick INTEGER, name VARCHAR)
SELECT AVG(pick) FROM table_name_26 WHERE name = "rich burtness"
14,925
<question>: What position is Kentucky State sitting in? <context>: CREATE TABLE table_name_77 (position VARCHAR, school VARCHAR)
SELECT position FROM table_name_77 WHERE school = "kentucky state"
14,926
<question>: What is the density (hab/ km²) when the altitude m is 1300? <context>: CREATE TABLE table_name_61 (density__hab__km²__ VARCHAR, altitude_m VARCHAR)
SELECT density__hab__km²__ FROM table_name_61 WHERE altitude_m = "1300"
14,927
<question>: What is the Distance Medellín Downtown (km) when the municipalities Envigado? <context>: CREATE TABLE table_name_86 (distance_medellín_downtown___km__ VARCHAR, municipalities VARCHAR)
SELECT distance_medellín_downtown___km__ FROM table_name_86 WHERE municipalities = "envigado"
14,928
<question>: What is the density (hab/ km²) when the extension km² is 380,64? <context>: CREATE TABLE table_name_22 (density__hab__km²__ VARCHAR, extension_km² VARCHAR)
SELECT density__hab__km²__ FROM table_name_22 WHERE extension_km² = "380,64"
14,929
<question>: What is the population (hab) when the distance medellin downtown (km) is * dane? <context>: CREATE TABLE table_name_10 (population__hab_ VARCHAR, distance_medellín_downtown___km__ VARCHAR)
SELECT population__hab_ FROM table_name_10 WHERE distance_medellín_downtown___km__ = "* dane"
14,930
<question>: What is the Density (hab/ km²) when the population (hab) is 58 414*? <context>: CREATE TABLE table_name_53 (density__hab__km²__ VARCHAR, population__hab_ VARCHAR)
SELECT density__hab__km²__ FROM table_name_53 WHERE population__hab_ = "58 414*"
14,931
<question>: What is the altitude for the distance medellin downtown (km) is 42? <context>: CREATE TABLE table_name_10 (altitude_m VARCHAR, distance_medellín_downtown___km__ VARCHAR)
SELECT altitude_m FROM table_name_10 WHERE distance_medellín_downtown___km__ = "42"
14,932
<question>: How many have SHT number 5? <context>: CREATE TABLE table_name_49 (quantity INTEGER, sht_nos VARCHAR)
SELECT MAX(quantity) FROM table_name_49 WHERE sht_nos = "5"
14,933
<question>: What GWR is associated with 4? <context>: CREATE TABLE table_name_56 (gwr_nos VARCHAR, quantity VARCHAR)
SELECT gwr_nos FROM table_name_56 WHERE quantity = 4
14,934
<question>: What was the score on march 11? <context>: CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_50 WHERE date = "march 11"
14,935
<question>: What is the nationality of the C? <context>: CREATE TABLE table_name_79 (nationality VARCHAR, position VARCHAR)
SELECT nationality FROM table_name_79 WHERE position = "c"
14,936
<question>: What team has a player from Santa Clara? <context>: CREATE TABLE table_name_82 (team VARCHAR, college VARCHAR)
SELECT team FROM table_name_82 WHERE college = "santa clara"
14,937
<question>: What round did the College of Minnesota pick? <context>: CREATE TABLE table_name_27 (round VARCHAR, college VARCHAR)
SELECT round FROM table_name_27 WHERE college = "minnesota"
14,938
<question>: What team had Pick 2? <context>: CREATE TABLE table_name_27 (team VARCHAR, pick VARCHAR)
SELECT team FROM table_name_27 WHERE pick = "2"
14,939
<question>: What nationality is the player from the College of Cincinnati? <context>: CREATE TABLE table_name_6 (nationality VARCHAR, college VARCHAR)
SELECT nationality FROM table_name_6 WHERE college = "cincinnati"
14,940
<question>: Which player went to the college of Western Washington? <context>: CREATE TABLE table_name_84 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_84 WHERE college = "western washington"
14,941
<question>: How much money did the player ranked above 3 with under 28 events earn? <context>: CREATE TABLE table_name_43 (earnings___ VARCHAR, events VARCHAR, rank VARCHAR)
SELECT COUNT(earnings___) AS $__ FROM table_name_43 WHERE events < 28 AND rank < 3
14,942
<question>: What is the low win total for players ranked below 4? <context>: CREATE TABLE table_name_17 (wins INTEGER, rank INTEGER)
SELECT MIN(wins) FROM table_name_17 WHERE rank > 4
14,943
<question>: Which name has a percentage of 0.59%? <context>: CREATE TABLE table_name_28 (name VARCHAR, percentage VARCHAR)
SELECT name FROM table_name_28 WHERE percentage = "0.59%"
14,944
<question>: What is the exact number of Total that has a percentage of precisely 12.03%? <context>: CREATE TABLE table_name_24 (total VARCHAR, percentage VARCHAR)
SELECT COUNT(total) FROM table_name_24 WHERE percentage = "12.03%"
14,945
<question>: What was the result on 1990-11-04? <context>: CREATE TABLE table_name_55 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_55 WHERE date = "1990-11-04"
14,946
<question>: Who was the opponent in week 3? <context>: CREATE TABLE table_name_34 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_34 WHERE week = 3
14,947
<question>: Where was the game on 1990-11-18? <context>: CREATE TABLE table_name_26 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_name_26 WHERE date = "1990-11-18"
14,948
<question>: What is the average number of laps for grid 8? <context>: CREATE TABLE table_name_69 (laps INTEGER, grid VARCHAR)
SELECT AVG(laps) FROM table_name_69 WHERE grid = 8
14,949
<question>: Who built the car that has a Time/Retired of 1:34:12.912? <context>: CREATE TABLE table_name_88 (constructor VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_88 WHERE time_retired = "1:34:12.912"
14,950
<question>: What is the rd number where the reg GP is 0 and the pick is 150? <context>: CREATE TABLE table_name_24 (rd__number VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)
SELECT COUNT(rd__number) FROM table_name_24 WHERE reg_gp = 0 AND pick__number = 150
14,951
<question>: Where Result is nominated and Organization is 54th the television academy drama awards, what is the award? <context>: CREATE TABLE table_name_80 (award VARCHAR, result VARCHAR, organization VARCHAR)
SELECT award FROM table_name_80 WHERE result = "nominated" AND organization = "54th the television academy drama awards"
14,952
<question>: Where Work is veterinarian dolittle, what is the Organization? <context>: CREATE TABLE table_name_82 (organization VARCHAR, work VARCHAR)
SELECT organization FROM table_name_82 WHERE work = "veterinarian dolittle"
14,953
<question>: Where Award is newcomer actress, what is the work? <context>: CREATE TABLE table_name_19 (work VARCHAR, award VARCHAR)
SELECT work FROM table_name_19 WHERE award = "newcomer actress"
14,954
<question>: Where Award is best actress and Work is first kiss, what is the average Year? <context>: CREATE TABLE table_name_58 (year INTEGER, award VARCHAR, work VARCHAR)
SELECT AVG(year) FROM table_name_58 WHERE award = "best actress" AND work = "first kiss"
14,955
<question>: What round did the maccabi haifa fc club have? <context>: CREATE TABLE table_name_58 (round VARCHAR, club VARCHAR)
SELECT round FROM table_name_58 WHERE club = "maccabi haifa fc"
14,956
<question>: What competition did the maccabi haifa fc club play? <context>: CREATE TABLE table_name_87 (competition VARCHAR, club VARCHAR)
SELECT competition FROM table_name_87 WHERE club = "maccabi haifa fc"
14,957
<question>: What is the record of the game on March 5? <context>: CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_57 WHERE date = "march 5"
14,958
<question>: What is the home team of the game with the Raptors as the visitor team? <context>: CREATE TABLE table_name_66 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_66 WHERE visitor = "raptors"
14,959
<question>: What competition was at puskás ferenc stadium , budapest , hungary, and a Score of 1–0? <context>: CREATE TABLE table_name_91 (competition VARCHAR, venue VARCHAR, score VARCHAR)
SELECT competition FROM table_name_91 WHERE venue = "puskás ferenc stadium , budapest , hungary" AND score = "1–0"
14,960
<question>: Name the object type with an NGC number more than 6638 and right ascensions being 18h25m37.8s <context>: CREATE TABLE table_name_72 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT object_type FROM table_name_72 WHERE ngc_number > 6638 AND right_ascension___j2000__ = "18h25m37.8s"
14,961
<question>: Tell me the constellation which has a right ascension of 18h17m41.1s <context>: CREATE TABLE table_name_54 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT constellation FROM table_name_54 WHERE right_ascension___j2000__ = "18h17m41.1s"
14,962
<question>: What is the total number of Since with a Goals larger than 6, and a Name with deco? <context>: CREATE TABLE table_name_57 (since VARCHAR, goals VARCHAR, name VARCHAR)
SELECT COUNT(since) FROM table_name_57 WHERE goals > 6 AND name = "deco"
14,963
<question>: What is the average Ends with a Since of 2003, and a Name with márquez? <context>: CREATE TABLE table_name_93 (ends INTEGER, since VARCHAR, name VARCHAR)
SELECT AVG(ends) FROM table_name_93 WHERE since = 2003 AND name = "márquez"
14,964
<question>: What is the sum of Ends with a Name of abidal, and has a Since larger than 2007? <context>: CREATE TABLE table_name_58 (ends INTEGER, name VARCHAR, since VARCHAR)
SELECT SUM(ends) FROM table_name_58 WHERE name = "abidal" AND since > 2007
14,965
<question>: Which finish has a Record of 74-68? <context>: CREATE TABLE table_name_35 (finish VARCHAR, record VARCHAR)
SELECT finish FROM table_name_35 WHERE record = "74-68"
14,966
<question>: What is the total of the year with a Team of johnson city yankees, and a Finish of 6th? <context>: CREATE TABLE table_name_33 (year INTEGER, team VARCHAR, finish VARCHAR)
SELECT SUM(year) FROM table_name_33 WHERE team = "johnson city yankees" AND finish = "6th"
14,967
<question>: Which record has a Team of manchester yankees? <context>: CREATE TABLE table_name_43 (record VARCHAR, team VARCHAR)
SELECT record FROM table_name_43 WHERE team = "manchester yankees"
14,968
<question>: Which organization has a Finish of 4th? <context>: CREATE TABLE table_name_93 (organization VARCHAR, finish VARCHAR)
SELECT organization FROM table_name_93 WHERE finish = "4th"
14,969
<question>: Which year has an Organization of new york yankees, and a Team of johnson city yankees? <context>: CREATE TABLE table_name_61 (year VARCHAR, organization VARCHAR, team VARCHAR)
SELECT year FROM table_name_61 WHERE organization = "new york yankees" AND team = "johnson city yankees"
14,970
<question>: Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25? <context>: CREATE TABLE table_name_2 (constructor VARCHAR, rank VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_2 WHERE grid > 14 AND laps > 93 AND rank > 25
14,971
<question>: Which qual has rank of more than 28 and a grid number that is bigger than 23? <context>: CREATE TABLE table_name_43 (qual VARCHAR, rank VARCHAR, grid VARCHAR)
SELECT qual FROM table_name_43 WHERE rank > 28 AND grid > 23
14,972
<question>: What is the total qual where the grid number is 24? <context>: CREATE TABLE table_name_57 (qual INTEGER, grid VARCHAR)
SELECT SUM(qual) FROM table_name_57 WHERE grid = 24
14,973
<question>: What is the Suffix for the Group of Benzyl? <context>: CREATE TABLE table_name_73 (suffix VARCHAR, group VARCHAR)
SELECT suffix FROM table_name_73 WHERE group = "benzyl"
14,974
<question>: Which Formula has a Prefix of alkyl-? <context>: CREATE TABLE table_name_72 (formula VARCHAR, prefix VARCHAR)
SELECT formula FROM table_name_72 WHERE prefix = "alkyl-"
14,975
<question>: Who was the Home team when the Visitor was Florida, with a Decision of Ramo? <context>: CREATE TABLE table_name_28 (home VARCHAR, decision VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_28 WHERE decision = "ramo" AND visitor = "florida"
14,976
<question>: What was the Decision when the Visitor was Carolina? <context>: CREATE TABLE table_name_53 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_53 WHERE visitor = "carolina"
14,977
<question>: Which away team was at windy hill? <context>: CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_30 WHERE venue = "windy hill"
14,978
<question>: For the category of most popular star with a result of won for 2007, what was the award? <context>: CREATE TABLE table_name_27 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)
SELECT award FROM table_name_27 WHERE result = "won" AND category = "most popular star" AND year = 2007
14,979
<question>: What is the result for the king and I after 2006? <context>: CREATE TABLE table_name_58 (result VARCHAR, year VARCHAR, nominated_work VARCHAR)
SELECT result FROM table_name_58 WHERE year > 2006 AND nominated_work = "the king and i"
14,980
<question>: What is the main color(s) for marlboro? <context>: CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR)
SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = "marlboro"
14,981
<question>: What is the additional major sponsor(s) that has red as its main color after 1991? <context>: CREATE TABLE table_name_91 (additional_major_sponsor_s_ VARCHAR, main_colour_s_ VARCHAR, year VARCHAR)
SELECT additional_major_sponsor_s_ FROM table_name_91 WHERE main_colour_s_ = "red" AND year > 1991
14,982
<question>: Who was the brother of Edward VIII? <context>: CREATE TABLE table_name_41 (name VARCHAR, relationship_with_predecessor_s_ VARCHAR)
SELECT name FROM table_name_41 WHERE relationship_with_predecessor_s_ = "brother of edward viii"
14,983
<question>: How many laps are associated with a time of + 1:39.591? <context>: CREATE TABLE table_name_37 (laps VARCHAR, time_retired VARCHAR)
SELECT laps FROM table_name_37 WHERE time_retired = "+ 1:39.591"
14,984
<question>: What is the average number of laps for a grid of 6? <context>: CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR)
SELECT AVG(laps) FROM table_name_31 WHERE grid = 6
14,985
<question>: Name the data with a percent gain of 28.4% <context>: CREATE TABLE table_name_41 (data VARCHAR, percent_gain VARCHAR)
SELECT data FROM table_name_41 WHERE percent_gain = "28.4%"
14,986
<question>: Which smallest swimsuit number's interview was less than 8.574 when the average number was bigger than 8.532? <context>: CREATE TABLE table_name_87 (swimsuit INTEGER, interview VARCHAR, average VARCHAR)
SELECT MIN(swimsuit) FROM table_name_87 WHERE interview < 8.574 AND average > 8.532
14,987
<question>: Which smallest interview number had a swimsuit stat of less than 9.322, an evening gown score of more than 9.259, and an average number of 9.321? <context>: CREATE TABLE table_name_71 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)
SELECT MIN(interview) FROM table_name_71 WHERE swimsuit < 9.322 AND evening_gown > 9.259 AND average = 9.321
14,988
<question>: What is the highest mean number for Texas when the swimsuit stat was more than 8.839? <context>: CREATE TABLE table_name_45 (average INTEGER, state VARCHAR, swimsuit VARCHAR)
SELECT MAX(average) FROM table_name_45 WHERE state = "texas" AND swimsuit > 8.839
14,989
<question>: What is the mean evening gown number when the average is 8.686? <context>: CREATE TABLE table_name_32 (evening_gown INTEGER, average VARCHAR)
SELECT AVG(evening_gown) FROM table_name_32 WHERE average = 8.686
14,990
<question>: What is the sum number of evening gown stats for New Jersey when the interview was less than 9.344? <context>: CREATE TABLE table_name_80 (evening_gown VARCHAR, state VARCHAR, interview VARCHAR)
SELECT COUNT(evening_gown) FROM table_name_80 WHERE state = "new jersey" AND interview < 9.344
14,991
<question>: What engine was made in 1991? <context>: CREATE TABLE table_name_41 (engine_s_ VARCHAR, year VARCHAR)
SELECT engine_s_ FROM table_name_41 WHERE year = 1991
14,992
<question>: What engines have the year 1992? <context>: CREATE TABLE table_name_7 (engine_s_ VARCHAR, year VARCHAR)
SELECT engine_s_ FROM table_name_7 WHERE year = 1992
14,993
<question>: What chassis has the year 1987? <context>: CREATE TABLE table_name_87 (chassis VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_87 WHERE year = 1987
14,994
<question>: What is the average points for the chassis LOLA LC88? <context>: CREATE TABLE table_name_2 (points INTEGER, chassis VARCHAR)
SELECT AVG(points) FROM table_name_2 WHERE chassis = "lola lc88"
14,995
<question>: what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21? <context>: CREATE TABLE table_name_39 (attendance INTEGER, time VARCHAR, location VARCHAR, game VARCHAR)
SELECT AVG(attendance) FROM table_name_39 WHERE location = "veterans stadium" AND game > 3 AND time = "2:21"
14,996
<question>: what is the score when the time is 2:22? <context>: CREATE TABLE table_name_47 (score VARCHAR, time VARCHAR)
SELECT score FROM table_name_47 WHERE time = "2:22"
14,997
<question>: how many games have a location of memorial stadium and a time of 2:27? <context>: CREATE TABLE table_name_95 (game VARCHAR, location VARCHAR, time VARCHAR)
SELECT COUNT(game) FROM table_name_95 WHERE location = "memorial stadium" AND time = "2:27"
14,998
<question>: what is the attendance on the date of october 16 and the game is more than 5? <context>: CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR, game VARCHAR)
SELECT SUM(attendance) FROM table_name_59 WHERE date = "october 16" AND game > 5
14,999
<question>: What was the lowest attendance for a score of 5 - 0? <context>: CREATE TABLE table_name_40 (attendance INTEGER, score VARCHAR)
SELECT MIN(attendance) FROM table_name_40 WHERE score = "5 - 0"