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