question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who was the Independent Socialist candidate who ran against the Liberal candidate Edward Goodell?
CREATE TABLE table_name_75 (independent_socialist_ticket VARCHAR, liberal_ticket VARCHAR)
SELECT independent_socialist_ticket FROM table_name_75 WHERE liberal_ticket = "edward goodell"
### Context: CREATE TABLE table_name_75 (independent_socialist_ticket VARCHAR, liberal_ticket VARCHAR) ### Question: Who was the Independent Socialist candidate who ran against the Liberal candidate Edward Goodell? ### Answer: SELECT independent_socialist_ticket FROM table_name_75 WHERE liberal_ticket = "edward goodell"
Which Att has a Time of 2:14?
CREATE TABLE table_name_75 (att VARCHAR, time VARCHAR)
SELECT att FROM table_name_75 WHERE time = "2:14"
### Context: CREATE TABLE table_name_75 (att VARCHAR, time VARCHAR) ### Question: Which Att has a Time of 2:14? ### Answer: SELECT att FROM table_name_75 WHERE time = "2:14"
when is Record of 66-95?
CREATE TABLE table_name_31 (time VARCHAR, record VARCHAR)
SELECT time FROM table_name_31 WHERE record = "66-95"
### Context: CREATE TABLE table_name_31 (time VARCHAR, record VARCHAR) ### Question: when is Record of 66-95? ### Answer: SELECT time FROM table_name_31 WHERE record = "66-95"
Which Opponent has a Record of 65-95?
CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_12 WHERE record = "65-95"
### Context: CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR) ### Question: Which Opponent has a Record of 65-95? ### Answer: SELECT opponent FROM table_name_12 WHERE record = "65-95"
What is the to par that has ernie els as the player?
CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_43 WHERE player = "ernie els"
### Context: CREATE TABLE table_name_43 (to_par VARCHAR, player VARCHAR) ### Question: What is the to par that has ernie els as the player? ### Answer: SELECT to_par FROM table_name_43 WHERE player = "ernie els"
What player has money of (£) 159,500, and france is the country?
CREATE TABLE table_name_99 (player VARCHAR, money___£__ VARCHAR, country VARCHAR)
SELECT player FROM table_name_99 WHERE money___£__ = "159,500" AND country = "france"
### Context: CREATE TABLE table_name_99 (player VARCHAR, money___£__ VARCHAR, country VARCHAR) ### Question: What player has money of (£) 159,500, and france is the country? ### Answer: SELECT player FROM table_name_99 WHERE money___£__ = "159,500" AND country = "france"
What player has 69-70-68-73=280 as the score?
CREATE TABLE table_name_52 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_52 WHERE score = 69 - 70 - 68 - 73 = 280
### Context: CREATE TABLE table_name_52 (player VARCHAR, score VARCHAR) ### Question: What player has 69-70-68-73=280 as the score? ### Answer: SELECT player FROM table_name_52 WHERE score = 69 - 70 - 68 - 73 = 280
What is the average year that has a win less than 1, yamaha as the team, with points greater than 2?
CREATE TABLE table_name_30 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR)
SELECT AVG(year) FROM table_name_30 WHERE wins < 1 AND team = "yamaha" AND points > 2
### Context: CREATE TABLE table_name_30 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR) ### Question: What is the average year that has a win less than 1, yamaha as the team, with points greater than 2? ### Answer: SELECT AVG(year) FROM table_name_30 WHERE wins < 1 AND team = "yamaha" AND points > 2
What is the highest wins that has 350cc as the class, yamaha for the team, with points less than 37, and a year after 1979?
CREATE TABLE table_name_7 (wins INTEGER, year VARCHAR, points VARCHAR, class VARCHAR, team VARCHAR)
SELECT MAX(wins) FROM table_name_7 WHERE class = "350cc" AND team = "yamaha" AND points < 37 AND year > 1979
### Context: CREATE TABLE table_name_7 (wins INTEGER, year VARCHAR, points VARCHAR, class VARCHAR, team VARCHAR) ### Question: What is the highest wins that has 350cc as the class, yamaha for the team, with points less than 37, and a year after 1979? ### Answer: SELECT MAX(wins) FROM table_name_7 WHERE class = "350cc" AND team = "yamaha" AND points < 37 AND year > 1979
How many points have 500cc for the class, a win greater than 0, with a year after 1974?
CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR)
SELECT SUM(points) FROM table_name_77 WHERE class = "500cc" AND wins > 0 AND year > 1974
### Context: CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR) ### Question: How many points have 500cc for the class, a win greater than 0, with a year after 1974? ### Answer: SELECT SUM(points) FROM table_name_77 WHERE class = "500cc" AND wins > 0 AND year > 1974
How many wins have a year after 1976, and 350cc as the class?
CREATE TABLE table_name_21 (wins INTEGER, year VARCHAR, class VARCHAR)
SELECT SUM(wins) FROM table_name_21 WHERE year > 1976 AND class = "350cc"
### Context: CREATE TABLE table_name_21 (wins INTEGER, year VARCHAR, class VARCHAR) ### Question: How many wins have a year after 1976, and 350cc as the class? ### Answer: SELECT SUM(wins) FROM table_name_21 WHERE year > 1976 AND class = "350cc"
How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21?
CREATE TABLE table_name_43 (san_jose_wins VARCHAR, la_goals VARCHAR, la_wins VARCHAR)
SELECT COUNT(san_jose_wins) FROM table_name_43 WHERE la_goals > 6 AND la_wins < 21
### Context: CREATE TABLE table_name_43 (san_jose_wins VARCHAR, la_goals VARCHAR, la_wins VARCHAR) ### Question: How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21? ### Answer: SELECT COUNT(san_jose_wins) FROM table_name_43 WHERE la_goals > 6 AND la_wins < 21
Which San Jose goals have a San Jose wins smaller than 0?
CREATE TABLE table_name_28 (san_jose_goals INTEGER, san_jose_wins INTEGER)
SELECT MIN(san_jose_goals) FROM table_name_28 WHERE san_jose_wins < 0
### Context: CREATE TABLE table_name_28 (san_jose_goals INTEGER, san_jose_wins INTEGER) ### Question: Which San Jose goals have a San Jose wins smaller than 0? ### Answer: SELECT MIN(san_jose_goals) FROM table_name_28 WHERE san_jose_wins < 0
Name the most april with record of 38-33-10
CREATE TABLE table_name_19 (april INTEGER, record VARCHAR)
SELECT MAX(april) FROM table_name_19 WHERE record = "38-33-10"
### Context: CREATE TABLE table_name_19 (april INTEGER, record VARCHAR) ### Question: Name the most april with record of 38-33-10 ### Answer: SELECT MAX(april) FROM table_name_19 WHERE record = "38-33-10"
Name the opponent with record of 38-34-10
CREATE TABLE table_name_97 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_97 WHERE record = "38-34-10"
### Context: CREATE TABLE table_name_97 (opponent VARCHAR, record VARCHAR) ### Question: Name the opponent with record of 38-34-10 ### Answer: SELECT opponent FROM table_name_97 WHERE record = "38-34-10"
Name the total number of April for game more than 81 and reord of 38-33-10
CREATE TABLE table_name_46 (april VARCHAR, record VARCHAR, game VARCHAR)
SELECT COUNT(april) FROM table_name_46 WHERE record = "38-33-10" AND game > 81
### Context: CREATE TABLE table_name_46 (april VARCHAR, record VARCHAR, game VARCHAR) ### Question: Name the total number of April for game more than 81 and reord of 38-33-10 ### Answer: SELECT COUNT(april) FROM table_name_46 WHERE record = "38-33-10" AND game > 81
what series was on may 14
CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)
SELECT series FROM table_name_53 WHERE date = "may 14"
### Context: CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR) ### Question: what series was on may 14 ### Answer: SELECT series FROM table_name_53 WHERE date = "may 14"
What is the to par that has england as the country, with 66 as a score?
CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_95 WHERE country = "england" AND score = 66
### Context: CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR, score VARCHAR) ### Question: What is the to par that has england as the country, with 66 as a score? ### Answer: SELECT to_par FROM table_name_95 WHERE country = "england" AND score = 66
What country has a score less than 68, and paul casey as the player?
CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR, player VARCHAR)
SELECT country FROM table_name_95 WHERE score < 68 AND player = "paul casey"
### Context: CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR, player VARCHAR) ### Question: What country has a score less than 68, and paul casey as the player? ### Answer: SELECT country FROM table_name_95 WHERE score < 68 AND player = "paul casey"
What is the lowest score that has alastair forsyth as the player?
CREATE TABLE table_name_28 (score INTEGER, player VARCHAR)
SELECT MIN(score) FROM table_name_28 WHERE player = "alastair forsyth"
### Context: CREATE TABLE table_name_28 (score INTEGER, player VARCHAR) ### Question: What is the lowest score that has alastair forsyth as the player? ### Answer: SELECT MIN(score) FROM table_name_28 WHERE player = "alastair forsyth"
How many scores have paul casey as a player?
CREATE TABLE table_name_87 (score VARCHAR, player VARCHAR)
SELECT COUNT(score) FROM table_name_87 WHERE player = "paul casey"
### Context: CREATE TABLE table_name_87 (score VARCHAR, player VARCHAR) ### Question: How many scores have paul casey as a player? ### Answer: SELECT COUNT(score) FROM table_name_87 WHERE player = "paul casey"
Who owns the item that was a T326 before conversion and re-entered service on 11 September 1985?
CREATE TABLE table_name_42 (owner VARCHAR, re_entered_service__p_ VARCHAR, pre_conversion VARCHAR)
SELECT owner FROM table_name_42 WHERE re_entered_service__p_ = "11 september 1985" AND pre_conversion = "t326"
### Context: CREATE TABLE table_name_42 (owner VARCHAR, re_entered_service__p_ VARCHAR, pre_conversion VARCHAR) ### Question: Who owns the item that was a T326 before conversion and re-entered service on 11 September 1985? ### Answer: SELECT owner FROM table_name_42 WHERE re_entered_service__p_ = "11 september 1985" AND pre_conversion = "t326"
What date did the T328 that entered service on 18 June 1956 re-enter service?
CREATE TABLE table_name_22 (re_entered_service__p_ VARCHAR, entered_service__t_ VARCHAR, pre_conversion VARCHAR)
SELECT re_entered_service__p_ FROM table_name_22 WHERE entered_service__t_ = "18 june 1956" AND pre_conversion = "t328"
### Context: CREATE TABLE table_name_22 (re_entered_service__p_ VARCHAR, entered_service__t_ VARCHAR, pre_conversion VARCHAR) ### Question: What date did the T328 that entered service on 18 June 1956 re-enter service? ### Answer: SELECT re_entered_service__p_ FROM table_name_22 WHERE entered_service__t_ = "18 june 1956" AND pre_conversion = "t328"
Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984?
CREATE TABLE table_name_16 (pre_conversion VARCHAR, owner VARCHAR, re_entered_service__p_ VARCHAR)
SELECT pre_conversion FROM table_name_16 WHERE owner = "v/line passenger" AND re_entered_service__p_ = "23 november 1984"
### Context: CREATE TABLE table_name_16 (pre_conversion VARCHAR, owner VARCHAR, re_entered_service__p_ VARCHAR) ### Question: Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984? ### Answer: SELECT pre_conversion FROM table_name_16 WHERE owner = "v/line passenger" AND re_entered_service__p_ = "23 november 1984"
Who owns the locomotive that entered service on 30 October 1956?
CREATE TABLE table_name_80 (owner VARCHAR, entered_service__t_ VARCHAR)
SELECT owner FROM table_name_80 WHERE entered_service__t_ = "30 october 1956"
### Context: CREATE TABLE table_name_80 (owner VARCHAR, entered_service__t_ VARCHAR) ### Question: Who owns the locomotive that entered service on 30 October 1956? ### Answer: SELECT owner FROM table_name_80 WHERE entered_service__t_ = "30 october 1956"
What was the score of the game when the record was 50-85?
CREATE TABLE table_name_73 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_73 WHERE record = "50-85"
### Context: CREATE TABLE table_name_73 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game when the record was 50-85? ### Answer: SELECT score FROM table_name_73 WHERE record = "50-85"
What was the loss of the game when the record was 46-84?
CREATE TABLE table_name_65 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_65 WHERE record = "46-84"
### Context: CREATE TABLE table_name_65 (loss VARCHAR, record VARCHAR) ### Question: What was the loss of the game when the record was 46-84? ### Answer: SELECT loss FROM table_name_65 WHERE record = "46-84"
What was the record at the game with a loss of Cook (14–7)?
CREATE TABLE table_name_61 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_61 WHERE loss = "cook (14–7)"
### Context: CREATE TABLE table_name_61 (record VARCHAR, loss VARCHAR) ### Question: What was the record at the game with a loss of Cook (14–7)? ### Answer: SELECT record FROM table_name_61 WHERE loss = "cook (14–7)"
What album is 4:53 long?
CREATE TABLE table_name_74 (album VARCHAR, length VARCHAR)
SELECT album FROM table_name_74 WHERE length = "4:53"
### Context: CREATE TABLE table_name_74 (album VARCHAR, length VARCHAR) ### Question: What album is 4:53 long? ### Answer: SELECT album FROM table_name_74 WHERE length = "4:53"
Which 1989 has a 1986 of 99?
CREATE TABLE table_name_42 (Id VARCHAR)
SELECT 1989 FROM table_name_42 WHERE 1986 = "99"
### Context: CREATE TABLE table_name_42 (Id VARCHAR) ### Question: Which 1989 has a 1986 of 99? ### Answer: SELECT 1989 FROM table_name_42 WHERE 1986 = "99"
Which 1983 has a Tournament of wimbledon?
CREATE TABLE table_name_2 (tournament VARCHAR)
SELECT 1983 FROM table_name_2 WHERE tournament = "wimbledon"
### Context: CREATE TABLE table_name_2 (tournament VARCHAR) ### Question: Which 1983 has a Tournament of wimbledon? ### Answer: SELECT 1983 FROM table_name_2 WHERE tournament = "wimbledon"
Which Tournament has A in 1987?
CREATE TABLE table_name_11 (tournament VARCHAR)
SELECT tournament FROM table_name_11 WHERE 1987 = "a"
### Context: CREATE TABLE table_name_11 (tournament VARCHAR) ### Question: Which Tournament has A in 1987? ### Answer: SELECT tournament FROM table_name_11 WHERE 1987 = "a"
Which 1988 has a 1985 of 2r?
CREATE TABLE table_name_54 (Id VARCHAR)
SELECT 1988 FROM table_name_54 WHERE 1985 = "2r"
### Context: CREATE TABLE table_name_54 (Id VARCHAR) ### Question: Which 1988 has a 1985 of 2r? ### Answer: SELECT 1988 FROM table_name_54 WHERE 1985 = "2r"
Which 1988 has a 1982 of 104?
CREATE TABLE table_name_46 (Id VARCHAR)
SELECT 1988 FROM table_name_46 WHERE 1982 = "104"
### Context: CREATE TABLE table_name_46 (Id VARCHAR) ### Question: Which 1988 has a 1982 of 104? ### Answer: SELECT 1988 FROM table_name_46 WHERE 1982 = "104"
Which Tournament has a 1984 of 1r?
CREATE TABLE table_name_26 (tournament VARCHAR)
SELECT tournament FROM table_name_26 WHERE 1984 = "1r"
### Context: CREATE TABLE table_name_26 (tournament VARCHAR) ### Question: Which Tournament has a 1984 of 1r? ### Answer: SELECT tournament FROM table_name_26 WHERE 1984 = "1r"
Release date of 2008 q3 has what release price?
CREATE TABLE table_name_69 (release_price___usd__ VARCHAR, release_date VARCHAR)
SELECT release_price___usd__ FROM table_name_69 WHERE release_date = "2008 q3"
### Context: CREATE TABLE table_name_69 (release_price___usd__ VARCHAR, release_date VARCHAR) ### Question: Release date of 2008 q3 has what release price? ### Answer: SELECT release_price___usd__ FROM table_name_69 WHERE release_date = "2008 q3"
Frequency of 1.2 ghz, and a Release price ( USD ) of $70 is what socket?
CREATE TABLE table_name_91 (socket VARCHAR, frequency VARCHAR, release_price___usd__ VARCHAR)
SELECT socket FROM table_name_91 WHERE frequency = "1.2 ghz" AND release_price___usd__ = "$70"
### Context: CREATE TABLE table_name_91 (socket VARCHAR, frequency VARCHAR, release_price___usd__ VARCHAR) ### Question: Frequency of 1.2 ghz, and a Release price ( USD ) of $70 is what socket? ### Answer: SELECT socket FROM table_name_91 WHERE frequency = "1.2 ghz" AND release_price___usd__ = "$70"
Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?
CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR)
SELECT mult FROM table_name_3 WHERE socket = "fcbga1088" AND voltage = "1v" AND part_number_s_ = "nu80579ez600cnu80579ez600ct"
### Context: CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR) ### Question: Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult? ### Answer: SELECT mult FROM table_name_3 WHERE socket = "fcbga1088" AND voltage = "1v" AND part_number_s_ = "nu80579ez600cnu80579ez600ct"
Spec number of slj6d(b1)slj6f(b1) has what mult.?
CREATE TABLE table_name_85 (mult VARCHAR, sspec_number VARCHAR)
SELECT mult FROM table_name_85 WHERE sspec_number = "slj6d(b1)slj6f(b1)"
### Context: CREATE TABLE table_name_85 (mult VARCHAR, sspec_number VARCHAR) ### Question: Spec number of slj6d(b1)slj6f(b1) has what mult.? ### Answer: SELECT mult FROM table_name_85 WHERE sspec_number = "slj6d(b1)slj6f(b1)"
Socket of without quickassist has what release price?
CREATE TABLE table_name_63 (release_price___usd__ VARCHAR, socket VARCHAR)
SELECT release_price___usd__ FROM table_name_63 WHERE socket = "without quickassist"
### Context: CREATE TABLE table_name_63 (release_price___usd__ VARCHAR, socket VARCHAR) ### Question: Socket of without quickassist has what release price? ### Answer: SELECT release_price___usd__ FROM table_name_63 WHERE socket = "without quickassist"
Release date of 2008 q3, and a Part number(s) of nu80579ez009c has what Release price ( USD )?
CREATE TABLE table_name_3 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)
SELECT release_price___usd__ FROM table_name_3 WHERE release_date = "2008 q3" AND part_number_s_ = "nu80579ez009c"
### Context: CREATE TABLE table_name_3 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) ### Question: Release date of 2008 q3, and a Part number(s) of nu80579ez009c has what Release price ( USD )? ### Answer: SELECT release_price___usd__ FROM table_name_3 WHERE release_date = "2008 q3" AND part_number_s_ = "nu80579ez009c"
What is the lowest Hong Kong value with a 0 Brisbane value and a greater than 0 Kuala Lumpur value?
CREATE TABLE table_name_52 (hong_kong INTEGER, brisbane VARCHAR, kuala_lumpur VARCHAR)
SELECT MIN(hong_kong) FROM table_name_52 WHERE brisbane = 0 AND kuala_lumpur > 0
### Context: CREATE TABLE table_name_52 (hong_kong INTEGER, brisbane VARCHAR, kuala_lumpur VARCHAR) ### Question: What is the lowest Hong Kong value with a 0 Brisbane value and a greater than 0 Kuala Lumpur value? ### Answer: SELECT MIN(hong_kong) FROM table_name_52 WHERE brisbane = 0 AND kuala_lumpur > 0
What is the highest Kuala Lumpur value with a Durban value less than 1 and a Mar Del Plata value greater than 0?
CREATE TABLE table_name_82 (kuala_lumpur INTEGER, durban VARCHAR, mar_del_plata VARCHAR)
SELECT MAX(kuala_lumpur) FROM table_name_82 WHERE durban < 1 AND mar_del_plata > 0
### Context: CREATE TABLE table_name_82 (kuala_lumpur INTEGER, durban VARCHAR, mar_del_plata VARCHAR) ### Question: What is the highest Kuala Lumpur value with a Durban value less than 1 and a Mar Del Plata value greater than 0? ### Answer: SELECT MAX(kuala_lumpur) FROM table_name_82 WHERE durban < 1 AND mar_del_plata > 0
What is the highest New Zealand value with a Hong Kong value less than 0?
CREATE TABLE table_name_47 (new_zealand INTEGER, hong_kong INTEGER)
SELECT MAX(new_zealand) FROM table_name_47 WHERE hong_kong < 0
### Context: CREATE TABLE table_name_47 (new_zealand INTEGER, hong_kong INTEGER) ### Question: What is the highest New Zealand value with a Hong Kong value less than 0? ### Answer: SELECT MAX(new_zealand) FROM table_name_47 WHERE hong_kong < 0
What is the average Singapore value with a London value less than 0?
CREATE TABLE table_name_80 (singapore INTEGER, london INTEGER)
SELECT AVG(singapore) FROM table_name_80 WHERE london < 0
### Context: CREATE TABLE table_name_80 (singapore INTEGER, london INTEGER) ### Question: What is the average Singapore value with a London value less than 0? ### Answer: SELECT AVG(singapore) FROM table_name_80 WHERE london < 0
What position was picked for Canada on Pick 8?
CREATE TABLE table_name_61 (position VARCHAR, country VARCHAR, pick VARCHAR)
SELECT position FROM table_name_61 WHERE country = "canada" AND pick = "8"
### Context: CREATE TABLE table_name_61 (position VARCHAR, country VARCHAR, pick VARCHAR) ### Question: What position was picked for Canada on Pick 8? ### Answer: SELECT position FROM table_name_61 WHERE country = "canada" AND pick = "8"
What is the position that is shown for 2011?
CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR)
SELECT position FROM table_name_41 WHERE year = 2011
### Context: CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR) ### Question: What is the position that is shown for 2011? ### Answer: SELECT position FROM table_name_41 WHERE year = 2011
what language is seethaiah in
CREATE TABLE table_name_27 (language VARCHAR, film_name VARCHAR)
SELECT language FROM table_name_27 WHERE film_name = "seethaiah"
### Context: CREATE TABLE table_name_27 (language VARCHAR, film_name VARCHAR) ### Question: what language is seethaiah in ### Answer: SELECT language FROM table_name_27 WHERE film_name = "seethaiah"
Which Producer has a Role of rizzette?
CREATE TABLE table_name_74 (producer VARCHAR, role VARCHAR)
SELECT producer FROM table_name_74 WHERE role = "rizzette"
### Context: CREATE TABLE table_name_74 (producer VARCHAR, role VARCHAR) ### Question: Which Producer has a Role of rizzette? ### Answer: SELECT producer FROM table_name_74 WHERE role = "rizzette"
Which Title has a Director of rowell santiago?
CREATE TABLE table_name_39 (title VARCHAR, director VARCHAR)
SELECT title FROM table_name_39 WHERE director = "rowell santiago"
### Context: CREATE TABLE table_name_39 (title VARCHAR, director VARCHAR) ### Question: Which Title has a Director of rowell santiago? ### Answer: SELECT title FROM table_name_39 WHERE director = "rowell santiago"
Which Year has a Producer of viva films, and a Title of magkapatid?
CREATE TABLE table_name_41 (year VARCHAR, producer VARCHAR, title VARCHAR)
SELECT year FROM table_name_41 WHERE producer = "viva films" AND title = "magkapatid"
### Context: CREATE TABLE table_name_41 (year VARCHAR, producer VARCHAR, title VARCHAR) ### Question: Which Year has a Producer of viva films, and a Title of magkapatid? ### Answer: SELECT year FROM table_name_41 WHERE producer = "viva films" AND title = "magkapatid"
Which Director has a Role of melissa?
CREATE TABLE table_name_80 (director VARCHAR, role VARCHAR)
SELECT director FROM table_name_80 WHERE role = "melissa"
### Context: CREATE TABLE table_name_80 (director VARCHAR, role VARCHAR) ### Question: Which Director has a Role of melissa? ### Answer: SELECT director FROM table_name_80 WHERE role = "melissa"
Which 1990-91 has an average number of 1.035?
CREATE TABLE table_name_34 (average VARCHAR)
SELECT 1990 AS _91 FROM table_name_34 WHERE average = 1.035
### Context: CREATE TABLE table_name_34 (average VARCHAR) ### Question: Which 1990-91 has an average number of 1.035? ### Answer: SELECT 1990 AS _91 FROM table_name_34 WHERE average = 1.035
What results has a week larger than 13?
CREATE TABLE table_name_90 (result VARCHAR, week INTEGER)
SELECT result FROM table_name_90 WHERE week > 13
### Context: CREATE TABLE table_name_90 (result VARCHAR, week INTEGER) ### Question: What results has a week larger than 13? ### Answer: SELECT result FROM table_name_90 WHERE week > 13
What results has a week smaller than 2?
CREATE TABLE table_name_79 (result VARCHAR, week INTEGER)
SELECT result FROM table_name_79 WHERE week < 2
### Context: CREATE TABLE table_name_79 (result VARCHAR, week INTEGER) ### Question: What results has a week smaller than 2? ### Answer: SELECT result FROM table_name_79 WHERE week < 2
What was the score for game number 30?
CREATE TABLE table_name_71 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_71 WHERE game = 30
### Context: CREATE TABLE table_name_71 (score VARCHAR, game VARCHAR) ### Question: What was the score for game number 30? ### Answer: SELECT score FROM table_name_71 WHERE game = 30
What is the sum for the game with a score of 103–126?
CREATE TABLE table_name_91 (game INTEGER, score VARCHAR)
SELECT SUM(game) FROM table_name_91 WHERE score = "103–126"
### Context: CREATE TABLE table_name_91 (game INTEGER, score VARCHAR) ### Question: What is the sum for the game with a score of 103–126? ### Answer: SELECT SUM(game) FROM table_name_91 WHERE score = "103–126"
What is the lowest game number that has a Record of 3–33?
CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_93 WHERE record = "3–33"
### Context: CREATE TABLE table_name_93 (game INTEGER, record VARCHAR) ### Question: What is the lowest game number that has a Record of 3–33? ### Answer: SELECT MIN(game) FROM table_name_93 WHERE record = "3–33"
what score was on february 21
CREATE TABLE table_name_18 (score VARCHAR, february VARCHAR)
SELECT score FROM table_name_18 WHERE february = 21
### Context: CREATE TABLE table_name_18 (score VARCHAR, february VARCHAR) ### Question: what score was on february 21 ### Answer: SELECT score FROM table_name_18 WHERE february = 21
What is the nationality of the player from the Ohio State University (NCAA) Team?
CREATE TABLE table_name_20 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT nationality FROM table_name_20 WHERE college_junior_club_team__league_ = "ohio state university (ncaa)"
### Context: CREATE TABLE table_name_20 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: What is the nationality of the player from the Ohio State University (NCAA) Team? ### Answer: SELECT nationality FROM table_name_20 WHERE college_junior_club_team__league_ = "ohio state university (ncaa)"
What is the lowest round of the Kitchener Rangers (OHA)?
CREATE TABLE table_name_97 (round INTEGER, college_junior_club_team__league_ VARCHAR)
SELECT MIN(round) FROM table_name_97 WHERE college_junior_club_team__league_ = "kitchener rangers (oha)"
### Context: CREATE TABLE table_name_97 (round INTEGER, college_junior_club_team__league_ VARCHAR) ### Question: What is the lowest round of the Kitchener Rangers (OHA)? ### Answer: SELECT MIN(round) FROM table_name_97 WHERE college_junior_club_team__league_ = "kitchener rangers (oha)"
What is the position of Pierre Daigneault?
CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_58 WHERE player = "pierre daigneault"
### Context: CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR) ### Question: What is the position of Pierre Daigneault? ### Answer: SELECT position FROM table_name_58 WHERE player = "pierre daigneault"
What is the average 2006 value with a 2010 value of 417.9 and a 2011 value greater than 426.7?
CREATE TABLE table_name_26 (Id VARCHAR)
SELECT AVG(2006) FROM table_name_26 WHERE 2010 = 417.9 AND 2011 > 426.7
### Context: CREATE TABLE table_name_26 (Id VARCHAR) ### Question: What is the average 2006 value with a 2010 value of 417.9 and a 2011 value greater than 426.7? ### Answer: SELECT AVG(2006) FROM table_name_26 WHERE 2010 = 417.9 AND 2011 > 426.7
What is the 2011 total with a 2008 value greater than 346.5, a 2009 value of 392, and a 2010 value bigger than 354.6?
CREATE TABLE table_name_45 (Id VARCHAR)
SELECT COUNT(2011) FROM table_name_45 WHERE 2008 > 346.5 AND 2009 = 392 AND 2010 > 354.6
### Context: CREATE TABLE table_name_45 (Id VARCHAR) ### Question: What is the 2011 total with a 2008 value greater than 346.5, a 2009 value of 392, and a 2010 value bigger than 354.6? ### Answer: SELECT COUNT(2011) FROM table_name_45 WHERE 2008 > 346.5 AND 2009 = 392 AND 2010 > 354.6
What is the total 2008 value with a 2006 value greater than 322.7, a 353.9 in 2011, and a 2009 less than 392?
CREATE TABLE table_name_53 (Id VARCHAR)
SELECT COUNT(2008) FROM table_name_53 WHERE 2006 > 322.7 AND 2011 = 353.9 AND 2009 < 392
### Context: CREATE TABLE table_name_53 (Id VARCHAR) ### Question: What is the total 2008 value with a 2006 value greater than 322.7, a 353.9 in 2011, and a 2009 less than 392? ### Answer: SELECT COUNT(2008) FROM table_name_53 WHERE 2006 > 322.7 AND 2011 = 353.9 AND 2009 < 392
What is the highest 2009 value with a 2006 value smaller than 280.4, a 2007 less than 2.2, and a 2011 less than 3.5?
CREATE TABLE table_name_10 (Id VARCHAR)
SELECT MAX(2009) FROM table_name_10 WHERE 2006 < 280.4 AND 2007 < 2.2 AND 2010 < 3.5
### Context: CREATE TABLE table_name_10 (Id VARCHAR) ### Question: What is the highest 2009 value with a 2006 value smaller than 280.4, a 2007 less than 2.2, and a 2011 less than 3.5? ### Answer: SELECT MAX(2009) FROM table_name_10 WHERE 2006 < 280.4 AND 2007 < 2.2 AND 2010 < 3.5
What is the average 2007 value with a 2009 value greater than 2.8, a 4.9 in 2010, and a 2006 less than 2.5?
CREATE TABLE table_name_19 (Id VARCHAR)
SELECT AVG(2007) FROM table_name_19 WHERE 2009 > 2.8 AND 2010 = 4.9 AND 2006 < 2.5
### Context: CREATE TABLE table_name_19 (Id VARCHAR) ### Question: What is the average 2007 value with a 2009 value greater than 2.8, a 4.9 in 2010, and a 2006 less than 2.5? ### Answer: SELECT AVG(2007) FROM table_name_19 WHERE 2009 > 2.8 AND 2010 = 4.9 AND 2006 < 2.5
What is the 2006 total with a 2010 value greater than 417.9?
CREATE TABLE table_name_95 (Id VARCHAR)
SELECT COUNT(2006) FROM table_name_95 WHERE 2010 > 417.9
### Context: CREATE TABLE table_name_95 (Id VARCHAR) ### Question: What is the 2006 total with a 2010 value greater than 417.9? ### Answer: SELECT COUNT(2006) FROM table_name_95 WHERE 2010 > 417.9
when has an Opponent of @ philadelphia phillies and an Attendance of 20,072?
CREATE TABLE table_name_19 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_19 WHERE opponent = "@ philadelphia phillies" AND attendance = "20,072"
### Context: CREATE TABLE table_name_19 (date VARCHAR, opponent VARCHAR, attendance VARCHAR) ### Question: when has an Opponent of @ philadelphia phillies and an Attendance of 20,072? ### Answer: SELECT date FROM table_name_19 WHERE opponent = "@ philadelphia phillies" AND attendance = "20,072"
Which Opponent is on april 28?
CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_19 WHERE date = "april 28"
### Context: CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR) ### Question: Which Opponent is on april 28? ### Answer: SELECT opponent FROM table_name_19 WHERE date = "april 28"
Which Record has an Attendance of 24,597?
CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_62 WHERE attendance = "24,597"
### Context: CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR) ### Question: Which Record has an Attendance of 24,597? ### Answer: SELECT record FROM table_name_62 WHERE attendance = "24,597"
Which Record has a Loss of o'connor (0-1)?
CREATE TABLE table_name_44 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_44 WHERE loss = "o'connor (0-1)"
### Context: CREATE TABLE table_name_44 (record VARCHAR, loss VARCHAR) ### Question: Which Record has a Loss of o'connor (0-1)? ### Answer: SELECT record FROM table_name_44 WHERE loss = "o'connor (0-1)"
which attendance has a Loss of drese (0-2)?
CREATE TABLE table_name_24 (attendance VARCHAR, loss VARCHAR)
SELECT attendance FROM table_name_24 WHERE loss = "drese (0-2)"
### Context: CREATE TABLE table_name_24 (attendance VARCHAR, loss VARCHAR) ### Question: which attendance has a Loss of drese (0-2)? ### Answer: SELECT attendance FROM table_name_24 WHERE loss = "drese (0-2)"
What is the highest 2nd in (m) that has a Rank more than 2 and Points more than 249.3
CREATE TABLE table_name_14 (rank VARCHAR, points VARCHAR)
SELECT MAX(2 AS nd__m_) FROM table_name_14 WHERE rank > 2 AND points > 249.3
### Context: CREATE TABLE table_name_14 (rank VARCHAR, points VARCHAR) ### Question: What is the highest 2nd in (m) that has a Rank more than 2 and Points more than 249.3 ### Answer: SELECT MAX(2 AS nd__m_) FROM table_name_14 WHERE rank > 2 AND points > 249.3
What is the first date of election for the incumbent that was re-elected in the South Carolina 1 district?
CREATE TABLE table_name_45 (first_elected VARCHAR, result VARCHAR, district VARCHAR)
SELECT first_elected FROM table_name_45 WHERE result = "re-elected" AND district = "south carolina 1"
### Context: CREATE TABLE table_name_45 (first_elected VARCHAR, result VARCHAR, district VARCHAR) ### Question: What is the first date of election for the incumbent that was re-elected in the South Carolina 1 district? ### Answer: SELECT first_elected FROM table_name_45 WHERE result = "re-elected" AND district = "south carolina 1"
Who was the incumbent who was first elected in 1876?
CREATE TABLE table_name_43 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_name_43 WHERE first_elected = "1876"
### Context: CREATE TABLE table_name_43 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Who was the incumbent who was first elected in 1876? ### Answer: SELECT incumbent FROM table_name_43 WHERE first_elected = "1876"
Who was the Democratic incumbent in the South Carolina 5 District?
CREATE TABLE table_name_84 (incumbent VARCHAR, party VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_84 WHERE party = "democratic" AND district = "south carolina 5"
### Context: CREATE TABLE table_name_84 (incumbent VARCHAR, party VARCHAR, district VARCHAR) ### Question: Who was the Democratic incumbent in the South Carolina 5 District? ### Answer: SELECT incumbent FROM table_name_84 WHERE party = "democratic" AND district = "south carolina 5"
What is the first elected date for the incumbent in the South Carolina 4 district?
CREATE TABLE table_name_98 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_name_98 WHERE district = "south carolina 4"
### Context: CREATE TABLE table_name_98 (first_elected VARCHAR, district VARCHAR) ### Question: What is the first elected date for the incumbent in the South Carolina 4 district? ### Answer: SELECT first_elected FROM table_name_98 WHERE district = "south carolina 4"
Which area has a telephone of (052) of 3862279?
CREATE TABLE table_name_1 (area__km_2__ VARCHAR, telephone__052_ VARCHAR)
SELECT area__km_2__ FROM table_name_1 WHERE telephone__052_ = "3862279"
### Context: CREATE TABLE table_name_1 (area__km_2__ VARCHAR, telephone__052_ VARCHAR) ### Question: Which area has a telephone of (052) of 3862279? ### Answer: SELECT area__km_2__ FROM table_name_1 WHERE telephone__052_ = "3862279"
Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%?
CREATE TABLE table_name_40 (driver VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, season VARCHAR)
SELECT driver FROM table_name_40 WHERE points > 252 AND season = "2012" AND percentage_of_possible_points = "55.60%"
### Context: CREATE TABLE table_name_40 (driver VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, season VARCHAR) ### Question: Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%? ### Answer: SELECT driver FROM table_name_40 WHERE points > 252 AND season = "2012" AND percentage_of_possible_points = "55.60%"
What is the number of races that took place with points of 257?
CREATE TABLE table_name_28 (races INTEGER, points VARCHAR)
SELECT SUM(races) FROM table_name_28 WHERE points = 257
### Context: CREATE TABLE table_name_28 (races INTEGER, points VARCHAR) ### Question: What is the number of races that took place with points of 257? ### Answer: SELECT SUM(races) FROM table_name_28 WHERE points = 257
What is the number of points that driver fernando alonso has in the season he had 20 races?
CREATE TABLE table_name_72 (points INTEGER, races VARCHAR, driver VARCHAR)
SELECT SUM(points) FROM table_name_72 WHERE races = 20 AND driver = "fernando alonso"
### Context: CREATE TABLE table_name_72 (points INTEGER, races VARCHAR, driver VARCHAR) ### Question: What is the number of points that driver fernando alonso has in the season he had 20 races? ### Answer: SELECT SUM(points) FROM table_name_72 WHERE races = 20 AND driver = "fernando alonso"
What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?
CREATE TABLE table_name_15 (points INTEGER, driver VARCHAR, percentage_of_possible_points VARCHAR)
SELECT AVG(points) FROM table_name_15 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "53.05%"
### Context: CREATE TABLE table_name_15 (points INTEGER, driver VARCHAR, percentage_of_possible_points VARCHAR) ### Question: What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%? ### Answer: SELECT AVG(points) FROM table_name_15 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "53.05%"
What position has 217 as the pick?
CREATE TABLE table_name_93 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_93 WHERE pick = 217
### Context: CREATE TABLE table_name_93 (position VARCHAR, pick VARCHAR) ### Question: What position has 217 as the pick? ### Answer: SELECT position FROM table_name_93 WHERE pick = 217
Which score has a record of 18-21-7?
CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_36 WHERE record = "18-21-7"
### Context: CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR) ### Question: Which score has a record of 18-21-7? ### Answer: SELECT score FROM table_name_36 WHERE record = "18-21-7"
What is the lowest value for apps in 2009 season in a division less than 1?
CREATE TABLE table_name_86 (apps INTEGER, season VARCHAR, division VARCHAR)
SELECT MIN(apps) FROM table_name_86 WHERE season = "2009" AND division < 1
### Context: CREATE TABLE table_name_86 (apps INTEGER, season VARCHAR, division VARCHAR) ### Question: What is the lowest value for apps in 2009 season in a division less than 1? ### Answer: SELECT MIN(apps) FROM table_name_86 WHERE season = "2009" AND division < 1
What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29?
CREATE TABLE table_name_48 (goals INTEGER, apps VARCHAR, team VARCHAR, division VARCHAR)
SELECT SUM(goals) FROM table_name_48 WHERE team = "torpedo moscow" AND division = 1 AND apps < 29
### Context: CREATE TABLE table_name_48 (goals INTEGER, apps VARCHAR, team VARCHAR, division VARCHAR) ### Question: What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29? ### Answer: SELECT SUM(goals) FROM table_name_48 WHERE team = "torpedo moscow" AND division = 1 AND apps < 29
Which Remixed by has a Version of album version, and an Album of les mots?
CREATE TABLE table_name_80 (remixed_by VARCHAR, version VARCHAR, album VARCHAR)
SELECT remixed_by FROM table_name_80 WHERE version = "album version" AND album = "les mots"
### Context: CREATE TABLE table_name_80 (remixed_by VARCHAR, version VARCHAR, album VARCHAR) ### Question: Which Remixed by has a Version of album version, and an Album of les mots? ### Answer: SELECT remixed_by FROM table_name_80 WHERE version = "album version" AND album = "les mots"
How long was the instrumental version in 1986?
CREATE TABLE table_name_74 (length VARCHAR, year VARCHAR, version VARCHAR)
SELECT length FROM table_name_74 WHERE year = 1986 AND version = "instrumental"
### Context: CREATE TABLE table_name_74 (length VARCHAR, year VARCHAR, version VARCHAR) ### Question: How long was the instrumental version in 1986? ### Answer: SELECT length FROM table_name_74 WHERE year = 1986 AND version = "instrumental"
Which long version was remixed in 1986?
CREATE TABLE table_name_51 (remixed_by VARCHAR, year VARCHAR, version VARCHAR)
SELECT remixed_by FROM table_name_51 WHERE year = 1986 AND version = "long version"
### Context: CREATE TABLE table_name_51 (remixed_by VARCHAR, year VARCHAR, version VARCHAR) ### Question: Which long version was remixed in 1986? ### Answer: SELECT remixed_by FROM table_name_51 WHERE year = 1986 AND version = "long version"
Who was Canada's lead?
CREATE TABLE table_name_76 (lead VARCHAR, country VARCHAR)
SELECT lead FROM table_name_76 WHERE country = "canada"
### Context: CREATE TABLE table_name_76 (lead VARCHAR, country VARCHAR) ### Question: Who was Canada's lead? ### Answer: SELECT lead FROM table_name_76 WHERE country = "canada"
What was Canada's skip?
CREATE TABLE table_name_68 (skip VARCHAR, country VARCHAR)
SELECT skip FROM table_name_68 WHERE country = "canada"
### Context: CREATE TABLE table_name_68 (skip VARCHAR, country VARCHAR) ### Question: What was Canada's skip? ### Answer: SELECT skip FROM table_name_68 WHERE country = "canada"
Which country has a Lead of sarah wazney?
CREATE TABLE table_name_50 (country VARCHAR, lead VARCHAR)
SELECT country FROM table_name_50 WHERE lead = "sarah wazney"
### Context: CREATE TABLE table_name_50 (country VARCHAR, lead VARCHAR) ### Question: Which country has a Lead of sarah wazney? ### Answer: SELECT country FROM table_name_50 WHERE lead = "sarah wazney"
Which Lead has a Third of jeanne ellegaard?
CREATE TABLE table_name_56 (lead VARCHAR, third VARCHAR)
SELECT lead FROM table_name_56 WHERE third = "jeanne ellegaard"
### Context: CREATE TABLE table_name_56 (lead VARCHAR, third VARCHAR) ### Question: Which Lead has a Third of jeanne ellegaard? ### Answer: SELECT lead FROM table_name_56 WHERE third = "jeanne ellegaard"
Which Skip has a Third of sara carlsson?
CREATE TABLE table_name_39 (skip VARCHAR, third VARCHAR)
SELECT skip FROM table_name_39 WHERE third = "sara carlsson"
### Context: CREATE TABLE table_name_39 (skip VARCHAR, third VARCHAR) ### Question: Which Skip has a Third of sara carlsson? ### Answer: SELECT skip FROM table_name_39 WHERE third = "sara carlsson"
Which Skip has a Second of vicki adams?
CREATE TABLE table_name_21 (skip VARCHAR, second VARCHAR)
SELECT skip FROM table_name_21 WHERE second = "vicki adams"
### Context: CREATE TABLE table_name_21 (skip VARCHAR, second VARCHAR) ### Question: Which Skip has a Second of vicki adams? ### Answer: SELECT skip FROM table_name_21 WHERE second = "vicki adams"
Enrollment that has a School of south central (union mills) has what sum?
CREATE TABLE table_name_72 (enrollment INTEGER, school VARCHAR)
SELECT SUM(enrollment) FROM table_name_72 WHERE school = "south central (union mills)"
### Context: CREATE TABLE table_name_72 (enrollment INTEGER, school VARCHAR) ### Question: Enrollment that has a School of south central (union mills) has what sum? ### Answer: SELECT SUM(enrollment) FROM table_name_72 WHERE school = "south central (union mills)"
Mascot of blazers involves what city?
CREATE TABLE table_name_17 (city VARCHAR, mascot VARCHAR)
SELECT city FROM table_name_17 WHERE mascot = "blazers"
### Context: CREATE TABLE table_name_17 (city VARCHAR, mascot VARCHAR) ### Question: Mascot of blazers involves what city? ### Answer: SELECT city FROM table_name_17 WHERE mascot = "blazers"
County of 46 laporte is what school?
CREATE TABLE table_name_83 (school VARCHAR, county VARCHAR)
SELECT school FROM table_name_83 WHERE county = "46 laporte"
### Context: CREATE TABLE table_name_83 (school VARCHAR, county VARCHAR) ### Question: County of 46 laporte is what school? ### Answer: SELECT school FROM table_name_83 WHERE county = "46 laporte"
What is the average Laps that shows spun off for time?
CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR)
SELECT AVG(laps) FROM table_name_56 WHERE time = "spun off"
### Context: CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR) ### Question: What is the average Laps that shows spun off for time? ### Answer: SELECT AVG(laps) FROM table_name_56 WHERE time = "spun off"