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