text
stringlengths
114
1.06k
### question: What is the lowest number of delegates when John McCain was the candidate with less than 45 candidates? ### answer: SELECT MIN(delegates) FROM table_name_75 WHERE candidate = "john mccain" AND counties < 45 ### context: CREATE TABLE table_name_75 (delegates INTEGER, candidate VARCHAR, counties VARCHAR)
### question: What is the highest Counties when Mitt Romney was the candidate with less than 0 delegates? ### answer: SELECT MAX(counties) FROM table_name_62 WHERE candidate = "mitt romney" AND delegates < 0 ### context: CREATE TABLE table_name_62 (counties INTEGER, candidate VARCHAR, delegates VARCHAR)
### question: What is the number of votes when Ron Paul is the candidate with less than 0 counties? ### answer: SELECT COUNT(votes) FROM table_name_28 WHERE candidate = "ron paul" AND counties < 0 ### context: CREATE TABLE table_name_28 (votes VARCHAR, candidate VARCHAR, counties VARCHAR)
### question: What is the sum of totals associated with a UEFA Cup score of 4? ### answer: SELECT SUM(total) FROM table_name_48 WHERE UEfa_cup = 4 ### context: CREATE TABLE table_name_48 (total INTEGER, UEfa_cup VARCHAR)
### question: What is the sum of totals for FA Cup values of 0? ### answer: SELECT SUM(total) FROM table_name_3 WHERE fa_cup < 0 ### context: CREATE TABLE table_name_3 (total INTEGER, fa_cup INTEGER)
### question: What is the Hometown of Tim Williams? ### answer: SELECT hometown__previous_school_ FROM table_name_72 WHERE name = "tim williams" ### context: CREATE TABLE table_name_72 (hometown__previous_school_ VARCHAR, name VARCHAR)
### question: What player has a rating greater than 2746, with a prev less than 4, and +4 as the chng? ### answer: SELECT player FROM table_name_83 WHERE rating > 2746 AND prev < 4 AND chng = "+4" ### context: CREATE TABLE table_name_83 (player VARCHAR, chng VARCHAR, rating VARCHAR, prev VARCHAR)
### question: What chng has a rank greater than 6, with 12 as a prev? ### answer: SELECT chng FROM table_name_55 WHERE rank > 6 AND prev = 12 ### context: CREATE TABLE table_name_55 (chng VARCHAR, rank VARCHAR, prev VARCHAR)
### question: What is the highest prev that has 9 as the rank, with a rating less than 2746? ### answer: SELECT MAX(prev) FROM table_name_4 WHERE rank = 9 AND rating < 2746 ### context: CREATE TABLE table_name_4 (prev INTEGER, rank VARCHAR, rating VARCHAR)
### question: How many blocks have a weight greater than 82, and a height less than 199? ### answer: SELECT SUM(block) FROM table_name_16 WHERE weight > 82 AND height < 199 ### context: CREATE TABLE table_name_16 (block INTEGER, weight VARCHAR, height VARCHAR)
### question: What is the lowest block that has 328 as the spike, and a height less than 186? ### answer: SELECT MIN(block) FROM table_name_20 WHERE spike = 328 AND height < 186 ### context: CREATE TABLE table_name_20 (block INTEGER, spike VARCHAR, height VARCHAR)
### question: What is the lowest block that has a height less than 202, 19.06.1980 as the date of birth, and a weight greater than 76? ### answer: SELECT MIN(block) FROM table_name_5 WHERE height < 202 AND date_of_birth = "19.06.1980" AND weight > 76 ### context: CREATE TABLE table_name_5 (block INTEGER, weight VARCHAR...
### question: What is the highest block that has 15.09.1981 as the date, and a height greater than 202? ### answer: SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = "15.09.1981" AND height > 202 ### context: CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR)
### question: Which City has a Stadium of estadio san cristóbal? ### answer: SELECT city FROM table_name_96 WHERE stadium = "estadio san cristóbal" ### context: CREATE TABLE table_name_96 (city VARCHAR, stadium VARCHAR)
### question: When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal? ### answer: SELECT 2009 AS _season FROM table_name_17 WHERE group = "group b" AND stadium = "cancha del mystic" AND club = "el tecal" ### context: CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VAR...
### question: WHich Club has a City of colón? ### answer: SELECT club FROM table_name_93 WHERE city = "colón" ### context: CREATE TABLE table_name_93 (club VARCHAR, city VARCHAR)
### question: WHat kind of 2009 season has a City of panama city, and a Group of group b? ### answer: SELECT 2009 AS _season FROM table_name_21 WHERE city = "panama city" AND group = "group b" ### context: CREATE TABLE table_name_21 (city VARCHAR, group VARCHAR)
### question: Which City has a Club of suntracs f.c.? ### answer: SELECT city FROM table_name_38 WHERE club = "suntracs f.c." ### context: CREATE TABLE table_name_38 (city VARCHAR, club VARCHAR)
### question: What is the highest Matches, when Prize Money is £5,000? ### answer: SELECT MAX(matches) FROM table_name_5 WHERE prize_money = "£5,000" ### context: CREATE TABLE table_name_5 (matches INTEGER, prize_money VARCHAR)
### question: What is Date, when Matches is less than 32, and when Round is Fifth Round Proper? ### answer: SELECT date FROM table_name_55 WHERE matches < 32 AND round = "fifth round proper" ### context: CREATE TABLE table_name_55 (date VARCHAR, matches VARCHAR, round VARCHAR)
### question: What is the average Matches, when Round is Third Qualifying Round? ### answer: SELECT AVG(matches) FROM table_name_81 WHERE round = "third qualifying round" ### context: CREATE TABLE table_name_81 (matches INTEGER, round VARCHAR)
### question: What is the total number of Matches, when Clubs is 588 → 406? ### answer: SELECT COUNT(matches) FROM table_name_16 WHERE clubs = "588 → 406" ### context: CREATE TABLE table_name_16 (matches VARCHAR, clubs VARCHAR)
### question: What is Prize Money, when Matches is less than 73, and when Round is Third Round Proper? ### answer: SELECT prize_money FROM table_name_79 WHERE matches < 73 AND round = "third round proper" ### context: CREATE TABLE table_name_79 (prize_money VARCHAR, matches VARCHAR, round VARCHAR)
### question: For the tournament played on a hard surface and ending with a score of Walkover, who was the Finals opponent? ### answer: SELECT opponent_in_the_final FROM table_name_69 WHERE surface = "hard" AND score = "walkover" ### context: CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, s...
### question: For the tournament played on September 25, 1995, who was the Finals opponent? ### answer: SELECT opponent_in_the_final FROM table_name_15 WHERE date = "september 25, 1995" ### context: CREATE TABLE table_name_15 (opponent_in_the_final VARCHAR, date VARCHAR)
### question: Which tournament was played on September 25, 1995? ### answer: SELECT tournament FROM table_name_46 WHERE date = "september 25, 1995" ### context: CREATE TABLE table_name_46 (tournament VARCHAR, date VARCHAR)
### question: What was the time for the bout against Amanda Lavoy, which went under 3 rounds? ### answer: SELECT time FROM table_name_71 WHERE round < 3 AND opponent = "amanda lavoy" ### context: CREATE TABLE table_name_71 (time VARCHAR, round VARCHAR, opponent VARCHAR)
### question: What is Notes, when App(L/C/E) is 13 (7/2/4)? ### answer: SELECT notes FROM table_name_89 WHERE app_l_c_e_ = "13 (7/2/4)" ### context: CREATE TABLE table_name_89 (notes VARCHAR, app_l_c_e_ VARCHAR)
### question: What is Nat., when Ends is greater than 2010, when Since is 2006, and when Name is Paligeorgos? ### answer: SELECT nat FROM table_name_92 WHERE ends > 2010 AND since = 2006 AND name = "paligeorgos" ### context: CREATE TABLE table_name_92 (nat VARCHAR, name VARCHAR, ends VARCHAR, since VARCHAR)
### question: What is the lowest Since, when Notes is To Anagennisi Karditsa, and when App(L/C/E) is 0 (0/0/0)? ### answer: SELECT MIN(since) FROM table_name_88 WHERE notes = "to anagennisi karditsa" AND app_l_c_e_ = "0 (0/0/0)" ### context: CREATE TABLE table_name_88 (since INTEGER, notes VARCHAR, app_l_c_e_ VARCHAR)
### question: What is the Time/Retired of the Newman-Haas Racing team in under 51 laps? ### answer: SELECT time_retired FROM table_name_28 WHERE laps < 51 AND team = "newman-haas racing" ### context: CREATE TABLE table_name_28 (time_retired VARCHAR, laps VARCHAR, team VARCHAR)
### question: What are the lowest laps Alex Tagliani did for the Forsythe Racing team? ### answer: SELECT MIN(laps) FROM table_name_79 WHERE team = "forsythe racing" AND driver = "alex tagliani" ### context: CREATE TABLE table_name_79 (laps INTEGER, team VARCHAR, driver VARCHAR)
### question: What is the 2010–11 when the Event is colonial square ladies classic? ### answer: SELECT 2010 AS _11 FROM table_name_75 WHERE event = "colonial square ladies classic" ### context: CREATE TABLE table_name_75 (event VARCHAR)
### question: What is the 2007–08 when the event was autumn gold? ### answer: SELECT 2007 AS _08 FROM table_name_32 WHERE event = "autumn gold" ### context: CREATE TABLE table_name_32 (event VARCHAR)
### question: Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9? ### answer: SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9 ### context: CREATE TABLE table_name_9 (cul...
### question: Which Administrative Panel has a Nominated by the Taoiseach smaller than 0? ### answer: SELECT MIN(administrative_panel) FROM table_name_52 WHERE nominated_by_the_taoiseach < 0 ### context: CREATE TABLE table_name_52 (administrative_panel INTEGER, nominated_by_the_taoiseach INTEGER)
### question: Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3? ### answer: SELECT AVG(labour_panel) FROM table_name_46 WHERE industrial_and_commercial_panel = 9 AND university_of_dublin < 3 ### context: CREATE TABLE table_name_46 (labour_panel INTEGER, industria...
### question: Which Total has a Labour Panel smaller than 5, an Administrative Panel smaller than 1, and a National University of Ireland smaller than 2? ### answer: SELECT COUNT(total) FROM table_name_55 WHERE labour_panel < 5 AND administrative_panel < 1 AND national_university_of_ireland < 2 ### context: CREATE TABL...
### question: Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60? ### answer: SELECT SUM(agricultural_panel) FROM table_name_26 WHERE nominated_by_the_taoiseach > 6 AND total > 60 ### context: CREATE TABLE table_name_26 (agricultural_panel INTEGER, nominated_by_the_taois...
### question: What is Team 1 when Team 2 is Jac Port-Gentil? ### answer: SELECT team_1 FROM table_name_77 WHERE team_2 = "jac port-gentil" ### context: CREATE TABLE table_name_77 (team_1 VARCHAR, team_2 VARCHAR)
### question: What is Winning Score, when Tournament is Joburg Open 1, and when Date is 17 Jan 2010? ### answer: SELECT winning_score FROM table_name_22 WHERE tournament = "joburg open 1" AND date = "17 jan 2010" ### context: CREATE TABLE table_name_22 (winning_score VARCHAR, tournament VARCHAR, date VARCHAR)
### question: What is Date, when Tournament is Alfred Dunhill Championship 1? ### answer: SELECT date FROM table_name_87 WHERE tournament = "alfred dunhill championship 1" ### context: CREATE TABLE table_name_87 (date VARCHAR, tournament VARCHAR)
### question: What is Tournament, when Margin is Victory of 6 Strokes? ### answer: SELECT tournament FROM table_name_30 WHERE margin_of_victory = "6 strokes" ### context: CREATE TABLE table_name_30 (tournament VARCHAR, margin_of_victory VARCHAR)
### question: What is Winning Score, when Date is 17 Jan 2010? ### answer: SELECT winning_score FROM table_name_45 WHERE date = "17 jan 2010" ### context: CREATE TABLE table_name_45 (winning_score VARCHAR, date VARCHAR)
### question: What is Tournament, when Runner(s)-Up is Garth Mulroy? ### answer: SELECT tournament FROM table_name_70 WHERE runner_s__up = "garth mulroy" ### context: CREATE TABLE table_name_70 (tournament VARCHAR, runner_s__up VARCHAR)
### question: What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1? ### answer: SELECT runner_s__up FROM table_name_51 WHERE margin_of_victory = "1 stroke" AND tournament = "joburg open 1" ### context: CREATE TABLE table_name_51 (runner_s__up VARCHAR, margin_of_victory VARCHAR,...
### question: What is the points sum of the series with less than 0 poles? ### answer: SELECT SUM(points) FROM table_name_28 WHERE poles < 0 ### context: CREATE TABLE table_name_28 (points INTEGER, poles INTEGER)
### question: What is the sum of the races in the 2007 season, which has more than 4 podiums? ### answer: SELECT SUM(races) FROM table_name_40 WHERE podiums > 4 AND season = "2007" ### context: CREATE TABLE table_name_40 (races INTEGER, podiums VARCHAR, season VARCHAR)
### question: What is the sum of the poles of Team la filière, which has less than 162 points? ### answer: SELECT SUM(poles) FROM table_name_13 WHERE team = "la filière" AND points < 162 ### context: CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR)
### question: What is the average number of points in the 2012 season, which has less than 1 wins and less than 0 podiums? ### answer: SELECT AVG(points) FROM table_name_11 WHERE wins < 1 AND season = "2012" AND podiums < 0 ### context: CREATE TABLE table_name_11 (points INTEGER, podiums VARCHAR, wins VARCHAR, season V...
### question: How many poles had a moto2 class? ### answer: SELECT pole FROM table_name_75 WHERE class = "moto2" ### context: CREATE TABLE table_name_75 (pole VARCHAR, class VARCHAR)
### question: What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3? ### answer: SELECT SUM(cultural_and_educational_panel) FROM table_name_3 WHERE administrative_panel > 1 AND agricultural_panel = 1...
### question: What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0? ### answer: SELECT SUM(agricultural_panel) FROM table_name_46 WHERE industrial_and_commercial_panel < 0 ### context: CREATE TABLE table_name_46 (agricultural_panel INTEGER, industrial_and_commercial_panel I...
### question: What is the lowest number of National University of Ireland that has a Cultural and Educational Panel of 0, and a Labour Panel smaller than 1? ### answer: SELECT MIN(national_university_of_ireland) FROM table_name_49 WHERE cultural_and_educational_panel = 0 AND labour_panel < 1 ### context: CREATE TABLE t...
### question: What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0 ### answer: SELECT COUNT(industrial_and_commercial_panel) FROM table_name_45 WHERE labour_panel > 1 AND nominated_by...
### question: What was the highest number of goals when 2428 minutes were played? ### answer: SELECT MAX(goals) FROM table_name_91 WHERE minutes = 2428 ### context: CREATE TABLE table_name_91 (goals INTEGER, minutes VARCHAR)
### question: What is the number of minutes when there are more than 4 goals and 3 assists? ### answer: SELECT minutes FROM table_name_8 WHERE goals > 4 AND assists = 3 ### context: CREATE TABLE table_name_8 (minutes VARCHAR, goals VARCHAR, assists VARCHAR)
### question: What is the total number of assists when Edmundo Rodriguez is playing the position of striker, less than 4 goals were scored, and the minutes were less than 473? ### answer: SELECT COUNT(assists) FROM table_name_21 WHERE position = "striker" AND goals < 4 AND player = "edmundo rodriguez" AND minutes < 473...
### question: What is the least ERP W when the freguency MHz is 89.3 fm? ### answer: SELECT MIN(erp_w) FROM table_name_27 WHERE frequency_mhz = "89.3 fm" ### context: CREATE TABLE table_name_27 (erp_w INTEGER, frequency_mhz VARCHAR)
### question: Call sign k216fo has what average ERP W? ### answer: SELECT AVG(erp_w) FROM table_name_76 WHERE call_sign = "k216fo" ### context: CREATE TABLE table_name_76 (erp_w INTEGER, call_sign VARCHAR)
### question: What city does call sign K248am have its license in? ### answer: SELECT city_of_license FROM table_name_54 WHERE call_sign = "k248am" ### context: CREATE TABLE table_name_54 (city_of_license VARCHAR, call_sign VARCHAR)
### question: What call sign has ERP W greater than 197? ### answer: SELECT call_sign FROM table_name_13 WHERE erp_w > 197 ### context: CREATE TABLE table_name_13 (call_sign VARCHAR, erp_w INTEGER)
### question: How many points did Costa score in the Macau Grand Prix since 2011? ### answer: SELECT points FROM table_name_23 WHERE season > 2011 AND series = "macau grand prix" ### context: CREATE TABLE table_name_23 (points VARCHAR, season VARCHAR, series VARCHAR)
### question: Which teams had the 1st position and entered 1 race? ### answer: SELECT team FROM table_name_42 WHERE races = "1" AND position = "1st" ### context: CREATE TABLE table_name_42 (team VARCHAR, races VARCHAR, position VARCHAR)
### question: How many points did Carlin have when they had 3 wins? ### answer: SELECT points FROM table_name_90 WHERE wins = "3" AND team = "carlin" ### context: CREATE TABLE table_name_90 (points VARCHAR, wins VARCHAR, team VARCHAR)
### question: How many Points have an Against smaller than 43, and a Position smaller than 1? ### answer: SELECT SUM(points) FROM table_name_49 WHERE against < 43 AND position < 1 ### context: CREATE TABLE table_name_49 (points INTEGER, against VARCHAR, position VARCHAR)
### question: How many Drawn have a Position of 7, and Points larger than 18? ### answer: SELECT COUNT(drawn) FROM table_name_70 WHERE position = 7 AND points > 18 ### context: CREATE TABLE table_name_70 (drawn VARCHAR, position VARCHAR, points VARCHAR)
### question: How many Against have a Team of hespanha, and Points smaller than 30? ### answer: SELECT COUNT(against) FROM table_name_33 WHERE team = "hespanha" AND points < 30 ### context: CREATE TABLE table_name_33 (against VARCHAR, team VARCHAR, points VARCHAR)
### question: Which Points is the average one that has Drawn of 3, and a Played smaller than 22? ### answer: SELECT AVG(points) FROM table_name_74 WHERE drawn = 3 AND played < 22 ### context: CREATE TABLE table_name_74 (points INTEGER, drawn VARCHAR, played VARCHAR)
### question: How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11? ### answer: SELECT SUM(played) FROM table_name_63 WHERE against > 37 AND lost = 15 AND points < 11 ### context: CREATE TABLE table_name_63 (played INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR)
### question: Which artist has the Spoofed title Miscue 911? ### answer: SELECT artist FROM table_name_94 WHERE spoofed_title = "miscue 911" ### context: CREATE TABLE table_name_94 (artist VARCHAR, spoofed_title VARCHAR)
### question: Which Spoofed title is from February 1998? ### answer: SELECT spoofed_title FROM table_name_47 WHERE date = "february 1998" ### context: CREATE TABLE table_name_47 (spoofed_title VARCHAR, date VARCHAR)
### question: Which artist has a Spoofed title in June 1992? ### answer: SELECT artist FROM table_name_32 WHERE date = "june 1992" ### context: CREATE TABLE table_name_32 (artist VARCHAR, date VARCHAR)
### question: What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11? ### answer: SELECT AVG(laps) FROM table_name_92 WHERE manufacturer = "ktm" AND time_retired = "+56.440" AND grid < 11 ### context: CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, manufactur...
### question: What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660? ### answer: SELECT MAX(grid) FROM table_name_22 WHERE manufacturer = "aprilia" AND time_retired = "+1.660" ### context: CREATE TABLE table_name_22 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR)
### question: What Round against Aleksander Emelianenko had a time of 5:00? ### answer: SELECT round FROM table_name_98 WHERE time = "5:00" AND opponent = "aleksander emelianenko" ### context: CREATE TABLE table_name_98 (round VARCHAR, time VARCHAR, opponent VARCHAR)
### question: In 1958, what has the IRFU All-Stars Home Venue? ### answer: SELECT venue FROM table_name_18 WHERE home = "irfu all-stars" AND season = 1958 ### context: CREATE TABLE table_name_18 (venue VARCHAR, home VARCHAR, season VARCHAR)
### question: On what Date was the Venue at Exhibition Stadium? ### answer: SELECT date FROM table_name_73 WHERE venue = "exhibition stadium" ### context: CREATE TABLE table_name_73 (date VARCHAR, venue VARCHAR)
### question: Before 1957, what was the largest in Attendance at Varsity Stadium? ### answer: SELECT MAX(attendance) FROM table_name_82 WHERE season < 1957 AND venue = "varsity stadium" ### context: CREATE TABLE table_name_82 (attendance INTEGER, season VARCHAR, venue VARCHAR)
### question: What is the Time with a Score that is 65-19? ### answer: SELECT time FROM table_name_81 WHERE score = "65-19" ### context: CREATE TABLE table_name_81 (time VARCHAR, score VARCHAR)
### question: What is the Time with an Away that is broadview hawks? ### answer: SELECT time FROM table_name_91 WHERE away = "broadview hawks" ### context: CREATE TABLE table_name_91 (time VARCHAR, away VARCHAR)
### question: Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4? ### answer: SELECT SUM(position) FROM table_name_97 WHERE against = 32 AND difference = "18" AND drawn > 4 ### context: CREATE TABLE table_name_97 (position INTEGER, drawn VARCHAR, against VARCHAR, difference VARCHAR)
### question: Which Position has an Against smaller than 49, and a Drawn of 4? ### answer: SELECT MAX(position) FROM table_name_16 WHERE against < 49 AND drawn = 4 ### context: CREATE TABLE table_name_16 (position INTEGER, against VARCHAR, drawn VARCHAR)
### question: Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6? ### answer: SELECT MAX(played) FROM table_name_95 WHERE drawn = 5 AND team = "palmeiras" AND position < 6 ### context: CREATE TABLE table_name_95 (played INTEGER, position VARCHAR, drawn VARCHAR, team VARCHAR)
### question: What team played on November 17? ### answer: SELECT team FROM table_name_17 WHERE date = "november 17" ### context: CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)
### question: What is the comp when the ryds is 2? ### answer: SELECT comp FROM table_name_83 WHERE ryds = "2" ### context: CREATE TABLE table_name_83 (comp VARCHAR, ryds VARCHAR)
### question: What is the RAtt when the comp is 48? ### answer: SELECT ratt FROM table_name_49 WHERE comp = "48" ### context: CREATE TABLE table_name_49 (ratt VARCHAR, comp VARCHAR)
### question: What is the RAtt when the long is 73? ### answer: SELECT ratt FROM table_name_83 WHERE long = "73" ### context: CREATE TABLE table_name_83 (ratt VARCHAR, long VARCHAR)
### question: What is the RYds when the RAtt was 2, and the comp is 41? ### answer: SELECT ryds FROM table_name_35 WHERE ratt = "2" AND comp = "41" ### context: CREATE TABLE table_name_35 (ryds VARCHAR, ratt VARCHAR, comp VARCHAR)
### question: What is the Long when the ryds is 18? ### answer: SELECT long FROM table_name_14 WHERE ryds = "18" ### context: CREATE TABLE table_name_14 (long VARCHAR, ryds VARCHAR)
### question: What is the RAvg when the ratt is 3? ### answer: SELECT ravg FROM table_name_93 WHERE ratt = "3" ### context: CREATE TABLE table_name_93 (ravg VARCHAR, ratt VARCHAR)
### question: Who was the Runner-up for the merrill lynch/golf digest commemorative pro-am tournament? ### answer: SELECT runner_s__up FROM table_name_21 WHERE tournament = "merrill lynch/golf digest commemorative pro-am" ### context: CREATE TABLE table_name_21 (runner_s__up VARCHAR, tournament VARCHAR)
### question: What was the margin of victory when the winning score was –14 (70-68-67=205)? ### answer: SELECT margin_of_victory FROM table_name_59 WHERE winning_score = –14(70 - 68 - 67 = 205) ### context: CREATE TABLE table_name_59 (margin_of_victory VARCHAR, winning_score VARCHAR)
### question: Who were the runner(s)-up when the winning score was –10 (69-68-74-67=278)? ### answer: SELECT margin_of_victory FROM table_name_71 WHERE winning_score = –10(69 - 68 - 74 - 67 = 278) ### context: CREATE TABLE table_name_71 (margin_of_victory VARCHAR, winning_score VARCHAR)
### question: Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes? ### answer: SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = "2 strokes" AND tournament = "mazda senior tournament players championship" ### context: CREATE TABLE...
### question: When was the last title of the team with a home ground of Sydney cricket ground? ### answer: SELECT last_title FROM table_name_9 WHERE home_ground_[a_] = "sydney cricket ground" ### context: CREATE TABLE table_name_9 (last_title VARCHAR, home_ground_ VARCHAR, a_ VARCHAR)
### question: How many people were in attendance for the game week 15? ### answer: SELECT COUNT(attendance) FROM table_name_9 WHERE week = 15 ### context: CREATE TABLE table_name_9 (attendance VARCHAR, week VARCHAR)
### question: What is the highest number of people in attendance in the game against the Buffalo Bills in a week later than 14? ### answer: SELECT MAX(attendance) FROM table_name_92 WHERE opponent = "buffalo bills" AND week > 14 ### context: CREATE TABLE table_name_92 (attendance INTEGER, opponent VARCHAR, week VARCHAR...
### question: What is the average Attendance for the game on November 1, 1981? ### answer: SELECT AVG(attendance) FROM table_name_5 WHERE date = "november 1, 1981" ### context: CREATE TABLE table_name_5 (attendance INTEGER, date VARCHAR)
### question: What position is played by the player from the Chicago Cubs? ### answer: SELECT position FROM table_name_8 WHERE team = "chicago cubs" ### context: CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR)