Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
51,000
<question>: In the 6th round match with home team Bahia, who was the away team? <context>: CREATE TABLE table_name_96 (away_team VARCHAR, round VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_96 WHERE round = "6th" AND home_team = "bahia"
51,001
<question>: For the 5th round match with away team of Bahia, what was the final score? <context>: CREATE TABLE table_name_65 (score VARCHAR, round VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_65 WHERE round = "5th" AND away_team = "bahia"
51,002
<question>: Which League has a Regular Season of 2nd, southeast? <context>: CREATE TABLE table_name_58 (league VARCHAR, regular_season VARCHAR)
SELECT league FROM table_name_58 WHERE regular_season = "2nd, southeast"
51,003
<question>: Who Playoffs has a Regular Season of on hiatus.? <context>: CREATE TABLE table_name_99 (playoffs VARCHAR, regular_season VARCHAR)
SELECT playoffs FROM table_name_99 WHERE regular_season = "on hiatus."
51,004
<question>: What is the population of Kragerø? <context>: CREATE TABLE table_name_17 (population INTEGER, city VARCHAR)
SELECT MIN(population) FROM table_name_17 WHERE city = "kragerø"
51,005
<question>: What is the highest population of a city that has a town status of 2010? <context>: CREATE TABLE table_name_91 (population INTEGER, town_status VARCHAR)
SELECT MAX(population) FROM table_name_91 WHERE town_status = "2010"
51,006
<question>: What is the highest population within the municipality of Porsgrunn? <context>: CREATE TABLE table_name_28 (population INTEGER, municipality VARCHAR)
SELECT MAX(population) FROM table_name_28 WHERE municipality = "porsgrunn"
51,007
<question>: What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11? <context>: CREATE TABLE table_name_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHAR, height__cm_ VARCHAR)
SELECT birthplace FROM table_name_79 WHERE position = "d" AND height__cm_ = 190 AND jersey_number = 11
51,008
<question>: What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971? <context>: CREATE TABLE table_name_60 (points INTEGER, engine VARCHAR, year VARCHAR, entrant VARCHAR)
SELECT SUM(points) FROM table_name_60 WHERE year < 1971 AND entrant = "scuderia ferrari" AND engine = "ferrari v12"
51,009
<question>: What's the least amount of points that Walter Wolf Racing had after 1974? <context>: CREATE TABLE table_name_3 (points INTEGER, year VARCHAR, entrant VARCHAR)
SELECT MIN(points) FROM table_name_3 WHERE year > 1974 AND entrant = "walter wolf racing"
51,010
<question>: What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games? <context>: CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, competition VARCHAR)
SELECT SUM(year) FROM table_name_68 WHERE position = "6th" AND competition = "commonwealth games"
51,011
<question>: What is the highest Year, when the Venue is Beijing, PR China? <context>: CREATE TABLE table_name_54 (year INTEGER, venue VARCHAR)
SELECT MAX(year) FROM table_name_54 WHERE venue = "beijing, pr china"
51,012
<question>: What is the average Year, when Competition is Oceania Youth Championships? <context>: CREATE TABLE table_name_89 (year INTEGER, competition VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE competition = "oceania youth championships"
51,013
<question>: What is Event, when Position is 4th? <context>: CREATE TABLE table_name_94 (event VARCHAR, position VARCHAR)
SELECT event FROM table_name_94 WHERE position = "4th"
51,014
<question>: What is the Date with a Format that is cd? <context>: CREATE TABLE table_name_87 (date VARCHAR, format VARCHAR)
SELECT date FROM table_name_87 WHERE format = "cd"
51,015
<question>: What is the Catalog with a Date that is march 13, 2002? <context>: CREATE TABLE table_name_9 (catalog VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_9 WHERE date = "march 13, 2002"
51,016
<question>: What is the Label with a Catalog that is mhcl-20017? <context>: CREATE TABLE table_name_45 (label VARCHAR, catalog VARCHAR)
SELECT label FROM table_name_45 WHERE catalog = "mhcl-20017"
51,017
<question>: What is the Catalog with a Date that is february 20, 2002? <context>: CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_89 WHERE date = "february 20, 2002"
51,018
<question>: What is the lightest Weight (kg), when the Jersey # is greater than 22, when the Position is F, and when the Birthdate is March 19, 1980? <context>: CREATE TABLE table_name_62 (weight__kg_ INTEGER, birthdate VARCHAR, jersey__number VARCHAR, position VARCHAR)
SELECT MIN(weight__kg_) FROM table_name_62 WHERE jersey__number > 22 AND position = "f" AND birthdate = "march 19, 1980"
51,019
<question>: What is the Position, when the Birthplace is Buffalo, New York? <context>: CREATE TABLE table_name_92 (position VARCHAR, birthplace VARCHAR)
SELECT position FROM table_name_92 WHERE birthplace = "buffalo, new york"
51,020
<question>: What is the Birthplace, when the Jersey # is less than 18, when the Height (cm) is higher than 185, and when the Birthdate is March 3, 1980? <context>: CREATE TABLE table_name_24 (birthplace VARCHAR, birthdate VARCHAR, jersey__number VARCHAR, height__cm_ VARCHAR)
SELECT birthplace FROM table_name_24 WHERE jersey__number < 18 AND height__cm_ > 185 AND birthdate = "march 3, 1980"
51,021
<question>: What was the final score for the game with 65,309 people in attendance? <context>: CREATE TABLE table_name_28 (final_score VARCHAR, attendance VARCHAR)
SELECT final_score FROM table_name_28 WHERE attendance = "65,309"
51,022
<question>: What average week number had the Chicago bears as the opponent? <context>: CREATE TABLE table_name_58 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_58 WHERE opponent = "chicago bears"
51,023
<question>: What is the record for the game against New England Patriots at the Rich Stadium? <context>: CREATE TABLE table_name_89 (record VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_89 WHERE game_site = "rich stadium" AND opponent = "new england patriots"
51,024
<question>: What did the Dallara chassis with a 5 start in 2006 finish? <context>: CREATE TABLE table_name_91 (finish VARCHAR, year VARCHAR, chassis VARCHAR, start VARCHAR)
SELECT finish FROM table_name_91 WHERE chassis = "dallara" AND start = "5" AND year = 2006
51,025
<question>: What is the chassis of the Honda Engine from 2008? <context>: CREATE TABLE table_name_68 (chassis VARCHAR, engine VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_68 WHERE engine = "honda" AND year = 2008
51,026
<question>: What is the earliest year of the Honda Engine with a finish of 4? <context>: CREATE TABLE table_name_53 (year INTEGER, engine VARCHAR, finish VARCHAR)
SELECT MIN(year) FROM table_name_53 WHERE engine = "honda" AND finish = 4
51,027
<question>: What was 2002, when 2008 was, "career statistics"? <context>: CREATE TABLE table_name_6 (Id VARCHAR)
SELECT 2002 FROM table_name_6 WHERE 2008 = "career statistics"
51,028
<question>: What was 2009, when 2001 was, "not masters series"? <context>: CREATE TABLE table_name_5 (Id VARCHAR)
SELECT 2009 FROM table_name_5 WHERE 2001 = "not masters series"
51,029
<question>: What was 2011, when 2005 was 2R, and when 2003 was 2R? <context>: CREATE TABLE table_name_40 (Id VARCHAR)
SELECT 2011 FROM table_name_40 WHERE 2005 = "2r" AND 2003 = "2r"
51,030
<question>: What was 2009, when 2012 was A, when 2003 was A, and then the Tournament was the Madrid Masters? <context>: CREATE TABLE table_name_18 (tournament VARCHAR)
SELECT 2009 FROM table_name_18 WHERE 2012 = "a" AND 2003 = "a" AND tournament = "madrid masters"
51,031
<question>: What was 2002, when 2011 was, "atp masters series"? <context>: CREATE TABLE table_name_71 (Id VARCHAR)
SELECT 2002 FROM table_name_71 WHERE 2011 = "atp masters series"
51,032
<question>: What was the lowest wins of Larry Nelson, who ranked less than 5? <context>: CREATE TABLE table_name_8 (wins INTEGER, player VARCHAR, rank VARCHAR)
SELECT MIN(wins) FROM table_name_8 WHERE player = "larry nelson" AND rank < 5
51,033
<question>: What is the sum of the earnings for rank 3? <context>: CREATE TABLE table_name_39 (earnings__ INTEGER, rank VARCHAR)
SELECT SUM(earnings__) AS $__ FROM table_name_39 WHERE rank = 3
51,034
<question>: What is the country is ranked more than 4? <context>: CREATE TABLE table_name_66 (country VARCHAR, rank INTEGER)
SELECT country FROM table_name_66 WHERE rank > 4
51,035
<question>: What the total of Week with attendance of 53,147 <context>: CREATE TABLE table_name_70 (week INTEGER, attendance VARCHAR)
SELECT SUM(week) FROM table_name_70 WHERE attendance = "53,147"
51,036
<question>: What is the lowest week for December 26, 1999 <context>: CREATE TABLE table_name_31 (week INTEGER, date VARCHAR)
SELECT MIN(week) FROM table_name_31 WHERE date = "december 26, 1999"
51,037
<question>: What season has 6 races and the team is Australia? <context>: CREATE TABLE table_name_90 (season VARCHAR, races VARCHAR, team VARCHAR)
SELECT season FROM table_name_90 WHERE races = 6 AND team = "australia"
51,038
<question>: What is the total number of Races when there were more than 8 wins? <context>: CREATE TABLE table_name_15 (races VARCHAR, wins INTEGER)
SELECT COUNT(races) FROM table_name_15 WHERE wins > 8
51,039
<question>: Who's the Socialist ticket with a Republican ticket of john a. may? <context>: CREATE TABLE table_name_2 (socialist_ticket VARCHAR, republican_ticket VARCHAR)
SELECT socialist_ticket FROM table_name_2 WHERE republican_ticket = "john a. may"
51,040
<question>: Who's the Republican ticket with a Democratic ticket of m. william bray? <context>: CREATE TABLE table_name_67 (republican_ticket VARCHAR, democratic_ticket VARCHAR)
SELECT republican_ticket FROM table_name_67 WHERE democratic_ticket = "m. william bray"
51,041
<question>: Who's the Socialist ticket with a Democratic ticket of herbert h. lehman? <context>: CREATE TABLE table_name_5 (socialist_ticket VARCHAR, democratic_ticket VARCHAR)
SELECT socialist_ticket FROM table_name_5 WHERE democratic_ticket = "herbert h. lehman"
51,042
<question>: Who's the Republican ticket with a Socialist ticket of frank r. crosswaith? <context>: CREATE TABLE table_name_61 (republican_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT republican_ticket FROM table_name_61 WHERE socialist_ticket = "frank r. crosswaith"
51,043
<question>: Who's the Republican ticket with a Socialist ticket of edna mitchell blue? <context>: CREATE TABLE table_name_46 (republican_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT republican_ticket FROM table_name_46 WHERE socialist_ticket = "edna mitchell blue"
51,044
<question>: what's the earliest year that serena williams had more than 2 sets? <context>: CREATE TABLE table_name_47 (year INTEGER, player VARCHAR, sets VARCHAR)
SELECT MIN(year) FROM table_name_47 WHERE player = "serena williams" AND sets > 2
51,045
<question>: what's the earliest year that the wimbledon opponent was zheng jie? <context>: CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR)
SELECT MIN(year) FROM table_name_50 WHERE event = "wimbledon" AND opponent = "zheng jie"
51,046
<question>: what year was the opponent caroline garcia? <context>: CREATE TABLE table_name_22 (year INTEGER, opponent VARCHAR)
SELECT SUM(year) FROM table_name_22 WHERE opponent = "caroline garcia"
51,047
<question>: what's the most recent year that samantha stosur was the opponent with 20 aces and having played more than 2 sets? <context>: CREATE TABLE table_name_55 (year INTEGER, sets VARCHAR, aces VARCHAR, opponent VARCHAR)
SELECT MAX(year) FROM table_name_55 WHERE aces = 20 AND opponent = "samantha stosur" AND sets > 2
51,048
<question>: what year was the memphis event? <context>: CREATE TABLE table_name_97 (year INTEGER, event VARCHAR)
SELECT SUM(year) FROM table_name_97 WHERE event = "memphis"
51,049
<question>: What season did the player who had the number 26 play on who came from far eastern? <context>: CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR)
SELECT season FROM table_name_26 WHERE school_club_team = "far eastern" AND number = 26
51,050
<question>: What season did the player who came from Cebu play in? <context>: CREATE TABLE table_name_64 (season VARCHAR, school_club_team VARCHAR)
SELECT season FROM table_name_64 WHERE school_club_team = "cebu"
51,051
<question>: What was the country in the year 2012? <context>: CREATE TABLE table_name_69 (country VARCHAR, year VARCHAR)
SELECT country FROM table_name_69 WHERE year = 2012
51,052
<question>: In what year was Letecke Zavody N.P., Jinonice the manufacturer? <context>: CREATE TABLE table_name_90 (year VARCHAR, manufacturer VARCHAR)
SELECT year FROM table_name_90 WHERE manufacturer = "letecke zavody n.p., jinonice"
51,053
<question>: What country had the car with the Jawa 350cc engine? <context>: CREATE TABLE table_name_42 (country VARCHAR, engine_make_capacity VARCHAR)
SELECT country FROM table_name_42 WHERE engine_make_capacity = "jawa 350cc"
51,054
<question>: In what country was the car with the čz 171cc engine? <context>: CREATE TABLE table_name_34 (country VARCHAR, engine_make_capacity VARCHAR)
SELECT country FROM table_name_34 WHERE engine_make_capacity = "čz 171cc"
51,055
<question>: What is the name of the car that was made in the years 1956-1958? <context>: CREATE TABLE table_name_18 (automobile_name VARCHAR, year VARCHAR)
SELECT automobile_name FROM table_name_18 WHERE year = "1956-1958"
51,056
<question>: What is the name of the car manufactured by Letecke Zavody N.P., Jinonice? <context>: CREATE TABLE table_name_11 (automobile_name VARCHAR, manufacturer VARCHAR)
SELECT automobile_name FROM table_name_11 WHERE manufacturer = "letecke zavody n.p., jinonice"
51,057
<question>: Who manufactured the car with the jawa 249cc engine that was made in the years 1956-1963? <context>: CREATE TABLE table_name_58 (manufacturer VARCHAR, engine_make_capacity VARCHAR, year VARCHAR)
SELECT manufacturer FROM table_name_58 WHERE engine_make_capacity = "jawa 249cc" AND year = "1956-1963"
51,058
<question>: What is the Set 2 with a Date that is jun 29? <context>: CREATE TABLE table_name_98 (set_2 VARCHAR, date VARCHAR)
SELECT set_2 FROM table_name_98 WHERE date = "jun 29"
51,059
<question>: What is the Set 1 with a Set 2 that is 25-19? <context>: CREATE TABLE table_name_12 (set_1 VARCHAR, set_2 VARCHAR)
SELECT set_1 FROM table_name_12 WHERE set_2 = "25-19"
51,060
<question>: What is the Set 5 with a Date that is jun 29? <context>: CREATE TABLE table_name_93 (set_5 VARCHAR, date VARCHAR)
SELECT set_5 FROM table_name_93 WHERE date = "jun 29"
51,061
<question>: When was construction completed that was listed on 09/21/1984 and a Deleted of 11/04/1999? <context>: CREATE TABLE table_name_9 (construction_completed VARCHAR, listed VARCHAR, deleted VARCHAR)
SELECT construction_completed FROM table_name_9 WHERE listed = "09/21/1984" AND deleted = "11/04/1999"
51,062
<question>: What is the partially deleted result for a completed construction of m– in St. Maries Creosote? <context>: CREATE TABLE table_name_47 (partially_deleted VARCHAR, construction_completed VARCHAR, name VARCHAR)
SELECT partially_deleted FROM table_name_47 WHERE construction_completed = "–" AND name = "st. maries creosote"
51,063
<question>: What is the partially deleted result for Bunker Hill Mining & Metallurgical? <context>: CREATE TABLE table_name_96 (partially_deleted VARCHAR, name VARCHAR)
SELECT partially_deleted FROM table_name_96 WHERE name = "bunker hill mining & metallurgical"
51,064
<question>: What is the partially deleted result for a deleted of m– in Valley? <context>: CREATE TABLE table_name_95 (partially_deleted VARCHAR, deleted VARCHAR, county VARCHAR)
SELECT partially_deleted FROM table_name_95 WHERE deleted = "–" AND county = "valley"
51,065
<question>: How many matches ended with more than 22 points? <context>: CREATE TABLE table_name_83 (match INTEGER, points INTEGER)
SELECT SUM(match) FROM table_name_83 WHERE points > 22
51,066
<question>: What is the value in 1965 when 7 is the value for 1967? <context>: CREATE TABLE table_name_81 (Id VARCHAR)
SELECT 1965 FROM table_name_81 WHERE 1967 = "7"
51,067
<question>: What is the value in 1971 when 30 is the value for 1969? <context>: CREATE TABLE table_name_65 (Id VARCHAR)
SELECT 1971 FROM table_name_65 WHERE 1969 = "30"
51,068
<question>: What was the value in 1966 with a 0 value in 1969? <context>: CREATE TABLE table_name_72 (Id VARCHAR)
SELECT 1966 FROM table_name_72 WHERE 1969 = "0"
51,069
<question>: Who was the player moving to Arminia Bielefeld? <context>: CREATE TABLE table_name_68 (name VARCHAR, moving_to VARCHAR)
SELECT name FROM table_name_68 WHERE moving_to = "arminia bielefeld"
51,070
<question>: What tournament had a Winning score of –9 (69-72-68-70=279)? <context>: CREATE TABLE table_name_11 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_11 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)
51,071
<question>: What was the winning score of the Greater Vancouver Open tournament? <context>: CREATE TABLE table_name_50 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_50 WHERE tournament = "greater vancouver open"
51,072
<question>: Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes? <context>: CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = "3 strokes" AND winning_score = –13(68 - 70 - 66 - 71 = 275)
51,073
<question>: What was the Margin of victory in the southwest golf classic Tournament? <context>: CREATE TABLE table_name_84 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_84 WHERE tournament = "southwest golf classic"
51,074
<question>: When the Winning score was –9 (69-72-68-70=279), what was the Margin of victory? <context>: CREATE TABLE table_name_66 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_66 WHERE winning_score = –9(69 - 72 - 68 - 70 = 279)
51,075
<question>: What height has a floor count less than 25? <context>: CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER)
SELECT height FROM table_name_2 WHERE floor_count < 25
51,076
<question>: What state/territory has 121 m as the height? <context>: CREATE TABLE table_name_58 (state___territory VARCHAR, height VARCHAR)
SELECT state___territory FROM table_name_58 WHERE height = "121 m"
51,077
<question>: What state/territory has lovett tower as the building? <context>: CREATE TABLE table_name_85 (state___territory VARCHAR, building VARCHAR)
SELECT state___territory FROM table_name_85 WHERE building = "lovett tower"
51,078
<question>: What was the date of the game against Oakland Raiders? <context>: CREATE TABLE table_name_86 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_86 WHERE opponent = "oakland raiders"
51,079
<question>: What year has 2 wins? <context>: CREATE TABLE table_name_59 (year VARCHAR, wins VARCHAR)
SELECT year FROM table_name_59 WHERE wins = "2"
51,080
<question>: What is the success rate for the year 2012? <context>: CREATE TABLE table_name_52 (success_rate VARCHAR, year VARCHAR)
SELECT success_rate FROM table_name_52 WHERE year = "2012"
51,081
<question>: What was the win for 4 matches with a success rate of 25%? <context>: CREATE TABLE table_name_70 (wins VARCHAR, matches VARCHAR, success_rate VARCHAR)
SELECT wins FROM table_name_70 WHERE matches = "4" AND success_rate = "25%"
51,082
<question>: what was the win for the 6 matches? <context>: CREATE TABLE table_name_17 (wins VARCHAR, matches VARCHAR)
SELECT wins FROM table_name_17 WHERE matches = "6"
51,083
<question>: What is the losses for the 5 matches? <context>: CREATE TABLE table_name_40 (losses VARCHAR, matches VARCHAR)
SELECT losses FROM table_name_40 WHERE matches = "5"
51,084
<question>: What is the losses for the year 2012? <context>: CREATE TABLE table_name_73 (losses VARCHAR, year VARCHAR)
SELECT losses FROM table_name_73 WHERE year = "2012"
51,085
<question>: What is the average Total with a Gold that is larger than 4? <context>: CREATE TABLE table_name_77 (total INTEGER, gold INTEGER)
SELECT AVG(total) FROM table_name_77 WHERE gold > 4
51,086
<question>: What is the average Total with a Bronze that is larger than 1? <context>: CREATE TABLE table_name_46 (total INTEGER, bronze INTEGER)
SELECT AVG(total) FROM table_name_46 WHERE bronze > 1
51,087
<question>: Who were the Brazil scorers for the World Cup Competition with a 1-2 score? <context>: CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)
SELECT brazil_scorers FROM table_name_18 WHERE competition = "world cup" AND score = "1-2"
51,088
<question>: Which competition had a 4-3 score? <context>: CREATE TABLE table_name_86 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_86 WHERE score = "4-3"
51,089
<question>: What is the highest Top-5 that has 18 or more events with a Top-25 of 23? <context>: CREATE TABLE table_name_61 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR)
SELECT MAX(top_5) FROM table_name_61 WHERE events > 18 AND top_25 = 23
51,090
<question>: What is the lowest cuts made that had a Top-25 less than 6 and wins greater than 0? <context>: CREATE TABLE table_name_63 (cuts_made INTEGER, top_25 VARCHAR, wins VARCHAR)
SELECT MIN(cuts_made) FROM table_name_63 WHERE top_25 < 6 AND wins < 0
51,091
<question>: What race did Glenn Seton win on the Sandown International Raceway circuit? <context>: CREATE TABLE table_name_81 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)
SELECT race_title FROM table_name_81 WHERE winner = "glenn seton" AND circuit = "sandown international raceway"
51,092
<question>: What date was the race at Oran Park ran? <context>: CREATE TABLE table_name_25 (date VARCHAR, race_title VARCHAR)
SELECT date FROM table_name_25 WHERE race_title = "oran park"
51,093
<question>: What is the largest number of assists for the second rank when there were less than 2 games? <context>: CREATE TABLE table_name_71 (assists INTEGER, rank VARCHAR, games VARCHAR)
SELECT MAX(assists) FROM table_name_71 WHERE rank = 2 AND games < 2
51,094
<question>: What is the smallest rank when there are more than 2 games? <context>: CREATE TABLE table_name_52 (rank INTEGER, games INTEGER)
SELECT MIN(rank) FROM table_name_52 WHERE games > 2
51,095
<question>: What is the mean number of games for pablo prigioni when there are more than 14 assists? <context>: CREATE TABLE table_name_88 (games INTEGER, name VARCHAR, assists VARCHAR)
SELECT AVG(games) FROM table_name_88 WHERE name = "pablo prigioni" AND assists > 14
51,096
<question>: What region has 57 vehicles? <context>: CREATE TABLE table_name_35 (region VARCHAR, vehicles__1209_ VARCHAR)
SELECT region FROM table_name_35 WHERE vehicles__1209_ = 57
51,097
<question>: What was the Score after 1991 in Category IVA? <context>: CREATE TABLE table_name_98 (score VARCHAR, year VARCHAR, category VARCHAR)
SELECT score FROM table_name_98 WHERE year > 1991 AND category = "iva"
51,098
<question>: What was the Score in 2002? <context>: CREATE TABLE table_name_25 (score VARCHAR, year VARCHAR)
SELECT score FROM table_name_25 WHERE year = 2002
51,099
<question>: What was the Category before 1995? <context>: CREATE TABLE table_name_19 (category VARCHAR, year INTEGER)
SELECT category FROM table_name_19 WHERE year < 1995