combined_text
stringlengths
106
1.05k
###question:What is the average laps completed by riders with times of +2:11.524?###answer:SELECT AVG(laps) FROM table_name_90 WHERE time = "+2:11.524"###context:CREATE TABLE table_name_90 (laps INTEGER, time VARCHAR)
###question:Which rider has a time of +2:11.524?###answer:SELECT rider FROM table_name_92 WHERE time = "+2:11.524"###context:CREATE TABLE table_name_92 (rider VARCHAR, time VARCHAR)
###question:What is the average grid for vehicles manufactured by Aprilia and having run more than 16 laps?###answer:SELECT AVG(grid) FROM table_name_2 WHERE manufacturer = "aprilia" AND laps > 16###context:CREATE TABLE table_name_2 (grid INTEGER, manufacturer VARCHAR, laps VARCHAR)
###question:What record has January 27 for the date?###answer:SELECT record FROM table_name_49 WHERE date = "january 27"###context:CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)
###question:What team has brad miller (8) as the high assists?###answer:SELECT team FROM table_name_76 WHERE high_assists = "brad miller (8)"###context:CREATE TABLE table_name_76 (team VARCHAR, high_assists VARCHAR)
###question:What is the high assists that has @ detroit as the team?###answer:SELECT high_assists FROM table_name_93 WHERE team = "@ detroit"###context:CREATE TABLE table_name_93 (high_assists VARCHAR, team VARCHAR)
###question:Which date had a game with the New York Giants as the winner, year over 1985, and a result of 17-14?###answer:SELECT date FROM table_name_82 WHERE winner = "new york giants" AND year > 1985 AND result = "17-14"###context:CREATE TABLE table_name_82 (date VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)
###question:Which date had a year under 1988, loser of Philadelphia Eagles, location of Giants Stadium, and a result of 21-0?###answer:SELECT date FROM table_name_68 WHERE year < 1988 AND loser = "philadelphia eagles" AND location = "giants stadium" AND result = "21-0"###context:CREATE TABLE table_name_68 (date VARCHAR...
###question:Which date had a loser of New York Giants and a result of 23-17?###answer:SELECT date FROM table_name_77 WHERE loser = "new york giants" AND result = "23-17"###context:CREATE TABLE table_name_77 (date VARCHAR, loser VARCHAR, result VARCHAR)
###question:HOW MANY SILVER METALS DOES SOUTH KOREA HAVE WITH 2 GOLD METALS?###answer:SELECT MAX(silver) FROM table_name_43 WHERE nation = "south korea" AND gold > 2###context:CREATE TABLE table_name_43 (silver INTEGER, nation VARCHAR, gold VARCHAR)
###question:WHAT COUNTRY HAS THE HIGHEST BRONZE COUNT, MORE THAN 1 SILVER METAL, AND LESS THAN 1ST PLACE?###answer:SELECT MAX(bronze) FROM table_name_46 WHERE silver > 1 AND rank > 1###context:CREATE TABLE table_name_46 (bronze INTEGER, silver VARCHAR, rank VARCHAR)
###question:What is the highest Runners-Up, when Champions is less than 0?###answer:SELECT MAX(runners_up) FROM table_name_30 WHERE champions < 0###context:CREATE TABLE table_name_30 (runners_up INTEGER, champions INTEGER)
###question:What is the sum of Runners-Up, when Champions is greater than 5?###answer:SELECT SUM(runners_up) FROM table_name_2 WHERE champions > 5###context:CREATE TABLE table_name_2 (runners_up INTEGER, champions INTEGER)
###question:What is the total medals for nation with more than 0 silvers and more than 0 golds?###answer:SELECT AVG(total) FROM table_name_97 WHERE silver > 0 AND gold > 0###context:CREATE TABLE table_name_97 (total INTEGER, silver VARCHAR, gold VARCHAR)
###question:What is the fewest gold medals for a team with fewer than 1 silver, more than 1 bronze and a total less than 4?###answer:SELECT MIN(gold) FROM table_name_21 WHERE silver < 1 AND total < 4 AND bronze > 1###context:CREATE TABLE table_name_21 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)
###question:What is the smallest rank when there are fewer than 1 silver, 4 golds and less than 0 bronze?###answer:SELECT MIN(rank) FROM table_name_10 WHERE silver < 1 AND gold = 4 AND bronze < 0###context:CREATE TABLE table_name_10 (rank INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)
###question:How many gold medals for a nation with rank less than 5, more than 0 silvers and a total of 2 medals?###answer:SELECT AVG(gold) FROM table_name_27 WHERE rank < 5 AND silver > 0 AND total = 2###context:CREATE TABLE table_name_27 (gold INTEGER, total VARCHAR, rank VARCHAR, silver VARCHAR)
###question:What is the total for the team with more than 2 golds and more than 0 bronze?###answer:SELECT SUM(total) FROM table_name_37 WHERE gold > 2 AND bronze > 0###context:CREATE TABLE table_name_37 (total INTEGER, gold VARCHAR, bronze VARCHAR)
###question:Which rider has time of +19.751?###answer:SELECT rider FROM table_name_59 WHERE time = "+19.751"###context:CREATE TABLE table_name_59 (rider VARCHAR, time VARCHAR)
###question:Which manufacturer of aprilia wth time of +1:36.557 has the highest lap?###answer:SELECT MAX(laps) FROM table_name_75 WHERE manufacturer = "aprilia" AND time = "+1:36.557"###context:CREATE TABLE table_name_75 (laps INTEGER, manufacturer VARCHAR, time VARCHAR)
###question:What is time of manufacturer with grid 21?###answer:SELECT time FROM table_name_56 WHERE grid = 21###context:CREATE TABLE table_name_56 (time VARCHAR, grid VARCHAR)
###question:What is the total of laps with grid of 2###answer:SELECT SUM(laps) FROM table_name_5 WHERE grid = 2###context:CREATE TABLE table_name_5 (laps INTEGER, grid VARCHAR)
###question:What is the lowest grid with time of +0.499,when laps are larger than 21?###answer:SELECT MIN(grid) FROM table_name_33 WHERE time = "+0.499" AND laps > 21###context:CREATE TABLE table_name_33 (grid INTEGER, time VARCHAR, laps VARCHAR)
###question:What is the total laps when manufacturer of gilera has time of 40:19.910 and grid is larger than 3?###answer:SELECT SUM(laps) FROM table_name_86 WHERE manufacturer = "gilera" AND time = "40:19.910" AND grid > 3###context:CREATE TABLE table_name_86 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time VARC...
###question:What is the time when the rank is 14?###answer:SELECT time FROM table_name_72 WHERE rank = 14###context:CREATE TABLE table_name_72 (time VARCHAR, rank VARCHAR)
###question:what is the rank when the time is 3:12.40?###answer:SELECT SUM(rank) FROM table_name_70 WHERE time = "3:12.40"###context:CREATE TABLE table_name_70 (rank INTEGER, time VARCHAR)
###question:what is the rank when the heat is more than 4?###answer:SELECT SUM(rank) FROM table_name_66 WHERE heat > 4###context:CREATE TABLE table_name_66 (rank INTEGER, heat INTEGER)
###question:what is the nationality when the heat is less than 3 and the time is 2:35.31?###answer:SELECT nationality FROM table_name_81 WHERE heat < 3 AND time = "2:35.31"###context:CREATE TABLE table_name_81 (nationality VARCHAR, heat VARCHAR, time VARCHAR)
###question:what is the name when the heat is less than 3, the rank is less than 18, the nationality is east germany and the time is 2:35.31?###answer:SELECT name FROM table_name_64 WHERE heat < 3 AND rank < 18 AND nationality = "east germany" AND time = "2:35.31"###context:CREATE TABLE table_name_64 (name VARCHAR, tim...
###question:Which tie number had an away team of the Tranmere Rovers?###answer:SELECT tie_no FROM table_name_44 WHERE away_team = "tranmere rovers"###context:CREATE TABLE table_name_44 (tie_no VARCHAR, away_team VARCHAR)
###question:Which tie number had an away team of the Tranmere Rovers?###answer:SELECT tie_no FROM table_name_36 WHERE away_team = "tranmere rovers"###context:CREATE TABLE table_name_36 (tie_no VARCHAR, away_team VARCHAR)
###question:What date did the Boston Celtics play at Richfield Coliseum?###answer:SELECT date FROM table_name_99 WHERE location = "richfield coliseum"###context:CREATE TABLE table_name_99 (date VARCHAR, location VARCHAR)
###question:What game ended with a final score of 126-108?###answer:SELECT MAX(game) FROM table_name_16 WHERE score = "126-108"###context:CREATE TABLE table_name_16 (game INTEGER, score VARCHAR)
###question:What was the highest number of rebounds on February 6?###answer:SELECT high_rebounds FROM table_name_53 WHERE date = "february 6"###context:CREATE TABLE table_name_53 (high_rebounds VARCHAR, date VARCHAR)
###question:How many people tuned in to the finale on May 16, 2007?###answer:SELECT COUNT(viewers__in_millions_) FROM table_name_27 WHERE finale = "may 16, 2007"###context:CREATE TABLE table_name_27 (viewers__in_millions_ VARCHAR, finale VARCHAR)
###question:What time did the season finale air on May 20, 2003?###answer:SELECT timeslot FROM table_name_43 WHERE finale = "may 20, 2003"###context:CREATE TABLE table_name_43 (timeslot VARCHAR, finale VARCHAR)
###question:What was the total score where Toronto was played?###answer:SELECT SUM(game) FROM table_name_71 WHERE team = "toronto"###context:CREATE TABLE table_name_71 (game INTEGER, team VARCHAR)
###question:Which Weight & Height has a Player of james donaldson?###answer:SELECT weight_ & _height FROM table_name_43 WHERE player = "james donaldson"###context:CREATE TABLE table_name_43 (weight_ VARCHAR, _height VARCHAR, player VARCHAR)
###question:Which Weight & Height has a Player of michael worrincy?###answer:SELECT weight_ & _height FROM table_name_65 WHERE player = "michael worrincy"###context:CREATE TABLE table_name_65 (weight_ VARCHAR, _height VARCHAR, player VARCHAR)
###question:What is the result of the match that went to round 1 and only for 2:48?###answer:SELECT res FROM table_name_94 WHERE round = 1 AND time = "2:48"###context:CREATE TABLE table_name_94 (res VARCHAR, round VARCHAR, time VARCHAR)
###question:The K-1 MMA Romanex event went how many rounds?###answer:SELECT COUNT(round) FROM table_name_38 WHERE event = "k-1 mma romanex"###context:CREATE TABLE table_name_38 (round VARCHAR, event VARCHAR)
###question:What is the result for the match that was only 2:48 long?###answer:SELECT res FROM table_name_63 WHERE time = "2:48"###context:CREATE TABLE table_name_63 (res VARCHAR, time VARCHAR)
###question:What is Points For, when Points Against is 571?###answer:SELECT points_for FROM table_name_76 WHERE points_against = "571"###context:CREATE TABLE table_name_76 (points_for VARCHAR, points_against VARCHAR)
###question:What is Drawn, when Lost is 14, and when Bonus Points is 12?###answer:SELECT drawn FROM table_name_63 WHERE lost = "14" AND bonus_points = "12"###context:CREATE TABLE table_name_63 (drawn VARCHAR, lost VARCHAR, bonus_points VARCHAR)
###question:What is Points, when Club is Maesteg RFC?###answer:SELECT points FROM table_name_14 WHERE club = "maesteg rfc"###context:CREATE TABLE table_name_14 (points VARCHAR, club VARCHAR)
###question:What is Points, when Points is 60, and when Club is Bedwas RFC?###answer:SELECT points_for FROM table_name_24 WHERE points = "60" AND club = "bedwas rfc"###context:CREATE TABLE table_name_24 (points_for VARCHAR, points VARCHAR, club VARCHAR)
###question:What is Drawn, when Club is Newport RFC?###answer:SELECT drawn FROM table_name_71 WHERE club = "newport rfc"###context:CREATE TABLE table_name_71 (drawn VARCHAR, club VARCHAR)
###question:What is Points Difference, when Points Against is 451?###answer:SELECT points_difference FROM table_name_96 WHERE points_against = "451"###context:CREATE TABLE table_name_96 (points_difference VARCHAR, points_against VARCHAR)
###question:Which is the highest silver that has a gold less than 0?###answer:SELECT MAX(silver) FROM table_name_40 WHERE gold < 0###context:CREATE TABLE table_name_40 (silver INTEGER, gold INTEGER)
###question:What is the lowest silver that has 1 as the rank, with a bronze greater than 5?###answer:SELECT MIN(silver) FROM table_name_76 WHERE rank = 1 AND bronze > 5###context:CREATE TABLE table_name_76 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
###question:What is the highest silver that has 9 as the rank, germany as the nation, with a gold less than 0?###answer:SELECT MAX(silver) FROM table_name_55 WHERE rank = 9 AND nation = "germany" AND gold < 0###context:CREATE TABLE table_name_55 (silver INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR)
###question:What shows for the location and attendance when the record is 41–36?###answer:SELECT location_attendance FROM table_name_9 WHERE record = "41–36"###context:CREATE TABLE table_name_9 (location_attendance VARCHAR, record VARCHAR)
###question:What is the score when the record was 40–36?###answer:SELECT score FROM table_name_65 WHERE record = "40–36"###context:CREATE TABLE table_name_65 (score VARCHAR, record VARCHAR)
###question:WHo is the Player got a Pick # smaller than 61, and a College of texas?###answer:SELECT player FROM table_name_17 WHERE pick__number < 61 AND college = "texas"###context:CREATE TABLE table_name_17 (player VARCHAR, pick__number VARCHAR, college VARCHAR)
###question:Name the College which has a Round smaller than 3, and a Pick # larger than 4, and a Position of wide receiver?###answer:SELECT college FROM table_name_59 WHERE round < 3 AND pick__number > 4 AND position = "wide receiver"###context:CREATE TABLE table_name_59 (college VARCHAR, position VARCHAR, round VARCHA...
###question:Which the highest Round has a Player of mike williams, and a Pick # larger than 4?###answer:SELECT MAX(round) FROM table_name_12 WHERE player = "mike williams" AND pick__number > 4###context:CREATE TABLE table_name_12 (round INTEGER, player VARCHAR, pick__number VARCHAR)
###question:Name the average Pick # of mike williams?###answer:SELECT AVG(pick__number) FROM table_name_9 WHERE player = "mike williams"###context:CREATE TABLE table_name_9 (pick__number INTEGER, player VARCHAR)
###question:What date did the red wings play against the visitors, buffalo?###answer:SELECT date FROM table_name_62 WHERE visitor = "buffalo"###context:CREATE TABLE table_name_62 (date VARCHAR, visitor VARCHAR)
###question:Who made the decision when atlanta was the home team?###answer:SELECT decision FROM table_name_33 WHERE home = "atlanta"###context:CREATE TABLE table_name_33 (decision VARCHAR, home VARCHAR)
###question:Who made the decision when detroit was the home team and boston was the visitor?###answer:SELECT decision FROM table_name_81 WHERE home = "detroit" AND visitor = "boston"###context:CREATE TABLE table_name_81 (decision VARCHAR, home VARCHAR, visitor VARCHAR)
###question:Who made the decision when toronto was the home team?###answer:SELECT decision FROM table_name_21 WHERE home = "toronto"###context:CREATE TABLE table_name_21 (decision VARCHAR, home VARCHAR)
###question:The player Cecil Martin with an overall less than 268 has what total pick?###answer:SELECT SUM(pick) FROM table_name_32 WHERE name = "cecil martin" AND overall < 268###context:CREATE TABLE table_name_32 (pick INTEGER, name VARCHAR, overall VARCHAR)
###question:With the pick of 1 Cecil Martin has what number as the overall?###answer:SELECT COUNT(overall) FROM table_name_38 WHERE pick = 1 AND name = "cecil martin"###context:CREATE TABLE table_name_38 (overall VARCHAR, pick VARCHAR, name VARCHAR)
###question:What position does the player play with an overall of 304?###answer:SELECT position FROM table_name_76 WHERE overall = 304###context:CREATE TABLE table_name_76 (position VARCHAR, overall VARCHAR)
###question:What is the US modern rock rank of code bad 0003?###answer:SELECT us_modern_rock FROM table_name_90 WHERE code = "bad 0003"###context:CREATE TABLE table_name_90 (us_modern_rock VARCHAR, code VARCHAR)
###question:What is the format of code 9 40231-2 (us only)?###answer:SELECT format FROM table_name_83 WHERE code = "9 40231-2 (us only)"###context:CREATE TABLE table_name_83 (format VARCHAR, code VARCHAR)
###question:What is the UK singles chart rank of the single released on 26 February 1990?###answer:SELECT uk_singles_chart FROM table_name_9 WHERE release_date = "26 february 1990"###context:CREATE TABLE table_name_9 (uk_singles_chart VARCHAR, release_date VARCHAR)
###question:What is the format of code pro-cd-4662?###answer:SELECT format FROM table_name_98 WHERE code = "pro-cd-4662"###context:CREATE TABLE table_name_98 (format VARCHAR, code VARCHAR)
###question:Which mongolian has the province of municipality?###answer:SELECT mongolian FROM table_name_79 WHERE province = "municipality"###context:CREATE TABLE table_name_79 (mongolian VARCHAR, province VARCHAR)
###question:What is the sum of the years with bus conner as the BSU head coach?###answer:SELECT SUM(year) FROM table_name_24 WHERE bsu_head_coach = "bus conner"###context:CREATE TABLE table_name_24 (year INTEGER, bsu_head_coach VARCHAR)
###question:Who is the BSU head coach of the tournament after 1994 with louisville as the opponent?###answer:SELECT bsu_head_coach FROM table_name_76 WHERE opponent = "louisville" AND year > 1994###context:CREATE TABLE table_name_76 (bsu_head_coach VARCHAR, opponent VARCHAR, year VARCHAR)
###question:What is the result in 1994?###answer:SELECT result FROM table_name_36 WHERE year = 1994###context:CREATE TABLE table_name_36 (result VARCHAR, year VARCHAR)
###question:What is the result after 1993 of the first four rounds?###answer:SELECT result FROM table_name_2 WHERE year > 1993 AND round = "first four"###context:CREATE TABLE table_name_2 (result VARCHAR, year VARCHAR, round VARCHAR)
###question:Who was the opponent before 1994 with bobby dye as the BSU head coach?###answer:SELECT opponent FROM table_name_86 WHERE bsu_head_coach = "bobby dye" AND year < 1994###context:CREATE TABLE table_name_86 (opponent VARCHAR, bsu_head_coach VARCHAR, year VARCHAR)
###question:Who is the opponent in 1976?###answer:SELECT opponent FROM table_name_98 WHERE year = 1976###context:CREATE TABLE table_name_98 (opponent VARCHAR, year VARCHAR)
###question:What is Date, when Score is "0-2", and when Opponents is "Bayer Leverkusen"?###answer:SELECT date FROM table_name_4 WHERE score = "0-2" AND opponents = "bayer leverkusen"###context:CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR, opponents VARCHAR)
###question:What is Competition, when Score is "2-1", and when Date is "October 22, 2008"?###answer:SELECT competition FROM table_name_84 WHERE score = "2-1" AND date = "october 22, 2008"###context:CREATE TABLE table_name_84 (competition VARCHAR, score VARCHAR, date VARCHAR)
###question:What is Match Report, when Venue is "Westfalenstadion , Dortmund"?###answer:SELECT match_report FROM table_name_92 WHERE venue = "westfalenstadion , dortmund"###context:CREATE TABLE table_name_92 (match_report VARCHAR, venue VARCHAR)
###question:What is Date, when Venue is "Weserstadion , Bremen"?###answer:SELECT date FROM table_name_32 WHERE venue = "weserstadion , bremen"###context:CREATE TABLE table_name_32 (date VARCHAR, venue VARCHAR)
###question:What is Date, when Competition is "F", and when Opponents is "FC Astoria Walldorf"?###answer:SELECT date FROM table_name_28 WHERE competition = "f" AND opponents = "fc astoria walldorf"###context:CREATE TABLE table_name_28 (date VARCHAR, competition VARCHAR, opponents VARCHAR)
###question:What is the pick of Charley Taylor, who has an overall greater than 3?###answer:SELECT SUM(pick) FROM table_name_58 WHERE name = "charley taylor" AND overall > 3###context:CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR, overall VARCHAR)
###question:What is the position of the player with a 143 overall?###answer:SELECT position FROM table_name_68 WHERE overall = 143###context:CREATE TABLE table_name_68 (position VARCHAR, overall VARCHAR)
###question:What is the average round of the s position player from the college of Mississippi and has an overall less than 214?###answer:SELECT AVG(round) FROM table_name_79 WHERE position = "s" AND college = "mississippi" AND overall < 214###context:CREATE TABLE table_name_79 (round INTEGER, overall VARCHAR, position...
###question:What is the total round of the rb player from Purdue with a pick less than 3?###answer:SELECT COUNT(round) FROM table_name_76 WHERE position = "rb" AND college = "purdue" AND pick < 3###context:CREATE TABLE table_name_76 (round VARCHAR, pick VARCHAR, position VARCHAR, college VARCHAR)
###question:Which category has 24 nominated work?###answer:SELECT category FROM table_name_12 WHERE nominated_work = "24"###context:CREATE TABLE table_name_12 (category VARCHAR, nominated_work VARCHAR)
###question:How many Silver medals did the Nation of Croatia receive with a Total medal of more than 1?###answer:SELECT MIN(silver) FROM table_name_3 WHERE bronze = 1 AND total > 1 AND nation = "croatia"###context:CREATE TABLE table_name_3 (silver INTEGER, nation VARCHAR, bronze VARCHAR, total VARCHAR)
###question:How many Gold medals did Australia receive?###answer:SELECT AVG(gold) FROM table_name_59 WHERE nation = "australia"###context:CREATE TABLE table_name_59 (gold INTEGER, nation VARCHAR)
###question:How many Total medals did the country with 16 Silver and less than 32 Bronze receive?###answer:SELECT MIN(total) FROM table_name_65 WHERE silver = 16 AND bronze < 32###context:CREATE TABLE table_name_65 (total INTEGER, silver VARCHAR, bronze VARCHAR)
###question:How many Bronze medals for the Nation with a Rank of 11 and less than 1 Silver?###answer:SELECT MIN(bronze) FROM table_name_9 WHERE rank = "11" AND silver < 1###context:CREATE TABLE table_name_9 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
###question:What is the average Episode Number, when Original Airdate is March 21, 2010, and when Season is less than 3?###answer:SELECT AVG(episode) AS number FROM table_name_96 WHERE original_airdate = "march 21, 2010" AND season < 3###context:CREATE TABLE table_name_96 (episode INTEGER, original_airdate VARCHAR, sea...
###question:What is the total number of Season(s), when Original Airdate is January 24, 1999, and when Year is less than 1999?###answer:SELECT COUNT(season) FROM table_name_67 WHERE original_airdate = "january 24, 1999" AND year < 1999###context:CREATE TABLE table_name_67 (season VARCHAR, original_airdate VARCHAR, year...
###question:How many games have a Result of l, and a Record of 2-6?###answer:SELECT COUNT(game) FROM table_name_17 WHERE result = "l" AND record = "2-6"###context:CREATE TABLE table_name_17 (game VARCHAR, result VARCHAR, record VARCHAR)
###question:How many people attended the green bay packers game?###answer:SELECT SUM(attendance) FROM table_name_14 WHERE opponent = "green bay packers"###context:CREATE TABLE table_name_14 (attendance INTEGER, opponent VARCHAR)
###question:How many people attended the game whose score was 1-1?###answer:SELECT attendance FROM table_name_62 WHERE record = "1-1"###context:CREATE TABLE table_name_62 (attendance VARCHAR, record VARCHAR)
###question:Which Date has a Score of 24-7, and a Record of 4-10?###answer:SELECT date FROM table_name_12 WHERE score = "24-7" AND record = "4-10"###context:CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR, record VARCHAR)
###question:Lowest round for g that was smaller than 31?###answer:SELECT MIN(round) FROM table_name_76 WHERE position = "g" AND overall < 31###context:CREATE TABLE table_name_76 (round INTEGER, position VARCHAR, overall VARCHAR)
###question:What is the Semifinalists that has a Tournament of Cincinnati?###answer:SELECT semifinalists FROM table_name_29 WHERE tournament = "cincinnati"###context:CREATE TABLE table_name_29 (semifinalists VARCHAR, tournament VARCHAR)
###question:The Crvena Zvezda club has what aggregate?###answer:SELECT aggregate FROM table_name_58 WHERE club = "crvena zvezda"###context:CREATE TABLE table_name_58 (aggregate VARCHAR, club VARCHAR)
###question:What is the total number of assists of the player with 0 goals, more than 1 points, and more than 0 pims?###answer:SELECT COUNT(assists) FROM table_name_85 WHERE goals = 0 AND points > 1 AND pims > 0###context:CREATE TABLE table_name_85 (assists VARCHAR, pims VARCHAR, goals VARCHAR, points VARCHAR)
###question:Which Decision has a Visitor of calgary, a Score of 2 – 1, and a Series of 4 – 3?###answer:SELECT decision FROM table_name_5 WHERE visitor = "calgary" AND score = "2 – 1" AND series = "4 – 3"###context:CREATE TABLE table_name_5 (decision VARCHAR, series VARCHAR, visitor VARCHAR, score VARCHAR)