training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_82 (rounds VARCHAR, entrant VARCHAR) ###human: Name the rounds for stanley brm ###assistant: SELECT rounds FROM table_name_82 WHERE entrant = "stanley brm"
###context:CREATE TABLE table_name_26 (tottenham_hotspur_career VARCHAR, club_apps VARCHAR, position VARCHAR, goals VARCHAR, nationality VARCHAR) ###human: What were the years of the Tottenham Hotspur career for the player with 10 goals, from England, played the df position, and had 118 club apps? ###assistant: SELECT tottenham_hotspur_career FROM table_name_26 WHERE goals = "10" AND nationality = "england" AND position = "df" AND club_apps = "118"
###context:CREATE TABLE table_name_72 (position VARCHAR, nationality VARCHAR, goals VARCHAR) ###human: What is the position of the player from England with 62 goals? ###assistant: SELECT position FROM table_name_72 WHERE nationality = "england" AND goals = "62"
###context:CREATE TABLE table_name_8 (goals VARCHAR, club_apps VARCHAR, nationality VARCHAR, position VARCHAR) ###human: How many goals did the player from England who played the position of mf and had 170 club apps had? ###assistant: SELECT goals FROM table_name_8 WHERE nationality = "england" AND position = "mf" AND club_apps = "170"
###context:CREATE TABLE table_name_69 (goals VARCHAR, club_apps VARCHAR) ###human: How many goals did the player with 229 club apps have? ###assistant: SELECT goals FROM table_name_69 WHERE club_apps = "229"
###context:CREATE TABLE table_name_18 (award_ceremony VARCHAR, nominee VARCHAR) ###human: For which Award Ceremony was Emilio Pichardo as Bobby Strong nominated? ###assistant: SELECT award_ceremony FROM table_name_18 WHERE nominee = "emilio pichardo as bobby strong"
###context:CREATE TABLE table_name_38 (nominee VARCHAR, category VARCHAR) ###human: Who was nominated for best female performer? ###assistant: SELECT nominee FROM table_name_38 WHERE category = "best female performer"
###context:CREATE TABLE table_name_76 (area VARCHAR, decile VARCHAR) ###human: What area is the school with a decile of 8 in? ###assistant: SELECT area FROM table_name_76 WHERE decile = "8"
###context:CREATE TABLE table_name_27 (name VARCHAR, authority VARCHAR, roll VARCHAR) ###human: Which school has a state authority and a roll of 318? ###assistant: SELECT name FROM table_name_27 WHERE authority = "state" AND roll = 318
###context:CREATE TABLE table_name_87 (area VARCHAR, authority VARCHAR, name VARCHAR) ###human: In what area is torbay school with a state authority? ###assistant: SELECT area FROM table_name_87 WHERE authority = "state" AND name = "torbay school"
###context:CREATE TABLE table_name_25 (Regular VARCHAR, team VARCHAR, tournament VARCHAR, total VARCHAR) ###human: How many regular season titles did Kansas receive when they received fewer than 2 tournament titles and more than 0 total titles? ###assistant: SELECT Regular AS season FROM table_name_25 WHERE tournament < 2 AND total > 0 AND team = "kansas"
###context:CREATE TABLE table_name_65 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) ###human: What is the time of retirement with Laps smaller than 66, a grid less than 10, and a Driver of heinz-harald frentzen? ###assistant: SELECT time_retired FROM table_name_65 WHERE laps < 66 AND grid < 10 AND driver = "heinz-harald frentzen"
###context:CREATE TABLE table_name_96 (laps VARCHAR, driver VARCHAR) ###human: How many laps does olivier panis have? ###assistant: SELECT laps FROM table_name_96 WHERE driver = "olivier panis"
###context:CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR) ###human: Which home team played against Geelong? ###assistant: SELECT home_team FROM table_name_39 WHERE away_team = "geelong"
###context:CREATE TABLE table_name_62 (crowd VARCHAR, away_team VARCHAR) ###human: How large was the crowd when North Melbourne played as the away team? ###assistant: SELECT crowd FROM table_name_62 WHERE away_team = "north melbourne"
###context:CREATE TABLE table_name_13 (away_team VARCHAR, home_team VARCHAR) ###human: Who is the away team that played home team Hawthorn? ###assistant: SELECT away_team FROM table_name_13 WHERE home_team = "hawthorn"
###context:CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR) ###human: What is the name of the home team that played away team Footscray? ###assistant: SELECT home_team FROM table_name_46 WHERE away_team = "footscray"
###context:CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR) ###human: Who is the home team that played at venue MCG? ###assistant: SELECT home_team FROM table_name_3 WHERE venue = "mcg"
###context:CREATE TABLE table_name_26 (first_appearance VARCHAR, portrayed_by VARCHAR) ###human: What is the name of the first appearance when Chad Williams is a portrayal? ###assistant: SELECT first_appearance FROM table_name_26 WHERE portrayed_by = "chad williams"
###context:CREATE TABLE table_name_10 (character VARCHAR, portrayed_by VARCHAR) ###human: Which character is portrayed by Elias Koteas? ###assistant: SELECT character FROM table_name_10 WHERE portrayed_by = "elias koteas"
###context:CREATE TABLE table_name_97 (home_team VARCHAR, venue VARCHAR) ###human: What is the Home Team Score at VFL Park? ###assistant: SELECT home_team AS score FROM table_name_97 WHERE venue = "vfl park"
###context:CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR) ###human: What is the Home Team Score at Windy Hill? ###assistant: SELECT home_team AS score FROM table_name_64 WHERE venue = "windy hill"
###context:CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR) ###human: On what Date is Carlton the Away Team? ###assistant: SELECT date FROM table_name_98 WHERE away_team = "carlton"
###context:CREATE TABLE table_name_68 (competition VARCHAR, result VARCHAR) ###human: Which competition with a result of 3-1? ###assistant: SELECT competition FROM table_name_68 WHERE result = "3-1"
###context:CREATE TABLE table_name_80 (ligue_1_titles INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_ligue_1 VARCHAR) ###human: I want to know the lowest ligue 1 titles for position in 2012-13 of 010 12th and number of seasons in ligue 1 more than 56 ###assistant: SELECT MIN(ligue_1_titles) FROM table_name_80 WHERE position_in_2012_13 = "010 12th" AND number_of_seasons_in_ligue_1 > 56
###context:CREATE TABLE table_name_69 (position_in_2012_13 VARCHAR, number_of_seasons_in_ligue_1 VARCHAR, ligue_1_titles VARCHAR) ###human: Tell me the position in 2012-13 and number of seasons in leigue 1 of 30 with ligue 1 titles of 1 ###assistant: SELECT position_in_2012_13 FROM table_name_69 WHERE number_of_seasons_in_ligue_1 = 30 AND ligue_1_titles = 1
###context:CREATE TABLE table_name_4 (nba_draft VARCHAR, hometown VARCHAR) ###human: What is the NBA draft result of the player from Kingston, PA? ###assistant: SELECT nba_draft FROM table_name_4 WHERE hometown = "kingston, pa"
###context:CREATE TABLE table_name_67 (nba_draft VARCHAR, height VARCHAR) ###human: What is the NBA draft result of the player with a height of 6-7? ###assistant: SELECT nba_draft FROM table_name_67 WHERE height = "6-7"
###context:CREATE TABLE table_name_56 (nba_draft VARCHAR, player VARCHAR) ###human: What is the NBA draft result of Dwayne Washington? ###assistant: SELECT nba_draft FROM table_name_56 WHERE player = "dwayne washington"
###context:CREATE TABLE table_name_61 (nba_draft VARCHAR, school VARCHAR) ###human: What is the NBA draft result of the player from Dunbar High School? ###assistant: SELECT nba_draft FROM table_name_61 WHERE school = "dunbar high school"
###context:CREATE TABLE table_name_35 (school VARCHAR, college VARCHAR) ###human: What is the school of the player from the College of Michigan? ###assistant: SELECT school FROM table_name_35 WHERE college = "michigan"
###context:CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR) ###human: What was the away team score for the game played at MCG? ###assistant: SELECT away_team AS score FROM table_name_89 WHERE venue = "mcg"
###context:CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR) ###human: What was the home team's score at Victoria Park? ###assistant: SELECT home_team AS score FROM table_name_27 WHERE venue = "victoria park"
###context:CREATE TABLE table_name_96 (score VARCHAR, venue VARCHAR) ###human: What is the score at shay stadium? ###assistant: SELECT score FROM table_name_96 WHERE venue = "shay stadium"
###context:CREATE TABLE table_name_50 (result VARCHAR, venue VARCHAR, date VARCHAR) ###human: What is the result at valley parade on 4/7/02? ###assistant: SELECT result FROM table_name_50 WHERE venue = "valley parade" AND date = "4/7/02"
###context:CREATE TABLE table_name_3 (competition VARCHAR, goals VARCHAR, score VARCHAR) ###human: Which competition has a Goal of deacon 8/8 and a Score of 32-14? ###assistant: SELECT competition FROM table_name_3 WHERE goals = "deacon 8/8" AND score = "32-14"
###context:CREATE TABLE table_name_78 (grid INTEGER, driver VARCHAR) ###human: What is the top grid that is driven by martin brundle? ###assistant: SELECT MAX(grid) FROM table_name_78 WHERE driver = "martin brundle"
###context:CREATE TABLE table_name_88 (time_retired VARCHAR, grid VARCHAR) ###human: What is the grid 13 time score? ###assistant: SELECT time_retired FROM table_name_88 WHERE grid = 13
###context:CREATE TABLE table_name_90 (grid INTEGER, driver VARCHAR, laps VARCHAR) ###human: Which grid is lower for thierry boutsen which laps less than 44? ###assistant: SELECT MIN(grid) FROM table_name_90 WHERE driver = "thierry boutsen" AND laps < 44
###context:CREATE TABLE table_name_9 (player VARCHAR, height VARCHAR) ###human: Which player is 6-2? ###assistant: SELECT player FROM table_name_9 WHERE height = "6-2"
###context:CREATE TABLE table_name_55 (laid_down VARCHAR, ship VARCHAR) ###human: What is the Laid down for the Hyperion ship? ###assistant: SELECT laid_down FROM table_name_55 WHERE ship = "hyperion"
###context:CREATE TABLE table_name_48 (ship VARCHAR, pennant_number VARCHAR) ###human: What is the name of the ship that had a Pennant number of h55? ###assistant: SELECT ship FROM table_name_48 WHERE pennant_number = "h55"
###context:CREATE TABLE table_name_60 (worldwide_gross VARCHAR, movie VARCHAR) ###human: How did the jab tak hai jaan movie gross worldwide? ###assistant: SELECT worldwide_gross FROM table_name_60 WHERE movie = "jab tak hai jaan"
###context:CREATE TABLE table_name_29 (year INTEGER, director VARCHAR) ###human: What is average year for ayan mukerji? ###assistant: SELECT AVG(year) FROM table_name_29 WHERE director = "ayan mukerji"
###context:CREATE TABLE table_name_46 (home_team VARCHAR) ###human: When melbourne was the home team what was their score? ###assistant: SELECT home_team AS score FROM table_name_46 WHERE home_team = "melbourne"
###context:CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR) ###human: What date had a time of 20:10? ###assistant: SELECT date FROM table_name_25 WHERE time = "20:10"
###context:CREATE TABLE table_name_1 (episode_title VARCHAR, original_airdate VARCHAR) ###human: What is the title of the episode that originally aired on March 31, 2008? ###assistant: SELECT episode_title FROM table_name_1 WHERE original_airdate = "march 31, 2008"
###context:CREATE TABLE table_name_23 (episode_no VARCHAR, original_airdate VARCHAR) ###human: What is the episode number of the episode that originally aired on February 4, 2008? ###assistant: SELECT episode_no FROM table_name_23 WHERE original_airdate = "february 4, 2008"
###context:CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR) ###human: at kardinia park, what was the away team's score? ###assistant: SELECT away_team AS score FROM table_name_22 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_74 (crowd INTEGER, venue VARCHAR) ###human: what was the largest attendance at kardinia park? ###assistant: SELECT MAX(crowd) FROM table_name_74 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR) ###human: Who was the Home team at the Western Oval location? ###assistant: SELECT home_team FROM table_name_62 WHERE venue = "western oval"
###context:CREATE TABLE table_name_64 (laps INTEGER, driver VARCHAR) ###human: What's the average of the amount of laps for the driver patrick tambay? ###assistant: SELECT AVG(laps) FROM table_name_64 WHERE driver = "patrick tambay"
###context:CREATE TABLE table_name_63 (laps INTEGER, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR) ###human: When renault is the constructor, the grid is over 6, and the time was labeled ignition, what's the largest amount of laps on record? ###assistant: SELECT MAX(laps) FROM table_name_63 WHERE grid > 6 AND constructor = "renault" AND time_retired = "ignition"
###context:CREATE TABLE table_name_54 (world_ranking__1_ VARCHAR, ranking_la__2_ VARCHAR, year_of_publication VARCHAR) ###human: In 2008, what was the world ranking that ranked 5th in L.A.? ###assistant: SELECT world_ranking__1_ FROM table_name_54 WHERE ranking_la__2_ = "5th" AND year_of_publication = "2008"
###context:CREATE TABLE table_name_24 (played VARCHAR, goals_for VARCHAR, goals_against VARCHAR) ###human: what is the total number of played when the goals for is more than 34 and goals against is more than 63? ###assistant: SELECT COUNT(played) FROM table_name_24 WHERE goals_for > 34 AND goals_against > 63
###context:CREATE TABLE table_name_51 (goal_difference VARCHAR, club VARCHAR, played VARCHAR) ###human: what is the total number of goal different when the club is cf extremadura and the played is less than 38? ###assistant: SELECT COUNT(goal_difference) FROM table_name_51 WHERE club = "cf extremadura" AND played < 38
###context:CREATE TABLE table_name_86 (points INTEGER, goals_for VARCHAR, goal_difference VARCHAR, club VARCHAR) ###human: what is the average points when the goal difference is less than 17, the club is getafe cf and the goals for is more than 30? ###assistant: SELECT AVG(points) FROM table_name_86 WHERE goal_difference < 17 AND club = "getafe cf" AND goals_for > 30
###context:CREATE TABLE table_name_50 (goals_for INTEGER, played VARCHAR, goals_against VARCHAR, position VARCHAR, losses VARCHAR) ###human: what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38? ###assistant: SELECT SUM(goals_for) FROM table_name_50 WHERE position < 8 AND losses < 10 AND goals_against < 35 AND played < 38
###context:CREATE TABLE table_name_18 (gold INTEGER, rank VARCHAR, nation VARCHAR) ###human: what is the highest gold when the rank is 12 for the nation vietnam? ###assistant: SELECT MAX(gold) FROM table_name_18 WHERE rank = "12" AND nation = "vietnam"
###context:CREATE TABLE table_name_88 (total VARCHAR, rank VARCHAR) ###human: what is the total when the rank is 4? ###assistant: SELECT total FROM table_name_88 WHERE rank = "4"
###context:CREATE TABLE table_name_77 (nation VARCHAR, gold VARCHAR, bronze VARCHAR) ###human: what is the nation when the gold is 1 and bronze is larger than 0? ###assistant: SELECT nation FROM table_name_77 WHERE gold = 1 AND bronze > 0
###context:CREATE TABLE table_name_72 (entrant VARCHAR, engine VARCHAR) ###human: Which entrant has Ferrari 038 3.5 v12 engine? ###assistant: SELECT entrant FROM table_name_72 WHERE engine = "ferrari 038 3.5 v12"
###context:CREATE TABLE table_name_69 (founded VARCHAR, institution VARCHAR) ###human: What is the date that the Institution of Lynn University was founded on? ###assistant: SELECT founded FROM table_name_69 WHERE institution = "lynn university"
###context:CREATE TABLE table_name_60 (loss VARCHAR, score VARCHAR) ###human: What's the Loss listed with a Score of 5-1? ###assistant: SELECT loss FROM table_name_60 WHERE score = "5-1"
###context:CREATE TABLE table_name_76 (date VARCHAR, record VARCHAR) ###human: Which Date has a record of 3-5? ###assistant: SELECT date FROM table_name_76 WHERE record = "3-5"
###context:CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR) ###human: Which Date has a Record of 6-9? ###assistant: SELECT date FROM table_name_86 WHERE record = "6-9"
###context:CREATE TABLE table_name_31 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR) ###human: What's the Loss listed for the Opponent of California Angels and has an Attendance of 57,762? ###assistant: SELECT loss FROM table_name_31 WHERE opponent = "california angels" AND attendance = "57,762"
###context:CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR) ###human: Which Date has an Attendance of 9,535? ###assistant: SELECT date FROM table_name_73 WHERE attendance = "9,535"
###context:CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR) ###human: What is the Score for the Date of April 23? ###assistant: SELECT score FROM table_name_69 WHERE date = "april 23"
###context:CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR) ###human: What was the average crowd size at Victoria Park? ###assistant: SELECT AVG(crowd) FROM table_name_22 WHERE venue = "victoria park"
###context:CREATE TABLE table_name_40 (crowd INTEGER, away_team VARCHAR) ###human: What is the crowd size of the match featuring North Melbourne as the away team? ###assistant: SELECT MIN(crowd) FROM table_name_40 WHERE away_team = "north melbourne"
###context:CREATE TABLE table_name_96 (team VARCHAR, high_rebounds VARCHAR) ###human: Name the team which has high rebounds of smith (10) ###assistant: SELECT team FROM table_name_96 WHERE high_rebounds = "smith (10)"
###context:CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR) ###human: What team was the home team against Melbourne? ###assistant: SELECT home_team FROM table_name_36 WHERE away_team = "melbourne"
###context:CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR) ###human: What did the home team score when Carlton played as the Away team? ###assistant: SELECT home_team AS score FROM table_name_30 WHERE away_team = "carlton"
###context:CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR) ###human: How many people attended the home game for South Melbourne? ###assistant: SELECT SUM(crowd) FROM table_name_58 WHERE home_team = "south melbourne"
###context:CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR) ###human: What was the home team score at VFL Park? ###assistant: SELECT home_team AS score FROM table_name_99 WHERE venue = "vfl park"
###context:CREATE TABLE table_name_98 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR) ###human: How many grids have a Time/Retired of gearbox, and Laps smaller than 3? ###assistant: SELECT COUNT(grid) FROM table_name_98 WHERE time_retired = "gearbox" AND laps < 3
###context:CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR) ###human: What is masten gregory's average lap? ###assistant: SELECT AVG(laps) FROM table_name_70 WHERE driver = "masten gregory"
###context:CREATE TABLE table_name_21 (time_retired VARCHAR, grid VARCHAR) ###human: Which Time/Retired has a Grid of 2? ###assistant: SELECT time_retired FROM table_name_21 WHERE grid = 2
###context:CREATE TABLE table_name_51 (tyre VARCHAR, chassis VARCHAR, rounds VARCHAR, engine VARCHAR) ###human: When the engine Ford Cosworth DFV 3.0 v8 has a chassis of m23 and in rounds 14-15, what is its Tyre? ###assistant: SELECT tyre FROM table_name_51 WHERE rounds = "14-15" AND engine = "ford cosworth dfv 3.0 v8" AND chassis = "m23"
###context:CREATE TABLE table_name_7 (driver VARCHAR, chassis VARCHAR) ###human: Which driver uses the ts16 chassis? ###assistant: SELECT driver FROM table_name_7 WHERE chassis = "ts16"
###context:CREATE TABLE table_name_95 (home VARCHAR, date VARCHAR) ###human: What is the home team of the game on April 20? ###assistant: SELECT home FROM table_name_95 WHERE date = "april 20"
###context:CREATE TABLE table_name_73 (series VARCHAR, visitor VARCHAR, date VARCHAR) ###human: What is the series score of the game with Vancouver as the visiting team on April 16? ###assistant: SELECT series FROM table_name_73 WHERE visitor = "vancouver" AND date = "april 16"
###context:CREATE TABLE table_name_55 (series VARCHAR, date VARCHAR) ###human: What is the series score of the game on April 16? ###assistant: SELECT series FROM table_name_55 WHERE date = "april 16"
###context:CREATE TABLE table_name_51 (away_team VARCHAR, date VARCHAR, venue VARCHAR) ###human: Tell me the away team score for 27 april 1974 and veue of mcg ###assistant: SELECT away_team AS score FROM table_name_51 WHERE date = "27 april 1974" AND venue = "mcg"
###context:CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR) ###human: I want to see the away team the has a home team of richmond ###assistant: SELECT away_team FROM table_name_74 WHERE home_team = "richmond"
###context:CREATE TABLE table_name_42 (venue VARCHAR, stage VARCHAR, date VARCHAR) ###human: What venue did group g play at on Mar 8, 1998? ###assistant: SELECT venue FROM table_name_42 WHERE stage = "group g" AND date = "mar 8, 1998"
###context:CREATE TABLE table_name_34 (stage VARCHAR, venue VARCHAR) ###human: Which stage was being played in Romania? ###assistant: SELECT stage FROM table_name_34 WHERE venue = "romania"
###context:CREATE TABLE table_name_85 (result VARCHAR, competition VARCHAR, date VARCHAR) ###human: What was the score of the 1999 fifa world cup qualification (uefa) on Nov 23, 1997? ###assistant: SELECT result FROM table_name_85 WHERE competition = "1999 fifa world cup qualification (uefa)" AND date = "nov 23, 1997"
###context:CREATE TABLE table_name_79 (competition VARCHAR, date VARCHAR) ###human: What was being played on Nov 23, 2006? ###assistant: SELECT competition FROM table_name_79 WHERE date = "nov 23, 2006"
###context:CREATE TABLE table_name_28 (crowd INTEGER, venue VARCHAR) ###human: What is the lowest crowd at windy hill? ###assistant: SELECT MIN(crowd) FROM table_name_28 WHERE venue = "windy hill"
###context:CREATE TABLE table_name_79 (crowd INTEGER, home_team VARCHAR) ###human: What is the lowest crowd with home team richmond? ###assistant: SELECT MIN(crowd) FROM table_name_79 WHERE home_team = "richmond"
###context:CREATE TABLE table_name_55 (bronze VARCHAR, total VARCHAR, gold VARCHAR) ###human: When there are more than 12 total medals and less than 5 gold medals, how many bronze medals are there? ###assistant: SELECT COUNT(bronze) FROM table_name_55 WHERE total > 12 AND gold < 5
###context:CREATE TABLE table_name_61 (bronze INTEGER, nation VARCHAR, total VARCHAR) ###human: When the united states won a total number of medals larger than 25, what was the lowest amount of Bronze medals won? ###assistant: SELECT MIN(bronze) FROM table_name_61 WHERE nation = "united states" AND total > 25
###context:CREATE TABLE table_name_28 (bronze INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR) ###human: When the nation of poland had less than 17 medals but more than 1 gold medal, what's the Highest number of bronze medals? ###assistant: SELECT MAX(bronze) FROM table_name_28 WHERE total < 17 AND nation = "poland" AND gold > 1
###context:CREATE TABLE table_name_43 (total VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR) ###human: If there are more than 0 Silver medals, less than 5 gold medals, and no bronze medals, what was the total number of medals? ###assistant: SELECT COUNT(total) FROM table_name_43 WHERE silver > 0 AND gold < 5 AND bronze < 0
###context:CREATE TABLE table_name_28 (ngc_number INTEGER, declination___j2000__ VARCHAR, apparent_magnitude VARCHAR) ###human: What's the total number of NGC that has a Declination ( J2000 ) of °15′55″, and an Apparent magnitude greater than 10? ###assistant: SELECT SUM(ngc_number) FROM table_name_28 WHERE declination___j2000__ = "°15′55″" AND apparent_magnitude > 10
###context:CREATE TABLE table_name_56 (object_type VARCHAR, apparent_magnitude VARCHAR, right_ascension___j2000__ VARCHAR) ###human: Which object has an Apparent magnitude larger than 9.6, and a Right ascension ( J2000 ) of 17h59m02.0s? ###assistant: SELECT object_type FROM table_name_56 WHERE apparent_magnitude > 9.6 AND right_ascension___j2000__ = "17h59m02.0s"
###context:CREATE TABLE table_name_35 (strain VARCHAR, genes VARCHAR) ###human: Which species of bacteria has 5,566 genes? ###assistant: SELECT strain FROM table_name_35 WHERE genes = "5,566"
###context:CREATE TABLE table_name_24 (strain VARCHAR, species VARCHAR) ###human: What is the Strain name of Species Thiomicrospira crunogena? ###assistant: SELECT strain FROM table_name_24 WHERE species = "thiomicrospira crunogena"