training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_98 (year INTEGER, venue VARCHAR, event VARCHAR) ###human: What was the earliest year that an event held in Berlin, Germany had a 100 m hurdles event? ###assistant: SELECT MIN(year) FROM table_name_98 WHERE venue = "berlin, germany" AND event = "100 m hurdles"
###context:CREATE TABLE table_name_3 (event VARCHAR, venue VARCHAR) ###human: What even was held in Valencia, Spain? ###assistant: SELECT event FROM table_name_3 WHERE venue = "valencia, spain"
###context:CREATE TABLE table_name_4 (time VARCHAR, competition VARCHAR, opponent VARCHAR) ###human: What is the time of the tim trophy competition where juventus was the opponent? ###assistant: SELECT time FROM table_name_4 WHERE competition = "tim trophy" AND opponent = "juventus"
###context:CREATE TABLE table_name_27 (competition VARCHAR, date VARCHAR) ###human: What is the competition on 15 August 2008? ###assistant: SELECT competition FROM table_name_27 WHERE date = "15 august 2008"
###context:CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR, date VARCHAR) ###human: What is the score of the friendly match competition on 24 July 2008? ###assistant: SELECT score FROM table_name_3 WHERE competition = "friendly match" AND date = "24 july 2008"
###context:CREATE TABLE table_name_83 (ground VARCHAR, competition VARCHAR, time VARCHAR) ###human: What is the ground of the tim trophy competition, which had a time of 23:00 cet? ###assistant: SELECT ground FROM table_name_83 WHERE competition = "tim trophy" AND time = "23:00 cet"
###context:CREATE TABLE table_name_91 (competition VARCHAR, time VARCHAR) ###human: What competition is at 23:00 cet? ###assistant: SELECT competition FROM table_name_91 WHERE time = "23:00 cet"
###context:CREATE TABLE table_name_89 (outcome VARCHAR, date VARCHAR) ###human: What is the outcome on March 20, 1994? ###assistant: SELECT outcome FROM table_name_89 WHERE date = "march 20, 1994"
###context:CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, date VARCHAR) ###human: What tournament had a hard surface on February 25, 1996? ###assistant: SELECT tournament FROM table_name_78 WHERE surface = "hard" AND date = "february 25, 1996"
###context:CREATE TABLE table_name_60 (score_in_the_final VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ###human: What is the score in the final with a hard surface and is against Hiromi Nagano? ###assistant: SELECT score_in_the_final FROM table_name_60 WHERE surface = "hard" AND opponent_in_the_final = "hiromi nagano"
###context:CREATE TABLE table_name_91 (outcome VARCHAR, surface VARCHAR, date VARCHAR) ###human: What is the total outcome for the clay surface on April 21, 1996? ###assistant: SELECT outcome FROM table_name_91 WHERE surface = "clay" AND date = "april 21, 1996"
###context:CREATE TABLE table_name_3 (aircraft VARCHAR, location VARCHAR) ###human: What aircraft is located at S of Avion? ###assistant: SELECT aircraft FROM table_name_3 WHERE location = "s of avion"
###context:CREATE TABLE table_name_20 (unit INTEGER, aircraft VARCHAR, location VARCHAR) ###human: What is the Unit for the Aircraft F.e.2b, located in Logeast? ###assistant: SELECT SUM(unit) FROM table_name_20 WHERE aircraft = "f.e.2b" AND location = "logeast"
###context:CREATE TABLE table_name_63 (official_name VARCHAR, census_ranking VARCHAR) ###human: What is the name of the place that has a census ranking of 1,229 of 5,008? ###assistant: SELECT official_name FROM table_name_63 WHERE census_ranking = "1,229 of 5,008"
###context:CREATE TABLE table_name_38 (area_km_2 VARCHAR, official_name VARCHAR) ###human: How large, in square kilometers, is Sackville? ###assistant: SELECT area_km_2 FROM table_name_38 WHERE official_name = "sackville"
###context:CREATE TABLE table_name_38 (official_name VARCHAR, population INTEGER) ###human: What is the name(s) of the place(s) with a population of less than 1,429? ###assistant: SELECT official_name FROM table_name_38 WHERE population < 1 OFFSET 429
###context:CREATE TABLE table_name_93 (score VARCHAR, points VARCHAR) ###human: What score has 33 as the points? ###assistant: SELECT score FROM table_name_93 WHERE points = 33
###context:CREATE TABLE table_name_53 (date VARCHAR, arena VARCHAR) ###human: What date has joe louis arena as the arena? ###assistant: SELECT date FROM table_name_53 WHERE arena = "joe louis arena"
###context:CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR) ###human: What competition was played on 2 June 1992? ###assistant: SELECT competition FROM table_name_4 WHERE date = "2 june 1992"
###context:CREATE TABLE table_name_74 (date VARCHAR, result VARCHAR, competition VARCHAR) ###human: What date was a friendly match played that ended in a 3-0 score? ###assistant: SELECT date FROM table_name_74 WHERE result = "3-0" AND competition = "friendly match"
###context:CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR) ###human: What was the score of the match played on 5 September 2001? ###assistant: SELECT score FROM table_name_38 WHERE date = "5 september 2001"
###context:CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR, date VARCHAR) ###human: In what stadium was the friendly match on 2 June 1992 played in? ###assistant: SELECT venue FROM table_name_2 WHERE competition = "friendly match" AND date = "2 june 1992"
###context:CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR) ###human: What was the score of the 1998 FIFA World Cup qualification competition? ###assistant: SELECT score FROM table_name_25 WHERE competition = "1998 fifa world cup qualification"
###context:CREATE TABLE table_name_72 (date VARCHAR, competition VARCHAR, result VARCHAR) ###human: Name the Date has a Competition of welsh rugby union challenge trophy and a Result of 34-34? Question 1 ###assistant: SELECT date FROM table_name_72 WHERE competition = "welsh rugby union challenge trophy" AND result = "34-34"
###context:CREATE TABLE table_name_56 (result VARCHAR, nationality___opponent VARCHAR) ###human: Name the Result of new zealand Nationality / Opponent? ###assistant: SELECT result FROM table_name_56 WHERE nationality___opponent = "new zealand"
###context:CREATE TABLE table_name_25 (nationality___opponent VARCHAR, date VARCHAR) ###human: Name Nationality / Opponent on 10 january 1998? ###assistant: SELECT nationality___opponent FROM table_name_25 WHERE date = "10 january 1998"
###context:CREATE TABLE table_name_25 (ground VARCHAR, date VARCHAR) ###human: Name The Ground on 18 january 1998? ###assistant: SELECT ground FROM table_name_25 WHERE date = "18 january 1998"
###context:CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR) ###human: Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29? ###assistant: SELECT nationality___opponent FROM table_name_63 WHERE competition = "welsh rugby union challenge trophy" AND result = "38-29"
###context:CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR) ###human: Name the Nationality / Opponent of rosario? ###assistant: SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario"
###context:CREATE TABLE table_name_4 (team_1 VARCHAR, team_2 VARCHAR) ###human: What team 1 has a team 2 of universidad nacional? ###assistant: SELECT team_1 FROM table_name_4 WHERE team_2 = "universidad nacional"
###context:CREATE TABLE table_name_82 (team_2 VARCHAR, team_1 VARCHAR) ###human: What team 2 has a team 1 of harbour view? ###assistant: SELECT team_2 FROM table_name_82 WHERE team_1 = "harbour view"
###context:CREATE TABLE table_name_62 (team_2 VARCHAR) ###human: What's the 2nd leg for team 2 san francisco? ###assistant: SELECT 2 AS nd_leg FROM table_name_62 WHERE team_2 = "san francisco"
###context:CREATE TABLE table_name_50 (team_1 VARCHAR) ###human: What's the 1st leg of team 1 alajuelense? ###assistant: SELECT 1 AS st_leg FROM table_name_50 WHERE team_1 = "alajuelense"
###context:CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR) ###human: What was the format for catalog 660-51-015? ###assistant: SELECT format FROM table_name_51 WHERE catalog = "660-51-015"
###context:CREATE TABLE table_name_77 (region VARCHAR, year VARCHAR) ###human: Which region had the year May 1974? ###assistant: SELECT region FROM table_name_77 WHERE year = "may 1974"
###context:CREATE TABLE table_name_17 (region VARCHAR, year VARCHAR) ###human: Which region had a year March 10, 1998? ###assistant: SELECT region FROM table_name_17 WHERE year = "march 10, 1998"
###context:CREATE TABLE table_name_82 (first_party VARCHAR, year VARCHAR, first_member VARCHAR) ###human: What is the first party for Lord John Hay earlier than 1857? ###assistant: SELECT first_party FROM table_name_82 WHERE year < 1857 AND first_member = "lord john hay"
###context:CREATE TABLE table_name_10 (second_member VARCHAR, year VARCHAR, first_member VARCHAR) ###human: Who is the second member more recently than 1790 when John Williams is the first member? ###assistant: SELECT second_member FROM table_name_10 WHERE year > 1790 AND first_member = "john williams"
###context:CREATE TABLE table_name_15 (second_member VARCHAR, first_member VARCHAR, first_party VARCHAR, year VARCHAR) ###human: Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member? ###assistant: SELECT second_member FROM table_name_15 WHERE first_party = "tory" AND year < 1804 AND first_member = "henry isherwood"
###context:CREATE TABLE table_name_14 (second_member VARCHAR, first_member VARCHAR) ###human: Who is the second member when RT Hon. Edward Stanley is the first member? ###assistant: SELECT second_member FROM table_name_14 WHERE first_member = "rt hon. edward stanley"
###context:CREATE TABLE table_name_88 (second_party VARCHAR, first_party VARCHAR, year VARCHAR) ###human: What is the second party where the first party is Tory and the year is 1820? ###assistant: SELECT second_party FROM table_name_88 WHERE first_party = "tory" AND year = 1820
###context:CREATE TABLE table_name_83 (player VARCHAR, year_s__won VARCHAR) ###human: Who is the player who won in 1993? ###assistant: SELECT player FROM table_name_83 WHERE year_s__won = "1993"
###context:CREATE TABLE table_name_68 (year_s__won VARCHAR, finish VARCHAR) ###human: What years did the player with a t71 finish win? ###assistant: SELECT year_s__won FROM table_name_68 WHERE finish = "t71"
###context:CREATE TABLE table_name_84 (year_s__won VARCHAR, player VARCHAR) ###human: What year did player payne stewart win? ###assistant: SELECT year_s__won FROM table_name_84 WHERE player = "payne stewart"
###context:CREATE TABLE table_name_84 (year_s__won VARCHAR, finish VARCHAR) ###human: What year did the player with a t3 finish win? ###assistant: SELECT year_s__won FROM table_name_84 WHERE finish = "t3"
###context:CREATE TABLE table_name_25 (total INTEGER, finish VARCHAR) ###human: What is the lowest total of the player with a t41 finish? ###assistant: SELECT MIN(total) FROM table_name_25 WHERE finish = "t41"
###context:CREATE TABLE table_name_24 (battle VARCHAR, bulgarian_commander VARCHAR) ###human: In what Battle was Bulgarian Commander of Gavril Radomir? ###assistant: SELECT battle FROM table_name_24 WHERE bulgarian_commander = "gavril radomir"
###context:CREATE TABLE table_name_55 (date VARCHAR, result VARCHAR, battle VARCHAR) ###human: What is the Date of the Bulgarian Victory at the Battle of Arcadiopolis? ###assistant: SELECT date FROM table_name_55 WHERE result = "bulgarian victory" AND battle = "battle of arcadiopolis"
###context:CREATE TABLE table_name_41 (bulgarian_commander VARCHAR, battle VARCHAR, date VARCHAR) ###human: What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica? ###assistant: SELECT bulgarian_commander FROM table_name_41 WHERE battle = "battle of thessalonica" AND date = "autumn 1040"
###context:CREATE TABLE table_name_44 (byzantine_commander VARCHAR, result VARCHAR, battle VARCHAR) ###human: What is the Byzantine Commander with a Bulgarian Victory at the Siege of Lovech? ###assistant: SELECT byzantine_commander FROM table_name_44 WHERE result = "bulgarian victory" AND battle = "siege of lovech"
###context:CREATE TABLE table_name_85 (result VARCHAR, battle VARCHAR, date VARCHAR) ###human: What is the Result of the Battle of Marcellae in 756? ###assistant: SELECT result FROM table_name_85 WHERE battle = "battle of marcellae" AND date = "756"
###context:CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR, bulgarian_commander VARCHAR) ###human: What is the date of Gavril Radomir's Bulgarian Victory? ###assistant: SELECT date FROM table_name_15 WHERE result = "bulgarian victory" AND bulgarian_commander = "gavril radomir"
###context:CREATE TABLE table_name_18 (wind VARCHAR, rank VARCHAR, location VARCHAR) ###human: What was the wind at New York City when the rank was smaller than 6? ###assistant: SELECT wind FROM table_name_18 WHERE rank < 6 AND location = "new york city"
###context:CREATE TABLE table_name_94 (rank INTEGER, location VARCHAR) ###human: What was the highest rink for Kingston? ###assistant: SELECT MAX(rank) FROM table_name_94 WHERE location = "kingston"
###context:CREATE TABLE table_name_75 (first_elected INTEGER, district VARCHAR) ###human: What is the average first elected for the district South Carolina 2? ###assistant: SELECT AVG(first_elected) FROM table_name_75 WHERE district = "south carolina 2"
###context:CREATE TABLE table_name_82 (first_elected VARCHAR, party VARCHAR) ###human: Who was the first elected for the republican party? ###assistant: SELECT first_elected FROM table_name_82 WHERE party = "republican"
###context:CREATE TABLE table_name_91 (party VARCHAR, district VARCHAR) ###human: What party has the South Carolina 2 district? ###assistant: SELECT party FROM table_name_91 WHERE district = "south carolina 2"
###context:CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) ###human: What is the type for Cassano? ###assistant: SELECT type FROM table_name_46 WHERE name = "cassano"
###context:CREATE TABLE table_name_53 (nat VARCHAR, name VARCHAR) ###human: What nationality is Diogo? ###assistant: SELECT nat FROM table_name_53 WHERE name = "diogo"
###context:CREATE TABLE table_name_79 (name VARCHAR, transfer_window VARCHAR, moving_from VARCHAR) ###human: What is the name of the player with a winter transfer window moving from Roma? ###assistant: SELECT name FROM table_name_79 WHERE transfer_window = "winter" AND moving_from = "roma"
###context:CREATE TABLE table_name_80 (pressure VARCHAR, name VARCHAR) ###human: What pressure is Ken? ###assistant: SELECT pressure FROM table_name_80 WHERE name = "ken"
###context:CREATE TABLE table_name_84 (round VARCHAR, loser VARCHAR) ###human: In which round was Barbara Hawcroft the loser? ###assistant: SELECT round FROM table_name_84 WHERE loser = "barbara hawcroft"
###context:CREATE TABLE table_name_13 (year INTEGER, loser VARCHAR) ###human: In which year is Nerida Gregory listed as the loser? ###assistant: SELECT AVG(year) FROM table_name_13 WHERE loser = "nerida gregory"
###context:CREATE TABLE table_name_32 (year INTEGER, grand_slam VARCHAR, loser VARCHAR) ###human: In which year did Misaki Doi lose the Australian Open Grand Slam? ###assistant: SELECT SUM(year) FROM table_name_32 WHERE grand_slam = "australian open" AND loser = "misaki doi"
###context:CREATE TABLE table_name_20 (polish_cup INTEGER, puchat_ligi INTEGER) ###human: Which Polish Cup has a Puchat Ligi larger than 0? ###assistant: SELECT AVG(polish_cup) FROM table_name_20 WHERE puchat_ligi > 0
###context:CREATE TABLE table_name_43 (player VARCHAR, uefa_cup VARCHAR, total VARCHAR, ekstraklasa VARCHAR) ###human: Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2? ###assistant: SELECT player FROM table_name_43 WHERE total = 3 AND ekstraklasa < 3 AND uefa_cup = 2
###context:CREATE TABLE table_name_64 (puchat_ligi INTEGER, uefa_cup VARCHAR, player VARCHAR) ###human: Which Puchat Ligi has a UEFA Cup smaller than 2, and a Player of takesure chinyama? ###assistant: SELECT MIN(puchat_ligi) FROM table_name_64 WHERE uefa_cup < 2 AND player = "takesure chinyama"
###context:CREATE TABLE table_name_98 (ekstraklasa INTEGER, total INTEGER) ###human: How much Ekstraklasa has a Total smaller than 3? ###assistant: SELECT SUM(ekstraklasa) FROM table_name_98 WHERE total < 3
###context:CREATE TABLE table_name_46 (puchat_ligi INTEGER, total VARCHAR, ekstraklasa VARCHAR) ###human: How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1? ###assistant: SELECT SUM(puchat_ligi) FROM table_name_46 WHERE total < 5 AND ekstraklasa > 1
###context:CREATE TABLE table_name_74 (player VARCHAR, to_par VARCHAR, total VARCHAR) ###human: Which player has a to par greater than 11, with a total less than 155? ###assistant: SELECT player FROM table_name_74 WHERE to_par > 11 AND total < 155
###context:CREATE TABLE table_name_6 (country VARCHAR, to_par VARCHAR, player VARCHAR) ###human: What country has a to par less than 13, with wayne grady as the player? ###assistant: SELECT country FROM table_name_6 WHERE to_par < 13 AND player = "wayne grady"
###context:CREATE TABLE table_name_36 (points_1 INTEGER, lost VARCHAR, drawn VARCHAR, goal_difference VARCHAR) ###human: Which Points 1 has Drawn of 5, and a Goal Difference of +58, and a Lost larger than 4? ###assistant: SELECT MAX(points_1) FROM table_name_36 WHERE drawn = 5 AND goal_difference = "+58" AND lost > 4
###context:CREATE TABLE table_name_13 (lost INTEGER, goals_against INTEGER) ###human: Which Lost has Goals Against larger than 92? ###assistant: SELECT MAX(lost) FROM table_name_13 WHERE goals_against > 92
###context:CREATE TABLE table_name_11 (points_1 INTEGER, team VARCHAR, position VARCHAR) ###human: Which Points 1 has a Team of atherton collieries, and a Position smaller than 8? ###assistant: SELECT MAX(points_1) FROM table_name_11 WHERE team = "atherton collieries" AND position < 8
###context:CREATE TABLE table_name_72 (played INTEGER, position VARCHAR, drawn VARCHAR) ###human: How much Played has a Position of 7, and a Drawn smaller than 7? ###assistant: SELECT SUM(played) FROM table_name_72 WHERE position = 7 AND drawn < 7
###context:CREATE TABLE table_name_5 (drawn VARCHAR, points_1 VARCHAR, lost VARCHAR) ###human: How much Drawn has Points 1 of 51, and a Lost larger than 5? ###assistant: SELECT COUNT(drawn) FROM table_name_5 WHERE points_1 = 51 AND lost > 5
###context:CREATE TABLE table_name_30 (introduced INTEGER, seating VARCHAR) ###human: When was the aircraft introduced that could seat 115 people? ###assistant: SELECT AVG(introduced) FROM table_name_30 WHERE seating = "115"
###context:CREATE TABLE table_name_91 (retired VARCHAR, notes VARCHAR) ###human: What year was the aircraft retired when it was replaced by 737-300s? ###assistant: SELECT retired FROM table_name_91 WHERE notes = "replaced by 737-300s"
###context:CREATE TABLE table_name_83 (aircraft VARCHAR, retired VARCHAR, introduced VARCHAR) ###human: What aircraft was introduced in 2004 and has a retired of —? ###assistant: SELECT aircraft FROM table_name_83 WHERE retired = "—" AND introduced = 2004
###context:CREATE TABLE table_name_88 (aircraft VARCHAR, seating VARCHAR) ###human: Which aircraft has 148/9 seating? ###assistant: SELECT aircraft FROM table_name_88 WHERE seating = "148/9"
###context:CREATE TABLE table_name_6 (seating VARCHAR, notes VARCHAR, introduced VARCHAR) ###human: How many people can be seated on the aircraft that was introduced in 2008 and has notes of in service? ###assistant: SELECT seating FROM table_name_6 WHERE notes = "in service" AND introduced = 2008
###context:CREATE TABLE table_name_55 (nationality VARCHAR, previous_team VARCHAR) ###human: What is the nationality of the player who was previously with the Detroit Pistons? ###assistant: SELECT nationality FROM table_name_55 WHERE previous_team = "detroit pistons"
###context:CREATE TABLE table_name_47 (career_with_the_franchise VARCHAR, previous_team VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) ###human: What is the career with the franchise of the f/c player with fewer than 9 years of NBA experience who previously played for the Phoenix Suns? ###assistant: SELECT career_with_the_franchise FROM table_name_47 WHERE years_of_nba_experience_[a_] < 9 AND pos = "f/c" AND previous_team = "phoenix suns"
###context:CREATE TABLE table_name_79 (tie_no VARCHAR, home_team VARCHAR) ###human: What was the tie number when Bournemouth was the home team? ###assistant: SELECT tie_no FROM table_name_79 WHERE home_team = "bournemouth"
###context:CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR) ###human: Who was the away team when the home team was Norwich City? ###assistant: SELECT away_team FROM table_name_83 WHERE home_team = "norwich city"
###context:CREATE TABLE table_name_81 (date VARCHAR, home_team VARCHAR) ###human: On what date was Wimbledon the home team? ###assistant: SELECT date FROM table_name_81 WHERE home_team = "wimbledon"
###context:CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) ###human: On what date was the away team West Ham United? ###assistant: SELECT date FROM table_name_70 WHERE away_team = "west ham united"
###context:CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR) ###human: On what date was the away team Bournemouth? ###assistant: SELECT date FROM table_name_24 WHERE away_team = "bournemouth"
###context:CREATE TABLE table_name_41 (district VARCHAR, name VARCHAR) ###human: What district has abhayapuri south as the name? ###assistant: SELECT district FROM table_name_41 WHERE name = "abhayapuri south"
###context:CREATE TABLE table_name_69 (bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) ###human: Which Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Rank smaller than 5? ###assistant: SELECT bronze FROM table_name_69 WHERE gold > 1 AND silver < 3 AND rank < 5
###context:CREATE TABLE table_name_90 (rank INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) ###human: Which Rank has a Gold larger than 1, and a Bronze of 4, and a Silver smaller than 1? ###assistant: SELECT MAX(rank) FROM table_name_90 WHERE gold > 1 AND bronze = 4 AND silver < 1
###context:CREATE TABLE table_name_91 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) ###human: Which Rank has a Gold of 3, and a Bronze of 4, and a Total larger than 8? ###assistant: SELECT MIN(rank) FROM table_name_91 WHERE gold = 3 AND bronze = 4 AND total > 8
###context:CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR) ###human: How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3? ###assistant: SELECT SUM(total) FROM table_name_87 WHERE rank < 10 AND silver > 3 AND gold > 3
###context:CREATE TABLE table_name_37 (total INTEGER, rank VARCHAR, silver VARCHAR) ###human: Which Total has a Rank of 9, and a Silver smaller than 2? ###assistant: SELECT MAX(total) FROM table_name_37 WHERE rank = 9 AND silver < 2
###context:CREATE TABLE table_name_21 (event VARCHAR, name VARCHAR) ###human: What event had Xu Zhilin competing? ###assistant: SELECT event FROM table_name_21 WHERE name = "xu zhilin"
###context:CREATE TABLE table_name_26 (sport VARCHAR, name VARCHAR) ###human: What sport has Ma Yuxi in it? ###assistant: SELECT sport FROM table_name_26 WHERE name = "ma yuxi"
###context:CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR) ###human: How many years is Antonio Pompa-Baldi Italy first? ###assistant: SELECT COUNT(year) FROM table_name_36 WHERE first = "antonio pompa-baldi italy"
###context:CREATE TABLE table_name_98 (fourth VARCHAR, second VARCHAR) ###human: Who is fourth when Anders Martinson USA is second? ###assistant: SELECT fourth FROM table_name_98 WHERE second = "anders martinson usa"
###context:CREATE TABLE table_name_47 (wins INTEGER, club VARCHAR, goals_for VARCHAR) ###human: Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18? ###assistant: SELECT SUM(wins) FROM table_name_47 WHERE club = "abuls smiltene" AND goals_for < 18
###context:CREATE TABLE table_name_42 (wins INTEGER, goal_difference VARCHAR, draws VARCHAR) ###human: Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7? ###assistant: SELECT AVG(wins) FROM table_name_42 WHERE goal_difference > -24 AND draws > 7