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