question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the point classification with chris anker sørensen as the young rider classification and Christian vande velde as the general classification? | CREATE TABLE table_name_93 (points_classification VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR) | SELECT points_classification FROM table_name_93 WHERE young_rider_classification = "chris anker sørensen" AND general_classification = "christian vande velde" | ### Context: CREATE TABLE table_name_93 (points_classification VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR) ### Question: What is the point classification with chris anker sørensen as the young rider classification and Christian vande velde as the general classification? ### Answer: SELECT points_classification FROM table_name_93 WHERE young_rider_classification = "chris anker sørensen" AND general_classification = "christian vande velde" |
What is the point classification of stage 15? | CREATE TABLE table_name_92 (points_classification VARCHAR, stage VARCHAR) | SELECT points_classification FROM table_name_92 WHERE stage = "15" | ### Context: CREATE TABLE table_name_92 (points_classification VARCHAR, stage VARCHAR) ### Question: What is the point classification of stage 15? ### Answer: SELECT points_classification FROM table_name_92 WHERE stage = "15" |
what week number was at memorial stadium? | CREATE TABLE table_name_53 (week INTEGER, game_site VARCHAR) | SELECT AVG(week) FROM table_name_53 WHERE game_site = "memorial stadium" | ### Context: CREATE TABLE table_name_53 (week INTEGER, game_site VARCHAR) ### Question: what week number was at memorial stadium? ### Answer: SELECT AVG(week) FROM table_name_53 WHERE game_site = "memorial stadium" |
before week 12 what was the attendance on 1983-11-21? | CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, week VARCHAR) | SELECT SUM(attendance) FROM table_name_22 WHERE date = "1983-11-21" AND week < 12 | ### Context: CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: before week 12 what was the attendance on 1983-11-21? ### Answer: SELECT SUM(attendance) FROM table_name_22 WHERE date = "1983-11-21" AND week < 12 |
on week 16, what was the lowest attendance? | CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_34 WHERE week = 16 | ### Context: CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR) ### Question: on week 16, what was the lowest attendance? ### Answer: SELECT MIN(attendance) FROM table_name_34 WHERE week = 16 |
At what venue is the margin of victory 7 strokes? | CREATE TABLE table_name_82 (venue VARCHAR, margin_of_victory VARCHAR) | SELECT venue FROM table_name_82 WHERE margin_of_victory = "7 strokes" | ### Context: CREATE TABLE table_name_82 (venue VARCHAR, margin_of_victory VARCHAR) ### Question: At what venue is the margin of victory 7 strokes? ### Answer: SELECT venue FROM table_name_82 WHERE margin_of_victory = "7 strokes" |
What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club? | CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VARCHAR) | SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club" | ### Context: CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VARCHAR) ### Question: What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club? ### Answer: SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club" |
What is the exit date of the player who transferred to Cardiff City? | CREATE TABLE table_name_9 (exit_date VARCHAR, to_club VARCHAR) | SELECT exit_date FROM table_name_9 WHERE to_club = "cardiff city" | ### Context: CREATE TABLE table_name_9 (exit_date VARCHAR, to_club VARCHAR) ### Question: What is the exit date of the player who transferred to Cardiff City? ### Answer: SELECT exit_date FROM table_name_9 WHERE to_club = "cardiff city" |
What is the exit date of the player who transferred to Portsmouth? | CREATE TABLE table_name_58 (exit_date VARCHAR, to_club VARCHAR) | SELECT exit_date FROM table_name_58 WHERE to_club = "portsmouth" | ### Context: CREATE TABLE table_name_58 (exit_date VARCHAR, to_club VARCHAR) ### Question: What is the exit date of the player who transferred to Portsmouth? ### Answer: SELECT exit_date FROM table_name_58 WHERE to_club = "portsmouth" |
Which player has a position of FW? | CREATE TABLE table_name_25 (player VARCHAR, pos VARCHAR) | SELECT player FROM table_name_25 WHERE pos = "fw" | ### Context: CREATE TABLE table_name_25 (player VARCHAR, pos VARCHAR) ### Question: Which player has a position of FW? ### Answer: SELECT player FROM table_name_25 WHERE pos = "fw" |
Which Frequency MHz has an ERP W larger than 4, and a Call sign of w218ap? | CREATE TABLE table_name_92 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR) | SELECT frequency_mhz FROM table_name_92 WHERE erp_w > 4 AND call_sign = "w218ap" | ### Context: CREATE TABLE table_name_92 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR) ### Question: Which Frequency MHz has an ERP W larger than 4, and a Call sign of w218ap? ### Answer: SELECT frequency_mhz FROM table_name_92 WHERE erp_w > 4 AND call_sign = "w218ap" |
Which City of license has a Frequency MHz of 91.5 fm? | CREATE TABLE table_name_42 (city_of_license VARCHAR, frequency_mhz VARCHAR) | SELECT city_of_license FROM table_name_42 WHERE frequency_mhz = "91.5 fm" | ### Context: CREATE TABLE table_name_42 (city_of_license VARCHAR, frequency_mhz VARCHAR) ### Question: Which City of license has a Frequency MHz of 91.5 fm? ### Answer: SELECT city_of_license FROM table_name_42 WHERE frequency_mhz = "91.5 fm" |
Which City of license has a Call sign of w220ba? | CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR) | SELECT city_of_license FROM table_name_64 WHERE call_sign = "w220ba" | ### Context: CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR) ### Question: Which City of license has a Call sign of w220ba? ### Answer: SELECT city_of_license FROM table_name_64 WHERE call_sign = "w220ba" |
Which ERP W has a Frequency MHz of 89.3 fm? | CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR) | SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = "89.3 fm" | ### Context: CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR) ### Question: Which ERP W has a Frequency MHz of 89.3 fm? ### Answer: SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = "89.3 fm" |
How many wins does Greg Norman have? | CREATE TABLE table_name_15 (wins INTEGER, player VARCHAR) | SELECT SUM(wins) FROM table_name_15 WHERE player = "greg norman" | ### Context: CREATE TABLE table_name_15 (wins INTEGER, player VARCHAR) ### Question: How many wins does Greg Norman have? ### Answer: SELECT SUM(wins) FROM table_name_15 WHERE player = "greg norman" |
What is the lowest number played with a position of 6 and less than 1 draw? | CREATE TABLE table_name_89 (played INTEGER, position VARCHAR, drawn VARCHAR) | SELECT MIN(played) FROM table_name_89 WHERE position = 6 AND drawn < 1 | ### Context: CREATE TABLE table_name_89 (played INTEGER, position VARCHAR, drawn VARCHAR) ### Question: What is the lowest number played with a position of 6 and less than 1 draw? ### Answer: SELECT MIN(played) FROM table_name_89 WHERE position = 6 AND drawn < 1 |
What is the highest against value for Palmeiras and position less than 4? | CREATE TABLE table_name_86 (against INTEGER, team VARCHAR, position VARCHAR) | SELECT MAX(against) FROM table_name_86 WHERE team = "palmeiras" AND position < 4 | ### Context: CREATE TABLE table_name_86 (against INTEGER, team VARCHAR, position VARCHAR) ### Question: What is the highest against value for Palmeiras and position less than 4? ### Answer: SELECT MAX(against) FROM table_name_86 WHERE team = "palmeiras" AND position < 4 |
What is the highest number played with more than 2 lost for Palmeiras and less than 1 draw? | CREATE TABLE table_name_69 (played INTEGER, drawn VARCHAR, lost VARCHAR, team VARCHAR) | SELECT MAX(played) FROM table_name_69 WHERE lost > 2 AND team = "palmeiras" AND drawn < 1 | ### Context: CREATE TABLE table_name_69 (played INTEGER, drawn VARCHAR, lost VARCHAR, team VARCHAR) ### Question: What is the highest number played with more than 2 lost for Palmeiras and less than 1 draw? ### Answer: SELECT MAX(played) FROM table_name_69 WHERE lost > 2 AND team = "palmeiras" AND drawn < 1 |
What is the average number lost when the against value is less than 5? | CREATE TABLE table_name_86 (lost INTEGER, against INTEGER) | SELECT AVG(lost) FROM table_name_86 WHERE against < 5 | ### Context: CREATE TABLE table_name_86 (lost INTEGER, against INTEGER) ### Question: What is the average number lost when the against value is less than 5? ### Answer: SELECT AVG(lost) FROM table_name_86 WHERE against < 5 |
How many values for a win by 2 or more goals correspond to a difference of 2, more than 9 points, and the America-RJ team when more than 7 are played? | CREATE TABLE table_name_3 (won_by_2_or_more_goals_difference VARCHAR, played VARCHAR, team VARCHAR, difference VARCHAR, points VARCHAR) | SELECT COUNT(won_by_2_or_more_goals_difference) FROM table_name_3 WHERE difference = "2" AND points > 9 AND team = "america-rj" AND played > 7 | ### Context: CREATE TABLE table_name_3 (won_by_2_or_more_goals_difference VARCHAR, played VARCHAR, team VARCHAR, difference VARCHAR, points VARCHAR) ### Question: How many values for a win by 2 or more goals correspond to a difference of 2, more than 9 points, and the America-RJ team when more than 7 are played? ### Answer: SELECT COUNT(won_by_2_or_more_goals_difference) FROM table_name_3 WHERE difference = "2" AND points > 9 AND team = "america-rj" AND played > 7 |
What is the average total of the census after 1971 with 10,412 (32.88%) Serbs? | CREATE TABLE table_name_90 (total INTEGER, year_of_census VARCHAR, serbs VARCHAR) | SELECT AVG(total) FROM table_name_90 WHERE year_of_census > 1971 AND serbs = "10,412 (32.88%)" | ### Context: CREATE TABLE table_name_90 (total INTEGER, year_of_census VARCHAR, serbs VARCHAR) ### Question: What is the average total of the census after 1971 with 10,412 (32.88%) Serbs? ### Answer: SELECT AVG(total) FROM table_name_90 WHERE year_of_census > 1971 AND serbs = "10,412 (32.88%)" |
what is the school that hosts jim goodman | CREATE TABLE table_name_57 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_57 WHERE player = "jim goodman" | ### Context: CREATE TABLE table_name_57 (school_club_team VARCHAR, player VARCHAR) ### Question: what is the school that hosts jim goodman ### Answer: SELECT school_club_team FROM table_name_57 WHERE player = "jim goodman" |
Which Surface has a Date of january 2, 2006? | CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_68 WHERE date = "january 2, 2006" | ### Context: CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR) ### Question: Which Surface has a Date of january 2, 2006? ### Answer: SELECT surface FROM table_name_68 WHERE date = "january 2, 2006" |
Which tournament happened on september 25, 2006? | CREATE TABLE table_name_78 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_78 WHERE date = "september 25, 2006" | ### Context: CREATE TABLE table_name_78 (tournament VARCHAR, date VARCHAR) ### Question: Which tournament happened on september 25, 2006? ### Answer: SELECT tournament FROM table_name_78 WHERE date = "september 25, 2006" |
When did joão souza play? | CREATE TABLE table_name_11 (date VARCHAR, opponen VARCHAR) | SELECT date FROM table_name_11 WHERE opponen = "joão souza" | ### Context: CREATE TABLE table_name_11 (date VARCHAR, opponen VARCHAR) ### Question: When did joão souza play? ### Answer: SELECT date FROM table_name_11 WHERE opponen = "joão souza" |
Which Surface has a Score of 7–5, 6–4? | CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_17 WHERE score = "7–5, 6–4" | ### Context: CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR) ### Question: Which Surface has a Score of 7–5, 6–4? ### Answer: SELECT surface FROM table_name_17 WHERE score = "7–5, 6–4" |
What is the highest NFL Draft that has jeff robinson as the player, with an overall pick less than 98? | CREATE TABLE table_name_47 (nfl_draft INTEGER, player VARCHAR, overall_pick VARCHAR) | SELECT MAX(nfl_draft) FROM table_name_47 WHERE player = "jeff robinson" AND overall_pick < 98 | ### Context: CREATE TABLE table_name_47 (nfl_draft INTEGER, player VARCHAR, overall_pick VARCHAR) ### Question: What is the highest NFL Draft that has jeff robinson as the player, with an overall pick less than 98? ### Answer: SELECT MAX(nfl_draft) FROM table_name_47 WHERE player = "jeff robinson" AND overall_pick < 98 |
What position has 1958 as the NFL Draft, and jerry kramer as the player? | CREATE TABLE table_name_55 (position VARCHAR, nfl_draft VARCHAR, player VARCHAR) | SELECT position FROM table_name_55 WHERE nfl_draft = 1958 AND player = "jerry kramer" | ### Context: CREATE TABLE table_name_55 (position VARCHAR, nfl_draft VARCHAR, player VARCHAR) ### Question: What position has 1958 as the NFL Draft, and jerry kramer as the player? ### Answer: SELECT position FROM table_name_55 WHERE nfl_draft = 1958 AND player = "jerry kramer" |
What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977? | CREATE TABLE table_name_27 (overall_pick INTEGER, position VARCHAR, nfl_draft VARCHAR) | SELECT MAX(overall_pick) FROM table_name_27 WHERE position = "c" AND nfl_draft > 1977 | ### Context: CREATE TABLE table_name_27 (overall_pick INTEGER, position VARCHAR, nfl_draft VARCHAR) ### Question: What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977? ### Answer: SELECT MAX(overall_pick) FROM table_name_27 WHERE position = "c" AND nfl_draft > 1977 |
What was the score at Spartan Stadium when San Jose was the Home team? | CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR) | SELECT score FROM table_name_18 WHERE home_team = "san jose" AND venue = "spartan stadium" | ### Context: CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR) ### Question: What was the score at Spartan Stadium when San Jose was the Home team? ### Answer: SELECT score FROM table_name_18 WHERE home_team = "san jose" AND venue = "spartan stadium" |
Where was the game on September 11, 2004? | CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_95 WHERE date = "september 11, 2004" | ### Context: CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR) ### Question: Where was the game on September 11, 2004? ### Answer: SELECT venue FROM table_name_95 WHERE date = "september 11, 2004" |
Who was the home team on September 20, 1998 at Spartan Stadium? | CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR, date VARCHAR) | SELECT home_team FROM table_name_39 WHERE venue = "spartan stadium" AND date = "september 20, 1998" | ### Context: CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR, date VARCHAR) ### Question: Who was the home team on September 20, 1998 at Spartan Stadium? ### Answer: SELECT home_team FROM table_name_39 WHERE venue = "spartan stadium" AND date = "september 20, 1998" |
What method has a round less than 3, and 3:36 as the time? | CREATE TABLE table_name_5 (method VARCHAR, round VARCHAR, time VARCHAR) | SELECT method FROM table_name_5 WHERE round < 3 AND time = "3:36" | ### Context: CREATE TABLE table_name_5 (method VARCHAR, round VARCHAR, time VARCHAR) ### Question: What method has a round less than 3, and 3:36 as the time? ### Answer: SELECT method FROM table_name_5 WHERE round < 3 AND time = "3:36" |
What method has randy couture as the opponent? | CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR) | SELECT method FROM table_name_15 WHERE opponent = "randy couture" | ### Context: CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR) ### Question: What method has randy couture as the opponent? ### Answer: SELECT method FROM table_name_15 WHERE opponent = "randy couture" |
What is the median household income where the per capita is $28,789? | CREATE TABLE table_name_27 (median_household_income VARCHAR, per_capita_income VARCHAR) | SELECT median_household_income FROM table_name_27 WHERE per_capita_income = "$28,789" | ### Context: CREATE TABLE table_name_27 (median_household_income VARCHAR, per_capita_income VARCHAR) ### Question: What is the median household income where the per capita is $28,789? ### Answer: SELECT median_household_income FROM table_name_27 WHERE per_capita_income = "$28,789" |
What is the median income for a family whose per capita income is $18,296? | CREATE TABLE table_name_14 (median_family_income VARCHAR, per_capita_income VARCHAR) | SELECT median_family_income FROM table_name_14 WHERE per_capita_income = "$18,296" | ### Context: CREATE TABLE table_name_14 (median_family_income VARCHAR, per_capita_income VARCHAR) ### Question: What is the median income for a family whose per capita income is $18,296? ### Answer: SELECT median_family_income FROM table_name_14 WHERE per_capita_income = "$18,296" |
What is the resolution of the network Canal de las Estrellas? | CREATE TABLE table_name_96 (resolution VARCHAR, network VARCHAR) | SELECT resolution FROM table_name_96 WHERE network = "canal de las estrellas" | ### Context: CREATE TABLE table_name_96 (resolution VARCHAR, network VARCHAR) ### Question: What is the resolution of the network Canal de las Estrellas? ### Answer: SELECT resolution FROM table_name_96 WHERE network = "canal de las estrellas" |
What is the resolution of the network Carismatv? | CREATE TABLE table_name_47 (resolution VARCHAR, network VARCHAR) | SELECT resolution FROM table_name_47 WHERE network = "carismatv" | ### Context: CREATE TABLE table_name_47 (resolution VARCHAR, network VARCHAR) ### Question: What is the resolution of the network Carismatv? ### Answer: SELECT resolution FROM table_name_47 WHERE network = "carismatv" |
Which dish belongs to the network that has the official website of ksat.com? | CREATE TABLE table_name_46 (dish VARCHAR, official_website VARCHAR) | SELECT dish FROM table_name_46 WHERE official_website = "ksat.com" | ### Context: CREATE TABLE table_name_46 (dish VARCHAR, official_website VARCHAR) ### Question: Which dish belongs to the network that has the official website of ksat.com? ### Answer: SELECT dish FROM table_name_46 WHERE official_website = "ksat.com" |
In which city is the network latv licensed? | CREATE TABLE table_name_93 (city_of_license VARCHAR, network VARCHAR) | SELECT city_of_license FROM table_name_93 WHERE network = "latv" | ### Context: CREATE TABLE table_name_93 (city_of_license VARCHAR, network VARCHAR) ### Question: In which city is the network latv licensed? ### Answer: SELECT city_of_license FROM table_name_93 WHERE network = "latv" |
In which city is the network with the callsign kgns-dt3 licensed? | CREATE TABLE table_name_71 (city_of_license VARCHAR, callsign VARCHAR) | SELECT city_of_license FROM table_name_71 WHERE callsign = "kgns-dt3" | ### Context: CREATE TABLE table_name_71 (city_of_license VARCHAR, callsign VARCHAR) ### Question: In which city is the network with the callsign kgns-dt3 licensed? ### Answer: SELECT city_of_license FROM table_name_71 WHERE callsign = "kgns-dt3" |
How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999? | CREATE TABLE table_name_94 (introduced INTEGER, retired VARCHAR, manufacturer VARCHAR, quantity VARCHAR) | SELECT SUM(introduced) FROM table_name_94 WHERE manufacturer = "fokker" AND quantity = 5 AND retired > 1999 | ### Context: CREATE TABLE table_name_94 (introduced INTEGER, retired VARCHAR, manufacturer VARCHAR, quantity VARCHAR) ### Question: How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999? ### Answer: SELECT SUM(introduced) FROM table_name_94 WHERE manufacturer = "fokker" AND quantity = 5 AND retired > 1999 |
What is the total number of quantity when the introductory year was 1984? | CREATE TABLE table_name_30 (quantity INTEGER, introduced VARCHAR) | SELECT SUM(quantity) FROM table_name_30 WHERE introduced = 1984 | ### Context: CREATE TABLE table_name_30 (quantity INTEGER, introduced VARCHAR) ### Question: What is the total number of quantity when the introductory year was 1984? ### Answer: SELECT SUM(quantity) FROM table_name_30 WHERE introduced = 1984 |
How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer? | CREATE TABLE table_name_80 (introduced VARCHAR, retired VARCHAR, manufacturer VARCHAR) | SELECT COUNT(introduced) FROM table_name_80 WHERE retired > 1994 AND manufacturer = "fokker" | ### Context: CREATE TABLE table_name_80 (introduced VARCHAR, retired VARCHAR, manufacturer VARCHAR) ### Question: How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer? ### Answer: SELECT COUNT(introduced) FROM table_name_80 WHERE retired > 1994 AND manufacturer = "fokker" |
How many in the quantity section had Fokker as a manufacturer and retired later than 1999? | CREATE TABLE table_name_68 (quantity VARCHAR, manufacturer VARCHAR, retired VARCHAR) | SELECT COUNT(quantity) FROM table_name_68 WHERE manufacturer = "fokker" AND retired > 1999 | ### Context: CREATE TABLE table_name_68 (quantity VARCHAR, manufacturer VARCHAR, retired VARCHAR) ### Question: How many in the quantity section had Fokker as a manufacturer and retired later than 1999? ### Answer: SELECT COUNT(quantity) FROM table_name_68 WHERE manufacturer = "fokker" AND retired > 1999 |
Which Championship has a Scoreboard that is 22-14? | CREATE TABLE table_name_74 (champion VARCHAR, scoreboard VARCHAR) | SELECT champion FROM table_name_74 WHERE scoreboard = "22-14" | ### Context: CREATE TABLE table_name_74 (champion VARCHAR, scoreboard VARCHAR) ### Question: Which Championship has a Scoreboard that is 22-14? ### Answer: SELECT champion FROM table_name_74 WHERE scoreboard = "22-14" |
What year was the building with a top 3 rank and a height of 274 (84) ft (m) completed? | CREATE TABLE table_name_81 (year_completed INTEGER, rank VARCHAR, height_ft__m_ VARCHAR) | SELECT MAX(year_completed) FROM table_name_81 WHERE rank < 3 AND height_ft__m_ = "274 (84)" | ### Context: CREATE TABLE table_name_81 (year_completed INTEGER, rank VARCHAR, height_ft__m_ VARCHAR) ### Question: What year was the building with a top 3 rank and a height of 274 (84) ft (m) completed? ### Answer: SELECT MAX(year_completed) FROM table_name_81 WHERE rank < 3 AND height_ft__m_ = "274 (84)" |
How many floors are in the 274 (84) ft (m) building that is ranked number 1? | CREATE TABLE table_name_99 (floors__stories_ INTEGER, height_ft__m_ VARCHAR, rank VARCHAR) | SELECT AVG(floors__stories_) FROM table_name_99 WHERE height_ft__m_ = "274 (84)" AND rank > 1 | ### Context: CREATE TABLE table_name_99 (floors__stories_ INTEGER, height_ft__m_ VARCHAR, rank VARCHAR) ### Question: How many floors are in the 274 (84) ft (m) building that is ranked number 1? ### Answer: SELECT AVG(floors__stories_) FROM table_name_99 WHERE height_ft__m_ = "274 (84)" AND rank > 1 |
Which is the highest ranked building with more than 15 floors? | CREATE TABLE table_name_45 (rank INTEGER, floors__stories_ INTEGER) | SELECT MAX(rank) FROM table_name_45 WHERE floors__stories_ > 15 | ### Context: CREATE TABLE table_name_45 (rank INTEGER, floors__stories_ INTEGER) ### Question: Which is the highest ranked building with more than 15 floors? ### Answer: SELECT MAX(rank) FROM table_name_45 WHERE floors__stories_ > 15 |
What is the highest points scored for the team with a position larger than 5, who had less than 4 wins and more than 8 draws? | CREATE TABLE table_name_99 (scored INTEGER, draws VARCHAR, position VARCHAR, wins VARCHAR) | SELECT MAX(scored) FROM table_name_99 WHERE position > 5 AND wins < 4 AND draws > 8 | ### Context: CREATE TABLE table_name_99 (scored INTEGER, draws VARCHAR, position VARCHAR, wins VARCHAR) ### Question: What is the highest points scored for the team with a position larger than 5, who had less than 4 wins and more than 8 draws? ### Answer: SELECT MAX(scored) FROM table_name_99 WHERE position > 5 AND wins < 4 AND draws > 8 |
What is the average number conceded for hte team that had less than 19 points, played more than 18 games and had a position less than 10? | CREATE TABLE table_name_65 (conceded INTEGER, played VARCHAR, points VARCHAR, position VARCHAR) | SELECT AVG(conceded) FROM table_name_65 WHERE points < 19 AND position < 10 AND played > 18 | ### Context: CREATE TABLE table_name_65 (conceded INTEGER, played VARCHAR, points VARCHAR, position VARCHAR) ### Question: What is the average number conceded for hte team that had less than 19 points, played more than 18 games and had a position less than 10? ### Answer: SELECT AVG(conceded) FROM table_name_65 WHERE points < 19 AND position < 10 AND played > 18 |
What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4? | CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR) | SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38 | ### Context: CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR) ### Question: What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4? ### Answer: SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38 |
What was the lowest number of wins for the team that scored more than 14 points and had a position of 7? | CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR) | SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14 | ### Context: CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR) ### Question: What was the lowest number of wins for the team that scored more than 14 points and had a position of 7? ### Answer: SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14 |
What is the total number scored for the team that had 19 points and a position larger than 4? | CREATE TABLE table_name_48 (scored VARCHAR, position VARCHAR, points VARCHAR) | SELECT COUNT(scored) FROM table_name_48 WHERE position > 4 AND points = 19 | ### Context: CREATE TABLE table_name_48 (scored VARCHAR, position VARCHAR, points VARCHAR) ### Question: What is the total number scored for the team that had 19 points and a position larger than 4? ### Answer: SELECT COUNT(scored) FROM table_name_48 WHERE position > 4 AND points = 19 |
What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points? | CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARCHAR) | SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23 | ### Context: CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARCHAR) ### Question: What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points? ### Answer: SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23 |
Which Date has a Result of l 14–13? | CREATE TABLE table_name_88 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_88 WHERE result = "l 14–13" | ### Context: CREATE TABLE table_name_88 (date VARCHAR, result VARCHAR) ### Question: Which Date has a Result of l 14–13? ### Answer: SELECT date FROM table_name_88 WHERE result = "l 14–13" |
Which Date has a Result of w 13–6? | CREATE TABLE table_name_84 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_84 WHERE result = "w 13–6" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, result VARCHAR) ### Question: Which Date has a Result of w 13–6? ### Answer: SELECT date FROM table_name_84 WHERE result = "w 13–6" |
What is the Result of Week larger than 3 on 1971-11-07? | CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, date VARCHAR) | SELECT result FROM table_name_94 WHERE week > 3 AND date = "1971-11-07" | ### Context: CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, date VARCHAR) ### Question: What is the Result of Week larger than 3 on 1971-11-07? ### Answer: SELECT result FROM table_name_94 WHERE week > 3 AND date = "1971-11-07" |
What is the pos with more than 1 tier during Pokal Slovenije 1. round? | CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR) | SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = "pokal slovenije 1. round" | ### Context: CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR) ### Question: What is the pos with more than 1 tier during Pokal Slovenije 1. round? ### Answer: SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = "pokal slovenije 1. round" |
What are the exact Cubic inches of the Metric value of 104.955 L? | CREATE TABLE table_name_9 (cubic_inches__exact_ VARCHAR, metric_value VARCHAR) | SELECT cubic_inches__exact_ FROM table_name_9 WHERE metric_value = "104.955 l" | ### Context: CREATE TABLE table_name_9 (cubic_inches__exact_ VARCHAR, metric_value VARCHAR) ### Question: What are the exact Cubic inches of the Metric value of 104.955 L? ### Answer: SELECT cubic_inches__exact_ FROM table_name_9 WHERE metric_value = "104.955 l" |
What is the Translation of the US Customary value 0.263 pt? | CREATE TABLE table_name_47 (translation VARCHAR, us_customary VARCHAR) | SELECT translation FROM table_name_47 WHERE us_customary = "0.263 pt" | ### Context: CREATE TABLE table_name_47 (translation VARCHAR, us_customary VARCHAR) ### Question: What is the Translation of the US Customary value 0.263 pt? ### Answer: SELECT translation FROM table_name_47 WHERE us_customary = "0.263 pt" |
What is the Metric value of Russian че́тверть? | CREATE TABLE table_name_19 (metric_value VARCHAR, russian VARCHAR) | SELECT metric_value FROM table_name_19 WHERE russian = "че́тверть" | ### Context: CREATE TABLE table_name_19 (metric_value VARCHAR, russian VARCHAR) ### Question: What is the Metric value of Russian че́тверть? ### Answer: SELECT metric_value FROM table_name_19 WHERE russian = "че́тверть" |
What are the exact Cubic inches of the Unit of kruzhka? | CREATE TABLE table_name_86 (cubic_inches__exact_ VARCHAR, unit VARCHAR) | SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = "kruzhka" | ### Context: CREATE TABLE table_name_86 (cubic_inches__exact_ VARCHAR, unit VARCHAR) ### Question: What are the exact Cubic inches of the Unit of kruzhka? ### Answer: SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = "kruzhka" |
Which Zero Fighter has a count of 10? | CREATE TABLE table_name_1 (id_code_of_his_zero_fighter VARCHAR, count VARCHAR) | SELECT id_code_of_his_zero_fighter FROM table_name_1 WHERE count = "10" | ### Context: CREATE TABLE table_name_1 (id_code_of_his_zero_fighter VARCHAR, count VARCHAR) ### Question: Which Zero Fighter has a count of 10? ### Answer: SELECT id_code_of_his_zero_fighter FROM table_name_1 WHERE count = "10" |
On which day were the subtotal hours 9:30? | CREATE TABLE table_name_9 (date VARCHAR, sub_total VARCHAR) | SELECT date FROM table_name_9 WHERE sub_total = "9:30" | ### Context: CREATE TABLE table_name_9 (date VARCHAR, sub_total VARCHAR) ### Question: On which day were the subtotal hours 9:30? ### Answer: SELECT date FROM table_name_9 WHERE sub_total = "9:30" |
What is the count for the Zero Fighter with hours of 2:00? | CREATE TABLE table_name_5 (count VARCHAR, flight_hours VARCHAR) | SELECT count FROM table_name_5 WHERE flight_hours = "2:00" | ### Context: CREATE TABLE table_name_5 (count VARCHAR, flight_hours VARCHAR) ### Question: What is the count for the Zero Fighter with hours of 2:00? ### Answer: SELECT count FROM table_name_5 WHERE flight_hours = "2:00" |
Which record has Katsuomi Inagaki as an opponent? | CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_51 WHERE opponent = "katsuomi inagaki" | ### Context: CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR) ### Question: Which record has Katsuomi Inagaki as an opponent? ### Answer: SELECT record FROM table_name_51 WHERE opponent = "katsuomi inagaki" |
Which method has a 1:46 time? | CREATE TABLE table_name_63 (method VARCHAR, time VARCHAR) | SELECT method FROM table_name_63 WHERE time = "1:46" | ### Context: CREATE TABLE table_name_63 (method VARCHAR, time VARCHAR) ### Question: Which method has a 1:46 time? ### Answer: SELECT method FROM table_name_63 WHERE time = "1:46" |
What is Henri Crockett's highest overall with more than 3 picks? | CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, name VARCHAR) | SELECT MAX(overall) FROM table_name_65 WHERE pick__number > 3 AND name = "henri crockett" | ### Context: CREATE TABLE table_name_65 (overall INTEGER, pick__number VARCHAR, name VARCHAR) ### Question: What is Henri Crockett's highest overall with more than 3 picks? ### Answer: SELECT MAX(overall) FROM table_name_65 WHERE pick__number > 3 AND name = "henri crockett" |
Which college has fewer than 2 rounds? | CREATE TABLE table_name_7 (college VARCHAR, round INTEGER) | SELECT college FROM table_name_7 WHERE round < 2 | ### Context: CREATE TABLE table_name_7 (college VARCHAR, round INTEGER) ### Question: Which college has fewer than 2 rounds? ### Answer: SELECT college FROM table_name_7 WHERE round < 2 |
What are the total number of picks for a guard with fewer than 6 rounds? | CREATE TABLE table_name_66 (pick__number VARCHAR, position VARCHAR, round VARCHAR) | SELECT COUNT(pick__number) FROM table_name_66 WHERE position = "guard" AND round < 6 | ### Context: CREATE TABLE table_name_66 (pick__number VARCHAR, position VARCHAR, round VARCHAR) ### Question: What are the total number of picks for a guard with fewer than 6 rounds? ### Answer: SELECT COUNT(pick__number) FROM table_name_66 WHERE position = "guard" AND round < 6 |
What is the lowest overall for a quarterback with fewer than 7 rounds? | CREATE TABLE table_name_88 (overall INTEGER, position VARCHAR, round VARCHAR) | SELECT MIN(overall) FROM table_name_88 WHERE position = "quarterback" AND round < 7 | ### Context: CREATE TABLE table_name_88 (overall INTEGER, position VARCHAR, round VARCHAR) ### Question: What is the lowest overall for a quarterback with fewer than 7 rounds? ### Answer: SELECT MIN(overall) FROM table_name_88 WHERE position = "quarterback" AND round < 7 |
What Playoffs had an Open Cup of 3rd round? | CREATE TABLE table_name_83 (playoffs VARCHAR, open_cup VARCHAR) | SELECT playoffs FROM table_name_83 WHERE open_cup = "3rd round" | ### Context: CREATE TABLE table_name_83 (playoffs VARCHAR, open_cup VARCHAR) ### Question: What Playoffs had an Open Cup of 3rd round? ### Answer: SELECT playoffs FROM table_name_83 WHERE open_cup = "3rd round" |
What was the D segment for episode 60? | CREATE TABLE table_name_25 (segment_d VARCHAR, episode VARCHAR) | SELECT segment_d FROM table_name_25 WHERE episode = 60 | ### Context: CREATE TABLE table_name_25 (segment_d VARCHAR, episode VARCHAR) ### Question: What was the D segment for episode 60? ### Answer: SELECT segment_d FROM table_name_25 WHERE episode = 60 |
What was the B segmint for Netlix S03E01? | CREATE TABLE table_name_54 (segment_b VARCHAR, netflix VARCHAR) | SELECT segment_b FROM table_name_54 WHERE netflix = "s03e01" | ### Context: CREATE TABLE table_name_54 (segment_b VARCHAR, netflix VARCHAR) ### Question: What was the B segmint for Netlix S03E01? ### Answer: SELECT segment_b FROM table_name_54 WHERE netflix = "s03e01" |
What was the D segment for episode 60? | CREATE TABLE table_name_51 (segment_d VARCHAR, episode VARCHAR) | SELECT segment_d FROM table_name_51 WHERE episode = 60 | ### Context: CREATE TABLE table_name_51 (segment_d VARCHAR, episode VARCHAR) ### Question: What was the D segment for episode 60? ### Answer: SELECT segment_d FROM table_name_51 WHERE episode = 60 |
What racing club team made supercopa 1996? | CREATE TABLE table_name_14 (supercopa_1996 VARCHAR, team VARCHAR) | SELECT supercopa_1996 FROM table_name_14 WHERE team = "racing club" | ### Context: CREATE TABLE table_name_14 (supercopa_1996 VARCHAR, team VARCHAR) ### Question: What racing club team made supercopa 1996? ### Answer: SELECT supercopa_1996 FROM table_name_14 WHERE team = "racing club" |
Name the # country for new palestine | CREATE TABLE table_name_54 (_number___county VARCHAR, school VARCHAR) | SELECT _number___county FROM table_name_54 WHERE school = "new palestine" | ### Context: CREATE TABLE table_name_54 (_number___county VARCHAR, school VARCHAR) ### Question: Name the # country for new palestine ### Answer: SELECT _number___county FROM table_name_54 WHERE school = "new palestine" |
Name the number of enrollment for county of 48 madison | CREATE TABLE table_name_47 (enrollment VARCHAR, _number___county VARCHAR) | SELECT COUNT(enrollment) FROM table_name_47 WHERE _number___county = "48 madison" | ### Context: CREATE TABLE table_name_47 (enrollment VARCHAR, _number___county VARCHAR) ### Question: Name the number of enrollment for county of 48 madison ### Answer: SELECT COUNT(enrollment) FROM table_name_47 WHERE _number___county = "48 madison" |
Name the IHSAA class with county 18 delaware and tigers mascot | CREATE TABLE table_name_82 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR) | SELECT ihsaa_class FROM table_name_82 WHERE _number___county = "18 delaware" AND mascot = "tigers" | ### Context: CREATE TABLE table_name_82 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR) ### Question: Name the IHSAA class with county 18 delaware and tigers mascot ### Answer: SELECT ihsaa_class FROM table_name_82 WHERE _number___county = "18 delaware" AND mascot = "tigers" |
Name the mascot for shelbyville | CREATE TABLE table_name_33 (mascot VARCHAR, school VARCHAR) | SELECT mascot FROM table_name_33 WHERE school = "shelbyville" | ### Context: CREATE TABLE table_name_33 (mascot VARCHAR, school VARCHAR) ### Question: Name the mascot for shelbyville ### Answer: SELECT mascot FROM table_name_33 WHERE school = "shelbyville" |
What's the capacity that has the highest greater than 1,763 and is at Hampden Park? | CREATE TABLE table_name_37 (capacity INTEGER, stadium VARCHAR, highest VARCHAR) | SELECT MIN(capacity) FROM table_name_37 WHERE stadium = "hampden park" AND highest > 1 OFFSET 763 | ### Context: CREATE TABLE table_name_37 (capacity INTEGER, stadium VARCHAR, highest VARCHAR) ### Question: What's the capacity that has the highest greater than 1,763 and is at Hampden Park? ### Answer: SELECT MIN(capacity) FROM table_name_37 WHERE stadium = "hampden park" AND highest > 1 OFFSET 763 |
What's the highest with a capacity of greater than 4,000 and an average of 615? | CREATE TABLE table_name_20 (highest INTEGER, average VARCHAR, capacity VARCHAR) | SELECT MAX(highest) FROM table_name_20 WHERE average = 615 AND capacity > 4 OFFSET 000 | ### Context: CREATE TABLE table_name_20 (highest INTEGER, average VARCHAR, capacity VARCHAR) ### Question: What's the highest with a capacity of greater than 4,000 and an average of 615? ### Answer: SELECT MAX(highest) FROM table_name_20 WHERE average = 615 AND capacity > 4 OFFSET 000 |
At Balmoor Stadium, what's the total average having a greater than 400 lowest? | CREATE TABLE table_name_77 (average VARCHAR, stadium VARCHAR, lowest VARCHAR) | SELECT COUNT(average) FROM table_name_77 WHERE stadium = "balmoor" AND lowest > 400 | ### Context: CREATE TABLE table_name_77 (average VARCHAR, stadium VARCHAR, lowest VARCHAR) ### Question: At Balmoor Stadium, what's the total average having a greater than 400 lowest? ### Answer: SELECT COUNT(average) FROM table_name_77 WHERE stadium = "balmoor" AND lowest > 400 |
What was the score of Tommy Aaron (2) when the tournament was in georgia? | CREATE TABLE table_name_38 (score VARCHAR, location VARCHAR, winner VARCHAR) | SELECT score FROM table_name_38 WHERE location = "georgia" AND winner = "tommy aaron (2)" | ### Context: CREATE TABLE table_name_38 (score VARCHAR, location VARCHAR, winner VARCHAR) ### Question: What was the score of Tommy Aaron (2) when the tournament was in georgia? ### Answer: SELECT score FROM table_name_38 WHERE location = "georgia" AND winner = "tommy aaron (2)" |
What was the score of Ken Still (3) when he won first place? | CREATE TABLE table_name_14 (score VARCHAR, winner VARCHAR) | SELECT score FROM table_name_14 WHERE winner = "ken still (3)" | ### Context: CREATE TABLE table_name_14 (score VARCHAR, winner VARCHAR) ### Question: What was the score of Ken Still (3) when he won first place? ### Answer: SELECT score FROM table_name_14 WHERE winner = "ken still (3)" |
Who beat Chic by 8fm? | CREATE TABLE table_name_9 (beat_by VARCHAR, distance VARCHAR) | SELECT beat_by FROM table_name_9 WHERE distance = "8fm" | ### Context: CREATE TABLE table_name_9 (beat_by VARCHAR, distance VARCHAR) ### Question: Who beat Chic by 8fm? ### Answer: SELECT beat_by FROM table_name_9 WHERE distance = "8fm" |
What was the placing of the race in which Chic won by 8gf? | CREATE TABLE table_name_58 (placing VARCHAR, beat_by VARCHAR, distance VARCHAR) | SELECT placing FROM table_name_58 WHERE beat_by = "won" AND distance = "8gf" | ### Context: CREATE TABLE table_name_58 (placing VARCHAR, beat_by VARCHAR, distance VARCHAR) ### Question: What was the placing of the race in which Chic won by 8gf? ### Answer: SELECT placing FROM table_name_58 WHERE beat_by = "won" AND distance = "8gf" |
What was the date in which Chic won at CHS? | CREATE TABLE table_name_50 (date VARCHAR, beat_by VARCHAR, location VARCHAR) | SELECT date FROM table_name_50 WHERE beat_by = "won" AND location = "chs" | ### Context: CREATE TABLE table_name_50 (date VARCHAR, beat_by VARCHAR, location VARCHAR) ### Question: What was the date in which Chic won at CHS? ### Answer: SELECT date FROM table_name_50 WHERE beat_by = "won" AND location = "chs" |
Who is the opponent of game 54, which was in Los Angeles and was before day 18? | CREATE TABLE table_name_26 (opponent VARCHAR, game VARCHAR, location_attendance VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_26 WHERE location_attendance = "los angeles" AND date < 18 AND game = 54 | ### Context: CREATE TABLE table_name_26 (opponent VARCHAR, game VARCHAR, location_attendance VARCHAR, date VARCHAR) ### Question: Who is the opponent of game 54, which was in Los Angeles and was before day 18? ### Answer: SELECT opponent FROM table_name_26 WHERE location_attendance = "los angeles" AND date < 18 AND game = 54 |
What is the earliest date of the game with a score of 2-2? | CREATE TABLE table_name_14 (date INTEGER, score VARCHAR) | SELECT MIN(date) FROM table_name_14 WHERE score = "2-2" | ### Context: CREATE TABLE table_name_14 (date INTEGER, score VARCHAR) ### Question: What is the earliest date of the game with a score of 2-2? ### Answer: SELECT MIN(date) FROM table_name_14 WHERE score = "2-2" |
What is the average date of the game with the Detroit Red Wings as the opponent? | CREATE TABLE table_name_19 (date INTEGER, opponent VARCHAR) | SELECT AVG(date) FROM table_name_19 WHERE opponent = "detroit red wings" | ### Context: CREATE TABLE table_name_19 (date INTEGER, opponent VARCHAR) ### Question: What is the average date of the game with the Detroit Red Wings as the opponent? ### Answer: SELECT AVG(date) FROM table_name_19 WHERE opponent = "detroit red wings" |
What is the date of the game with a score of 4-2? | CREATE TABLE table_name_51 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_51 WHERE score = "4-2" | ### Context: CREATE TABLE table_name_51 (date VARCHAR, score VARCHAR) ### Question: What is the date of the game with a score of 4-2? ### Answer: SELECT date FROM table_name_51 WHERE score = "4-2" |
What was the loss of the game that had a record of 3-3? | CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_41 WHERE record = "3-3" | ### Context: CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR) ### Question: What was the loss of the game that had a record of 3-3? ### Answer: SELECT loss FROM table_name_41 WHERE record = "3-3" |
What was the score of the game with a loss of Mercedes (0-1)? | CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR) | SELECT score FROM table_name_47 WHERE loss = "mercedes (0-1)" | ### Context: CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR) ### Question: What was the score of the game with a loss of Mercedes (0-1)? ### Answer: SELECT score FROM table_name_47 WHERE loss = "mercedes (0-1)" |
Who was the opponent at the game with a loss of Weaver (1-2)? | CREATE TABLE table_name_71 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_71 WHERE loss = "weaver (1-2)" | ### Context: CREATE TABLE table_name_71 (opponent VARCHAR, loss VARCHAR) ### Question: Who was the opponent at the game with a loss of Weaver (1-2)? ### Answer: SELECT opponent FROM table_name_71 WHERE loss = "weaver (1-2)" |
What's the Remixed by with a Version of Strings for Soul's Mix? | CREATE TABLE table_name_47 (remixed_by VARCHAR, version VARCHAR) | SELECT remixed_by FROM table_name_47 WHERE version = "strings for soul's mix" | ### Context: CREATE TABLE table_name_47 (remixed_by VARCHAR, version VARCHAR) ### Question: What's the Remixed by with a Version of Strings for Soul's Mix? ### Answer: SELECT remixed_by FROM table_name_47 WHERE version = "strings for soul's mix" |
What the highest Year with a Remixed by Laurent Boutonnat? | CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR) | SELECT MAX(year) FROM table_name_38 WHERE remixed_by = "laurent boutonnat" | ### Context: CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR) ### Question: What the highest Year with a Remixed by Laurent Boutonnat? ### Answer: SELECT MAX(year) FROM table_name_38 WHERE remixed_by = "laurent boutonnat" |
What's the total Year with a Length of 4:45 an has an Album of Les Mots? | CREATE TABLE table_name_36 (year INTEGER, length VARCHAR, album VARCHAR) | SELECT SUM(year) FROM table_name_36 WHERE length = "4:45" AND album = "les mots" | ### Context: CREATE TABLE table_name_36 (year INTEGER, length VARCHAR, album VARCHAR) ### Question: What's the total Year with a Length of 4:45 an has an Album of Les Mots? ### Answer: SELECT SUM(year) FROM table_name_36 WHERE length = "4:45" AND album = "les mots" |
What's the Length with the Version of Album Version? | CREATE TABLE table_name_60 (length VARCHAR, version VARCHAR) | SELECT length FROM table_name_60 WHERE version = "album version" | ### Context: CREATE TABLE table_name_60 (length VARCHAR, version VARCHAR) ### Question: What's the Length with the Version of Album Version? ### Answer: SELECT length FROM table_name_60 WHERE version = "album version" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.