training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_17 (player VARCHAR, place VARCHAR, score VARCHAR) ###human: Which player placed in t5 and had a score of 72-71-73-78=294? ###assistant: SELECT player FROM table_name_17 WHERE place = "t5" AND score = 72 - 71 - 73 - 78 = 294
###context:CREATE TABLE table_name_14 (year_of_recording INTEGER, conductor VARCHAR) ###human: What is the year that a record was recorded with Libor Pesek as conductor? ###assistant: SELECT SUM(year_of_recording) FROM table_name_14 WHERE conductor = "libor pesek"
###context:CREATE TABLE table_name_51 (record_company VARCHAR, pianist VARCHAR) ###human: What record company did pianist Solomon Cutner record for? ###assistant: SELECT record_company FROM table_name_51 WHERE pianist = "solomon cutner"
###context:CREATE TABLE table_name_72 (record_company VARCHAR, year_of_recording VARCHAR, conductor VARCHAR) ###human: What record company did conductor Mikhail Snitko record for after 1996? ###assistant: SELECT record_company FROM table_name_72 WHERE year_of_recording > 1996 AND conductor = "mikhail snitko"
###context:CREATE TABLE table_name_51 (event VARCHAR, total VARCHAR) ###human: Which event had a total of 28? ###assistant: SELECT event FROM table_name_51 WHERE total = "28"
###context:CREATE TABLE table_name_64 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR) ###human: Who was the shooter when the rank points was 8 and the event was WC Kerrville? ###assistant: SELECT shooter FROM table_name_64 WHERE rank_points = "8" AND event = "wc kerrville"
###context:CREATE TABLE table_name_79 (total VARCHAR, score_points VARCHAR, rank_points VARCHAR) ###human: What was the total when the score points was 12 and the rank points was 15? ###assistant: SELECT total FROM table_name_79 WHERE score_points = "12" AND rank_points = "15"
###context:CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, result VARCHAR) ###human: What is the score at the Champions League, when the result shows win? ###assistant: SELECT score FROM table_name_25 WHERE competition = "champions league" AND result = "win"
###context:CREATE TABLE table_name_8 (competition VARCHAR, opponent VARCHAR) ###human: What was the competition when the opponent was the Randers? ###assistant: SELECT competition FROM table_name_8 WHERE opponent = "randers"
###context:CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR, opponent VARCHAR) ###human: What is the result of the UEFA Cup, against Palermo? ###assistant: SELECT result FROM table_name_49 WHERE competition = "uefa cup" AND opponent = "palermo"
###context:CREATE TABLE table_name_29 (date VARCHAR, competition VARCHAR, opponent VARCHAR) ###human: What date was the UEFA Cup against Panathinaikos? ###assistant: SELECT date FROM table_name_29 WHERE competition = "uefa cup" AND opponent = "panathinaikos"
###context:CREATE TABLE table_name_78 (total_deaths VARCHAR, total_casualties VARCHAR, israeli_and_or_foreigner_wounded VARCHAR, other_deaths VARCHAR) ###human: What is the total number of deaths of the attack with 0 Israelis or foreigners wounded, 0 other deaths, and a total casualty of 1? ###assistant: SELECT total_deaths FROM table_name_78 WHERE israeli_and_or_foreigner_wounded = "0" AND other_deaths = "0" AND total_casualties = "1"
###context:CREATE TABLE table_name_45 (israeli_and_or_foreigner_wounded VARCHAR, israeli_deaths INTEGER) ###human: How many Israelis and or foreigners were wounded in the attack with more than 1 Israeli death? ###assistant: SELECT israeli_and_or_foreigner_wounded FROM table_name_45 WHERE israeli_deaths > 1
###context:CREATE TABLE table_name_81 (other_deaths VARCHAR, israeli_and_or_foreigner_wounded VARCHAR) ###human: How many other deaths were in the attack with 242 Israelis and/or foreigners wounded? ###assistant: SELECT other_deaths FROM table_name_81 WHERE israeli_and_or_foreigner_wounded = "242"
###context:CREATE TABLE table_name_37 (israeli_deaths VARCHAR, total_casualties VARCHAR, total_deaths VARCHAR) ###human: What is the total number of Israeli deaths in the attack with 0 total casulaties and 0 total deaths? ###assistant: SELECT COUNT(israeli_deaths) FROM table_name_37 WHERE total_casualties = "0" AND total_deaths = "0"
###context:CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR) ###human: What place did the golfer who had a score of 69-68-69-70=276 finish in? ###assistant: SELECT place FROM table_name_11 WHERE score = 69 - 68 - 69 - 70 = 276
###context:CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR) ###human: What was the to par score for Mike Weir? ###assistant: SELECT to_par FROM table_name_14 WHERE player = "mike weir"
###context:CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR) ###human: What country was Jay Haas representing? ###assistant: SELECT country FROM table_name_77 WHERE player = "jay haas"
###context:CREATE TABLE table_name_48 (country VARCHAR, place VARCHAR, player VARCHAR) ###human: What country has the t7 place, and player Peter Oosterhuis? ###assistant: SELECT country FROM table_name_48 WHERE place = "t7" AND player = "peter oosterhuis"
###context:CREATE TABLE table_name_93 (score VARCHAR, player VARCHAR) ###human: What is the score for Sandy Lyle? ###assistant: SELECT score FROM table_name_93 WHERE player = "sandy lyle"
###context:CREATE TABLE table_name_74 (name VARCHAR, league_cup_apps VARCHAR, league_cup_goals VARCHAR, total_goals VARCHAR) ###human: Who is the player that has scored more than 0 league cup goals, but has than 13 total goals, and 4 league cup appearances total? ###assistant: SELECT name FROM table_name_74 WHERE league_cup_goals > 0 AND total_goals < 13 AND league_cup_apps = "4"
###context:CREATE TABLE table_name_84 (league_goals INTEGER, total_apps VARCHAR, position VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR) ###human: Who has the lowest league total goals with 0 FA cup goals and no FA cup appearances, plays the DF position and has appeared in total of 3 times? ###assistant: SELECT MIN(league_goals) FROM table_name_84 WHERE fa_cup_goals = "0" AND fa_cup_apps = "0" AND position = "df" AND total_apps = "3"
###context:CREATE TABLE table_name_75 (_number_of_episodes INTEGER, date_released VARCHAR) ###human: What is the lowest # Of Episodes, when Date Released is "15 December 2011"? ###assistant: SELECT MIN(_number_of_episodes) FROM table_name_75 WHERE date_released = "15 december 2011"
###context:CREATE TABLE table_name_33 (date_released VARCHAR, _number_of_discs INTEGER) ###human: What Date Released, when # Of Discs is greater than 4? ###assistant: SELECT date_released FROM table_name_33 WHERE _number_of_discs > 4
###context:CREATE TABLE table_name_97 (season VARCHAR, _number_of_episodes VARCHAR, date_released VARCHAR) ###human: What is Season, when # Of Episodes is "10", and when Date Released is "1 April 2010"? ###assistant: SELECT season FROM table_name_97 WHERE _number_of_episodes = 10 AND date_released = "1 april 2010"
###context:CREATE TABLE table_name_37 (score VARCHAR, home_team VARCHAR) ###human: What was the score when Sheffield United was the home team? ###assistant: SELECT score FROM table_name_37 WHERE home_team = "sheffield united"
###context:CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR) ###human: Who was the away team against Newton Heath? ###assistant: SELECT away_team FROM table_name_74 WHERE home_team = "newton heath"
###context:CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR) ###human: What is the home team when the tie is 11? ###assistant: SELECT home_team FROM table_name_40 WHERE tie_no = "11"
###context:CREATE TABLE table_name_95 (league_goals INTEGER, flt_goals VARCHAR, total_apps VARCHAR, position VARCHAR, league_cup_apps VARCHAR) ###human: What is the sum of League Goals, when Position is "DF", when League Cup Apps is "0", when Total Apps is "7", and when FLT Goals is less than 0? ###assistant: SELECT SUM(league_goals) FROM table_name_95 WHERE position = "df" AND league_cup_apps = "0" AND total_apps = "7" AND flt_goals < 0
###context:CREATE TABLE table_name_47 (fa_cup_goals VARCHAR, flt_goals INTEGER) ###human: What is the total number of FA Cup Goals, when FLT Goals is greater than 0? ###assistant: SELECT COUNT(fa_cup_goals) FROM table_name_47 WHERE flt_goals > 0
###context:CREATE TABLE table_name_10 (fa_cup_goals INTEGER, league_cup_goals VARCHAR, fa_cup_apps VARCHAR, total_goals VARCHAR, league_goals VARCHAR) ###human: What is the lowest FA Cup Goals, when Total Goals is greater than 0, when League Goals is "4", when FA Cup Apps is "1", and when League Cup Goals is greater than 0? ###assistant: SELECT MIN(fa_cup_goals) FROM table_name_10 WHERE total_goals > 0 AND league_goals = 4 AND fa_cup_apps = "1" AND league_cup_goals > 0
###context:CREATE TABLE table_name_6 (points INTEGER, team VARCHAR, laps VARCHAR) ###human: How many points for Newman/Haas Racing with fewer than 40 laps? ###assistant: SELECT AVG(points) FROM table_name_6 WHERE team = "newman/haas racing" AND laps < 40
###context:CREATE TABLE table_name_32 (driver VARCHAR, team VARCHAR, points VARCHAR, grid VARCHAR) ###human: Which driver has fewer than 2 points, larger grid that 4 and is on American Spirit Team Johansson? ###assistant: SELECT driver FROM table_name_32 WHERE points < 2 AND grid > 4 AND team = "american spirit team johansson"
###context:CREATE TABLE table_name_50 (week_11_nov_16 VARCHAR, week_13_nov_30 VARCHAR) ###human: What is the week 11 nov 16 standing with wisconsin (10-1) on week 13 Nov 30? ###assistant: SELECT week_11_nov_16 FROM table_name_50 WHERE week_13_nov_30 = "wisconsin (10-1)"
###context:CREATE TABLE table_name_36 (week_13_nov_30 VARCHAR, week_11_nov_16 VARCHAR) ###human: What is the week 13 Nov 30 standing with USC (7-3) on week 11 Nov 16? ###assistant: SELECT week_13_nov_30 FROM table_name_36 WHERE week_11_nov_16 = "usc (7-3)"
###context:CREATE TABLE table_name_1 (week_8_oct_26 VARCHAR, week_12_nov_23 VARCHAR) ###human: What is the week 8 Oct 26 standing with georgia tech (8-2) on week 12 Nov 23? ###assistant: SELECT week_8_oct_26 FROM table_name_1 WHERE week_12_nov_23 = "georgia tech (8-2)"
###context:CREATE TABLE table_name_97 (week_14__final__dec_7 VARCHAR, week_8_oct_26 VARCHAR) ###human: What is the week 14 (final) dec 7 standing with Florida (6-1) on week 8 Oct 26? ###assistant: SELECT week_14__final__dec_7 FROM table_name_97 WHERE week_8_oct_26 = "florida (6-1)"
###context:CREATE TABLE table_name_58 (name VARCHAR, source VARCHAR) ###human: What player is associated with soenderjyske.dk? ###assistant: SELECT name FROM table_name_58 WHERE source = "soenderjyske.dk"
###context:CREATE TABLE table_name_94 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR) ###human: What is the transfer fee for Gravgaard? ###assistant: SELECT transfer_fee FROM table_name_94 WHERE type = "transfer" AND name = "gravgaard"
###context:CREATE TABLE table_name_50 (result VARCHAR, opening VARCHAR, moves VARCHAR, year VARCHAR) ###human: What's the result when there's more than 41 moves with an opening of c42 petrov's defence in 2007? ###assistant: SELECT result FROM table_name_50 WHERE moves > 41 AND year = 2007 AND opening = "c42 petrov's defence"
###context:CREATE TABLE table_name_52 (moves VARCHAR, black VARCHAR, result VARCHAR, year VARCHAR) ###human: What's the total number of moves with a result of ½–½ and a black of Anand before 1999? ###assistant: SELECT COUNT(moves) FROM table_name_52 WHERE result = "½–½" AND year < 1999 AND black = "anand"
###context:CREATE TABLE table_name_56 (black VARCHAR, moves VARCHAR, tournament VARCHAR) ###human: What's the black with 24 moves in the dortmund tournament? ###assistant: SELECT black FROM table_name_56 WHERE moves = 24 AND tournament = "dortmund"
###context:CREATE TABLE table_name_83 (opening VARCHAR, result VARCHAR, white VARCHAR, moves VARCHAR) ###human: What's the opening when white is Anand with fewer than 61 moves for a result of ½–½? ###assistant: SELECT opening FROM table_name_83 WHERE white = "anand" AND moves < 61 AND result = "½–½"
###context:CREATE TABLE table_name_20 (white VARCHAR, opening VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR) ###human: What's the white for a black of Anand, a result of ½–½, 39 moves, and an opening of d37 queen's gambit declined? ###assistant: SELECT white FROM table_name_20 WHERE black = "anand" AND result = "½–½" AND moves = 39 AND opening = "d37 queen's gambit declined"
###context:CREATE TABLE table_name_26 (draw INTEGER, english_translation VARCHAR, place VARCHAR) ###human: What is the lowest draw that has We The Lovers for the english translation, with a place greater than 1? ###assistant: SELECT MIN(draw) FROM table_name_26 WHERE english_translation = "we the lovers" AND place > 1
###context:CREATE TABLE table_name_93 (draw INTEGER, language VARCHAR, place VARCHAR) ###human: How many draws have french as the language, with a place less than 1? ###assistant: SELECT SUM(draw) FROM table_name_93 WHERE language = "french" AND place < 1
###context:CREATE TABLE table_name_73 (tonnage INTEGER, flag VARCHAR) ###human: What is the Tonnage of the ship from Canada? ###assistant: SELECT MAX(tonnage) FROM table_name_73 WHERE flag = "canada"
###context:CREATE TABLE table_name_60 (place VARCHAR, country VARCHAR) ###human: In what place did the golfer representing Zimbabwe finish? ###assistant: SELECT place FROM table_name_60 WHERE country = "zimbabwe"
###context:CREATE TABLE table_name_23 (place VARCHAR, score VARCHAR, player VARCHAR) ###human: In what place did Des Smyth, who scored less than 71, finish? ###assistant: SELECT place FROM table_name_23 WHERE score < 71 AND player = "des smyth"
###context:CREATE TABLE table_name_82 (spaceport VARCHAR, launcher VARCHAR, launch_complex VARCHAR) ###human: What is the spaceport location that houses the LC34 complex and uses the Saturn IB launcher? ###assistant: SELECT spaceport FROM table_name_82 WHERE launcher = "saturn ib" AND launch_complex = "lc34"
###context:CREATE TABLE table_name_7 (spacecraft VARCHAR, launcher VARCHAR) ###human: Which spacecraft were launched by the Titan II? ###assistant: SELECT spacecraft FROM table_name_7 WHERE launcher = "titan ii"
###context:CREATE TABLE table_name_80 (launcher VARCHAR, spacecraft VARCHAR) ###human: What was the launcher vehicle for Apollo-Soyuz? ###assistant: SELECT launcher FROM table_name_80 WHERE spacecraft = "apollo-soyuz"
###context:CREATE TABLE table_name_35 (launch_complex VARCHAR, launcher VARCHAR, flights VARCHAR) ###human: Which complex used the Soyuz (r) launcher to facilitate 14 orbital flights? ###assistant: SELECT launch_complex FROM table_name_35 WHERE launcher = "soyuz (r)" AND flights = "14 orbital"
###context:CREATE TABLE table_name_79 (tournament VARCHAR) ###human: what is 2008 when the tournament is year end ranking? ###assistant: SELECT 2008 FROM table_name_79 WHERE tournament = "year end ranking"
###context:CREATE TABLE table_name_66 (tournament VARCHAR) ###human: what is 2012 when the tournament is cincinnati masters? ###assistant: SELECT 2012 FROM table_name_66 WHERE tournament = "cincinnati masters"
###context:CREATE TABLE table_name_79 (Id VARCHAR) ###human: what is 2008 when 2012 is 3r and 2009 is 2r? ###assistant: SELECT 2008 FROM table_name_79 WHERE 2012 = "3r" AND 2009 = "2r"
###context:CREATE TABLE table_name_51 (height_ft__m_ VARCHAR, year VARCHAR) ###human: How tall is the structure built in 1907? ###assistant: SELECT height_ft__m_ FROM table_name_51 WHERE year = 1907
###context:CREATE TABLE table_name_90 (name VARCHAR, floors INTEGER) ###human: Which building has more than 34 floors? ###assistant: SELECT name FROM table_name_90 WHERE floors > 34
###context:CREATE TABLE table_name_7 (gold INTEGER, bronze VARCHAR, silver VARCHAR) ###human: Which rank has 0 bronze and 2 silver? ###assistant: SELECT MIN(gold) FROM table_name_7 WHERE bronze = 0 AND silver < 2
###context:CREATE TABLE table_name_34 (silver INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR) ###human: How much silver does the rank have that has gold smaller than 4, and a total of 1 and a rank larger than 6? ###assistant: SELECT SUM(silver) FROM table_name_34 WHERE gold < 4 AND total = 1 AND rank > 6
###context:CREATE TABLE table_name_34 (rank INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR) ###human: Which rank has a more than 0 silver, 4 bronze, and a total smaller than 10? ###assistant: SELECT SUM(rank) FROM table_name_34 WHERE silver > 0 AND bronze = 4 AND total < 10
###context:CREATE TABLE table_name_19 (gold VARCHAR, silver VARCHAR, bronze VARCHAR) ###human: How much gold does the tank have that has 3 silver and more than 3 bronze? ###assistant: SELECT COUNT(gold) FROM table_name_19 WHERE silver = 3 AND bronze > 3
###context:CREATE TABLE table_name_14 (total VARCHAR, silver INTEGER) ###human: What is the total number that 0 silver? ###assistant: SELECT COUNT(total) FROM table_name_14 WHERE silver < 0
###context:CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR) ###human: Which Score has a To par larger than 17, and a Player of mike brady? ###assistant: SELECT score FROM table_name_7 WHERE to_par > 17 AND player = "mike brady"
###context:CREATE TABLE table_name_83 (place VARCHAR, money___$__ VARCHAR, player VARCHAR) ###human: Which Place that has Money of 150, and a Player of bobby cruickshank? ###assistant: SELECT place FROM table_name_83 WHERE money___$__ = 150 AND player = "bobby cruickshank"
###context:CREATE TABLE table_name_26 (place VARCHAR, to_par VARCHAR, score VARCHAR) ###human: Which Place has a To par smaller than 15, and a Score of 74-74-74-75=297? ###assistant: SELECT place FROM table_name_26 WHERE to_par < 15 AND score = 74 - 74 - 74 - 75 = 297
###context:CREATE TABLE table_name_84 (score VARCHAR, tie_no VARCHAR) ###human: What is the score when the tie number is 8? ###assistant: SELECT score FROM table_name_84 WHERE tie_no = "8"
###context:CREATE TABLE table_name_58 (score VARCHAR, tie_no VARCHAR) ###human: What is the score when the tie number is 6? ###assistant: SELECT score FROM table_name_58 WHERE tie_no = "6"
###context:CREATE TABLE table_name_46 (tie_no VARCHAR, home_team VARCHAR) ###human: What is the tie number for Middlesbrough? ###assistant: SELECT tie_no FROM table_name_46 WHERE home_team = "middlesbrough"
###context:CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR) ###human: What status has 15/04/1967 as the date? ###assistant: SELECT status FROM table_name_33 WHERE date = "15/04/1967"
###context:CREATE TABLE table_name_95 (venue VARCHAR, opposing_teams VARCHAR) ###human: What venue has Scotland as the opposing teams? ###assistant: SELECT venue FROM table_name_95 WHERE opposing_teams = "scotland"
###context:CREATE TABLE table_name_71 (status VARCHAR, opposing_teams VARCHAR) ###human: What status has France as the opposing teams? ###assistant: SELECT status FROM table_name_71 WHERE opposing_teams = "france"
###context:CREATE TABLE table_name_50 (week_4 VARCHAR, week_9 VARCHAR) ###human: What kind of Week 4 has a Week 9 of all housemates? ###assistant: SELECT week_4 FROM table_name_50 WHERE week_9 = "all housemates"
###context:CREATE TABLE table_name_2 (week_3 VARCHAR, week_9 VARCHAR) ###human: Which Week 3 has a Week 9 of ejected (day 3)? ###assistant: SELECT week_3 FROM table_name_2 WHERE week_9 = "ejected (day 3)"
###context:CREATE TABLE table_name_24 (week_1 VARCHAR, week_3 VARCHAR, week_8 VARCHAR, week_9 VARCHAR) ###human: What kind of Week 1 has a Week 8 of not eligible, and a Week 9 of no nominations, and a Week 3 of cyril? Question 3 ###assistant: SELECT week_1 FROM table_name_24 WHERE week_8 = "not eligible" AND week_9 = "no nominations" AND week_3 = "cyril"
###context:CREATE TABLE table_name_83 (week_7 VARCHAR, week_5 VARCHAR) ###human: What kind of Week 7 has a Week 5 of evicted (day 15)? ###assistant: SELECT week_7 FROM table_name_83 WHERE week_5 = "evicted (day 15)"
###context:CREATE TABLE table_name_80 (week_6 VARCHAR, week_2 VARCHAR) ###human: What kind of Week 6 has a Week 2 of see notes 2 , 3 , 4? ###assistant: SELECT week_6 FROM table_name_80 WHERE week_2 = "see notes 2 , 3 , 4"
###context:CREATE TABLE table_name_35 (against INTEGER, wins VARCHAR, geelong_fl VARCHAR) ###human: Which Against has more than 11 wins, and a Geelong FL of st josephs? ###assistant: SELECT MIN(against) FROM table_name_35 WHERE wins > 11 AND geelong_fl = "st josephs"
###context:CREATE TABLE table_name_17 (attendance INTEGER, loss VARCHAR) ###human: What is the Attendance of the game with a Loss of Hiller (3–2)? ###assistant: SELECT MAX(attendance) FROM table_name_17 WHERE loss = "hiller (3–2)"
###context:CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR) ###human: Who is the away team that tottenham hotspur played? ###assistant: SELECT away_team FROM table_name_85 WHERE home_team = "tottenham hotspur"
###context:CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR, away_team VARCHAR) ###human: What was the score of the game with away team chelsea on 29 january 1983? ###assistant: SELECT score FROM table_name_10 WHERE date = "29 january 1983" AND away_team = "chelsea"
###context:CREATE TABLE table_name_76 (date VARCHAR, home_team VARCHAR) ###human: What date was the game that home team torquay united played? ###assistant: SELECT date FROM table_name_76 WHERE home_team = "torquay united"
###context:CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) ###human: Who is the team that played away team watford? ###assistant: SELECT home_team FROM table_name_9 WHERE away_team = "watford"
###context:CREATE TABLE table_name_93 (date VARCHAR, home_team VARCHAR) ###human: What date was the game when home team crystal palace played? ###assistant: SELECT date FROM table_name_93 WHERE home_team = "crystal palace"
###context:CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR) ###human: What country is Retief Goosen from? ###assistant: SELECT country FROM table_name_18 WHERE player = "retief goosen"
###context:CREATE TABLE table_name_27 (player VARCHAR, place VARCHAR) ###human: What Player is in Place 1? ###assistant: SELECT player FROM table_name_27 WHERE place = "1"
###context:CREATE TABLE table_name_39 (country VARCHAR, place VARCHAR) ###human: What is the Country of the Player in Place 1? ###assistant: SELECT country FROM table_name_39 WHERE place = "1"
###context:CREATE TABLE table_name_89 (place VARCHAR, to_par VARCHAR, score VARCHAR) ###human: What is the Place of the Player with a To par of –10 and a Score of 67-67-66=200? ###assistant: SELECT place FROM table_name_89 WHERE to_par = "–10" AND score = 67 - 67 - 66 = 200
###context:CREATE TABLE table_name_92 (rank VARCHAR, points VARCHAR, club VARCHAR) ###human: Can you tell me the total number of Rank that has the Points larger than 99, and the Club of barcelona? ###assistant: SELECT COUNT(rank) FROM table_name_92 WHERE points > 99 AND club = "barcelona"
###context:CREATE TABLE table_name_76 (attendance INTEGER, tie_no VARCHAR, away_team VARCHAR) ###human: How many people on average attended when Eastwood Town was the away team, and the tie number was less than 8? ###assistant: SELECT AVG(attendance) FROM table_name_76 WHERE tie_no < 8 AND away_team = "eastwood town"
###context:CREATE TABLE table_name_38 (score VARCHAR, attendance VARCHAR, home_team VARCHAR) ###human: The game with home team Crowborough Athletic, with an attendance less than 848 had what as the score? ###assistant: SELECT score FROM table_name_38 WHERE attendance < 848 AND home_team = "crowborough athletic"
###context:CREATE TABLE table_name_76 (attendance INTEGER, home_team VARCHAR) ###human: The game with Bashley as the home team had what maximum attendance? ###assistant: SELECT MAX(attendance) FROM table_name_76 WHERE home_team = "bashley"
###context:CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR) ###human: What is the tie number total when Harlow Town is the away team? ###assistant: SELECT COUNT(tie_no) FROM table_name_5 WHERE away_team = "harlow town"
###context:CREATE TABLE table_name_58 (artist VARCHAR, draw INTEGER) ###human: Which artist has a draw greater than 15? ###assistant: SELECT artist FROM table_name_58 WHERE draw > 15
###context:CREATE TABLE table_name_97 (place INTEGER, artist VARCHAR, draw VARCHAR) ###human: What was the highest place a song by Jacques Raymond reached, with a draw over 14? ###assistant: SELECT MAX(place) FROM table_name_97 WHERE artist = "jacques raymond" AND draw > 14
###context:CREATE TABLE table_name_15 (craft VARCHAR, location VARCHAR) ###human: What is the Craft used at Coniston Water? ###assistant: SELECT craft FROM table_name_15 WHERE location = "coniston water"
###context:CREATE TABLE table_name_80 (speed VARCHAR, location VARCHAR) ###human: What is the Speed at Lake Mead? ###assistant: SELECT speed FROM table_name_80 WHERE location = "lake mead"
###context:CREATE TABLE table_name_16 (goals VARCHAR, ratio VARCHAR) ###human: Which Goals have a Ratio of 0.29? ###assistant: SELECT goals FROM table_name_16 WHERE ratio = 0.29
###context:CREATE TABLE table_name_12 (goals INTEGER, rank VARCHAR, current_club VARCHAR, ratio VARCHAR) ###human: Which Goals have a Current Club of real madrid, and a Ratio smaller than 1.08, and a Rank smaller than 5? ###assistant: SELECT MAX(goals) FROM table_name_12 WHERE current_club = "real madrid" AND ratio < 1.08 AND rank < 5
###context:CREATE TABLE table_name_20 (current_club VARCHAR, rank VARCHAR) ###human: Which Current Club has a Rank of 4? ###assistant: SELECT current_club FROM table_name_20 WHERE rank = 4