training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_41 (player VARCHAR, height VARCHAR) ###human: Who has a height of 2.16? ###assistant: SELECT player FROM table_name_41 WHERE height = 2.16
###context:CREATE TABLE table_name_19 (height INTEGER, position VARCHAR, current_club VARCHAR) ###human: What's the tallest height for c position in current club unicaja malaga? ###assistant: SELECT MAX(height) FROM table_name_19 WHERE position = "c" AND current_club = "unicaja malaga"
###context:CREATE TABLE table_name_1 (attendance VARCHAR, home_team VARCHAR) ###human: What was the attendance when the Southend United was the home team? ###assistant: SELECT attendance FROM table_name_1 WHERE home_team = "southend united"
###context:CREATE TABLE table_name_53 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR) ###human: Who was the away team that played Northampton Town at home with a tie number of replay? ###assistant: SELECT away_team FROM table_name_53 WHERE tie_no = "replay" AND home_team = "northampton town"
###context:CREATE TABLE table_name_43 (outcome VARCHAR, opponent_in_the_final VARCHAR) ###human: Which Outcome has an Opponent in the final of simone colombo? ###assistant: SELECT outcome FROM table_name_43 WHERE opponent_in_the_final = "simone colombo"
###context:CREATE TABLE table_name_96 (glyph INTEGER, hexadecimal VARCHAR, binary VARCHAR, octal VARCHAR) ###human: What is the sum of the glyph with a binary less than 111001, an octal less than 65, and a hexadecimal less than 30? ###assistant: SELECT SUM(glyph) FROM table_name_96 WHERE binary < 111001 AND octal < 65 AND hexadecimal < 30
###context:CREATE TABLE table_name_62 (hexadecimal INTEGER, glyph VARCHAR, decimal VARCHAR, octal VARCHAR) ###human: What is the average hexadecimal with a decimal less than 53, an octal less than 61, and a glyph greater than 0? ###assistant: SELECT AVG(hexadecimal) FROM table_name_62 WHERE decimal < 53 AND octal < 61 AND glyph > 0
###context:CREATE TABLE table_name_82 (octal INTEGER, hexadecimal VARCHAR, glyph VARCHAR) ###human: What is the lowest octal with a 30 hexadecimal and less than 0 glyphs? ###assistant: SELECT MIN(octal) FROM table_name_82 WHERE hexadecimal = 30 AND glyph < 0
###context:CREATE TABLE table_name_2 (hexadecimal INTEGER, decimal INTEGER) ###human: What is the average hexadecimal with a decimal greater than 57? ###assistant: SELECT AVG(hexadecimal) FROM table_name_2 WHERE decimal > 57
###context:CREATE TABLE table_name_12 (decimal INTEGER, binary VARCHAR, glyph VARCHAR) ###human: What is the average decimal with a 110010 binary and a glyph greater than 2? ###assistant: SELECT AVG(decimal) FROM table_name_12 WHERE binary = 110010 AND glyph > 2
###context:CREATE TABLE table_name_4 (glyph INTEGER, hexadecimal VARCHAR, binary VARCHAR) ###human: What is the sum of the glyph with a 38 hexadecimal and a binary less than 111000? ###assistant: SELECT SUM(glyph) FROM table_name_4 WHERE hexadecimal = 38 AND binary < 111000
###context:CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR) ###human: What was the record in the game where the opponent wasd the atlanta falcons? ###assistant: SELECT record FROM table_name_40 WHERE opponent = "atlanta falcons"
###context:CREATE TABLE table_name_63 (attendance INTEGER, game_site VARCHAR) ###human: What was the highest attendance at a game that was played in tulane stadium? ###assistant: SELECT MAX(attendance) FROM table_name_63 WHERE game_site = "tulane stadium"
###context:CREATE TABLE table_name_10 (category VARCHAR, start VARCHAR, stage VARCHAR) ###human: What is the category for the year when Brioude started and the stage is less than 7? ###assistant: SELECT COUNT(category) FROM table_name_10 WHERE start = "brioude" AND stage < 7
###context:CREATE TABLE table_name_74 (stage VARCHAR, category INTEGER) ###human: What is the stage number when the category is less than 1? ###assistant: SELECT COUNT(stage) FROM table_name_74 WHERE category < 1
###context:CREATE TABLE table_name_31 (home VARCHAR, season VARCHAR) ###human: For the 1948-49 season, what was the At Home record? ###assistant: SELECT home FROM table_name_31 WHERE season = "1948-49"
###context:CREATE TABLE table_name_33 (season VARCHAR, away VARCHAR, home VARCHAR) ###human: In which season was the Away record 2-2 and At Home record 1-0? ###assistant: SELECT season FROM table_name_33 WHERE away = "2-2" AND home = "1-0"
###context:CREATE TABLE table_name_7 (league VARCHAR, season VARCHAR) ###human: In the 1958-59 season, what league did the team play in? ###assistant: SELECT league FROM table_name_7 WHERE season = "1958-59"
###context:CREATE TABLE table_name_6 (teams VARCHAR, league VARCHAR, away VARCHAR) ###human: What team played in the Bundesliga league with an Away record of 2-1? ###assistant: SELECT teams FROM table_name_6 WHERE league = "bundesliga" AND away = "2-1"
###context:CREATE TABLE table_name_46 (teams VARCHAR, season VARCHAR) ###human: What team(s) played in the 1995-96 season? ###assistant: SELECT teams FROM table_name_46 WHERE season = "1995-96"
###context:CREATE TABLE table_name_40 (away VARCHAR, home VARCHAR, league VARCHAR) ###human: Playing in the Bundesliga league, what was the Away record for the team with an At Home record of 1-2? ###assistant: SELECT away FROM table_name_40 WHERE home = "1-2" AND league = "bundesliga"
###context:CREATE TABLE table_name_58 (date_performed VARCHAR, main_contestant VARCHAR) ###human: Which Date performed has a Main contestant of karanvir bohra? ###assistant: SELECT date_performed FROM table_name_58 WHERE main_contestant = "karanvir bohra"
###context:CREATE TABLE table_name_12 (date_performed VARCHAR, position VARCHAR, scores_by_each_individual_judge VARCHAR) ###human: Which Date performed has a Position of bottom 3, and Scores by each individual judge of 5 + 5 + 4 = 14? ###assistant: SELECT date_performed FROM table_name_12 WHERE position = "bottom 3" AND scores_by_each_individual_judge = 5 + 5 + 4 = 14
###context:CREATE TABLE table_name_52 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) ###human: Which Status has a Co-contestant (Yaar vs. Pyaar) of tina sachdev? ###assistant: SELECT status FROM table_name_52 WHERE co_contestant__yaar_vs_pyaar_ = "tina sachdev"
###context:CREATE TABLE table_name_29 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) ###human: Which Status has a Co-contestant (Yaar vs. Pyaar) of tina parekh? ###assistant: SELECT status FROM table_name_29 WHERE co_contestant__yaar_vs_pyaar_ = "tina parekh"
###context:CREATE TABLE table_name_38 (total_score_week VARCHAR, status VARCHAR, scores_by_each_individual_judge VARCHAR) ###human: Which Total score/week has a Status of eliminated, and Scores by each individual judge of 5 + 5 + 4 = 14? ###assistant: SELECT total_score_week FROM table_name_38 WHERE status = "eliminated" AND scores_by_each_individual_judge = 5 + 5 + 4 = 14
###context:CREATE TABLE table_name_87 (scores_by_each_individual_judge VARCHAR, date_performed VARCHAR, main_contestant VARCHAR) ###human: Which Scores by each individual judge has a Date performed of august 7, and a Main contestant of karanvir bohra? ###assistant: SELECT scores_by_each_individual_judge FROM table_name_87 WHERE date_performed = "august 7" AND main_contestant = "karanvir bohra"
###context:CREATE TABLE table_name_21 (name VARCHAR, moving_to VARCHAR) ###human: Who is moving to Triestina? ###assistant: SELECT name FROM table_name_21 WHERE moving_to = "triestina"
###context:CREATE TABLE table_name_97 (transfer_window VARCHAR, moving_to VARCHAR) ###human: What is the transfer window of the player moving to Panionios? ###assistant: SELECT transfer_window FROM table_name_97 WHERE moving_to = "panionios"
###context:CREATE TABLE table_name_91 (type VARCHAR, moving_to VARCHAR) ###human: What is the type for the Panionios moving to? ###assistant: SELECT type FROM table_name_91 WHERE moving_to = "panionios"
###context:CREATE TABLE table_name_15 (moving_to VARCHAR, nat VARCHAR) ###human: Where is the nationality of Arg Esp moving to? ###assistant: SELECT moving_to FROM table_name_15 WHERE nat = "arg esp"
###context:CREATE TABLE table_name_84 (name VARCHAR, type VARCHAR, moving_to VARCHAR) ###human: Who is moving to Chelsea on loan? ###assistant: SELECT name FROM table_name_84 WHERE type = "loan" AND moving_to = "chelsea"
###context:CREATE TABLE table_name_24 (digital VARCHAR, provider VARCHAR) ###human: What is the digital of Virgin [analogue]? ###assistant: SELECT digital FROM table_name_24 WHERE provider = "virgin [analogue]"
###context:CREATE TABLE table_name_83 (provider VARCHAR, free_or_pay VARCHAR, transmission VARCHAR) ###human: Which provider is pay with analogue cable? ###assistant: SELECT provider FROM table_name_83 WHERE free_or_pay = "pay" AND transmission = "analogue cable"
###context:CREATE TABLE table_name_87 (no_of_channels VARCHAR, transmission VARCHAR, provider VARCHAR) ###human: How many analogue satellite channels does Sky [Analogue] have? ###assistant: SELECT no_of_channels FROM table_name_87 WHERE transmission = "analogue satellite" AND provider = "sky [analogue]"
###context:CREATE TABLE table_name_27 (years VARCHAR, transmission VARCHAR, no_of_channels VARCHAR) ###human: What years are listed for analogue cable with 35 channels? ###assistant: SELECT years FROM table_name_27 WHERE transmission = "analogue cable" AND no_of_channels = "35"
###context:CREATE TABLE table_name_37 (week_14_nov_27 VARCHAR, week_13_nov_20 VARCHAR) ###human: What was Week 14 when Week 13 was Nebraska (8-2)? ###assistant: SELECT week_14_nov_27 FROM table_name_37 WHERE week_13_nov_20 = "nebraska (8-2)"
###context:CREATE TABLE table_name_50 (week_15__final__dec_3 VARCHAR, week_12_nov_13 VARCHAR) ###human: What was Week 15 when Week 12 was Notre Dame (7-2)? ###assistant: SELECT week_15__final__dec_3 FROM table_name_50 WHERE week_12_nov_13 = "notre dame (7-2)"
###context:CREATE TABLE table_name_99 (week_11_nov_6 VARCHAR, week_10_oct_30 VARCHAR) ###human: What was Week 11 when Week 10 had Nebraska (7-1)? ###assistant: SELECT week_11_nov_6 FROM table_name_99 WHERE week_10_oct_30 = "nebraska (7-1)"
###context:CREATE TABLE table_name_69 (week_15__final__dec_3 VARCHAR, week_12_nov_13 VARCHAR) ###human: What was Week 15 when Week 12 was Washington (9-1)? ###assistant: SELECT week_15__final__dec_3 FROM table_name_69 WHERE week_12_nov_13 = "washington (9-1)"
###context:CREATE TABLE table_name_64 (surface VARCHAR, date VARCHAR) ###human: What Surface has a Date of 15 february 1988? ###assistant: SELECT surface FROM table_name_64 WHERE date = "15 february 1988"
###context:CREATE TABLE table_name_4 (date VARCHAR, score_in_the_final VARCHAR) ###human: What Date has a Score in the final of 3–6, 2–6, 4–6? ###assistant: SELECT date FROM table_name_4 WHERE score_in_the_final = "3–6, 2–6, 4–6"
###context:CREATE TABLE table_name_57 (opponent_in_the_final VARCHAR, date VARCHAR) ###human: What Opponent in the final has a Date of 19 september 1988? ###assistant: SELECT opponent_in_the_final FROM table_name_57 WHERE date = "19 september 1988"
###context:CREATE TABLE table_name_66 (championship VARCHAR, date VARCHAR) ###human: What Championship has a Date of 26 may 1986? ###assistant: SELECT championship FROM table_name_66 WHERE date = "26 may 1986"
###context:CREATE TABLE table_name_16 (championship VARCHAR, score_in_the_final VARCHAR) ###human: What Championship has a Score in the final of 2–6, 6–2, 7–5? ###assistant: SELECT championship FROM table_name_16 WHERE score_in_the_final = "2–6, 6–2, 7–5"
###context:CREATE TABLE table_name_77 (pick__number INTEGER, overall VARCHAR) ###human: What was the lowest pick number with an overall 86? ###assistant: SELECT MIN(pick__number) FROM table_name_77 WHERE overall = 86
###context:CREATE TABLE table_name_45 (name VARCHAR, pick__number VARCHAR, college VARCHAR) ###human: What is the name of a pick more than 5 at Washington College? ###assistant: SELECT name FROM table_name_45 WHERE pick__number > 5 AND college = "washington"
###context:CREATE TABLE table_name_27 (pick__number INTEGER, name VARCHAR) ###human: What is the sum of the Pick # Anthony Maddox? ###assistant: SELECT SUM(pick__number) FROM table_name_27 WHERE name = "anthony maddox"
###context:CREATE TABLE table_name_69 (standard_order VARCHAR, traditional_chinese VARCHAR) ###human: Which number is 國殤? ###assistant: SELECT standard_order FROM table_name_69 WHERE traditional_chinese = "國殤"
###context:CREATE TABLE table_name_14 (traditional_chinese VARCHAR, standard_order VARCHAR, simplified_chinese VARCHAR) ###human: What is the Traditional Chinese of 国殇 which is over 9? ###assistant: SELECT traditional_chinese FROM table_name_14 WHERE standard_order > 9 AND simplified_chinese = "国殇"
###context:CREATE TABLE table_name_93 (english_translation VARCHAR, simplified_chinese VARCHAR) ###human: What is the English translation of 山鬼? ###assistant: SELECT english_translation FROM table_name_93 WHERE simplified_chinese = "山鬼"
###context:CREATE TABLE table_name_43 (total VARCHAR, mls_cup VARCHAR, us_open_cup VARCHAR) ###human: What is the total where there are 4 MLS Cups and more US Open Cups than 1? ###assistant: SELECT COUNT(total) FROM table_name_43 WHERE mls_cup = 4 AND us_open_cup > 1
###context:CREATE TABLE table_name_93 (race_3 VARCHAR, points VARCHAR, race_1 VARCHAR) ###human: Which race 3 has points greater than 36, and 2 as the race 1? ###assistant: SELECT race_3 FROM table_name_93 WHERE points > 36 AND race_1 = 2
###context:CREATE TABLE table_name_45 (race_1 INTEGER, race_3 VARCHAR, points VARCHAR) ###human: How many race 1's have 5 as the race 3, with points less than 59? ###assistant: SELECT SUM(race_1) FROM table_name_45 WHERE race_3 = "5" AND points < 59
###context:CREATE TABLE table_name_94 (driver VARCHAR, points INTEGER) ###human: What driver has points less than 17? ###assistant: SELECT driver FROM table_name_94 WHERE points < 17
###context:CREATE TABLE table_name_25 (player VARCHAR, country VARCHAR, score VARCHAR) ###human: Who is from south africa and has a score of 76-75-73-71=295? ###assistant: SELECT player FROM table_name_25 WHERE country = "south africa" AND score = 76 - 75 - 73 - 71 = 295
###context:CREATE TABLE table_name_96 (to_par INTEGER, country VARCHAR, score VARCHAR) ###human: What is the lowest to par of a player from australia with a score of 76-70-75-72=293? ###assistant: SELECT MIN(to_par) FROM table_name_96 WHERE country = "australia" AND score = 76 - 70 - 75 - 72 = 293
###context:CREATE TABLE table_name_68 (money___£__ VARCHAR, score VARCHAR) ###human: What is the money with a Score of 76-70-75-72=293? ###assistant: SELECT money___£__ FROM table_name_68 WHERE score = 76 - 70 - 75 - 72 = 293
###context:CREATE TABLE table_name_91 (title VARCHAR, developer VARCHAR, genre VARCHAR) ###human: What is Title, when Developer is "2Play Mobile", and when Genre is "Action"? ###assistant: SELECT title FROM table_name_91 WHERE developer = "2play mobile" AND genre = "action"
###context:CREATE TABLE table_name_38 (version INTEGER, release_date VARCHAR) ###human: What is the highest Version, when Release Date is "2011-04-01"? ###assistant: SELECT MAX(version) FROM table_name_38 WHERE release_date = "2011-04-01"
###context:CREATE TABLE table_name_39 (version VARCHAR, genre VARCHAR, title VARCHAR) ###human: What is Version, when Genre is "Action", and when Title is "Hairball"? ###assistant: SELECT version FROM table_name_39 WHERE genre = "action" AND title = "hairball"
###context:CREATE TABLE table_name_73 (set_1 VARCHAR, total VARCHAR) ###human: What is the Set 1 of the 45:40 Total? ###assistant: SELECT set_1 FROM table_name_73 WHERE total = "45:40"
###context:CREATE TABLE table_name_41 (total VARCHAR, set_1 VARCHAR) ###human: What is the Total of the 24:26 Set 1? ###assistant: SELECT total FROM table_name_41 WHERE set_1 = "24:26"
###context:CREATE TABLE table_name_58 (total VARCHAR, set_2 VARCHAR) ###human: What is the Total of Set 2 of 21:12? ###assistant: SELECT total FROM table_name_58 WHERE set_2 = "21:12"
###context:CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR) ###human: What is the Total of Set 2 of 24:22? ###assistant: SELECT total FROM table_name_86 WHERE set_2 = "24:22"
###context:CREATE TABLE table_name_17 (date VARCHAR, set_2 VARCHAR) ###human: What is the date of the 21:12 Set 2? ###assistant: SELECT date FROM table_name_17 WHERE set_2 = "21:12"
###context:CREATE TABLE table_name_15 (torque VARCHAR, engine VARCHAR) ###human: What is the torque of the 5.8l v12 engine? ###assistant: SELECT torque FROM table_name_15 WHERE engine = "5.8l v12"
###context:CREATE TABLE table_name_72 (torque VARCHAR, engine VARCHAR) ###human: What is the torque of the 6.3l v12 engine? ###assistant: SELECT torque FROM table_name_72 WHERE engine = "6.3l v12"
###context:CREATE TABLE table_name_20 (engine VARCHAR) ###human: What is the 0-100km/h (62mph) of the supercharged 5.4l v8 engine? ###assistant: SELECT 0 AS _100km_h__62mph_ FROM table_name_20 WHERE engine = "supercharged 5.4l v8"
###context:CREATE TABLE table_name_98 (population INTEGER, per_capita_income VARCHAR, number_of_households VARCHAR) ###human: What is the population when the Per capita income of $18,884, and a Number of households smaller than 14,485? ###assistant: SELECT SUM(population) FROM table_name_98 WHERE per_capita_income = "$18,884" AND number_of_households < 14 OFFSET 485
###context:CREATE TABLE table_name_99 (place VARCHAR, player VARCHAR) ###human: What is Place, when Player is "Ben Crenshaw"? ###assistant: SELECT place FROM table_name_99 WHERE player = "ben crenshaw"
###context:CREATE TABLE table_name_59 (kneel INTEGER, qual VARCHAR, stand VARCHAR, prone VARCHAR) ###human: What is the highest kneel with a stand less than 187, and a 197 prone, and a qual more than 576? ###assistant: SELECT MAX(kneel) FROM table_name_59 WHERE stand < 187 AND prone = 197 AND qual > 576
###context:CREATE TABLE table_name_31 (stand INTEGER, qual INTEGER) ###human: What is the sum of the stand with a qual more than 589? ###assistant: SELECT SUM(stand) FROM table_name_31 WHERE qual > 589
###context:CREATE TABLE table_name_26 (team_1 VARCHAR) ###human: What is the 1st leg in the match where Remo (PA) is team 1? ###assistant: SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = "remo (pa)"
###context:CREATE TABLE table_name_17 (team_1 VARCHAR, team_2 VARCHAR) ###human: Who is team 1 where team 2 is Fluminense (RJ)? ###assistant: SELECT team_1 FROM table_name_17 WHERE team_2 = "fluminense (rj)"
###context:CREATE TABLE table_name_52 (score VARCHAR, competition VARCHAR, venue VARCHAR) ###human: What is the venue for the friendly competition at Dreisamstadion, Freiburg? ###assistant: SELECT score FROM table_name_52 WHERE competition = "friendly" AND venue = "dreisamstadion, freiburg"
###context:CREATE TABLE table_name_96 (result VARCHAR, venue VARCHAR) ###human: What is the result at Dreisamstadion, Freiburg? ###assistant: SELECT result FROM table_name_96 WHERE venue = "dreisamstadion, freiburg"
###context:CREATE TABLE table_name_16 (team VARCHAR, position VARCHAR, pick VARCHAR) ###human: What is Team, when Position is "LHP", and when Pick is "23"? ###assistant: SELECT team FROM table_name_16 WHERE position = "lhp" AND pick = 23
###context:CREATE TABLE table_name_86 (pick INTEGER, player VARCHAR) ###human: What is the highest Pick, when Player is "Todd Van Poppel"? ###assistant: SELECT MAX(pick) FROM table_name_86 WHERE player = "todd van poppel"
###context:CREATE TABLE table_name_48 (player VARCHAR, pick VARCHAR) ###human: What is Player, when Pick is "26"? ###assistant: SELECT player FROM table_name_48 WHERE pick = 26
###context:CREATE TABLE table_name_15 (position VARCHAR, hometown_school VARCHAR) ###human: What is Posititon, when Hometown/School is "Westlake, California"? ###assistant: SELECT position FROM table_name_15 WHERE hometown_school = "westlake, california"
###context:CREATE TABLE table_name_61 (player VARCHAR, position VARCHAR, pick VARCHAR) ###human: What is Player, when Position is "SS", and when Pick is "11"? ###assistant: SELECT player FROM table_name_61 WHERE position = "ss" AND pick = 11
###context:CREATE TABLE table_name_38 (population VARCHAR, county VARCHAR) ###human: What is the Population of Sargent County? ###assistant: SELECT population FROM table_name_38 WHERE county = "sargent"
###context:CREATE TABLE table_name_86 (rank INTEGER, silver VARCHAR, total VARCHAR) ###human: What is the rank for the nation with 0 silver medals and a total larger than 2? ###assistant: SELECT SUM(rank) FROM table_name_86 WHERE silver = 0 AND total > 2
###context:CREATE TABLE table_name_55 (silver INTEGER, bronze VARCHAR, total VARCHAR) ###human: What is the least silvers where there are 39 bronzes and the total is less than 120? ###assistant: SELECT MIN(silver) FROM table_name_55 WHERE bronze = 39 AND total < 120
###context:CREATE TABLE table_name_74 (general_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR) ###human: What's the general classification of stage 3 with David Loosli as the mountains classification? ###assistant: SELECT general_classification FROM table_name_74 WHERE mountains_classification = "david loosli" AND stage = "3"
###context:CREATE TABLE table_name_42 (points_classification VARCHAR, stage VARCHAR) ###human: What's the points classification when the stage was final? ###assistant: SELECT points_classification FROM table_name_42 WHERE stage = "final"
###context:CREATE TABLE table_name_29 (stage VARCHAR, team_classification VARCHAR) ###human: What is the stage of Gerolsteiner? ###assistant: SELECT stage FROM table_name_29 WHERE team_classification = "gerolsteiner"
###context:CREATE TABLE table_name_82 (mountains_classification VARCHAR, general_classification VARCHAR, stage VARCHAR) ###human: What's the mountains classification of Stage 7 when Kim Kirchen was the general classification? ###assistant: SELECT mountains_classification FROM table_name_82 WHERE general_classification = "kim kirchen" AND stage = "7"
###context:CREATE TABLE table_name_21 (team_classification VARCHAR, general_classification VARCHAR) ###human: What was Kim Kirchen's team classification? ###assistant: SELECT team_classification FROM table_name_21 WHERE general_classification = "kim kirchen"
###context:CREATE TABLE table_name_24 (player VARCHAR, to_par VARCHAR, score VARCHAR) ###human: What Player has a To par of +1 and a Score of 73-71-71=217? ###assistant: SELECT player FROM table_name_24 WHERE to_par = "+1" AND score = 73 - 71 - 71 = 217
###context:CREATE TABLE table_name_12 (player VARCHAR, to_par VARCHAR, score VARCHAR) ###human: What Player's had a To par of +1 and a Score of 73-71-73=217? ###assistant: SELECT player FROM table_name_12 WHERE to_par = "+1" AND score = 73 - 71 - 73 = 217
###context:CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR) ###human: What is Fuzzy Zoeller's Score? ###assistant: SELECT score FROM table_name_56 WHERE player = "fuzzy zoeller"
###context:CREATE TABLE table_name_85 (country VARCHAR, score VARCHAR) ###human: What is the Country of the Player with a Score of 71-73-71=215? ###assistant: SELECT country FROM table_name_85 WHERE score = 71 - 73 - 71 = 215
###context:CREATE TABLE table_name_72 (country VARCHAR, to_par VARCHAR) ###human: What is the Country of the Player with a To par of –4? ###assistant: SELECT country FROM table_name_72 WHERE to_par = "–4"
###context:CREATE TABLE table_name_38 (country VARCHAR, to_par VARCHAR, score VARCHAR) ###human: What is the Country of the Player with a To par of +1 and a Score of 75-69-73=217? ###assistant: SELECT country FROM table_name_38 WHERE to_par = "+1" AND score = 75 - 69 - 73 = 217
###context:CREATE TABLE table_name_97 (position INTEGER, goals_against VARCHAR, played VARCHAR) ###human: Which Position has 24 Goals against, and a Played smaller than 30? ###assistant: SELECT MAX(position) FROM table_name_97 WHERE goals_against = 24 AND played < 30
###context:CREATE TABLE table_name_9 (points INTEGER, club VARCHAR, goal_difference VARCHAR) ###human: Which Points have a Club of cf calvo sotelo, and a Goal Difference larger than -3? ###assistant: SELECT MAX(points) FROM table_name_9 WHERE club = "cf calvo sotelo" AND goal_difference > -3
###context:CREATE TABLE table_name_63 (draws INTEGER, position VARCHAR, goals_against VARCHAR) ###human: Which Draws have a Position of 16, and less than 58 Goals against? ###assistant: SELECT MIN(draws) FROM table_name_63 WHERE position = 16 AND goals_against < 58
###context:CREATE TABLE table_name_75 (losses INTEGER, goals_against VARCHAR, draws VARCHAR, club VARCHAR) ###human: Which Losses have Draws larger than 6, and a Club of cd mestalla, and Goals against larger than 44? ###assistant: SELECT MIN(losses) FROM table_name_75 WHERE draws > 6 AND club = "cd mestalla" AND goals_against > 44