combined_text stringlengths 106 1.05k |
|---|
###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"###context:CREATE TABLE table_name_96 (away_team VARCHAR, round VARCHAR, home_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"###context:CREATE TABLE table_name_65 (score VARCHAR, round VARCHAR, away_team VARCHAR) |
###question:Which League has a Regular Season of 2nd, southeast?###answer:SELECT league FROM table_name_58 WHERE regular_season = "2nd, southeast"###context:CREATE TABLE table_name_58 (league 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."###context:CREATE TABLE table_name_99 (playoffs VARCHAR, regular_season VARCHAR) |
###question:What is the population of Kragerø?###answer:SELECT MIN(population) FROM table_name_17 WHERE city = "kragerø"###context:CREATE TABLE table_name_17 (population INTEGER, city 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"###context:CREATE TABLE table_name_91 (population INTEGER, town_status VARCHAR) |
###question:What is the highest population within the municipality of Porsgrunn?###answer:SELECT MAX(population) FROM table_name_28 WHERE municipality = "porsgrunn"###context:CREATE TABLE table_name_28 (population INTEGER, municipality 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###context:CREATE TABLE table_name_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHA... |
###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"###context:CREATE TABLE table_name_60 (points INTEGER, engine VARCHAR, year VARCHAR, entrant V... |
###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"###context:CREATE TABLE table_name_3 (points INTEGER, year VARCHAR, entrant 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"###context:CREATE TABLE table_name_68 (year INTEGER, position VARCHAR, competition 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"###context:CREATE TABLE table_name_54 (year INTEGER, venue 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"###context:CREATE TABLE table_name_89 (year INTEGER, competition VARCHAR) |
###question:What is Event, when Position is 4th?###answer:SELECT event FROM table_name_94 WHERE position = "4th"###context:CREATE TABLE table_name_94 (event VARCHAR, position VARCHAR) |
###question:What is the Date with a Format that is cd?###answer:SELECT date FROM table_name_87 WHERE format = "cd"###context:CREATE TABLE table_name_87 (date VARCHAR, format 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"###context:CREATE TABLE table_name_9 (catalog VARCHAR, date VARCHAR) |
###question:What is the Label with a Catalog that is mhcl-20017?###answer:SELECT label FROM table_name_45 WHERE catalog = "mhcl-20017"###context:CREATE TABLE table_name_45 (label VARCHAR, catalog 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"###context:CREATE TABLE table_name_89 (catalog VARCHAR, date 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"###context:CREATE TABLE table_name_62 (we... |
###question:What is the Position, when the Birthplace is Buffalo, New York?###answer: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 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"###context:CREATE TABLE table_name_24 (bir... |
###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"###context:CREATE TABLE table_name_28 (final_score VARCHAR, attendance 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"###context:CREATE TABLE table_name_58 (week INTEGER, 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"###context:CREATE TABLE table_name_89 (record VARCHAR, game_site VARCHAR, opponent 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###context:CREATE TABLE table_name_91 (finish VARCHAR, year VARCHAR, chassis VARCHAR, start 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###context:CREATE TABLE table_name_68 (chassis VARCHAR, engine VARCHAR, year 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###context:CREATE TABLE table_name_53 (year INTEGER, engine VARCHAR, finish VARCHAR) |
###question:What was 2002, when 2008 was, "career statistics"?###answer:SELECT 2002 FROM table_name_6 WHERE 2008 = "career statistics"###context:CREATE TABLE table_name_6 (Id VARCHAR) |
###question:What was 2009, when 2001 was, "not masters series"?###answer:SELECT 2009 FROM table_name_5 WHERE 2001 = "not masters series"###context:CREATE TABLE table_name_5 (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"###context:CREATE TABLE table_name_40 (Id 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"###context:CREATE TABLE table_name_18 (tournament VARCHAR) |
###question:What was 2002, when 2011 was, "atp masters series"?###answer:SELECT 2002 FROM table_name_71 WHERE 2011 = "atp masters series"###context:CREATE TABLE table_name_71 (Id 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###context:CREATE TABLE table_name_8 (wins INTEGER, player VARCHAR, 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###context:CREATE TABLE table_name_39 (earnings__ INTEGER, rank VARCHAR) |
###question:What is the country is ranked more than 4?###answer:SELECT country FROM table_name_66 WHERE rank > 4###context:CREATE TABLE table_name_66 (country VARCHAR, rank INTEGER) |
###question:What the total of Week with attendance of 53,147###answer:SELECT SUM(week) FROM table_name_70 WHERE attendance = "53,147"###context:CREATE TABLE table_name_70 (week INTEGER, attendance VARCHAR) |
###question:What is the lowest week for December 26, 1999###answer:SELECT MIN(week) FROM table_name_31 WHERE date = "december 26, 1999"###context:CREATE TABLE table_name_31 (week INTEGER, date 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"###context:CREATE TABLE table_name_90 (season VARCHAR, races VARCHAR, team VARCHAR) |
###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###context:CREATE TABLE table_name_15 (races VARCHAR, wins INTEGER) |
###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"###context:CREATE TABLE table_name_2 (socialist_ticket VARCHAR, republican_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"###context:CREATE TABLE table_name_67 (republican_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"###context:CREATE TABLE table_name_5 (socialist_ticket VARCHAR, democratic_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"###context:CREATE TABLE table_name_61 (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"###context:CREATE TABLE table_name_46 (republican_ticket VARCHAR, socialist_ticket 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###context:CREATE TABLE table_name_47 (year INTEGER, player VARCHAR, sets 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"###context:CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR) |
###question:what year was the opponent caroline garcia?###answer:SELECT SUM(year) FROM table_name_22 WHERE opponent = "caroline garcia"###context:CREATE TABLE table_name_22 (year INTEGER, 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###context:CREATE TABLE table_name_55 (year INTEGER, sets VARCHAR, aces VARCHAR, oppone... |
###question:what year was the memphis event?###answer:SELECT SUM(year) FROM table_name_97 WHERE event = "memphis"###context:CREATE TABLE table_name_97 (year INTEGER, event 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###context:CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number 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"###context:CREATE TABLE table_name_64 (season VARCHAR, school_club_team VARCHAR) |
###question:What was the country in the year 2012?###answer:SELECT country FROM table_name_69 WHERE year = 2012###context:CREATE TABLE table_name_69 (country VARCHAR, year 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"###context:CREATE TABLE table_name_90 (year VARCHAR, manufacturer 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"###context:CREATE TABLE table_name_42 (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"###context:CREATE TABLE table_name_34 (country VARCHAR, engine_make_capacity 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"###context:CREATE TABLE table_name_18 (automobile_name VARCHAR, year 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"###context:CREATE TABLE table_name_11 (automobile_name VARCHAR, manufacturer 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"###context:CREATE TABLE table_name_58 (manufacturer VARCHAR, engine_make_capacity VARCHAR, year 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"###context:CREATE TABLE table_name_98 (set_2 VARCHAR, date 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"###context:CREATE TABLE table_name_12 (set_1 VARCHAR, set_2 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"###context:CREATE TABLE table_name_93 (set_5 VARCHAR, date 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"###context:CREATE TABLE table_name_9 (construction_completed VARCHAR, listed VARCHAR, deleted 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"###context:CREATE TABLE table_name_47 (partially_deleted VARCHAR, construction_completed VAR... |
###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"###context:CREATE TABLE table_name_96 (partially_deleted VARCHAR, name 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"###context:CREATE TABLE table_name_95 (partially_deleted VARCHAR, deleted VARCHAR, county VARCHAR) |
###question:How many matches ended with more than 22 points?###answer:SELECT SUM(match) FROM table_name_83 WHERE points > 22###context:CREATE TABLE table_name_83 (match INTEGER, points INTEGER) |
###question:What is the value in 1965 when 7 is the value for 1967?###answer:SELECT 1965 FROM table_name_81 WHERE 1967 = "7"###context:CREATE TABLE table_name_81 (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"###context:CREATE TABLE table_name_65 (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"###context:CREATE TABLE table_name_72 (Id VARCHAR) |
###question:Who was the player moving to Arminia Bielefeld?###answer:SELECT name FROM table_name_68 WHERE moving_to = "arminia bielefeld"###context:CREATE TABLE table_name_68 (name VARCHAR, moving_to 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)###context:CREATE TABLE table_name_11 (tournament VARCHAR, winning_score 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"###context:CREATE TABLE table_name_50 (winning_score VARCHAR, tournament 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)###context:CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_v... |
###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"###context:CREATE TABLE table_name_84 (margin_of_victory VARCHAR, tournament 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)###context:CREATE TABLE table_name_66 (margin_of_victory VARCHAR, winning_score VARCHAR) |
###question:What height has a floor count less than 25?###answer:SELECT height FROM table_name_2 WHERE floor_count < 25###context:CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER) |
###question:What state/territory has 121 m as the height?###answer: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 lovett tower as the building?###answer:SELECT state___territory FROM table_name_85 WHERE building = "lovett tower"###context:CREATE TABLE table_name_85 (state___territory VARCHAR, building VARCHAR) |
###question:What was the date of the game against Oakland Raiders?###answer:SELECT date FROM table_name_86 WHERE opponent = "oakland raiders"###context:CREATE TABLE table_name_86 (date VARCHAR, opponent VARCHAR) |
###question:What year has 2 wins?###answer:SELECT year FROM table_name_59 WHERE wins = "2"###context:CREATE TABLE table_name_59 (year VARCHAR, wins VARCHAR) |
###question:What is the success rate for the year 2012?###answer:SELECT success_rate FROM table_name_52 WHERE year = "2012"###context:CREATE TABLE table_name_52 (success_rate VARCHAR, year 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%"###context:CREATE TABLE table_name_70 (wins VARCHAR, matches VARCHAR, success_rate VARCHAR) |
###question:what was the win for the 6 matches?###answer:SELECT wins FROM table_name_17 WHERE matches = "6"###context:CREATE TABLE table_name_17 (wins VARCHAR, matches VARCHAR) |
###question:What is the losses for the 5 matches?###answer: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 year 2012?###answer:SELECT losses FROM table_name_73 WHERE year = "2012"###context:CREATE TABLE table_name_73 (losses VARCHAR, year VARCHAR) |
###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###context:CREATE TABLE table_name_77 (total INTEGER, gold 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###context:CREATE TABLE table_name_46 (total INTEGER, bronze INTEGER) |
###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"###context:CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR) |
###question:Which competition had a 4-3 score?###answer:SELECT competition FROM table_name_86 WHERE score = "4-3"###context:CREATE TABLE table_name_86 (competition VARCHAR, score 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###context:CREATE TABLE table_name_61 (top_5 INTEGER, events VARCHAR, top_25 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###context:CREATE TABLE table_name_63 (cuts_made INTEGER, top_25 VARCHAR, wins 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"###context:CREATE TABLE table_name_81 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR) |
###question:What date was the race at Oran Park ran?###answer:SELECT date FROM table_name_25 WHERE race_title = "oran park"###context:CREATE TABLE table_name_25 (date VARCHAR, race_title 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###context:CREATE TABLE table_name_71 (assists INTEGER, rank VARCHAR, games VARCHAR) |
###question:What is the smallest rank when there are more than 2 games?###answer:SELECT MIN(rank) FROM table_name_52 WHERE games > 2###context:CREATE TABLE table_name_52 (rank INTEGER, games INTEGER) |
###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###context:CREATE TABLE table_name_88 (games INTEGER, name VARCHAR, assists VARCHAR) |
###question:What region has 57 vehicles?###answer:SELECT region FROM table_name_35 WHERE vehicles__1209_ = 57###context:CREATE TABLE table_name_35 (region VARCHAR, vehicles__1209_ VARCHAR) |
###question:What was the Score after 1991 in Category IVA?###answer: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 in 2002?###answer:SELECT score FROM table_name_25 WHERE year = 2002###context:CREATE TABLE table_name_25 (score VARCHAR, year VARCHAR) |
###question:What was the Category before 1995?###answer:SELECT category FROM table_name_19 WHERE year < 1995###context:CREATE TABLE table_name_19 (category VARCHAR, year INTEGER) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.