Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
43,600
<question>: What was the score for the game that had an end result of 5-2? <context>: CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR)
SELECT score FROM table_name_68 WHERE result = "5-2"
43,601
<question>: What is the total number of losses that have 1 draw and games over 7? <context>: CREATE TABLE table_name_31 (lost VARCHAR, drawn VARCHAR, games VARCHAR)
SELECT COUNT(lost) FROM table_name_31 WHERE drawn = 1 AND games > 7
43,602
<question>: How many rounds had a pick number of more than 10 and Appalachian State as a college? <context>: CREATE TABLE table_name_73 (round VARCHAR, pick__number VARCHAR, college VARCHAR)
SELECT COUNT(round) FROM table_name_73 WHERE pick__number > 10 AND college = "appalachian state"
43,603
<question>: What is the largest overall where the position was linebacker and the pick number was more than 9? <context>: CREATE TABLE table_name_32 (overall INTEGER, position VARCHAR, pick__number VARCHAR)
SELECT MAX(overall) FROM table_name_32 WHERE position = "linebacker" AND pick__number > 9
43,604
<question>: What is the Score of the game earlier than 69 with a record of 4–56? <context>: CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_41 WHERE game < 69 AND record = "4–56"
43,605
<question>: What is the game number with a score of 116–138? <context>: CREATE TABLE table_name_31 (game VARCHAR, score VARCHAR)
SELECT COUNT(game) FROM table_name_31 WHERE score = "116–138"
43,606
<question>: What is the Score of the game against the boston celtics? <context>: CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_58 WHERE opponent = "boston celtics"
43,607
<question>: What is the Game held on february 9? <context>: CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_17 WHERE date = "february 9"
43,608
<question>: What is the Score of the game larger than 57 with a Record of 4–55? <context>: CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_15 WHERE game > 57 AND record = "4–55"
43,609
<question>: Which Reigon has a Village of Chassagne-Montrachet? <context>: CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR)
SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet"
43,610
<question>: Which Village has a Region of Côte De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latricières-Chambertin? <context>: CREATE TABLE table_name_57 (village VARCHAR, grand_cru VARCHAR, region VARCHAR, wine_style VARCHAR)
SELECT village FROM table_name_57 WHERE region = "côte de nuits" AND wine_style = "red wine" AND grand_cru = "latricières-chambertin"
43,611
<question>: What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin? <context>: CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR)
SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = "gevrey-chambertin" AND grand_cru = "latricières-chambertin"
43,612
<question>: What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin? <context>: CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR)
SELECT grand_cru FROM table_name_33 WHERE wine_style = "red wine" AND village = "gevrey-chambertin"
43,613
<question>: What is the average pick number of Pennsylvania? <context>: CREATE TABLE table_name_97 (pick INTEGER, school_club_team VARCHAR)
SELECT AVG(pick) FROM table_name_97 WHERE school_club_team = "pennsylvania"
43,614
<question>: What is the school/club team of the player with a pick larger than 83? <context>: CREATE TABLE table_name_26 (school_club_team VARCHAR, pick INTEGER)
SELECT school_club_team FROM table_name_26 WHERE pick > 83
43,615
<question>: What is the schoo/club team of the player in round 3? <context>: CREATE TABLE table_name_92 (school_club_team VARCHAR, round VARCHAR)
SELECT school_club_team FROM table_name_92 WHERE round = 3
43,616
<question>: What is the lowest round of the player from UCLA? <context>: CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR)
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "ucla"
43,617
<question>: When was –16 (62-71-71-68=272) the winning score? <context>: CREATE TABLE table_name_20 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_20 WHERE winning_score = –16(62 - 71 - 71 - 68 = 272)
43,618
<question>: What was the name of the tournament played on Jun 17, 1973? <context>: CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_3 WHERE date = "jun 17, 1973"
43,619
<question>: Howard Twitty was the runner-up of what tournament? <context>: CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_14 WHERE runner_s__up = "howard twitty"
43,620
<question>: Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia? <context>: CREATE TABLE table_name_58 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT college_junior_club_team FROM table_name_58 WHERE position = "defence" AND nationality = "czechoslovakia"
43,621
<question>: Can you tell me the Position that has the College/Junior/Club Team of hull olympiques (qmjhl)? <context>: CREATE TABLE table_name_81 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT position FROM table_name_81 WHERE college_junior_club_team = "hull olympiques (qmjhl)"
43,622
<question>: Can you tell me the Player that has the Round smaller than 6, and the College/Junior/Club Team of hull olympiques (qmjhl)? <context>: CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_name_86 WHERE round < 6 AND college_junior_club_team = "hull olympiques (qmjhl)"
43,623
<question>: What is the Name of the Center? <context>: CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)
SELECT name FROM table_name_84 WHERE position = "center"
43,624
<question>: What Position has no College Hall of Fame? <context>: CREATE TABLE table_name_48 (position VARCHAR, college_hall_of_fame VARCHAR)
SELECT position FROM table_name_48 WHERE college_hall_of_fame = "no"
43,625
<question>: What School has no no no Unanimously? <context>: CREATE TABLE table_name_96 (school VARCHAR, unanimous VARCHAR)
SELECT school FROM table_name_96 WHERE unanimous = "no no no"
43,626
<question>: What is the School of the quarterback? <context>: CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR)
SELECT school FROM table_name_43 WHERE position = "quarterback"
43,627
<question>: What School is the Center from? <context>: CREATE TABLE table_name_97 (school VARCHAR, position VARCHAR)
SELECT school FROM table_name_97 WHERE position = "center"
43,628
<question>: What is the Unanimous of the Minnesota Southern California School? <context>: CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR)
SELECT unanimous FROM table_name_93 WHERE school = "minnesota southern california"
43,629
<question>: What is the Cache with a Capacity that is 600 gb? <context>: CREATE TABLE table_name_59 (cache VARCHAR, capacity VARCHAR)
SELECT cache FROM table_name_59 WHERE capacity = "600 gb"
43,630
<question>: Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3? <context>: CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)
SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" AND round = 3
43,631
<question>: Which Nationality has a Player of larry wright? <context>: CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_86 WHERE player = "larry wright"
43,632
<question>: What score has august 25 as the date? <context>: CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE date = "august 25"
43,633
<question>: What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer? <context>: CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = "jim sweeney" AND performer_2 = "steve steen"
43,634
<question>: What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer? <context>: CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR)
SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = "chip esten" AND performer_2 = "christopher smith"
43,635
<question>: What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer? <context>: CREATE TABLE table_name_96 (episode INTEGER, performer_4 VARCHAR, performer_1 VARCHAR)
SELECT SUM(episode) FROM table_name_96 WHERE performer_4 = "chip esten" AND performer_1 = "jim meskimen"
43,636
<question>: Who was the 3rd performer when christopher smith was the 2nd performer? <context>: CREATE TABLE table_name_19 (performer_3 VARCHAR, performer_2 VARCHAR)
SELECT performer_3 FROM table_name_19 WHERE performer_2 = "christopher smith"
43,637
<question>: Which Record has a Time of 4:50? <context>: CREATE TABLE table_name_58 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_58 WHERE time = "4:50"
43,638
<question>: Which Event has a Resolution of loss, and a Record of 12–2? <context>: CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR)
SELECT event FROM table_name_56 WHERE res = "loss" AND record = "12–2"
43,639
<question>: Which Drawn has a Difference of 14? <context>: CREATE TABLE table_name_58 (drawn INTEGER, difference VARCHAR)
SELECT AVG(drawn) FROM table_name_58 WHERE difference = "14"
43,640
<question>: Which Played has a Lost larger than 2, and a Team of américa? <context>: CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)
SELECT played FROM table_name_4 WHERE lost > 2 AND team = "américa"
43,641
<question>: What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing? <context>: CREATE TABLE table_name_31 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR, player VARCHAR)
SELECT SUM(touchdowns) FROM table_name_31 WHERE field_goals = 0 AND player = "joe maddock" AND points < 5
43,642
<question>: what is the class of w269ax <context>: CREATE TABLE table_name_90 (class VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_90 WHERE call_sign = "w269ax"
43,643
<question>: What is the match report of the match on 20 August? <context>: CREATE TABLE table_name_12 (match_report VARCHAR, date VARCHAR)
SELECT match_report FROM table_name_12 WHERE date = "20 august"
43,644
<question>: What is the origin for the launch taking place in 2010? <context>: CREATE TABLE table_name_71 (origin VARCHAR, launch VARCHAR)
SELECT origin FROM table_name_71 WHERE launch = 2010
43,645
<question>: What is the origin for the item with an owner of Hunan Broadcasting System (HBS)? <context>: CREATE TABLE table_name_82 (origin VARCHAR, owner VARCHAR)
SELECT origin FROM table_name_82 WHERE owner = "hunan broadcasting system (hbs)"
43,646
<question>: If the college is Trinity, what position is listed? <context>: CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_40 WHERE college = "trinity"
43,647
<question>: How many picks did the College of USC wind up getting? <context>: CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR)
SELECT COUNT(pick__number) FROM table_name_67 WHERE college = "usc"
43,648
<question>: For Pick #323, which round is it? <context>: CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR)
SELECT round FROM table_name_41 WHERE pick__number = 323
43,649
<question>: What score has amblecote as the venue? <context>: CREATE TABLE table_name_97 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_97 WHERE venue = "amblecote"
43,650
<question>: What city has riverside ground as the venue, with a year prior to 1998? <context>: CREATE TABLE table_name_16 (city VARCHAR, venue VARCHAR, year VARCHAR)
SELECT city FROM table_name_16 WHERE venue = "riverside ground" AND year < 1998
43,651
<question>: What is the lowest year that has chester-le-street as the city, with 345 runs as the score? <context>: CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR)
SELECT MIN(year) FROM table_name_49 WHERE city = "chester-le-street" AND score = "345 runs"
43,652
<question>: What year has 385 runs as the score? <context>: CREATE TABLE table_name_38 (year VARCHAR, score VARCHAR)
SELECT year FROM table_name_38 WHERE score = "385 runs"
43,653
<question>: What score has 1998 as the year? <context>: CREATE TABLE table_name_82 (score VARCHAR, year VARCHAR)
SELECT score FROM table_name_82 WHERE year = 1998
43,654
<question>: What is the 2nd (m) value for Gregor Schlierenzauer? <context>: CREATE TABLE table_name_5 (name VARCHAR)
SELECT MIN(2 AS nd__m_) FROM table_name_5 WHERE name = "gregor schlierenzauer"
43,655
<question>: What is the Date of the tournament with a score of 199 (–17)? <context>: CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_58 WHERE score = "199 (–17)"
43,656
<question>: What was the amount of the 1st prize when paul azinger (9) was the winner? <context>: CREATE TABLE table_name_95 (winner VARCHAR)
SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_95 WHERE winner = "paul azinger (9)"
43,657
<question>: What is the name of the winner of the tour championship tournament? <context>: CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_73 WHERE tournament = "the tour championship"
43,658
<question>: What is the Date of the at&t pebble beach national pro-am Tournament? <context>: CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_91 WHERE tournament = "at&t pebble beach national pro-am"
43,659
<question>: Which Site has a Sport of w swimming? <context>: CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR)
SELECT site FROM table_name_38 WHERE sport = "w swimming"
43,660
<question>: Which Series are on september 15, 2007? <context>: CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)
SELECT series FROM table_name_53 WHERE date = "september 15, 2007"
43,661
<question>: What position did the 2010-11 USA ír player have? <context>: CREATE TABLE table_name_5 (position VARCHAR, season VARCHAR, nationality VARCHAR, team VARCHAR)
SELECT position FROM table_name_5 WHERE nationality = "usa" AND team = "ír" AND season = "2010-11"
43,662
<question>: What position did the kr team player play? <context>: CREATE TABLE table_name_15 (position VARCHAR, team VARCHAR)
SELECT position FROM table_name_15 WHERE team = "kr"
43,663
<question>: What team has Steinar Kaldal, a guard / forward? <context>: CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)
SELECT team FROM table_name_57 WHERE position = "guard / forward" AND player = "steinar kaldal"
43,664
<question>: What team did the 2003-04 winner play for? <context>: CREATE TABLE table_name_68 (team VARCHAR, season VARCHAR)
SELECT team FROM table_name_68 WHERE season = "2003-04"
43,665
<question>: Which region has and eyeball label and catalogue 7200222? <context>: CREATE TABLE table_name_23 (region VARCHAR, label VARCHAR, catalogue VARCHAR)
SELECT region FROM table_name_23 WHERE label = "eyeball" AND catalogue = "7200222"
43,666
<question>: Which catalogue is from Japan? <context>: CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR)
SELECT catalogue FROM table_name_31 WHERE region = "japan"
43,667
<question>: What is the format for the United States dated July 23, 2002? <context>: CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR)
SELECT format FROM table_name_84 WHERE region = "united states" AND date = "july 23, 2002"
43,668
<question>: What is the label for catalogue 7200222? <context>: CREATE TABLE table_name_77 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_77 WHERE catalogue = "7200222"
43,669
<question>: What is Marc's Surname? <context>: CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR)
SELECT surname FROM table_name_38 WHERE first = "marc"
43,670
<question>: What is the highest uni# of the person with the first name Todd? <context>: CREATE TABLE table_name_32 (uni_number INTEGER, first VARCHAR)
SELECT MAX(uni_number) FROM table_name_32 WHERE first = "todd"
43,671
<question>: Which position does #14 play? <context>: CREATE TABLE table_name_2 (position VARCHAR, uni_number VARCHAR)
SELECT position FROM table_name_2 WHERE uni_number = 14
43,672
<question>: Which does the lhp player with the first name lachlan bat? <context>: CREATE TABLE table_name_9 (bats VARCHAR, position VARCHAR, first VARCHAR)
SELECT bats FROM table_name_9 WHERE position = "lhp" AND first = "lachlan"
43,673
<question>: How many were in Attendance on December 11, 1954? <context>: CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_14 WHERE date = "december 11, 1954"
43,674
<question>: What was the Result on Week 3? <context>: CREATE TABLE table_name_62 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_62 WHERE week = 3
43,675
<question>: On what Week was the Detroit Lions the Opponent? <context>: CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_name_66 WHERE opponent = "detroit lions"
43,676
<question>: What was the rangers' record on Game 14? <context>: CREATE TABLE table_name_44 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_44 WHERE game = 14
43,677
<question>: What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29? <context>: CREATE TABLE table_name_44 (game INTEGER, record VARCHAR, november VARCHAR)
SELECT MAX(game) FROM table_name_44 WHERE record = "11-11-1" AND november > 29
43,678
<question>: What's Francis Harris' position? <context>: CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_83 WHERE name = "francis harris"
43,679
<question>: Which place has more area (km 2) than 34.42? <context>: CREATE TABLE table_name_99 (place VARCHAR, area__km_2__ INTEGER)
SELECT place FROM table_name_99 WHERE area__km_2__ > 34.42
43,680
<question>: What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25? <context>: CREATE TABLE table_name_66 (_2_clubs VARCHAR, total VARCHAR)
SELECT MIN(4 AS _hoops), _2_clubs FROM table_name_66 WHERE total = 38.25
43,681
<question>: What is the total of Greece, which is placed below 8? <context>: CREATE TABLE table_name_32 (total VARCHAR, nation VARCHAR, place VARCHAR)
SELECT COUNT(total) FROM table_name_32 WHERE nation = "greece" AND place > 8
43,682
<question>: What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25? <context>: CREATE TABLE table_name_14 (_2_clubs VARCHAR, nation VARCHAR, total VARCHAR)
SELECT MAX(4 AS _hoops), _2_clubs FROM table_name_14 WHERE nation = "belarus" AND total < 38.25
43,683
<question>: Which Nationality has a Name of janne happonen? <context>: CREATE TABLE table_name_33 (nationality VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_33 WHERE name = "janne happonen"
43,684
<question>: Which Nationality has a Rank larger than 3, and a Name of tom hilde? <context>: CREATE TABLE table_name_71 (nationality VARCHAR, rank VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_71 WHERE rank > 3 AND name = "tom hilde"
43,685
<question>: Which Name has a Nationality of nor, and Points of 136? <context>: CREATE TABLE table_name_99 (name VARCHAR, nationality VARCHAR, points VARCHAR)
SELECT name FROM table_name_99 WHERE nationality = "nor" AND points = 136
43,686
<question>: What was the average rank of Wolfgang Schwarz with greater than 13 places? <context>: CREATE TABLE table_name_56 (rank INTEGER, name VARCHAR, places VARCHAR)
SELECT AVG(rank) FROM table_name_56 WHERE name = "wolfgang schwarz" AND places > 13
43,687
<question>: What nation had 1399.3 points? <context>: CREATE TABLE table_name_35 (nation VARCHAR, points VARCHAR)
SELECT nation FROM table_name_35 WHERE points = 1399.3
43,688
<question>: What is the lowest round number for the fight that had a time of 1:09? <context>: CREATE TABLE table_name_12 (round INTEGER, time VARCHAR)
SELECT MIN(round) FROM table_name_12 WHERE time = "1:09"
43,689
<question>: How much Overall has a Pick # smaller than 20, and a Round smaller than 6? <context>: CREATE TABLE table_name_13 (overall INTEGER, pick__number VARCHAR, round VARCHAR)
SELECT SUM(overall) FROM table_name_13 WHERE pick__number < 20 AND round < 6
43,690
<question>: Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127? <context>: CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)
SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = "virginia" AND overall > 127
43,691
<question>: How many picks does chad owens have? <context>: CREATE TABLE table_name_47 (pick__number VARCHAR, name VARCHAR)
SELECT COUNT(pick__number) FROM table_name_47 WHERE name = "chad owens"
43,692
<question>: What is the lowest value in April with New York Rangers as opponent for a game less than 82? <context>: CREATE TABLE table_name_90 (april INTEGER, opponent VARCHAR, game VARCHAR)
SELECT MIN(april) FROM table_name_90 WHERE opponent = "new york rangers" AND game < 82
43,693
<question>: What is the highest value in April with a record of 35–37–11 and more than 81 points? <context>: CREATE TABLE table_name_99 (april INTEGER, record VARCHAR, points VARCHAR)
SELECT MAX(april) FROM table_name_99 WHERE record = "35–37–11" AND points > 81
43,694
<question>: What is the name of the winner when the Score was 274 (–14) in tennessee? <context>: CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR)
SELECT winner FROM table_name_40 WHERE score = "274 (–14)" AND location = "tennessee"
43,695
<question>: What is the winners name at the western open? <context>: CREATE TABLE table_name_23 (winner VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_23 WHERE tournament = "western open"
43,696
<question>: What is the score of the Tournament named danny thomas memphis classic? <context>: CREATE TABLE table_name_23 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_23 WHERE tournament = "danny thomas memphis classic"
43,697
<question>: What is the name of the Winner in north carolina at the greater greensboro open? <context>: CREATE TABLE table_name_71 (winner VARCHAR, location VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_71 WHERE location = "north carolina" AND tournament = "greater greensboro open"
43,698
<question>: What is the Location of the byron nelson golf classic? <context>: CREATE TABLE table_name_94 (location VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_94 WHERE tournament = "byron nelson golf classic"
43,699
<question>: What is the position of player Tiffany Garofano (2)? <context>: CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_59 WHERE player = "tiffany garofano (2)"