question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the Attendance on Week 10? | CREATE TABLE table_name_34 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_34 WHERE week = 10 | ### Context: CREATE TABLE table_name_34 (attendance VARCHAR, week VARCHAR) ### Question: What was the Attendance on Week 10? ### Answer: SELECT attendance FROM table_name_34 WHERE week = 10 |
How many Points have a Home of pittsburgh, and a Score of 1–7? | CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR) | SELECT SUM(points) FROM table_name_11 WHERE home = "pittsburgh" AND score = "1–7" | ### Context: CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR) ### Question: How many Points have a Home of pittsburgh, and a Score of 1–7? ### Answer: SELECT SUM(points) FROM table_name_11 WHERE home = "pittsburgh" AND score = "1–7" |
Which Date has a Record of 7–7–1? | CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_49 WHERE record = "7–7–1" | ### Context: CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 7–7–1? ### Answer: SELECT date FROM table_name_49 WHERE record = "7–7–1" |
Which Date has a Record of 11–10–2? | CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_92 WHERE record = "11–10–2" | ### Context: CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 11–10–2? ### Answer: SELECT date FROM table_name_92 WHERE record = "11–10–2" |
Which position had 3 podiums and F/laps of 4? | CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR) | SELECT position FROM table_name_14 WHERE podiums = "3" AND f_laps = "4" | ### Context: CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR) ### Question: Which position had 3 podiums and F/laps of 4? ### Answer: SELECT position FROM table_name_14 WHERE podiums = "3" AND f_laps = "4" |
What is the number of races associated with Team ASM and 0 poles? | CREATE TABLE table_name_19 (races VARCHAR, poles VARCHAR, team VARCHAR) | SELECT races FROM table_name_19 WHERE poles = "0" AND team = "asm" | ### Context: CREATE TABLE table_name_19 (races VARCHAR, poles VARCHAR, team VARCHAR) ### Question: What is the number of races associated with Team ASM and 0 poles? ### Answer: SELECT races FROM table_name_19 WHERE poles = "0" AND team = "asm" |
Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring? | CREATE TABLE table_name_44 (team VARCHAR, series VARCHAR, races VARCHAR, f_laps VARCHAR) | SELECT team FROM table_name_44 WHERE races = "1" AND f_laps = "1" AND series = "24 hours of nurburgring" | ### Context: CREATE TABLE table_name_44 (team VARCHAR, series VARCHAR, races VARCHAR, f_laps VARCHAR) ### Question: Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring? ### Answer: SELECT team FROM table_name_44 WHERE races = "1" AND f_laps = "1" AND series = "24 hours of nurburgring" |
What is the number of podiums associated with 4 wins? | CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR) | SELECT podiums FROM table_name_89 WHERE wins = "4" | ### Context: CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR) ### Question: What is the number of podiums associated with 4 wins? ### Answer: SELECT podiums FROM table_name_89 WHERE wins = "4" |
What is the number of races associated with 7 podiums and a position of 4th? | CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR) | SELECT races FROM table_name_93 WHERE position = "4th" AND podiums = "7" | ### Context: CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR) ### Question: What is the number of races associated with 7 podiums and a position of 4th? ### Answer: SELECT races FROM table_name_93 WHERE position = "4th" AND podiums = "7" |
What is the F/Laps value associated with a position of 3rd? | CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR) | SELECT f_laps FROM table_name_97 WHERE position = "3rd" | ### Context: CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR) ### Question: What is the F/Laps value associated with a position of 3rd? ### Answer: SELECT f_laps FROM table_name_97 WHERE position = "3rd" |
Can you tell me the Opponent that has the Time of 0:20? | CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_72 WHERE time = "0:20" | ### Context: CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR) ### Question: Can you tell me the Opponent that has the Time of 0:20? ### Answer: SELECT opponent FROM table_name_72 WHERE time = "0:20" |
Can you tell me the Time that has the Opponent of phil baroni? | CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_75 WHERE opponent = "phil baroni" | ### Context: CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR) ### Question: Can you tell me the Time that has the Opponent of phil baroni? ### Answer: SELECT time FROM table_name_75 WHERE opponent = "phil baroni" |
Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)? | CREATE TABLE table_name_6 (round INTEGER, location VARCHAR, method VARCHAR) | SELECT MIN(round) FROM table_name_6 WHERE location = "indiana, united states" AND method = "submission (guillotine choke)" | ### Context: CREATE TABLE table_name_6 (round INTEGER, location VARCHAR, method VARCHAR) ### Question: Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)? ### Answer: SELECT MIN(round) FROM table_name_6 WHERE location = "indiana, united states" AND method = "submission (guillotine choke)" |
When was la vista built? | CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR) | SELECT built FROM table_name_9 WHERE location = "la vista" | ### Context: CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR) ### Question: When was la vista built? ### Answer: SELECT built FROM table_name_9 WHERE location = "la vista" |
When was the sargent bridge built? | CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR) | SELECT built FROM table_name_61 WHERE name = "sargent bridge" | ### Context: CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR) ### Question: When was the sargent bridge built? ### Answer: SELECT built FROM table_name_61 WHERE name = "sargent bridge" |
What's the location for the country of platte? | CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR) | SELECT location FROM table_name_64 WHERE county = "platte" | ### Context: CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR) ### Question: What's the location for the country of platte? ### Answer: SELECT location FROM table_name_64 WHERE county = "platte" |
what is the listing date for nuckolls county? | CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR) | SELECT listed FROM table_name_79 WHERE county = "nuckolls" | ### Context: CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR) ### Question: what is the listing date for nuckolls county? ### Answer: SELECT listed FROM table_name_79 WHERE county = "nuckolls" |
what's the listing date for the verdigris creek bridge in royal of antelope county? | CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARCHAR) | SELECT listed FROM table_name_83 WHERE county = "antelope" AND location = "royal" AND name = "verdigris creek bridge" | ### Context: CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARCHAR) ### Question: what's the listing date for the verdigris creek bridge in royal of antelope county? ### Answer: SELECT listed FROM table_name_83 WHERE county = "antelope" AND location = "royal" AND name = "verdigris creek bridge" |
what's the county name for the republican river bridge listed on 1992-06-29? | CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR) | SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge" | ### Context: CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR) ### Question: what's the county name for the republican river bridge listed on 1992-06-29? ### Answer: SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge" |
what is the to par when the place is t10 and the score is 72-74-71-69=286? | CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286 | ### Context: CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR) ### Question: what is the to par when the place is t10 and the score is 72-74-71-69=286? ### Answer: SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286 |
what is the to par when the player is hale irwin? | CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_80 WHERE player = "hale irwin" | ### Context: CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR) ### Question: what is the to par when the player is hale irwin? ### Answer: SELECT to_par FROM table_name_80 WHERE player = "hale irwin" |
what is the to par for Dave hill? | CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_52 WHERE player = "dave hill" | ### Context: CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR) ### Question: what is the to par for Dave hill? ### Answer: SELECT to_par FROM table_name_52 WHERE player = "dave hill" |
what is the place when the score is 68-67-73-68=276? | CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_20 WHERE score = 68 - 67 - 73 - 68 = 276 | ### Context: CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR) ### Question: what is the place when the score is 68-67-73-68=276? ### Answer: SELECT place FROM table_name_20 WHERE score = 68 - 67 - 73 - 68 = 276 |
Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers? | CREATE TABLE table_name_16 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_16 WHERE week < 13 AND opponent = "green bay packers" | ### Context: CREATE TABLE table_name_16 (date VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers? ### Answer: SELECT date FROM table_name_16 WHERE week < 13 AND opponent = "green bay packers" |
Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12? | CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT AVG(attendance) FROM table_name_45 WHERE opponent = "new orleans saints" AND week > 12 | ### Context: CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR) ### Question: Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12? ### Answer: SELECT AVG(attendance) FROM table_name_45 WHERE opponent = "new orleans saints" AND week > 12 |
Can you tell me the Attendance that has the Opponent of new york giants? | CREATE TABLE table_name_70 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_70 WHERE opponent = "new york giants" | ### Context: CREATE TABLE table_name_70 (attendance VARCHAR, opponent VARCHAR) ### Question: Can you tell me the Attendance that has the Opponent of new york giants? ### Answer: SELECT attendance FROM table_name_70 WHERE opponent = "new york giants" |
What is the density (hab/km²) with a population censo 2007(hab) of 336.293*? | CREATE TABLE table_name_4 (density__hab__km²__ VARCHAR, population_censo_2007_hab_ VARCHAR) | SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = "336.293*" | ### Context: CREATE TABLE table_name_4 (density__hab__km²__ VARCHAR, population_censo_2007_hab_ VARCHAR) ### Question: What is the density (hab/km²) with a population censo 2007(hab) of 336.293*? ### Answer: SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = "336.293*" |
What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*? | CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR) | SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = "112.054*" | ### Context: CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR) ### Question: What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*? ### Answer: SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = "112.054*" |
What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei? | CREATE TABLE table_name_21 (density__hab__km²__ VARCHAR, population_under_1_year_old_censo_2007_hab_ VARCHAR) | SELECT density__hab__km²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = "* data from the census taken by the inei" | ### Context: CREATE TABLE table_name_21 (density__hab__km²__ VARCHAR, population_under_1_year_old_censo_2007_hab_ VARCHAR) ### Question: What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei? ### Answer: SELECT density__hab__km²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = "* data from the census taken by the inei" |
What is the elevation msnm for a population censo 2007(hab) of 77.392*? | CREATE TABLE table_name_59 (elevation_msnm VARCHAR, population_censo_2007_hab_ VARCHAR) | SELECT elevation_msnm FROM table_name_59 WHERE population_censo_2007_hab_ = "77.392*" | ### Context: CREATE TABLE table_name_59 (elevation_msnm VARCHAR, population_censo_2007_hab_ VARCHAR) ### Question: What is the elevation msnm for a population censo 2007(hab) of 77.392*? ### Answer: SELECT elevation_msnm FROM table_name_59 WHERE population_censo_2007_hab_ = "77.392*" |
What's the report about townsville crocodiles as an away team? | CREATE TABLE table_name_35 (report VARCHAR, away_team VARCHAR) | SELECT report FROM table_name_35 WHERE away_team = "townsville crocodiles" | ### Context: CREATE TABLE table_name_35 (report VARCHAR, away_team VARCHAR) ### Question: What's the report about townsville crocodiles as an away team? ### Answer: SELECT report FROM table_name_35 WHERE away_team = "townsville crocodiles" |
What's the record of game 67? | CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_42 WHERE game = 67 | ### Context: CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR) ### Question: What's the record of game 67? ### Answer: SELECT record FROM table_name_42 WHERE game = 67 |
What's the score of the game against the Boston Bruins and after game 68? | CREATE TABLE table_name_62 (score VARCHAR, game VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_62 WHERE game > 68 AND opponent = "boston bruins" | ### Context: CREATE TABLE table_name_62 (score VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: What's the score of the game against the Boston Bruins and after game 68? ### Answer: SELECT score FROM table_name_62 WHERE game > 68 AND opponent = "boston bruins" |
what is the natural change (per 1000) when the crude death rate (per 1000) is 10? | CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR) | SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10 | ### Context: CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR) ### Question: what is the natural change (per 1000) when the crude death rate (per 1000) is 10? ### Answer: SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10 |
what is the crude birth rate (per 1000) when the live births 1 is 356 013? | CREATE TABLE table_name_72 (crude_birth_rate__per_1000_ INTEGER, live_births_1 VARCHAR) | SELECT SUM(crude_birth_rate__per_1000_) FROM table_name_72 WHERE live_births_1 = "356 013" | ### Context: CREATE TABLE table_name_72 (crude_birth_rate__per_1000_ INTEGER, live_births_1 VARCHAR) ### Question: what is the crude birth rate (per 1000) when the live births 1 is 356 013? ### Answer: SELECT SUM(crude_birth_rate__per_1000_) FROM table_name_72 WHERE live_births_1 = "356 013" |
what is the natural change (per 1000) when the live births 1 is 278 977? | CREATE TABLE table_name_73 (natural_change__per_1000_ VARCHAR, live_births_1 VARCHAR) | SELECT natural_change__per_1000_ FROM table_name_73 WHERE live_births_1 = "278 977" | ### Context: CREATE TABLE table_name_73 (natural_change__per_1000_ VARCHAR, live_births_1 VARCHAR) ### Question: what is the natural change (per 1000) when the live births 1 is 278 977? ### Answer: SELECT natural_change__per_1000_ FROM table_name_73 WHERE live_births_1 = "278 977" |
Which Player has a To par of e, and a Country of united states? | CREATE TABLE table_name_68 (player VARCHAR, to_par VARCHAR, country VARCHAR) | SELECT player FROM table_name_68 WHERE to_par = "e" AND country = "united states" | ### Context: CREATE TABLE table_name_68 (player VARCHAR, to_par VARCHAR, country VARCHAR) ### Question: Which Player has a To par of e, and a Country of united states? ### Answer: SELECT player FROM table_name_68 WHERE to_par = "e" AND country = "united states" |
Which Place has a Score smaller than 72, and a To par of −1, and a Country of spain? | CREATE TABLE table_name_51 (place VARCHAR, country VARCHAR, score VARCHAR, to_par VARCHAR) | SELECT place FROM table_name_51 WHERE score < 72 AND to_par = "−1" AND country = "spain" | ### Context: CREATE TABLE table_name_51 (place VARCHAR, country VARCHAR, score VARCHAR, to_par VARCHAR) ### Question: Which Place has a Score smaller than 72, and a To par of −1, and a Country of spain? ### Answer: SELECT place FROM table_name_51 WHERE score < 72 AND to_par = "−1" AND country = "spain" |
What was john huston's score? | CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_56 WHERE player = "john huston" | ### Context: CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR) ### Question: What was john huston's score? ### Answer: SELECT score FROM table_name_56 WHERE player = "john huston" |
What was willie wood's to par? | CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_15 WHERE player = "willie wood" | ### Context: CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR) ### Question: What was willie wood's to par? ### Answer: SELECT to_par FROM table_name_15 WHERE player = "willie wood" |
What is the Prize amount of Winner Dominik Nitsche? | CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR) | SELECT prize FROM table_name_15 WHERE winner = "dominik nitsche" | ### Context: CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR) ### Question: What is the Prize amount of Winner Dominik Nitsche? ### Answer: SELECT prize FROM table_name_15 WHERE winner = "dominik nitsche" |
What is the Winner of the Event in Nuevo Vallarta? | CREATE TABLE table_name_63 (winner VARCHAR, city VARCHAR) | SELECT winner FROM table_name_63 WHERE city = "nuevo vallarta" | ### Context: CREATE TABLE table_name_63 (winner VARCHAR, city VARCHAR) ### Question: What is the Winner of the Event in Nuevo Vallarta? ### Answer: SELECT winner FROM table_name_63 WHERE city = "nuevo vallarta" |
What is the Date of the Event in Punta del Este? | CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR) | SELECT date FROM table_name_68 WHERE city = "punta del este" | ### Context: CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR) ### Question: What is the Date of the Event in Punta del Este? ### Answer: SELECT date FROM table_name_68 WHERE city = "punta del este" |
What is the Date of the Event with a Prize of $141,426? | CREATE TABLE table_name_92 (date VARCHAR, prize VARCHAR) | SELECT date FROM table_name_92 WHERE prize = "$141,426" | ### Context: CREATE TABLE table_name_92 (date VARCHAR, prize VARCHAR) ### Question: What is the Date of the Event with a Prize of $141,426? ### Answer: SELECT date FROM table_name_92 WHERE prize = "$141,426" |
What is the title of ahaziah? | CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR) | SELECT title FROM table_name_16 WHERE name = "ahaziah" | ### Context: CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR) ### Question: What is the title of ahaziah? ### Answer: SELECT title FROM table_name_16 WHERE name = "ahaziah" |
What is the type of the king title? | CREATE TABLE table_name_2 (type VARCHAR, title VARCHAR) | SELECT type FROM table_name_2 WHERE title = "king" | ### Context: CREATE TABLE table_name_2 (type VARCHAR, title VARCHAR) ### Question: What is the type of the king title? ### Answer: SELECT type FROM table_name_2 WHERE title = "king" |
What is the name of the queen regnant? | CREATE TABLE table_name_48 (name VARCHAR, title VARCHAR) | SELECT name FROM table_name_48 WHERE title = "queen regnant" | ### Context: CREATE TABLE table_name_48 (name VARCHAR, title VARCHAR) ### Question: What is the name of the queen regnant? ### Answer: SELECT name FROM table_name_48 WHERE title = "queen regnant" |
What is the total number of Grid, when Rider is Aleix Espargaro? | CREATE TABLE table_name_2 (grid VARCHAR, rider VARCHAR) | SELECT COUNT(grid) FROM table_name_2 WHERE rider = "aleix espargaro" | ### Context: CREATE TABLE table_name_2 (grid VARCHAR, rider VARCHAR) ### Question: What is the total number of Grid, when Rider is Aleix Espargaro? ### Answer: SELECT COUNT(grid) FROM table_name_2 WHERE rider = "aleix espargaro" |
What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288? | CREATE TABLE table_name_23 (rider VARCHAR, time VARCHAR, grid VARCHAR, manufacturer VARCHAR) | SELECT rider FROM table_name_23 WHERE grid < 16 AND manufacturer = "aprilia" AND time = "+28.288" | ### Context: CREATE TABLE table_name_23 (rider VARCHAR, time VARCHAR, grid VARCHAR, manufacturer VARCHAR) ### Question: What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288? ### Answer: SELECT rider FROM table_name_23 WHERE grid < 16 AND manufacturer = "aprilia" AND time = "+28.288" |
What is the average Laps, when Grid is 15? | CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR) | SELECT AVG(laps) FROM table_name_74 WHERE grid = 15 | ### Context: CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR) ### Question: What is the average Laps, when Grid is 15? ### Answer: SELECT AVG(laps) FROM table_name_74 WHERE grid = 15 |
What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro? | CREATE TABLE table_name_47 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR) | SELECT manufacturer FROM table_name_47 WHERE laps = 26 AND rider = "aleix espargaro" | ### Context: CREATE TABLE table_name_47 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR) ### Question: What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro? ### Answer: SELECT manufacturer FROM table_name_47 WHERE laps = 26 AND rider = "aleix espargaro" |
What is Date, when Away Team is "Ipswich Town"? | CREATE TABLE table_name_20 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_20 WHERE away_team = "ipswich town" | ### Context: CREATE TABLE table_name_20 (date VARCHAR, away_team VARCHAR) ### Question: What is Date, when Away Team is "Ipswich Town"? ### Answer: SELECT date FROM table_name_20 WHERE away_team = "ipswich town" |
What is Tie No, when Away Team is "Millwall"? | CREATE TABLE table_name_71 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_71 WHERE away_team = "millwall" | ### Context: CREATE TABLE table_name_71 (tie_no VARCHAR, away_team VARCHAR) ### Question: What is Tie No, when Away Team is "Millwall"? ### Answer: SELECT tie_no FROM table_name_71 WHERE away_team = "millwall" |
What is Score, when Date is "13 March 1985", and when Away Team is "Millwall"? | CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_67 WHERE date = "13 march 1985" AND away_team = "millwall" | ### Context: CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: What is Score, when Date is "13 March 1985", and when Away Team is "Millwall"? ### Answer: SELECT score FROM table_name_67 WHERE date = "13 march 1985" AND away_team = "millwall" |
What is Date, when Away Team is "Liverpool"? | CREATE TABLE table_name_91 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_91 WHERE away_team = "liverpool" | ### Context: CREATE TABLE table_name_91 (date VARCHAR, away_team VARCHAR) ### Question: What is Date, when Away Team is "Liverpool"? ### Answer: SELECT date FROM table_name_91 WHERE away_team = "liverpool" |
What is Score, when Home Team is "Manchester United"? | CREATE TABLE table_name_50 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_50 WHERE home_team = "manchester united" | ### Context: CREATE TABLE table_name_50 (score VARCHAR, home_team VARCHAR) ### Question: What is Score, when Home Team is "Manchester United"? ### Answer: SELECT score FROM table_name_50 WHERE home_team = "manchester united" |
What is Team, when High Rebounds is "Carl Landry (11)"? | CREATE TABLE table_name_78 (team VARCHAR, high_rebounds VARCHAR) | SELECT team FROM table_name_78 WHERE high_rebounds = "carl landry (11)" | ### Context: CREATE TABLE table_name_78 (team VARCHAR, high_rebounds VARCHAR) ### Question: What is Team, when High Rebounds is "Carl Landry (11)"? ### Answer: SELECT team FROM table_name_78 WHERE high_rebounds = "carl landry (11)" |
What is Location Attendance, when High Assists is "Rafer Alston (7)", and when High Rebounds is "Yao Ming (13)"? | CREATE TABLE table_name_64 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR) | SELECT location_attendance FROM table_name_64 WHERE high_assists = "rafer alston (7)" AND high_rebounds = "yao ming (13)" | ### Context: CREATE TABLE table_name_64 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR) ### Question: What is Location Attendance, when High Assists is "Rafer Alston (7)", and when High Rebounds is "Yao Ming (13)"? ### Answer: SELECT location_attendance FROM table_name_64 WHERE high_assists = "rafer alston (7)" AND high_rebounds = "yao ming (13)" |
What is Score, when Team is "@ Memphis"? | CREATE TABLE table_name_15 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_15 WHERE team = "@ memphis" | ### Context: CREATE TABLE table_name_15 (score VARCHAR, team VARCHAR) ### Question: What is Score, when Team is "@ Memphis"? ### Answer: SELECT score FROM table_name_15 WHERE team = "@ memphis" |
What is the result of the ajc craven plate (wfa) race? | CREATE TABLE table_name_88 (result VARCHAR, race VARCHAR) | SELECT result FROM table_name_88 WHERE race = "ajc craven plate (wfa)" | ### Context: CREATE TABLE table_name_88 (result VARCHAR, race VARCHAR) ### Question: What is the result of the ajc craven plate (wfa) race? ### Answer: SELECT result FROM table_name_88 WHERE race = "ajc craven plate (wfa)" |
What is the result of the sajc king's cup race, which has a weight heavier than 8.1? | CREATE TABLE table_name_23 (result VARCHAR, weight VARCHAR, race VARCHAR) | SELECT result FROM table_name_23 WHERE weight > 8.1 AND race = "sajc king's cup" | ### Context: CREATE TABLE table_name_23 (result VARCHAR, weight VARCHAR, race VARCHAR) ### Question: What is the result of the sajc king's cup race, which has a weight heavier than 8.1? ### Answer: SELECT result FROM table_name_23 WHERE weight > 8.1 AND race = "sajc king's cup" |
What is the race with a 10f distance and mollison as the winner or 2nd? | CREATE TABLE table_name_12 (race VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR) | SELECT race FROM table_name_12 WHERE distance = "10f" AND winner_or_2nd = "mollison" | ### Context: CREATE TABLE table_name_12 (race VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR) ### Question: What is the race with a 10f distance and mollison as the winner or 2nd? ### Answer: SELECT race FROM table_name_12 WHERE distance = "10f" AND winner_or_2nd = "mollison" |
What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126? | CREATE TABLE table_name_87 (bush_number INTEGER, bush_percentage VARCHAR, total VARCHAR) | SELECT MAX(bush_number) FROM table_name_87 WHERE bush_percentage = "32.40%" AND total < 5 OFFSET 126 | ### Context: CREATE TABLE table_name_87 (bush_number INTEGER, bush_percentage VARCHAR, total VARCHAR) ### Question: What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126? ### Answer: SELECT MAX(bush_number) FROM table_name_87 WHERE bush_percentage = "32.40%" AND total < 5 OFFSET 126 |
What is the location and attendance when the score as w 117–109 (ot)? | CREATE TABLE table_name_83 (location_attendance VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_name_83 WHERE score = "w 117–109 (ot)" | ### Context: CREATE TABLE table_name_83 (location_attendance VARCHAR, score VARCHAR) ### Question: What is the location and attendance when the score as w 117–109 (ot)? ### Answer: SELECT location_attendance FROM table_name_83 WHERE score = "w 117–109 (ot)" |
What were the last 5 meetings when Columbia was mu, 4-2? | CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR) | SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = "mu, 4-2" | ### Context: CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR) ### Question: What were the last 5 meetings when Columbia was mu, 4-2? ### Answer: SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = "mu, 4-2" |
What is the total number of rounds at 5:36? | CREATE TABLE table_name_29 (round VARCHAR, time VARCHAR) | SELECT COUNT(round) FROM table_name_29 WHERE time = "5:36" | ### Context: CREATE TABLE table_name_29 (round VARCHAR, time VARCHAR) ### Question: What is the total number of rounds at 5:36? ### Answer: SELECT COUNT(round) FROM table_name_29 WHERE time = "5:36" |
What is the total number of rounds with a 4-0 record? | CREATE TABLE table_name_57 (round VARCHAR, record VARCHAR) | SELECT COUNT(round) FROM table_name_57 WHERE record = "4-0" | ### Context: CREATE TABLE table_name_57 (round VARCHAR, record VARCHAR) ### Question: What is the total number of rounds with a 4-0 record? ### Answer: SELECT COUNT(round) FROM table_name_57 WHERE record = "4-0" |
Which district is in the province of Piura? | CREATE TABLE table_name_36 (districts VARCHAR, province VARCHAR) | SELECT districts FROM table_name_36 WHERE province = "piura" | ### Context: CREATE TABLE table_name_36 (districts VARCHAR, province VARCHAR) ### Question: Which district is in the province of Piura? ### Answer: SELECT districts FROM table_name_36 WHERE province = "piura" |
What is the population of Chimbote? | CREATE TABLE table_name_38 (population INTEGER, name_of_city VARCHAR) | SELECT SUM(population) FROM table_name_38 WHERE name_of_city = "chimbote" | ### Context: CREATE TABLE table_name_38 (population INTEGER, name_of_city VARCHAR) ### Question: What is the population of Chimbote? ### Answer: SELECT SUM(population) FROM table_name_38 WHERE name_of_city = "chimbote" |
What is the result of the game that was played at Detroit Lions? | CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_32 WHERE opponent = "at detroit lions" | ### Context: CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR) ### Question: What is the result of the game that was played at Detroit Lions? ### Answer: SELECT result FROM table_name_32 WHERE opponent = "at detroit lions" |
What series number was directed by milan cheylov and written by will dixon? | CREATE TABLE table_name_81 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR) | SELECT AVG(series__number) FROM table_name_81 WHERE directed_by = "milan cheylov" AND written_by = "will dixon" | ### Context: CREATE TABLE table_name_81 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR) ### Question: What series number was directed by milan cheylov and written by will dixon? ### Answer: SELECT AVG(series__number) FROM table_name_81 WHERE directed_by = "milan cheylov" AND written_by = "will dixon" |
What series # had an original air date of november 30, 1996? | CREATE TABLE table_name_52 (series__number INTEGER, original_air_date VARCHAR) | SELECT MIN(series__number) FROM table_name_52 WHERE original_air_date = "november 30, 1996" | ### Context: CREATE TABLE table_name_52 (series__number INTEGER, original_air_date VARCHAR) ### Question: What series # had an original air date of november 30, 1996? ### Answer: SELECT MIN(series__number) FROM table_name_52 WHERE original_air_date = "november 30, 1996" |
What was part 4 when part 3 was *hleupun? | CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR) | SELECT part_4 FROM table_name_65 WHERE part_3 = "*hleupun" | ### Context: CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR) ### Question: What was part 4 when part 3 was *hleupun? ### Answer: SELECT part_4 FROM table_name_65 WHERE part_3 = "*hleupun" |
What was the class when part 2 was *hēt? | CREATE TABLE table_name_61 (class VARCHAR, part_2 VARCHAR) | SELECT class FROM table_name_61 WHERE part_2 = "*hēt" | ### Context: CREATE TABLE table_name_61 (class VARCHAR, part_2 VARCHAR) ### Question: What was the class when part 2 was *hēt? ### Answer: SELECT class FROM table_name_61 WHERE part_2 = "*hēt" |
What was the class when part 4 was *rādanaz? | CREATE TABLE table_name_39 (class VARCHAR, part_4 VARCHAR) | SELECT class FROM table_name_39 WHERE part_4 = "*rādanaz" | ### Context: CREATE TABLE table_name_39 (class VARCHAR, part_4 VARCHAR) ### Question: What was the class when part 4 was *rādanaz? ### Answer: SELECT class FROM table_name_39 WHERE part_4 = "*rādanaz" |
What was part 2 when part 4 was *blōtanaz? | CREATE TABLE table_name_67 (part_2 VARCHAR, part_4 VARCHAR) | SELECT part_2 FROM table_name_67 WHERE part_4 = "*blōtanaz" | ### Context: CREATE TABLE table_name_67 (part_2 VARCHAR, part_4 VARCHAR) ### Question: What was part 2 when part 4 was *blōtanaz? ### Answer: SELECT part_2 FROM table_name_67 WHERE part_4 = "*blōtanaz" |
What was part 2 when part 4 was *haldanaz? | CREATE TABLE table_name_69 (part_2 VARCHAR, part_4 VARCHAR) | SELECT part_2 FROM table_name_69 WHERE part_4 = "*haldanaz" | ### Context: CREATE TABLE table_name_69 (part_2 VARCHAR, part_4 VARCHAR) ### Question: What was part 2 when part 4 was *haldanaz? ### Answer: SELECT part_2 FROM table_name_69 WHERE part_4 = "*haldanaz" |
What was the class when part 3 was *heldun? | CREATE TABLE table_name_79 (class VARCHAR, part_3 VARCHAR) | SELECT class FROM table_name_79 WHERE part_3 = "*heldun" | ### Context: CREATE TABLE table_name_79 (class VARCHAR, part_3 VARCHAR) ### Question: What was the class when part 3 was *heldun? ### Answer: SELECT class FROM table_name_79 WHERE part_3 = "*heldun" |
What is the Round din Ullevaal? | CREATE TABLE table_name_23 (round VARCHAR, venue VARCHAR) | SELECT round FROM table_name_23 WHERE venue = "ullevaal" | ### Context: CREATE TABLE table_name_23 (round VARCHAR, venue VARCHAR) ### Question: What is the Round din Ullevaal? ### Answer: SELECT round FROM table_name_23 WHERE venue = "ullevaal" |
What Round is in Ullevaal? | CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR) | SELECT round FROM table_name_99 WHERE venue = "ullevaal" | ### Context: CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR) ### Question: What Round is in Ullevaal? ### Answer: SELECT round FROM table_name_99 WHERE venue = "ullevaal" |
In what Venue was the Score 1-1? | CREATE TABLE table_name_76 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_76 WHERE score = "1-1" | ### Context: CREATE TABLE table_name_76 (venue VARCHAR, score VARCHAR) ### Question: In what Venue was the Score 1-1? ### Answer: SELECT venue FROM table_name_76 WHERE score = "1-1" |
What was the Score of the Semifinal 1? | CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR) | SELECT score FROM table_name_31 WHERE round = "semifinal 1" | ### Context: CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR) ### Question: What was the Score of the Semifinal 1? ### Answer: SELECT score FROM table_name_31 WHERE round = "semifinal 1" |
What are the ends for the player with a transfer fee of loan? | CREATE TABLE table_name_33 (ends VARCHAR, transfer_fee VARCHAR) | SELECT ends FROM table_name_33 WHERE transfer_fee = "loan" | ### Context: CREATE TABLE table_name_33 (ends VARCHAR, transfer_fee VARCHAR) ### Question: What are the ends for the player with a transfer fee of loan? ### Answer: SELECT ends FROM table_name_33 WHERE transfer_fee = "loan" |
What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006? | CREATE TABLE table_name_60 (transfer_fee VARCHAR, nat VARCHAR, since VARCHAR, goals VARCHAR) | SELECT transfer_fee FROM table_name_60 WHERE since = "2006" AND goals < 63 AND nat = "mli" | ### Context: CREATE TABLE table_name_60 (transfer_fee VARCHAR, nat VARCHAR, since VARCHAR, goals VARCHAR) ### Question: What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006? ### Answer: SELECT transfer_fee FROM table_name_60 WHERE since = "2006" AND goals < 63 AND nat = "mli" |
What is the royal house for Wu at the state of cai? | CREATE TABLE table_name_45 (royal_house VARCHAR, name VARCHAR, state VARCHAR) | SELECT royal_house FROM table_name_45 WHERE name = "wu" AND state = "cai" | ### Context: CREATE TABLE table_name_45 (royal_house VARCHAR, name VARCHAR, state VARCHAR) ### Question: What is the royal house for Wu at the state of cai? ### Answer: SELECT royal_house FROM table_name_45 WHERE name = "wu" AND state = "cai" |
What is the state where the title is listed as count? | CREATE TABLE table_name_63 (state VARCHAR, title VARCHAR) | SELECT state FROM table_name_63 WHERE title = "count" | ### Context: CREATE TABLE table_name_63 (state VARCHAR, title VARCHAR) ### Question: What is the state where the title is listed as count? ### Answer: SELECT state FROM table_name_63 WHERE title = "count" |
What is the state for the royal house of ying? | CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR) | SELECT state FROM table_name_58 WHERE royal_house = "ying" | ### Context: CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR) ### Question: What is the state for the royal house of ying? ### Answer: SELECT state FROM table_name_58 WHERE royal_house = "ying" |
Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5? | CREATE TABLE table_name_62 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = "6–2, 6–3, 2–6, 7–5" | ### Context: CREATE TABLE table_name_62 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5? ### Answer: SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = "6–2, 6–3, 2–6, 7–5" |
How many Dates have a Score in the final of 6–4, 6–2? | CREATE TABLE table_name_92 (date INTEGER, score_in_the_final VARCHAR) | SELECT SUM(date) FROM table_name_92 WHERE score_in_the_final = "6–4, 6–2" | ### Context: CREATE TABLE table_name_92 (date INTEGER, score_in_the_final VARCHAR) ### Question: How many Dates have a Score in the final of 6–4, 6–2? ### Answer: SELECT SUM(date) FROM table_name_92 WHERE score_in_the_final = "6–4, 6–2" |
Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6? | CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR) | SELECT surface FROM table_name_87 WHERE outcome = "runner-up" AND score_in_the_final = "4–6, 6–7, 6–2, 2–6" | ### Context: CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR) ### Question: Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6? ### Answer: SELECT surface FROM table_name_87 WHERE outcome = "runner-up" AND score_in_the_final = "4–6, 6–7, 6–2, 2–6" |
Which Opponent in the final has an Outcome of winner, and a Date larger than 1992, and a Surface of clay, and a Score in the final of 3–6, 6–2, 6–1? | CREATE TABLE table_name_65 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR, surface VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_65 WHERE outcome = "winner" AND date > 1992 AND surface = "clay" AND score_in_the_final = "3–6, 6–2, 6–1" | ### Context: CREATE TABLE table_name_65 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR, surface VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Which Opponent in the final has an Outcome of winner, and a Date larger than 1992, and a Surface of clay, and a Score in the final of 3–6, 6–2, 6–1? ### Answer: SELECT opponent_in_the_final FROM table_name_65 WHERE outcome = "winner" AND date > 1992 AND surface = "clay" AND score_in_the_final = "3–6, 6–2, 6–1" |
Which Surface has a Score in the final of 2–6, 6–7? | CREATE TABLE table_name_42 (surface VARCHAR, score_in_the_final VARCHAR) | SELECT surface FROM table_name_42 WHERE score_in_the_final = "2–6, 6–7" | ### Context: CREATE TABLE table_name_42 (surface VARCHAR, score_in_the_final VARCHAR) ### Question: Which Surface has a Score in the final of 2–6, 6–7? ### Answer: SELECT surface FROM table_name_42 WHERE score_in_the_final = "2–6, 6–7" |
What day in November has a record of 15-6-1? | CREATE TABLE table_name_91 (november INTEGER, record VARCHAR) | SELECT AVG(november) FROM table_name_91 WHERE record = "15-6-1" | ### Context: CREATE TABLE table_name_91 (november INTEGER, record VARCHAR) ### Question: What day in November has a record of 15-6-1? ### Answer: SELECT AVG(november) FROM table_name_91 WHERE record = "15-6-1" |
What day in November has the game less than 12? | CREATE TABLE table_name_55 (november VARCHAR, game INTEGER) | SELECT november FROM table_name_55 WHERE game < 12 | ### Context: CREATE TABLE table_name_55 (november VARCHAR, game INTEGER) ### Question: What day in November has the game less than 12? ### Answer: SELECT november FROM table_name_55 WHERE game < 12 |
What is the earliest day in November with a record of 15-7-1? | CREATE TABLE table_name_67 (november INTEGER, record VARCHAR) | SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1" | ### Context: CREATE TABLE table_name_67 (november INTEGER, record VARCHAR) ### Question: What is the earliest day in November with a record of 15-7-1? ### Answer: SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1" |
What is Finish, when Country is "South Africa"? | CREATE TABLE table_name_54 (finish VARCHAR, country VARCHAR) | SELECT finish FROM table_name_54 WHERE country = "south africa" | ### Context: CREATE TABLE table_name_54 (finish VARCHAR, country VARCHAR) ### Question: What is Finish, when Country is "South Africa"? ### Answer: SELECT finish FROM table_name_54 WHERE country = "south africa" |
What is Player, when Country is "United States", and when Year(s) Won is "1976"? | CREATE TABLE table_name_40 (player VARCHAR, country VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_40 WHERE country = "united states" AND year_s__won = "1976" | ### Context: CREATE TABLE table_name_40 (player VARCHAR, country VARCHAR, year_s__won VARCHAR) ### Question: What is Player, when Country is "United States", and when Year(s) Won is "1976"? ### Answer: SELECT player FROM table_name_40 WHERE country = "united states" AND year_s__won = "1976" |
Which first round has a first team of angers sco (d1)? | CREATE TABLE table_name_90 (team_1 VARCHAR) | SELECT 1 AS st_round FROM table_name_90 WHERE team_1 = "angers sco (d1)" | ### Context: CREATE TABLE table_name_90 (team_1 VARCHAR) ### Question: Which first round has a first team of angers sco (d1)? ### Answer: SELECT 1 AS st_round FROM table_name_90 WHERE team_1 = "angers sco (d1)" |
In which stadium does Club Pro Patria play? | CREATE TABLE table_name_43 (stadium VARCHAR, club VARCHAR) | SELECT stadium FROM table_name_43 WHERE club = "pro patria" | ### Context: CREATE TABLE table_name_43 (stadium VARCHAR, club VARCHAR) ### Question: In which stadium does Club Pro Patria play? ### Answer: SELECT stadium FROM table_name_43 WHERE club = "pro patria" |
What was the result of the 2007-08 season for the city of Ferrara? | CREATE TABLE table_name_33 (city VARCHAR) | SELECT 2007 AS _08_season FROM table_name_33 WHERE city = "ferrara" | ### Context: CREATE TABLE table_name_33 (city VARCHAR) ### Question: What was the result of the 2007-08 season for the city of Ferrara? ### Answer: SELECT 2007 AS _08_season FROM table_name_33 WHERE city = "ferrara" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.