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