question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the highest number of starts in 2007 when the average start was over 17.6? | CREATE TABLE table_name_49 (starts INTEGER, year VARCHAR, avg_start VARCHAR) | SELECT MAX(starts) FROM table_name_49 WHERE year = 2007 AND avg_start > 17.6 | ### Context: CREATE TABLE table_name_49 (starts INTEGER, year VARCHAR, avg_start VARCHAR) ### Question: What was the highest number of starts in 2007 when the average start was over 17.6? ### Answer: SELECT MAX(starts) FROM table_name_49 WHERE year = 2007 AND avg_start > 17.6 |
What is the number of wins when the number of third was 1, points were less than 572 and had less than 16 races? | CREATE TABLE table_name_92 (wins VARCHAR, races VARCHAR, third VARCHAR, points VARCHAR) | SELECT wins FROM table_name_92 WHERE third = "1" AND points < 572 AND races < 16 | ### Context: CREATE TABLE table_name_92 (wins VARCHAR, races VARCHAR, third VARCHAR, points VARCHAR) ### Question: What is the number of wins when the number of third was 1, points were less than 572 and had less than 16 races? ### Answer: SELECT wins FROM table_name_92 WHERE third = "1" AND points < 572 AND races < 16 |
What was the result for the friendly match competition? | CREATE TABLE table_name_49 (res VARCHAR, competition VARCHAR) | SELECT res FROM table_name_49 WHERE competition = "friendly match" | ### Context: CREATE TABLE table_name_49 (res VARCHAR, competition VARCHAR) ### Question: What was the result for the friendly match competition? ### Answer: SELECT res FROM table_name_49 WHERE competition = "friendly match" |
What was the team #1 for the match that had a result of 0-3? | CREATE TABLE table_name_17 (team__number1 VARCHAR, res VARCHAR) | SELECT team__number1 FROM table_name_17 WHERE res = "0-3" | ### Context: CREATE TABLE table_name_17 (team__number1 VARCHAR, res VARCHAR) ### Question: What was the team #1 for the match that had a result of 0-3? ### Answer: SELECT team__number1 FROM table_name_17 WHERE res = "0-3" |
what is the 2010 population density for municipio ponce? | CREATE TABLE table_name_83 (municipio VARCHAR) | SELECT 2010 AS _population_density FROM table_name_83 WHERE municipio = "ponce" | ### Context: CREATE TABLE table_name_83 (municipio VARCHAR) ### Question: what is the 2010 population density for municipio ponce? ### Answer: SELECT 2010 AS _population_density FROM table_name_83 WHERE municipio = "ponce" |
What's the category for the tween academy: class of 2012 nomination? | CREATE TABLE table_name_86 (category VARCHAR, nominated_for VARCHAR) | SELECT category FROM table_name_86 WHERE nominated_for = "tween academy: class of 2012" | ### Context: CREATE TABLE table_name_86 (category VARCHAR, nominated_for VARCHAR) ### Question: What's the category for the tween academy: class of 2012 nomination? ### Answer: SELECT category FROM table_name_86 WHERE nominated_for = "tween academy: class of 2012" |
How many years was famas awards the award giving body? | CREATE TABLE table_name_47 (year VARCHAR, award_giving_body VARCHAR) | SELECT COUNT(year) FROM table_name_47 WHERE award_giving_body = "famas awards" | ### Context: CREATE TABLE table_name_47 (year VARCHAR, award_giving_body VARCHAR) ### Question: How many years was famas awards the award giving body? ### Answer: SELECT COUNT(year) FROM table_name_47 WHERE award_giving_body = "famas awards" |
What's the result for the category of best actor in a supporting role? | CREATE TABLE table_name_34 (result VARCHAR, category VARCHAR) | SELECT result FROM table_name_34 WHERE category = "best actor in a supporting role" | ### Context: CREATE TABLE table_name_34 (result VARCHAR, category VARCHAR) ### Question: What's the result for the category of best actor in a supporting role? ### Answer: SELECT result FROM table_name_34 WHERE category = "best actor in a supporting role" |
Which Record has a Date of december 17? | CREATE TABLE table_name_99 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_99 WHERE date = "december 17" | ### Context: CREATE TABLE table_name_99 (record VARCHAR, date VARCHAR) ### Question: Which Record has a Date of december 17? ### Answer: SELECT record FROM table_name_99 WHERE date = "december 17" |
Which Streak has a Team of new york knicks? | CREATE TABLE table_name_38 (streak VARCHAR, team VARCHAR) | SELECT streak FROM table_name_38 WHERE team = "new york knicks" | ### Context: CREATE TABLE table_name_38 (streak VARCHAR, team VARCHAR) ### Question: Which Streak has a Team of new york knicks? ### Answer: SELECT streak FROM table_name_38 WHERE team = "new york knicks" |
Which Date has a Record of 21–10? | CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_43 WHERE record = "21–10" | ### Context: CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 21–10? ### Answer: SELECT date FROM table_name_43 WHERE record = "21–10" |
Which Team has a Record of 17–8? | CREATE TABLE table_name_74 (team VARCHAR, record VARCHAR) | SELECT team FROM table_name_74 WHERE record = "17–8" | ### Context: CREATE TABLE table_name_74 (team VARCHAR, record VARCHAR) ### Question: Which Team has a Record of 17–8? ### Answer: SELECT team FROM table_name_74 WHERE record = "17–8" |
Which Date has a Score of 102–113? | CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_63 WHERE score = "102–113" | ### Context: CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR) ### Question: Which Date has a Score of 102–113? ### Answer: SELECT date FROM table_name_63 WHERE score = "102–113" |
Which Game has a Streak of loss 1, and a Score of 110–111? | CREATE TABLE table_name_80 (game VARCHAR, streak VARCHAR, score VARCHAR) | SELECT game FROM table_name_80 WHERE streak = "loss 1" AND score = "110–111" | ### Context: CREATE TABLE table_name_80 (game VARCHAR, streak VARCHAR, score VARCHAR) ### Question: Which Game has a Streak of loss 1, and a Score of 110–111? ### Answer: SELECT game FROM table_name_80 WHERE streak = "loss 1" AND score = "110–111" |
What is the name of the player who is Sco and moving to greenock morton in the summer? | CREATE TABLE table_name_83 (name VARCHAR, moving_to VARCHAR, nat VARCHAR, transfer_window VARCHAR) | SELECT name FROM table_name_83 WHERE nat = "sco" AND transfer_window = "summer" AND moving_to = "greenock morton" | ### Context: CREATE TABLE table_name_83 (name VARCHAR, moving_to VARCHAR, nat VARCHAR, transfer_window VARCHAR) ### Question: What is the name of the player who is Sco and moving to greenock morton in the summer? ### Answer: SELECT name FROM table_name_83 WHERE nat = "sco" AND transfer_window = "summer" AND moving_to = "greenock morton" |
Where is rory loy moving to? | CREATE TABLE table_name_17 (moving_to VARCHAR, name VARCHAR) | SELECT moving_to FROM table_name_17 WHERE name = "rory loy" | ### Context: CREATE TABLE table_name_17 (moving_to VARCHAR, name VARCHAR) ### Question: Where is rory loy moving to? ### Answer: SELECT moving_to FROM table_name_17 WHERE name = "rory loy" |
What is the transfer fee for rory loy? | CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR) | SELECT transfer_fee FROM table_name_23 WHERE name = "rory loy" | ### Context: CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR) ### Question: What is the transfer fee for rory loy? ### Answer: SELECT transfer_fee FROM table_name_23 WHERE name = "rory loy" |
What is the date of the game with toronto as the visitor? | CREATE TABLE table_name_89 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_89 WHERE visitor = "toronto" | ### Context: CREATE TABLE table_name_89 (date VARCHAR, visitor VARCHAR) ### Question: What is the date of the game with toronto as the visitor? ### Answer: SELECT date FROM table_name_89 WHERE visitor = "toronto" |
What is the date of the game with less than 35 points and chicago as the home team? | CREATE TABLE table_name_99 (date VARCHAR, points VARCHAR, home VARCHAR) | SELECT date FROM table_name_99 WHERE points < 35 AND home = "chicago" | ### Context: CREATE TABLE table_name_99 (date VARCHAR, points VARCHAR, home VARCHAR) ### Question: What is the date of the game with less than 35 points and chicago as the home team? ### Answer: SELECT date FROM table_name_99 WHERE points < 35 AND home = "chicago" |
What is the date of the game with pittsburgh as the home team and boston as the visitor team? | CREATE TABLE table_name_32 (date VARCHAR, home VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_32 WHERE home = "pittsburgh" AND visitor = "boston" | ### Context: CREATE TABLE table_name_32 (date VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: What is the date of the game with pittsburgh as the home team and boston as the visitor team? ### Answer: SELECT date FROM table_name_32 WHERE home = "pittsburgh" AND visitor = "boston" |
What is the record of the game with 35 points and pittsburgh as the home team? | CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR) | SELECT record FROM table_name_77 WHERE home = "pittsburgh" AND points = 35 | ### Context: CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR) ### Question: What is the record of the game with 35 points and pittsburgh as the home team? ### Answer: SELECT record FROM table_name_77 WHERE home = "pittsburgh" AND points = 35 |
What place did bobby wadkins come in? | CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_13 WHERE player = "bobby wadkins" | ### Context: CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR) ### Question: What place did bobby wadkins come in? ### Answer: SELECT place FROM table_name_13 WHERE player = "bobby wadkins" |
What is the lowest Lane, when Mark is 7.66? | CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR) | SELECT MIN(lane) FROM table_name_21 WHERE mark = "7.66" | ### Context: CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR) ### Question: What is the lowest Lane, when Mark is 7.66? ### Answer: SELECT MIN(lane) FROM table_name_21 WHERE mark = "7.66" |
What is Mark, when React is less than 0.148? | CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER) | SELECT mark FROM table_name_59 WHERE react < 0.148 | ### Context: CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER) ### Question: What is Mark, when React is less than 0.148? ### Answer: SELECT mark FROM table_name_59 WHERE react < 0.148 |
What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández? | CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR) | SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = "yoel hernández" | ### Context: CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR) ### Question: What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández? ### Answer: SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = "yoel hernández" |
What is Mark, when Lane is less than 5, and when React is 0.217? | CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR) | SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217 | ### Context: CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR) ### Question: What is Mark, when Lane is less than 5, and when React is 0.217? ### Answer: SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217 |
What was the record following game 67? | CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_37 WHERE game = 67 | ### Context: CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR) ### Question: What was the record following game 67? ### Answer: SELECT record FROM table_name_37 WHERE game = 67 |
What day in February had an opponent of @ Colorado Rockies? | CREATE TABLE table_name_57 (february INTEGER, opponent VARCHAR) | SELECT SUM(february) FROM table_name_57 WHERE opponent = "@ colorado rockies" | ### Context: CREATE TABLE table_name_57 (february INTEGER, opponent VARCHAR) ### Question: What day in February had an opponent of @ Colorado Rockies? ### Answer: SELECT SUM(february) FROM table_name_57 WHERE opponent = "@ colorado rockies" |
What was the score of the game with a record of 18-22-13? | CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_18 WHERE record = "18-22-13" | ### Context: CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game with a record of 18-22-13? ### Answer: SELECT score FROM table_name_18 WHERE record = "18-22-13" |
Which Opponent in the final has a Score of 6–3, 3–6, 6–8? | CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score VARCHAR) | SELECT opponent_in_the_final FROM table_name_29 WHERE score = "6–3, 3–6, 6–8" | ### Context: CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score VARCHAR) ### Question: Which Opponent in the final has a Score of 6–3, 3–6, 6–8? ### Answer: SELECT opponent_in_the_final FROM table_name_29 WHERE score = "6–3, 3–6, 6–8" |
Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso? | CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_56 WHERE surface = "carpet" AND date < 1995 AND opponent_in_the_final = "ken flach robert seguso" | ### Context: CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso? ### Answer: SELECT tournament FROM table_name_56 WHERE surface = "carpet" AND date < 1995 AND opponent_in_the_final = "ken flach robert seguso" |
What time in office does the U.S. Navy have? | CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR) | SELECT time_in_office FROM table_name_59 WHERE branch = "u.s. navy" | ### Context: CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR) ### Question: What time in office does the U.S. Navy have? ### Answer: SELECT time_in_office FROM table_name_59 WHERE branch = "u.s. navy" |
When did the term end for the U.S. Marine Corps? | CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR) | SELECT term_ended FROM table_name_5 WHERE branch = "u.s. marine corps" | ### Context: CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR) ### Question: When did the term end for the U.S. Marine Corps? ### Answer: SELECT term_ended FROM table_name_5 WHERE branch = "u.s. marine corps" |
What is the 2006 figure for Argentina when 2007 is less than 0,15? | CREATE TABLE table_name_47 (country VARCHAR) | SELECT COUNT(2006) FROM table_name_47 WHERE country = "argentina" AND 2007 < 0 OFFSET 15 | ### Context: CREATE TABLE table_name_47 (country VARCHAR) ### Question: What is the 2006 figure for Argentina when 2007 is less than 0,15? ### Answer: SELECT COUNT(2006) FROM table_name_47 WHERE country = "argentina" AND 2007 < 0 OFFSET 15 |
What is the 2009 average when the 2007 average is more than 0,18? | CREATE TABLE table_name_4 (Id VARCHAR) | SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18 | ### Context: CREATE TABLE table_name_4 (Id VARCHAR) ### Question: What is the 2009 average when the 2007 average is more than 0,18? ### Answer: SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18 |
How many gains were there for the player who had a loss greater than 57 and a long less than 55? | CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR) | SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55 | ### Context: CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR) ### Question: How many gains were there for the player who had a loss greater than 57 and a long less than 55? ### Answer: SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55 |
What is the lowest Loss for the player named total that has a long greater than 55? | CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR) | SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55 | ### Context: CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR) ### Question: What is the lowest Loss for the player named total that has a long greater than 55? ### Answer: SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55 |
What nationality is Kentucky and the player Tayshaun Prince? | CREATE TABLE table_name_58 (nationality VARCHAR, school_club_team VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_58 WHERE school_club_team = "kentucky" AND player = "tayshaun prince" | ### Context: CREATE TABLE table_name_58 (nationality VARCHAR, school_club_team VARCHAR, player VARCHAR) ### Question: What nationality is Kentucky and the player Tayshaun Prince? ### Answer: SELECT nationality FROM table_name_58 WHERE school_club_team = "kentucky" AND player = "tayshaun prince" |
What is the nationality of Duke? | CREATE TABLE table_name_95 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_name_95 WHERE school_club_team = "duke" | ### Context: CREATE TABLE table_name_95 (nationality VARCHAR, school_club_team VARCHAR) ### Question: What is the nationality of Duke? ### Answer: SELECT nationality FROM table_name_95 WHERE school_club_team = "duke" |
What was the nationality of a point guard position in 1999-2001? | CREATE TABLE table_name_89 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR) | SELECT nationality FROM table_name_89 WHERE position = "point guard" AND years_for_grizzlies = "1999-2001" | ### Context: CREATE TABLE table_name_89 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR) ### Question: What was the nationality of a point guard position in 1999-2001? ### Answer: SELECT nationality FROM table_name_89 WHERE position = "point guard" AND years_for_grizzlies = "1999-2001" |
What is the position of Tayshaun Prince? | CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_69 WHERE player = "tayshaun prince" | ### Context: CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR) ### Question: What is the position of Tayshaun Prince? ### Answer: SELECT position FROM table_name_69 WHERE player = "tayshaun prince" |
Who was the parent on the order of 6? | CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR) | SELECT parent FROM table_name_96 WHERE order = 6 | ### Context: CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR) ### Question: Who was the parent on the order of 6? ### Answer: SELECT parent FROM table_name_96 WHERE order = 6 |
Who was the husband date that was married in 1858? | CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR) | SELECT husband_dates FROM table_name_54 WHERE date_married = "1858" | ### Context: CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR) ### Question: Who was the husband date that was married in 1858? ### Answer: SELECT husband_dates FROM table_name_54 WHERE date_married = "1858" |
Can you tell me the Record that has the Opponent of vs. hamilton tiger cats? | CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats" | ### Context: CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR) ### Question: Can you tell me the Record that has the Opponent of vs. hamilton tiger cats? ### Answer: SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats" |
Can you tell me the Opponent that has the Date of sun, sept 9? | CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_89 WHERE date = "sun, sept 9" | ### Context: CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR) ### Question: Can you tell me the Opponent that has the Date of sun, sept 9? ### Answer: SELECT opponent FROM table_name_89 WHERE date = "sun, sept 9" |
Which country is Scott Hoch from? | CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_65 WHERE player = "scott hoch" | ### Context: CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR) ### Question: Which country is Scott Hoch from? ### Answer: SELECT country FROM table_name_65 WHERE player = "scott hoch" |
What is the place of the player from Spain? | CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR) | SELECT place FROM table_name_64 WHERE country = "spain" | ### Context: CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR) ### Question: What is the place of the player from Spain? ### Answer: SELECT place FROM table_name_64 WHERE country = "spain" |
What is Score, when Record is 12-57? | CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_53 WHERE record = "12-57" | ### Context: CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR) ### Question: What is Score, when Record is 12-57? ### Answer: SELECT score FROM table_name_53 WHERE record = "12-57" |
What is Date, when Record is 12-58? | CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_31 WHERE record = "12-58" | ### Context: CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR) ### Question: What is Date, when Record is 12-58? ### Answer: SELECT date FROM table_name_31 WHERE record = "12-58" |
What is Score, when Date is February 5? | CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_85 WHERE date = "february 5" | ### Context: CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) ### Question: What is Score, when Date is February 5? ### Answer: SELECT score FROM table_name_85 WHERE date = "february 5" |
What is H/A/N, when Score is 104-109? | CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR) | SELECT h_a_n FROM table_name_10 WHERE score = "104-109" | ### Context: CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR) ### Question: What is H/A/N, when Score is 104-109? ### Answer: SELECT h_a_n FROM table_name_10 WHERE score = "104-109" |
What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58? | CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, record VARCHAR) | SELECT score FROM table_name_35 WHERE opponent = "portland trail blazers" AND record = "12-58" | ### Context: CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58? ### Answer: SELECT score FROM table_name_35 WHERE opponent = "portland trail blazers" AND record = "12-58" |
What is H/A/N when Date is February 24? | CREATE TABLE table_name_55 (h_a_n VARCHAR, date VARCHAR) | SELECT h_a_n FROM table_name_55 WHERE date = "february 24" | ### Context: CREATE TABLE table_name_55 (h_a_n VARCHAR, date VARCHAR) ### Question: What is H/A/N when Date is February 24? ### Answer: SELECT h_a_n FROM table_name_55 WHERE date = "february 24" |
What is the last game of the season that has the record 0-1-0? | CREATE TABLE table_name_92 (game INTEGER, record VARCHAR) | SELECT MIN(game) FROM table_name_92 WHERE record = "0-1-0" | ### Context: CREATE TABLE table_name_92 (game INTEGER, record VARCHAR) ### Question: What is the last game of the season that has the record 0-1-0? ### Answer: SELECT MIN(game) FROM table_name_92 WHERE record = "0-1-0" |
Who had the decision goal when the date was 1? | CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR) | SELECT decision FROM table_name_73 WHERE date = 1 | ### Context: CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR) ### Question: Who had the decision goal when the date was 1? ### Answer: SELECT decision FROM table_name_73 WHERE date = 1 |
Who had the decision goal when the record was 7-7-2? | CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR) | SELECT decision FROM table_name_83 WHERE record = "7-7-2" | ### Context: CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR) ### Question: Who had the decision goal when the record was 7-7-2? ### Answer: SELECT decision FROM table_name_83 WHERE record = "7-7-2" |
What was the first game in which Weekes scored the decision goal and the record was 7-4-2? | CREATE TABLE table_name_92 (game INTEGER, decision VARCHAR, record VARCHAR) | SELECT MIN(game) FROM table_name_92 WHERE decision = "weekes" AND record = "7-4-2" | ### Context: CREATE TABLE table_name_92 (game INTEGER, decision VARCHAR, record VARCHAR) ### Question: What was the first game in which Weekes scored the decision goal and the record was 7-4-2? ### Answer: SELECT MIN(game) FROM table_name_92 WHERE decision = "weekes" AND record = "7-4-2" |
What's the total number of points scored during the 1951 NSWRFL Grand Final? | CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR) | SELECT COUNT(points) FROM table_name_3 WHERE details = "1951 nswrfl grand final" | ### Context: CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR) ### Question: What's the total number of points scored during the 1951 NSWRFL Grand Final? ### Answer: SELECT COUNT(points) FROM table_name_3 WHERE details = "1951 nswrfl grand final" |
Which premier team played the 1951 NSWRFL Grand Final? | CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR) | SELECT premiers FROM table_name_17 WHERE details = "1951 nswrfl grand final" | ### Context: CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR) ### Question: Which premier team played the 1951 NSWRFL Grand Final? ### Answer: SELECT premiers FROM table_name_17 WHERE details = "1951 nswrfl grand final" |
During which competition were a total of 36 points scored? | CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR) | SELECT details FROM table_name_31 WHERE points = 36 | ### Context: CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR) ### Question: During which competition were a total of 36 points scored? ### Answer: SELECT details FROM table_name_31 WHERE points = 36 |
What's the total sum of points scored by the Brisbane Broncos? | CREATE TABLE table_name_80 (points INTEGER, premiers VARCHAR) | SELECT SUM(points) FROM table_name_80 WHERE premiers = "brisbane broncos" | ### Context: CREATE TABLE table_name_80 (points INTEGER, premiers VARCHAR) ### Question: What's the total sum of points scored by the Brisbane Broncos? ### Answer: SELECT SUM(points) FROM table_name_80 WHERE premiers = "brisbane broncos" |
What is the premier team that has 38 points and won with a score of 38-0? | CREATE TABLE table_name_16 (premiers VARCHAR, points VARCHAR, score VARCHAR) | SELECT premiers FROM table_name_16 WHERE points = 38 AND score = "38-0" | ### Context: CREATE TABLE table_name_16 (premiers VARCHAR, points VARCHAR, score VARCHAR) ### Question: What is the premier team that has 38 points and won with a score of 38-0? ### Answer: SELECT premiers FROM table_name_16 WHERE points = 38 AND score = "38-0" |
What was the tie no when the away team was northwich victoria? | CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria" | ### Context: CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the tie no when the away team was northwich victoria? ### Answer: SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria" |
What was the attendance for the match where cambridge united was the home team? | CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR) | SELECT attendance FROM table_name_55 WHERE home_team = "cambridge united" | ### Context: CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR) ### Question: What was the attendance for the match where cambridge united was the home team? ### Answer: SELECT attendance FROM table_name_55 WHERE home_team = "cambridge united" |
How many times was the award inte awards? | CREATE TABLE table_name_90 (year VARCHAR, award VARCHAR) | SELECT COUNT(year) FROM table_name_90 WHERE award = "inte awards" | ### Context: CREATE TABLE table_name_90 (year VARCHAR, award VARCHAR) ### Question: How many times was the award inte awards? ### Answer: SELECT COUNT(year) FROM table_name_90 WHERE award = "inte awards" |
what is the work when the result is won and the year is after 2002? | CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR) | SELECT work FROM table_name_91 WHERE result = "won" AND year > 2002 | ### Context: CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR) ### Question: what is the work when the result is won and the year is after 2002? ### Answer: SELECT work FROM table_name_91 WHERE result = "won" AND year > 2002 |
what is the work when the result is won and the year is before 2003? | CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR) | SELECT work FROM table_name_36 WHERE result = "won" AND year < 2003 | ### Context: CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR) ### Question: what is the work when the result is won and the year is before 2003? ### Answer: SELECT work FROM table_name_36 WHERE result = "won" AND year < 2003 |
Which venue had the opposing team Natal? | CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR) | SELECT venue FROM table_name_16 WHERE opposing_team = "natal" | ### Context: CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR) ### Question: Which venue had the opposing team Natal? ### Answer: SELECT venue FROM table_name_16 WHERE opposing_team = "natal" |
What day was the against 22 and the status tour match? | CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR) | SELECT date FROM table_name_51 WHERE status = "tour match" AND against = 22 | ### Context: CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR) ### Question: What day was the against 22 and the status tour match? ### Answer: SELECT date FROM table_name_51 WHERE status = "tour match" AND against = 22 |
Which Attendance has a Week of 8? | CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_25 WHERE week = 8 | ### Context: CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR) ### Question: Which Attendance has a Week of 8? ### Answer: SELECT AVG(attendance) FROM table_name_25 WHERE week = 8 |
Which Opponent that has a Week smaller than 7 on september 12, 1988? | CREATE TABLE table_name_41 (opponent VARCHAR, week VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_41 WHERE week < 7 AND date = "september 12, 1988" | ### Context: CREATE TABLE table_name_41 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: Which Opponent that has a Week smaller than 7 on september 12, 1988? ### Answer: SELECT opponent FROM table_name_41 WHERE week < 7 AND date = "september 12, 1988" |
When has a Result of w 41-27? | CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_23 WHERE result = "w 41-27" | ### Context: CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR) ### Question: When has a Result of w 41-27? ### Answer: SELECT date FROM table_name_23 WHERE result = "w 41-27" |
Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610? | CREATE TABLE table_name_67 (weight__kg_ INTEGER, manufacturer VARCHAR, model VARCHAR) | SELECT AVG(weight__kg_) FROM table_name_67 WHERE manufacturer = "fujitsu" AND model = "lifebook p1610" | ### Context: CREATE TABLE table_name_67 (weight__kg_ INTEGER, manufacturer VARCHAR, model VARCHAR) ### Question: Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610? ### Answer: SELECT AVG(weight__kg_) FROM table_name_67 WHERE manufacturer = "fujitsu" AND model = "lifebook p1610" |
Which Display size (in) has a Model of versapro vy10f/bh-l? | CREATE TABLE table_name_10 (display_size__in_ INTEGER, model VARCHAR) | SELECT MIN(display_size__in_) FROM table_name_10 WHERE model = "versapro vy10f/bh-l" | ### Context: CREATE TABLE table_name_10 (display_size__in_ INTEGER, model VARCHAR) ### Question: Which Display size (in) has a Model of versapro vy10f/bh-l? ### Answer: SELECT MIN(display_size__in_) FROM table_name_10 WHERE model = "versapro vy10f/bh-l" |
Which Display size (in) has a Model of vaio pcg-u3? | CREATE TABLE table_name_29 (display_size__in_ VARCHAR, model VARCHAR) | SELECT COUNT(display_size__in_) FROM table_name_29 WHERE model = "vaio pcg-u3" | ### Context: CREATE TABLE table_name_29 (display_size__in_ VARCHAR, model VARCHAR) ### Question: Which Display size (in) has a Model of vaio pcg-u3? ### Answer: SELECT COUNT(display_size__in_) FROM table_name_29 WHERE model = "vaio pcg-u3" |
What method was used in the match that went to round 1, and had a 6-3-1 record? | CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR) | SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1" | ### Context: CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR) ### Question: What method was used in the match that went to round 1, and had a 6-3-1 record? ### Answer: SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1" |
In the match against Marcus Aurélio with a method of decision (unanimous), what was the results? | CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_6 WHERE method = "decision (unanimous)" AND opponent = "marcus aurélio" | ### Context: CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR) ### Question: In the match against Marcus Aurélio with a method of decision (unanimous), what was the results? ### Answer: SELECT res FROM table_name_6 WHERE method = "decision (unanimous)" AND opponent = "marcus aurélio" |
Where was the Deep - 30 Impact event held? | CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_55 WHERE event = "deep - 30 impact" | ### Context: CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR) ### Question: Where was the Deep - 30 Impact event held? ### Answer: SELECT location FROM table_name_55 WHERE event = "deep - 30 impact" |
COunt the sum of Diameter (km) which has a Latitude of 62.7n? | CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR) | SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = "62.7n" | ### Context: CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR) ### Question: COunt the sum of Diameter (km) which has a Latitude of 62.7n? ### Answer: SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = "62.7n" |
WHich Name origin has a Longitude of 332.5e? | CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR) | SELECT name AS origin FROM table_name_94 WHERE longitude = "332.5e" | ### Context: CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR) ### Question: WHich Name origin has a Longitude of 332.5e? ### Answer: SELECT name AS origin FROM table_name_94 WHERE longitude = "332.5e" |
In which round was Dustin Hazelett the opponent? | CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR) | SELECT round FROM table_name_63 WHERE opponent = "dustin hazelett" | ### Context: CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR) ### Question: In which round was Dustin Hazelett the opponent? ### Answer: SELECT round FROM table_name_63 WHERE opponent = "dustin hazelett" |
What is TV Time, when Opponent is At Cincinnati Bengals? | CREATE TABLE table_name_89 (tv_time VARCHAR, opponent VARCHAR) | SELECT tv_time FROM table_name_89 WHERE opponent = "at cincinnati bengals" | ### Context: CREATE TABLE table_name_89 (tv_time VARCHAR, opponent VARCHAR) ### Question: What is TV Time, when Opponent is At Cincinnati Bengals? ### Answer: SELECT tv_time FROM table_name_89 WHERE opponent = "at cincinnati bengals" |
What is TV Time, when Date is December 22, 1996? | CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR) | SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996" | ### Context: CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR) ### Question: What is TV Time, when Date is December 22, 1996? ### Answer: SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996" |
What is Result, when Opponent is Cincinnati Bengals? | CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_32 WHERE opponent = "cincinnati bengals" | ### Context: CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR) ### Question: What is Result, when Opponent is Cincinnati Bengals? ### Answer: SELECT result FROM table_name_32 WHERE opponent = "cincinnati bengals" |
What was their record bfore game 54? | CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_66 WHERE game = 54 | ### Context: CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR) ### Question: What was their record bfore game 54? ### Answer: SELECT record FROM table_name_66 WHERE game = 54 |
Who had the most rebounds in the game against Chicago? | CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_name_52 WHERE team = "chicago" | ### Context: CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR) ### Question: Who had the most rebounds in the game against Chicago? ### Answer: SELECT high_rebounds FROM table_name_52 WHERE team = "chicago" |
What was the lowest attendance at the game against chicago when conklin made the decision? | CREATE TABLE table_name_21 (attendance INTEGER, decision VARCHAR, visitor VARCHAR) | SELECT MIN(attendance) FROM table_name_21 WHERE decision = "conklin" AND visitor = "chicago" | ### Context: CREATE TABLE table_name_21 (attendance INTEGER, decision VARCHAR, visitor VARCHAR) ### Question: What was the lowest attendance at the game against chicago when conklin made the decision? ### Answer: SELECT MIN(attendance) FROM table_name_21 WHERE decision = "conklin" AND visitor = "chicago" |
For Tie #2, who was the home team? | CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_33 WHERE tie_no = "2" | ### Context: CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR) ### Question: For Tie #2, who was the home team? ### Answer: SELECT home_team FROM table_name_33 WHERE tie_no = "2" |
What was the final score for the match where Hereford United was the home team? | CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_57 WHERE home_team = "hereford united" | ### Context: CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR) ### Question: What was the final score for the match where Hereford United was the home team? ### Answer: SELECT score FROM table_name_57 WHERE home_team = "hereford united" |
In Tie #18, who was the away team? | CREATE TABLE table_name_76 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_76 WHERE tie_no = "18" | ### Context: CREATE TABLE table_name_76 (away_team VARCHAR, tie_no VARCHAR) ### Question: In Tie #18, who was the away team? ### Answer: SELECT away_team FROM table_name_76 WHERE tie_no = "18" |
In Tie #19, what was the name of the away team? | CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_27 WHERE tie_no = "19" | ### Context: CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR) ### Question: In Tie #19, what was the name of the away team? ### Answer: SELECT away_team FROM table_name_27 WHERE tie_no = "19" |
What is the Tie number for the match where Dartford was the hone team? | CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_31 WHERE home_team = "dartford" | ### Context: CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR) ### Question: What is the Tie number for the match where Dartford was the hone team? ### Answer: SELECT tie_no FROM table_name_31 WHERE home_team = "dartford" |
In the match played against Telford United, who was the home team? | CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_9 WHERE away_team = "telford united" | ### Context: CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) ### Question: In the match played against Telford United, who was the home team? ### Answer: SELECT home_team FROM table_name_9 WHERE away_team = "telford united" |
What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards? | CREATE TABLE table_name_93 (position VARCHAR, class VARCHAR, player VARCHAR) | SELECT position FROM table_name_93 WHERE class = "sophomore" AND player = "shaquille o'neal category:articles with hcards" | ### Context: CREATE TABLE table_name_93 (position VARCHAR, class VARCHAR, player VARCHAR) ### Question: What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards? ### Answer: SELECT position FROM table_name_93 WHERE class = "sophomore" AND player = "shaquille o'neal category:articles with hcards" |
What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"? | CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR) | SELECT player FROM table_name_56 WHERE class = "senior" AND position = "shooting guard" AND school = "bradley" | ### Context: CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR) ### Question: What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"? ### Answer: SELECT player FROM table_name_56 WHERE class = "senior" AND position = "shooting guard" AND school = "bradley" |
What is Position, when Player is "Kevin Durant category:articles with hCards"? | CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_71 WHERE player = "kevin durant category:articles with hcards" | ### Context: CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR) ### Question: What is Position, when Player is "Kevin Durant category:articles with hCards"? ### Answer: SELECT position FROM table_name_71 WHERE player = "kevin durant category:articles with hcards" |
What is the Score of the match on August 23, 2004? | CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_71 WHERE date = "august 23, 2004" | ### Context: CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR) ### Question: What is the Score of the match on August 23, 2004? ### Answer: SELECT score FROM table_name_71 WHERE date = "august 23, 2004" |
What was the Score of the Spain F32, Gran Canaria Tournament? | CREATE TABLE table_name_70 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_70 WHERE tournament = "spain f32, gran canaria" | ### Context: CREATE TABLE table_name_70 (score VARCHAR, tournament VARCHAR) ### Question: What was the Score of the Spain F32, Gran Canaria Tournament? ### Answer: SELECT score FROM table_name_70 WHERE tournament = "spain f32, gran canaria" |
On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played? | CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR) | SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3" | ### Context: CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR) ### Question: On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played? ### Answer: SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3" |
What is the Outcome of the match with Partner Andoni Vivanco? | CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR) | SELECT outcome FROM table_name_7 WHERE partner = "andoni vivanco" | ### Context: CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR) ### Question: What is the Outcome of the match with Partner Andoni Vivanco? ### Answer: SELECT outcome FROM table_name_7 WHERE partner = "andoni vivanco" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.