question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the nation for 6 total?
CREATE TABLE table_name_13 (nation VARCHAR, total VARCHAR)
SELECT nation FROM table_name_13 WHERE total = 6
### Context: CREATE TABLE table_name_13 (nation VARCHAR, total VARCHAR) ### Question: What is the nation for 6 total? ### Answer: SELECT nation FROM table_name_13 WHERE total = 6
What is the bronze when silver is 4 and gold is 1 and the total is more than 2
CREATE TABLE table_name_50 (bronze VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR)
SELECT bronze FROM table_name_50 WHERE total > 2 AND gold = "1" AND silver = "4"
### Context: CREATE TABLE table_name_50 (bronze VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR) ### Question: What is the bronze when silver is 4 and gold is 1 and the total is more than 2 ### Answer: SELECT bronze FROM table_name_50 WHERE total > 2 AND gold = "1" AND silver = "4"
Tell me the gold for netherlands
CREATE TABLE table_name_20 (gold VARCHAR, nation VARCHAR)
SELECT gold FROM table_name_20 WHERE nation = "netherlands"
### Context: CREATE TABLE table_name_20 (gold VARCHAR, nation VARCHAR) ### Question: Tell me the gold for netherlands ### Answer: SELECT gold FROM table_name_20 WHERE nation = "netherlands"
Which Away team score has a Home team of richmond?
CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_58 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR) ### Question: Which Away team score has a Home team of richmond? ### Answer: SELECT away_team AS score FROM table_name_58 WHERE home_team = "richmond"
Which Home team score has an Away team of carlton?
CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_72 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR) ### Question: Which Home team score has an Away team of carlton? ### Answer: SELECT home_team AS score FROM table_name_72 WHERE away_team = "carlton"
What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191?
CREATE TABLE table_name_38 (no_in_series INTEGER, director VARCHAR, production_code VARCHAR)
SELECT SUM(no_in_series) FROM table_name_38 WHERE director = "jefferson kibbee" AND production_code = "2398191"
### Context: CREATE TABLE table_name_38 (no_in_series INTEGER, director VARCHAR, production_code VARCHAR) ### Question: What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191? ### Answer: SELECT SUM(no_in_series) FROM table_name_38 WHERE director = "jefferson kibbee" AND production_code = "2398191"
What is the 1st Edition for the Episode 4?
CREATE TABLE table_name_77 (episode VARCHAR)
SELECT 1 AS st_edition FROM table_name_77 WHERE episode = "4"
### Context: CREATE TABLE table_name_77 (episode VARCHAR) ### Question: What is the 1st Edition for the Episode 4? ### Answer: SELECT 1 AS st_edition FROM table_name_77 WHERE episode = "4"
What is the 1st Edition for Episode 11?
CREATE TABLE table_name_16 (episode VARCHAR)
SELECT 1 AS st_edition FROM table_name_16 WHERE episode = "11"
### Context: CREATE TABLE table_name_16 (episode VARCHAR) ### Question: What is the 1st Edition for Episode 11? ### Answer: SELECT 1 AS st_edition FROM table_name_16 WHERE episode = "11"
What is the 3rd Edition for Episode 4?
CREATE TABLE table_name_90 (episode VARCHAR)
SELECT 3 AS rd_edition FROM table_name_90 WHERE episode = "4"
### Context: CREATE TABLE table_name_90 (episode VARCHAR) ### Question: What is the 3rd Edition for Episode 4? ### Answer: SELECT 3 AS rd_edition FROM table_name_90 WHERE episode = "4"
Which home teams had crowds larger than 4,000?
CREATE TABLE table_name_25 (home_team VARCHAR, crowd INTEGER)
SELECT home_team FROM table_name_25 WHERE crowd > 4 OFFSET 000
### Context: CREATE TABLE table_name_25 (home_team VARCHAR, crowd INTEGER) ### Question: Which home teams had crowds larger than 4,000? ### Answer: SELECT home_team FROM table_name_25 WHERE crowd > 4 OFFSET 000
I want to know the date for western oval venue
CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_31 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR) ### Question: I want to know the date for western oval venue ### Answer: SELECT date FROM table_name_31 WHERE venue = "western oval"
What is the declination with a right ascension of 11h53m41.9s?
CREATE TABLE table_name_34 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT declination___j2000__ FROM table_name_34 WHERE right_ascension___j2000__ = "11h53m41.9s"
### Context: CREATE TABLE table_name_34 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR) ### Question: What is the declination with a right ascension of 11h53m41.9s? ### Answer: SELECT declination___j2000__ FROM table_name_34 WHERE right_ascension___j2000__ = "11h53m41.9s"
What is the 1st leg when team 1 is Chelsea?
CREATE TABLE table_name_58 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_58 WHERE team_1 = "chelsea"
### Context: CREATE TABLE table_name_58 (team_1 VARCHAR) ### Question: What is the 1st leg when team 1 is Chelsea? ### Answer: SELECT 1 AS st_leg FROM table_name_58 WHERE team_1 = "chelsea"
What was the away team score, when the away team was Fitzroy?
CREATE TABLE table_name_32 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_32 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_32 (away_team VARCHAR) ### Question: What was the away team score, when the away team was Fitzroy? ### Answer: SELECT away_team AS score FROM table_name_32 WHERE away_team = "fitzroy"
What is the name of the home team when the away team was Melbourne?
CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_70 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the name of the home team when the away team was Melbourne? ### Answer: SELECT home_team FROM table_name_70 WHERE away_team = "melbourne"
What is the name of the home team that has a venue called EMCG?
CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_50 WHERE venue = "emcg"
### Context: CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR) ### Question: What is the name of the home team that has a venue called EMCG? ### Answer: SELECT home_team FROM table_name_50 WHERE venue = "emcg"
What is the name of the venue where the game played had an away team of Melbourne?
CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_5 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_5 (venue VARCHAR, away_team VARCHAR) ### Question: What is the name of the venue where the game played had an away team of Melbourne? ### Answer: SELECT venue FROM table_name_5 WHERE away_team = "melbourne"
What is the average number lost with a difference of -16, 19 points, and more than 24 against?
CREATE TABLE table_name_33 (lost INTEGER, against VARCHAR, diff VARCHAR, points VARCHAR)
SELECT AVG(lost) FROM table_name_33 WHERE diff > -16 AND points = 19 AND against > 24
### Context: CREATE TABLE table_name_33 (lost INTEGER, against VARCHAR, diff VARCHAR, points VARCHAR) ### Question: What is the average number lost with a difference of -16, 19 points, and more than 24 against? ### Answer: SELECT AVG(lost) FROM table_name_33 WHERE diff > -16 AND points = 19 AND against > 24
What is the highest number of losses with 25 points?
CREATE TABLE table_name_79 (lost INTEGER, points VARCHAR)
SELECT MAX(lost) FROM table_name_79 WHERE points = 25
### Context: CREATE TABLE table_name_79 (lost INTEGER, points VARCHAR) ### Question: What is the highest number of losses with 25 points? ### Answer: SELECT MAX(lost) FROM table_name_79 WHERE points = 25
What is the sum of the difference for 9 draws and over 18 played?
CREATE TABLE table_name_48 (diff INTEGER, drawn VARCHAR, played VARCHAR)
SELECT SUM(diff) FROM table_name_48 WHERE drawn = 9 AND played > 18
### Context: CREATE TABLE table_name_48 (diff INTEGER, drawn VARCHAR, played VARCHAR) ### Question: What is the sum of the difference for 9 draws and over 18 played? ### Answer: SELECT SUM(diff) FROM table_name_48 WHERE drawn = 9 AND played > 18
What is the lowest number drawn with less than 2 lost?
CREATE TABLE table_name_36 (drawn INTEGER, lost INTEGER)
SELECT MIN(drawn) FROM table_name_36 WHERE lost < 2
### Context: CREATE TABLE table_name_36 (drawn INTEGER, lost INTEGER) ### Question: What is the lowest number drawn with less than 2 lost? ### Answer: SELECT MIN(drawn) FROM table_name_36 WHERE lost < 2
What is the sum of all points when number played is less than 18?
CREATE TABLE table_name_40 (points INTEGER, played INTEGER)
SELECT SUM(points) FROM table_name_40 WHERE played < 18
### Context: CREATE TABLE table_name_40 (points INTEGER, played INTEGER) ### Question: What is the sum of all points when number played is less than 18? ### Answer: SELECT SUM(points) FROM table_name_40 WHERE played < 18
Which date has a Score of 6–4, 6–3?
CREATE TABLE table_name_48 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_48 WHERE score = "6–4, 6–3"
### Context: CREATE TABLE table_name_48 (date VARCHAR, score VARCHAR) ### Question: Which date has a Score of 6–4, 6–3? ### Answer: SELECT date FROM table_name_48 WHERE score = "6–4, 6–3"
What is the total PI GP that a Reg GP has larger than 3?
CREATE TABLE table_name_79 (pl_gp VARCHAR, reg_gp INTEGER)
SELECT COUNT(pl_gp) FROM table_name_79 WHERE reg_gp > 3
### Context: CREATE TABLE table_name_79 (pl_gp VARCHAR, reg_gp INTEGER) ### Question: What is the total PI GP that a Reg GP has larger than 3? ### Answer: SELECT COUNT(pl_gp) FROM table_name_79 WHERE reg_gp > 3
What average Reg GP has a pick # larger than 210?
CREATE TABLE table_name_84 (reg_gp INTEGER, pick__number INTEGER)
SELECT AVG(reg_gp) FROM table_name_84 WHERE pick__number > 210
### Context: CREATE TABLE table_name_84 (reg_gp INTEGER, pick__number INTEGER) ### Question: What average Reg GP has a pick # larger than 210? ### Answer: SELECT AVG(reg_gp) FROM table_name_84 WHERE pick__number > 210
Which result has a Goal of deacon 2/5?
CREATE TABLE table_name_47 (result VARCHAR, goals VARCHAR)
SELECT result FROM table_name_47 WHERE goals = "deacon 2/5"
### Context: CREATE TABLE table_name_47 (result VARCHAR, goals VARCHAR) ### Question: Which result has a Goal of deacon 2/5? ### Answer: SELECT result FROM table_name_47 WHERE goals = "deacon 2/5"
Which date has a Goal of deacon 4/4, withers 1 dg?
CREATE TABLE table_name_32 (date VARCHAR, goals VARCHAR)
SELECT date FROM table_name_32 WHERE goals = "deacon 4/4, withers 1 dg"
### Context: CREATE TABLE table_name_32 (date VARCHAR, goals VARCHAR) ### Question: Which date has a Goal of deacon 4/4, withers 1 dg? ### Answer: SELECT date FROM table_name_32 WHERE goals = "deacon 4/4, withers 1 dg"
What are the goals for 8/4/04?
CREATE TABLE table_name_70 (goals VARCHAR, date VARCHAR)
SELECT goals FROM table_name_70 WHERE date = "8/4/04"
### Context: CREATE TABLE table_name_70 (goals VARCHAR, date VARCHAR) ### Question: What are the goals for 8/4/04? ### Answer: SELECT goals FROM table_name_70 WHERE date = "8/4/04"
Which venue has a Result of w, and a Goal of deacon 5/5?
CREATE TABLE table_name_84 (venue VARCHAR, result VARCHAR, goals VARCHAR)
SELECT venue FROM table_name_84 WHERE result = "w" AND goals = "deacon 5/5"
### Context: CREATE TABLE table_name_84 (venue VARCHAR, result VARCHAR, goals VARCHAR) ### Question: Which venue has a Result of w, and a Goal of deacon 5/5? ### Answer: SELECT venue FROM table_name_84 WHERE result = "w" AND goals = "deacon 5/5"
Which result has a Goal of deacon 3/5, bridge 2/2?
CREATE TABLE table_name_38 (result VARCHAR, goals VARCHAR)
SELECT result FROM table_name_38 WHERE goals = "deacon 3/5, bridge 2/2"
### Context: CREATE TABLE table_name_38 (result VARCHAR, goals VARCHAR) ### Question: Which result has a Goal of deacon 3/5, bridge 2/2? ### Answer: SELECT result FROM table_name_38 WHERE goals = "deacon 3/5, bridge 2/2"
Which competition has a Goal of deacon 10/10, and a Score of 40–12?
CREATE TABLE table_name_52 (competition VARCHAR, goals VARCHAR, score VARCHAR)
SELECT competition FROM table_name_52 WHERE goals = "deacon 10/10" AND score = "40–12"
### Context: CREATE TABLE table_name_52 (competition VARCHAR, goals VARCHAR, score VARCHAR) ### Question: Which competition has a Goal of deacon 10/10, and a Score of 40–12? ### Answer: SELECT competition FROM table_name_52 WHERE goals = "deacon 10/10" AND score = "40–12"
What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131?
CREATE TABLE table_name_16 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, team__league_ VARCHAR)
SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = "seattle thunderbirds" AND pick__number < 131
### Context: CREATE TABLE table_name_16 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, team__league_ VARCHAR) ### Question: What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131? ### Answer: SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = "seattle thunderbirds" AND pick__number < 131
What player has a number of playoff games played greater than 0?
CREATE TABLE table_name_51 (player VARCHAR, pl_gp INTEGER)
SELECT player FROM table_name_51 WHERE pl_gp > 0
### Context: CREATE TABLE table_name_51 (player VARCHAR, pl_gp INTEGER) ### Question: What player has a number of playoff games played greater than 0? ### Answer: SELECT player FROM table_name_51 WHERE pl_gp > 0
What is the sum of the number of regular games played by Morgan Clark with the number of road games less than 7?
CREATE TABLE table_name_17 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR)
SELECT SUM(reg_gp) FROM table_name_17 WHERE player = "morgan clark" AND rd__number < 7
### Context: CREATE TABLE table_name_17 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR) ### Question: What is the sum of the number of regular games played by Morgan Clark with the number of road games less than 7? ### Answer: SELECT SUM(reg_gp) FROM table_name_17 WHERE player = "morgan clark" AND rd__number < 7
What player has a number of playoff games played greater than 0?
CREATE TABLE table_name_64 (player VARCHAR, pl_gp INTEGER)
SELECT player FROM table_name_64 WHERE pl_gp > 0
### Context: CREATE TABLE table_name_64 (player VARCHAR, pl_gp INTEGER) ### Question: What player has a number of playoff games played greater than 0? ### Answer: SELECT player FROM table_name_64 WHERE pl_gp > 0
What is the pick number for the player from higher than round 3 and a PI GP bigger than 0?
CREATE TABLE table_name_70 (pick__number VARCHAR, rd__number VARCHAR, pl_gp VARCHAR)
SELECT pick__number FROM table_name_70 WHERE rd__number > 3 AND pl_gp > 0
### Context: CREATE TABLE table_name_70 (pick__number VARCHAR, rd__number VARCHAR, pl_gp VARCHAR) ### Question: What is the pick number for the player from higher than round 3 and a PI GP bigger than 0? ### Answer: SELECT pick__number FROM table_name_70 WHERE rd__number > 3 AND pl_gp > 0
What is the lowest regular GP Larry Courville, who has a PI GP smaller than 0, has?
CREATE TABLE table_name_26 (reg_gp INTEGER, player VARCHAR, pl_gp VARCHAR)
SELECT MIN(reg_gp) FROM table_name_26 WHERE player = "larry courville" AND pl_gp < 0
### Context: CREATE TABLE table_name_26 (reg_gp INTEGER, player VARCHAR, pl_gp VARCHAR) ### Question: What is the lowest regular GP Larry Courville, who has a PI GP smaller than 0, has? ### Answer: SELECT MIN(reg_gp) FROM table_name_26 WHERE player = "larry courville" AND pl_gp < 0
What was Essendon's opponents away score?
CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_40 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR) ### Question: What was Essendon's opponents away score? ### Answer: SELECT away_team AS score FROM table_name_40 WHERE home_team = "essendon"
What was the attendance at Corio Oval?
CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR)
SELECT crowd FROM table_name_9 WHERE venue = "corio oval"
### Context: CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR) ### Question: What was the attendance at Corio Oval? ### Answer: SELECT crowd FROM table_name_9 WHERE venue = "corio oval"
When collingwood played as the away team what did they score?
CREATE TABLE table_name_3 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_3 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_3 (away_team VARCHAR) ### Question: When collingwood played as the away team what did they score? ### Answer: SELECT away_team AS score FROM table_name_3 WHERE away_team = "collingwood"
What was the locaction of the Evans test blast?
CREATE TABLE table_name_64 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_64 WHERE name = "evans"
### Context: CREATE TABLE table_name_64 (location VARCHAR, name VARCHAR) ### Question: What was the locaction of the Evans test blast? ### Answer: SELECT location FROM table_name_64 WHERE name = "evans"
What was the yield for a blast that was in nts area 3s?
CREATE TABLE table_name_39 (yield VARCHAR, location VARCHAR)
SELECT yield FROM table_name_39 WHERE location = "nts area 3s"
### Context: CREATE TABLE table_name_39 (yield VARCHAR, location VARCHAR) ### Question: What was the yield for a blast that was in nts area 3s? ### Answer: SELECT yield FROM table_name_39 WHERE location = "nts area 3s"
What was the purpose of the Quay test blast?
CREATE TABLE table_name_54 (purpose VARCHAR, name VARCHAR)
SELECT purpose FROM table_name_54 WHERE name = "quay"
### Context: CREATE TABLE table_name_54 (purpose VARCHAR, name VARCHAR) ### Question: What was the purpose of the Quay test blast? ### Answer: SELECT purpose FROM table_name_54 WHERE name = "quay"
For an apparent magnitude greater than 11.8 what Right ascension value is assigned?
CREATE TABLE table_name_29 (right_ascension___j2000__ VARCHAR, apparent_magnitude INTEGER)
SELECT right_ascension___j2000__ FROM table_name_29 WHERE apparent_magnitude > 11.8
### Context: CREATE TABLE table_name_29 (right_ascension___j2000__ VARCHAR, apparent_magnitude INTEGER) ### Question: For an apparent magnitude greater than 11.8 what Right ascension value is assigned? ### Answer: SELECT right_ascension___j2000__ FROM table_name_29 WHERE apparent_magnitude > 11.8
What is the least apparent magnitude for all constellations from hydra?
CREATE TABLE table_name_31 (apparent_magnitude INTEGER, constellation VARCHAR)
SELECT MIN(apparent_magnitude) FROM table_name_31 WHERE constellation = "hydra"
### Context: CREATE TABLE table_name_31 (apparent_magnitude INTEGER, constellation VARCHAR) ### Question: What is the least apparent magnitude for all constellations from hydra? ### Answer: SELECT MIN(apparent_magnitude) FROM table_name_31 WHERE constellation = "hydra"
What is the highest Car with more than 155 yards?
CREATE TABLE table_name_56 (car INTEGER, yards INTEGER)
SELECT MAX(car) FROM table_name_56 WHERE yards > 155
### Context: CREATE TABLE table_name_56 (car INTEGER, yards INTEGER) ### Question: What is the highest Car with more than 155 yards? ### Answer: SELECT MAX(car) FROM table_name_56 WHERE yards > 155
How many pages were in the book by Stefano D'Arrigo?
CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR)
SELECT page_count FROM table_name_39 WHERE author = "stefano d'arrigo"
### Context: CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR) ### Question: How many pages were in the book by Stefano D'Arrigo? ### Answer: SELECT page_count FROM table_name_39 WHERE author = "stefano d'arrigo"
Which author wrote Sironia, Texas in English?
CREATE TABLE table_name_42 (author VARCHAR, language VARCHAR, book_title VARCHAR)
SELECT author FROM table_name_42 WHERE language = "english" AND book_title = "sironia, texas"
### Context: CREATE TABLE table_name_42 (author VARCHAR, language VARCHAR, book_title VARCHAR) ### Question: Which author wrote Sironia, Texas in English? ### Answer: SELECT author FROM table_name_42 WHERE language = "english" AND book_title = "sironia, texas"
Who is the edition/publisher for Xavier Herbert?
CREATE TABLE table_name_9 (edition_publisher VARCHAR, author VARCHAR)
SELECT edition_publisher FROM table_name_9 WHERE author = "xavier herbert"
### Context: CREATE TABLE table_name_9 (edition_publisher VARCHAR, author VARCHAR) ### Question: Who is the edition/publisher for Xavier Herbert? ### Answer: SELECT edition_publisher FROM table_name_9 WHERE author = "xavier herbert"
What language is the book Miss Macintosh, My Darling in?
CREATE TABLE table_name_17 (language VARCHAR, book_title VARCHAR)
SELECT language FROM table_name_17 WHERE book_title = "miss macintosh, my darling"
### Context: CREATE TABLE table_name_17 (language VARCHAR, book_title VARCHAR) ### Question: What language is the book Miss Macintosh, My Darling in? ### Answer: SELECT language FROM table_name_17 WHERE book_title = "miss macintosh, my darling"
Who published in Italian with a page size of 8 inches (20cm) x 5.4 inches (14cm)?
CREATE TABLE table_name_5 (edition_publisher VARCHAR, language VARCHAR, page_size VARCHAR)
SELECT edition_publisher FROM table_name_5 WHERE language = "italian" AND page_size = "8 inches (20cm) x 5.4 inches (14cm)"
### Context: CREATE TABLE table_name_5 (edition_publisher VARCHAR, language VARCHAR, page_size VARCHAR) ### Question: Who published in Italian with a page size of 8 inches (20cm) x 5.4 inches (14cm)? ### Answer: SELECT edition_publisher FROM table_name_5 WHERE language = "italian" AND page_size = "8 inches (20cm) x 5.4 inches (14cm)"
What is the total average for long 10?
CREATE TABLE table_name_25 (avg VARCHAR, long VARCHAR)
SELECT COUNT(avg) FROM table_name_25 WHERE long = 10
### Context: CREATE TABLE table_name_25 (avg VARCHAR, long VARCHAR) ### Question: What is the total average for long 10? ### Answer: SELECT COUNT(avg) FROM table_name_25 WHERE long = 10
Name the college that has 7 rounds and boston celtics team
CREATE TABLE table_name_86 (college VARCHAR, team VARCHAR, round VARCHAR)
SELECT college FROM table_name_86 WHERE team = "boston celtics" AND round = "7"
### Context: CREATE TABLE table_name_86 (college VARCHAR, team VARCHAR, round VARCHAR) ### Question: Name the college that has 7 rounds and boston celtics team ### Answer: SELECT college FROM table_name_86 WHERE team = "boston celtics" AND round = "7"
Name the position that has baltimore bullets and college of texas tech
CREATE TABLE table_name_86 (position VARCHAR, team VARCHAR, college VARCHAR)
SELECT position FROM table_name_86 WHERE team = "baltimore bullets" AND college = "texas tech"
### Context: CREATE TABLE table_name_86 (position VARCHAR, team VARCHAR, college VARCHAR) ### Question: Name the position that has baltimore bullets and college of texas tech ### Answer: SELECT position FROM table_name_86 WHERE team = "baltimore bullets" AND college = "texas tech"
What is the nationality for milwaukee hawks?
CREATE TABLE table_name_91 (nationality VARCHAR, team VARCHAR)
SELECT nationality FROM table_name_91 WHERE team = "milwaukee hawks"
### Context: CREATE TABLE table_name_91 (nationality VARCHAR, team VARCHAR) ### Question: What is the nationality for milwaukee hawks? ### Answer: SELECT nationality FROM table_name_91 WHERE team = "milwaukee hawks"
What is the name of the superfund that was proposed on 06/24/1988?
CREATE TABLE table_name_99 (name VARCHAR, proposed VARCHAR)
SELECT name FROM table_name_99 WHERE proposed = "06/24/1988"
### Context: CREATE TABLE table_name_99 (name VARCHAR, proposed VARCHAR) ### Question: What is the name of the superfund that was proposed on 06/24/1988? ### Answer: SELECT name FROM table_name_99 WHERE proposed = "06/24/1988"
Which team was played against in game 4?
CREATE TABLE table_name_40 (team VARCHAR, game VARCHAR)
SELECT team FROM table_name_40 WHERE game = 4
### Context: CREATE TABLE table_name_40 (team VARCHAR, game VARCHAR) ### Question: Which team was played against in game 4? ### Answer: SELECT team FROM table_name_40 WHERE game = 4
What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?
CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR)
SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)"
### Context: CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR) ### Question: What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points? ### Answer: SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)"
During what Championship was the Opponent Jeff Borowiak?
CREATE TABLE table_name_53 (championship VARCHAR, opponent VARCHAR)
SELECT championship FROM table_name_53 WHERE opponent = "jeff borowiak"
### Context: CREATE TABLE table_name_53 (championship VARCHAR, opponent VARCHAR) ### Question: During what Championship was the Opponent Jeff Borowiak? ### Answer: SELECT championship FROM table_name_53 WHERE opponent = "jeff borowiak"
On what Date was the Score of 3–6, 6–4, 3–6, 6–1, 6–2
CREATE TABLE table_name_76 (date INTEGER, score VARCHAR)
SELECT SUM(date) FROM table_name_76 WHERE score = "3–6, 6–4, 3–6, 6–1, 6–2"
### Context: CREATE TABLE table_name_76 (date INTEGER, score VARCHAR) ### Question: On what Date was the Score of 3–6, 6–4, 3–6, 6–1, 6–2 ### Answer: SELECT SUM(date) FROM table_name_76 WHERE score = "3–6, 6–4, 3–6, 6–1, 6–2"
What is the Entrant with a Engine of talbot l6, and Eugène Chaboud was the driver?
CREATE TABLE table_name_80 (entrant VARCHAR, engine VARCHAR, driver VARCHAR)
SELECT entrant FROM table_name_80 WHERE engine = "talbot l6" AND driver = "eugène chaboud"
### Context: CREATE TABLE table_name_80 (entrant VARCHAR, engine VARCHAR, driver VARCHAR) ### Question: What is the Entrant with a Engine of talbot l6, and Eugène Chaboud was the driver? ### Answer: SELECT entrant FROM table_name_80 WHERE engine = "talbot l6" AND driver = "eugène chaboud"
What entrant has a P tyre and was constructed by Alfa Romeo?
CREATE TABLE table_name_1 (entrant VARCHAR, tyre VARCHAR, constructor VARCHAR)
SELECT entrant FROM table_name_1 WHERE tyre = "p" AND constructor = "alfa romeo"
### Context: CREATE TABLE table_name_1 (entrant VARCHAR, tyre VARCHAR, constructor VARCHAR) ### Question: What entrant has a P tyre and was constructed by Alfa Romeo? ### Answer: SELECT entrant FROM table_name_1 WHERE tyre = "p" AND constructor = "alfa romeo"
I want the country for score of 274 and runner-up of virginie lagoutte-clément
CREATE TABLE table_name_93 (country VARCHAR, score VARCHAR, runner_s__up VARCHAR)
SELECT country FROM table_name_93 WHERE score = "274" AND runner_s__up = "virginie lagoutte-clément"
### Context: CREATE TABLE table_name_93 (country VARCHAR, score VARCHAR, runner_s__up VARCHAR) ### Question: I want the country for score of 274 and runner-up of virginie lagoutte-clément ### Answer: SELECT country FROM table_name_93 WHERE score = "274" AND runner_s__up = "virginie lagoutte-clément"
Tell me the date for 2004
CREATE TABLE table_name_35 (date VARCHAR, year VARCHAR)
SELECT date FROM table_name_35 WHERE year = "2004"
### Context: CREATE TABLE table_name_35 (date VARCHAR, year VARCHAR) ### Question: Tell me the date for 2004 ### Answer: SELECT date FROM table_name_35 WHERE year = "2004"
What is the margin of victory for nikki garrett?
CREATE TABLE table_name_7 (margin_of_victory VARCHAR, winner VARCHAR)
SELECT margin_of_victory FROM table_name_7 WHERE winner = "nikki garrett"
### Context: CREATE TABLE table_name_7 (margin_of_victory VARCHAR, winner VARCHAR) ### Question: What is the margin of victory for nikki garrett? ### Answer: SELECT margin_of_victory FROM table_name_7 WHERE winner = "nikki garrett"
I want to see the result for venue of n and attendance more than 20,664
CREATE TABLE table_name_17 (result VARCHAR, venue VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_17 WHERE venue = "n" AND attendance > 20 OFFSET 664
### Context: CREATE TABLE table_name_17 (result VARCHAR, venue VARCHAR, attendance VARCHAR) ### Question: I want to see the result for venue of n and attendance more than 20,664 ### Answer: SELECT result FROM table_name_17 WHERE venue = "n" AND attendance > 20 OFFSET 664
Tell me the result for venue of a
CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_51 WHERE venue = "a"
### Context: CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR) ### Question: Tell me the result for venue of a ### Answer: SELECT result FROM table_name_51 WHERE venue = "a"
I want to know the average attendance for n venue and f round
CREATE TABLE table_name_49 (attendance INTEGER, venue VARCHAR, round VARCHAR)
SELECT AVG(attendance) FROM table_name_49 WHERE venue = "n" AND round = "f"
### Context: CREATE TABLE table_name_49 (attendance INTEGER, venue VARCHAR, round VARCHAR) ### Question: I want to know the average attendance for n venue and f round ### Answer: SELECT AVG(attendance) FROM table_name_49 WHERE venue = "n" AND round = "f"
In grid 15, how many laps were there before ending with a time of exhaust?
CREATE TABLE table_name_40 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
SELECT SUM(laps) FROM table_name_40 WHERE time_retired = "exhaust" AND grid < 15
### Context: CREATE TABLE table_name_40 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) ### Question: In grid 15, how many laps were there before ending with a time of exhaust? ### Answer: SELECT SUM(laps) FROM table_name_40 WHERE time_retired = "exhaust" AND grid < 15
What year was class of undine?
CREATE TABLE table_name_67 (year_made VARCHAR, class VARCHAR)
SELECT year_made FROM table_name_67 WHERE class = "undine"
### Context: CREATE TABLE table_name_67 (year_made VARCHAR, class VARCHAR) ### Question: What year was class of undine? ### Answer: SELECT year_made FROM table_name_67 WHERE class = "undine"
What was the quantity preserved for quantity made of 15?
CREATE TABLE table_name_17 (quantity_preserved VARCHAR, quantity_made VARCHAR)
SELECT quantity_preserved FROM table_name_17 WHERE quantity_made = "15"
### Context: CREATE TABLE table_name_17 (quantity_preserved VARCHAR, quantity_made VARCHAR) ### Question: What was the quantity preserved for quantity made of 15? ### Answer: SELECT quantity_preserved FROM table_name_17 WHERE quantity_made = "15"
Name the year for hercules
CREATE TABLE table_name_52 (year_made VARCHAR, class VARCHAR)
SELECT year_made FROM table_name_52 WHERE class = "hercules"
### Context: CREATE TABLE table_name_52 (year_made VARCHAR, class VARCHAR) ### Question: Name the year for hercules ### Answer: SELECT year_made FROM table_name_52 WHERE class = "hercules"
When did the tom smith built train enter service with a number under 7007?
CREATE TABLE table_name_73 (entered_service INTEGER, builder VARCHAR, number VARCHAR)
SELECT AVG(entered_service) FROM table_name_73 WHERE builder = "tom smith" AND number < 7007
### Context: CREATE TABLE table_name_73 (entered_service INTEGER, builder VARCHAR, number VARCHAR) ### Question: When did the tom smith built train enter service with a number under 7007? ### Answer: SELECT AVG(entered_service) FROM table_name_73 WHERE builder = "tom smith" AND number < 7007
Who is the opponent for the 1985 World Group i edition?
CREATE TABLE table_name_68 (opponent VARCHAR, edition VARCHAR)
SELECT opponent FROM table_name_68 WHERE edition = "1985 world group i"
### Context: CREATE TABLE table_name_68 (opponent VARCHAR, edition VARCHAR) ### Question: Who is the opponent for the 1985 World Group i edition? ### Answer: SELECT opponent FROM table_name_68 WHERE edition = "1985 world group i"
What is the amount of cash on hand that has an after debt of $327,094
CREATE TABLE table_name_60 (cash_on_hand VARCHAR, after_debt VARCHAR)
SELECT cash_on_hand FROM table_name_60 WHERE after_debt = "$327,094"
### Context: CREATE TABLE table_name_60 (cash_on_hand VARCHAR, after_debt VARCHAR) ### Question: What is the amount of cash on hand that has an after debt of $327,094 ### Answer: SELECT cash_on_hand FROM table_name_60 WHERE after_debt = "$327,094"
How many receipts does Mike Gravel have?
CREATE TABLE table_name_83 (total_receipts VARCHAR, candidate VARCHAR)
SELECT total_receipts FROM table_name_83 WHERE candidate = "mike gravel"
### Context: CREATE TABLE table_name_83 (total_receipts VARCHAR, candidate VARCHAR) ### Question: How many receipts does Mike Gravel have? ### Answer: SELECT total_receipts FROM table_name_83 WHERE candidate = "mike gravel"
How much money has been raised that has $5,821,587 cash on hand?
CREATE TABLE table_name_75 (money_raised VARCHAR, _3q VARCHAR, cash_on_hand VARCHAR)
SELECT money_raised, _3q FROM table_name_75 WHERE cash_on_hand = "$5,821,587"
### Context: CREATE TABLE table_name_75 (money_raised VARCHAR, _3q VARCHAR, cash_on_hand VARCHAR) ### Question: How much money has been raised that has $5,821,587 cash on hand? ### Answer: SELECT money_raised, _3q FROM table_name_75 WHERE cash_on_hand = "$5,821,587"
What is the after debt has receipts of $379,794?
CREATE TABLE table_name_90 (after_debt VARCHAR, total_receipts VARCHAR)
SELECT after_debt FROM table_name_90 WHERE total_receipts = "$379,794"
### Context: CREATE TABLE table_name_90 (after_debt VARCHAR, total_receipts VARCHAR) ### Question: What is the after debt has receipts of $379,794? ### Answer: SELECT after_debt FROM table_name_90 WHERE total_receipts = "$379,794"
How much money has Candidate Dennis Kucinich spent?
CREATE TABLE table_name_43 (money_spent VARCHAR, _3q VARCHAR, candidate VARCHAR)
SELECT money_spent, _3q FROM table_name_43 WHERE candidate = "dennis kucinich"
### Context: CREATE TABLE table_name_43 (money_spent VARCHAR, _3q VARCHAR, candidate VARCHAR) ### Question: How much money has Candidate Dennis Kucinich spent? ### Answer: SELECT money_spent, _3q FROM table_name_43 WHERE candidate = "dennis kucinich"
What is the crowd size when the away team was South Melbourne?
CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_15 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR) ### Question: What is the crowd size when the away team was South Melbourne? ### Answer: SELECT SUM(crowd) FROM table_name_15 WHERE away_team = "south melbourne"
What was the crowd size at Junction Oval?
CREATE TABLE table_name_78 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_78 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_78 (crowd INTEGER, venue VARCHAR) ### Question: What was the crowd size at Junction Oval? ### Answer: SELECT MAX(crowd) FROM table_name_78 WHERE venue = "junction oval"
What was the date of the game at Junction Oval?
CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_3 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR) ### Question: What was the date of the game at Junction Oval? ### Answer: SELECT date FROM table_name_3 WHERE venue = "junction oval"
What was the away score for Carlton?
CREATE TABLE table_name_41 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_41 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_41 (away_team VARCHAR) ### Question: What was the away score for Carlton? ### Answer: SELECT away_team AS score FROM table_name_41 WHERE away_team = "carlton"
Who was the away team at MCG?
CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_12 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at MCG? ### Answer: SELECT away_team FROM table_name_12 WHERE venue = "mcg"
What is the D 48 when the D 50 is d 30?
CREATE TABLE table_name_14 (d_48 VARCHAR, d_50 VARCHAR)
SELECT d_48 FROM table_name_14 WHERE d_50 = "d 30"
### Context: CREATE TABLE table_name_14 (d_48 VARCHAR, d_50 VARCHAR) ### Question: What is the D 48 when the D 50 is d 30? ### Answer: SELECT d_48 FROM table_name_14 WHERE d_50 = "d 30"
What is the D 47 when the D 49 is r 32?
CREATE TABLE table_name_92 (d_47 VARCHAR, d_49 VARCHAR)
SELECT d_47 FROM table_name_92 WHERE d_49 = "r 32"
### Context: CREATE TABLE table_name_92 (d_47 VARCHAR, d_49 VARCHAR) ### Question: What is the D 47 when the D 49 is r 32? ### Answer: SELECT d_47 FROM table_name_92 WHERE d_49 = "r 32"
What is the D 50 when the D 43 is r 43?
CREATE TABLE table_name_77 (d_50 VARCHAR, d_43 VARCHAR)
SELECT d_50 FROM table_name_77 WHERE d_43 = "r 43"
### Context: CREATE TABLE table_name_77 (d_50 VARCHAR, d_43 VARCHAR) ### Question: What is the D 50 when the D 43 is r 43? ### Answer: SELECT d_50 FROM table_name_77 WHERE d_43 = "r 43"
What is the D 42 when the D 50 is d 31?
CREATE TABLE table_name_17 (d_42 VARCHAR, d_50 VARCHAR)
SELECT d_42 FROM table_name_17 WHERE d_50 = "d 31"
### Context: CREATE TABLE table_name_17 (d_42 VARCHAR, d_50 VARCHAR) ### Question: What is the D 42 when the D 50 is d 31? ### Answer: SELECT d_42 FROM table_name_17 WHERE d_50 = "d 31"
What is the D 50 when the D 41 is d 41?
CREATE TABLE table_name_84 (d_50 VARCHAR, d_41 VARCHAR)
SELECT d_50 FROM table_name_84 WHERE d_41 = "d 41"
### Context: CREATE TABLE table_name_84 (d_50 VARCHAR, d_41 VARCHAR) ### Question: What is the D 50 when the D 41 is d 41? ### Answer: SELECT d_50 FROM table_name_84 WHERE d_41 = "d 41"
What is the D 50 when the D 41 is d 41?
CREATE TABLE table_name_65 (d_50 VARCHAR, d_41 VARCHAR)
SELECT d_50 FROM table_name_65 WHERE d_41 = "d 41"
### Context: CREATE TABLE table_name_65 (d_50 VARCHAR, d_41 VARCHAR) ### Question: What is the D 50 when the D 41 is d 41? ### Answer: SELECT d_50 FROM table_name_65 WHERE d_41 = "d 41"
what is the yard name when the ship types delivered is n3 type, v4 type and the total vessels built for usmc is 13 ships for usmc?
CREATE TABLE table_name_19 (yard_name VARCHAR, ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)
SELECT yard_name FROM table_name_19 WHERE ship_types_delivered = "n3 type, v4 type" AND total_vessels_built_for_usmc = "13 ships for usmc"
### Context: CREATE TABLE table_name_19 (yard_name VARCHAR, ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR) ### Question: what is the yard name when the ship types delivered is n3 type, v4 type and the total vessels built for usmc is 13 ships for usmc? ### Answer: SELECT yard_name FROM table_name_19 WHERE ship_types_delivered = "n3 type, v4 type" AND total_vessels_built_for_usmc = "13 ships for usmc"
what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)?
CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)
SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = "13 ships for usmc (plus 37 more for usn)"
### Context: CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR) ### Question: what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)? ### Answer: SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = "13 ships for usmc (plus 37 more for usn)"
Who were the co drivers past 1994 in the WSC class?
CREATE TABLE table_name_43 (co_drivers VARCHAR, year VARCHAR, class VARCHAR)
SELECT co_drivers FROM table_name_43 WHERE year > 1994 AND class = "wsc"
### Context: CREATE TABLE table_name_43 (co_drivers VARCHAR, year VARCHAR, class VARCHAR) ### Question: Who were the co drivers past 1994 in the WSC class? ### Answer: SELECT co_drivers FROM table_name_43 WHERE year > 1994 AND class = "wsc"
What day did Footscray play as the home team?
CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_20 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR) ### Question: What day did Footscray play as the home team? ### Answer: SELECT date FROM table_name_20 WHERE home_team = "footscray"
What is the report for 10 october?
CREATE TABLE table_name_13 (report VARCHAR, date VARCHAR)
SELECT report FROM table_name_13 WHERE date = "10 october"
### Context: CREATE TABLE table_name_13 (report VARCHAR, date VARCHAR) ### Question: What is the report for 10 october? ### Answer: SELECT report FROM table_name_13 WHERE date = "10 october"
Who was the race winner with a pole position james hunt, and a Fastest Lap of james hunt, and a Date of 15 august?
CREATE TABLE table_name_58 (race VARCHAR, date VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
SELECT race AS Winner FROM table_name_58 WHERE pole_position = "james hunt" AND fastest_lap = "james hunt" AND date = "15 august"
### Context: CREATE TABLE table_name_58 (race VARCHAR, date VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) ### Question: Who was the race winner with a pole position james hunt, and a Fastest Lap of james hunt, and a Date of 15 august? ### Answer: SELECT race AS Winner FROM table_name_58 WHERE pole_position = "james hunt" AND fastest_lap = "james hunt" AND date = "15 august"
What race has a Pole Position of Jacques Laffite?
CREATE TABLE table_name_25 (race VARCHAR, pole_position VARCHAR)
SELECT race FROM table_name_25 WHERE pole_position = "jacques laffite"
### Context: CREATE TABLE table_name_25 (race VARCHAR, pole_position VARCHAR) ### Question: What race has a Pole Position of Jacques Laffite? ### Answer: SELECT race FROM table_name_25 WHERE pole_position = "jacques laffite"
What is the Pole Position of the Swedish Grand Prix?
CREATE TABLE table_name_95 (pole_position VARCHAR, race VARCHAR)
SELECT pole_position FROM table_name_95 WHERE race = "swedish grand prix"
### Context: CREATE TABLE table_name_95 (pole_position VARCHAR, race VARCHAR) ### Question: What is the Pole Position of the Swedish Grand Prix? ### Answer: SELECT pole_position FROM table_name_95 WHERE race = "swedish grand prix"
What was the date when the location was Zandvoort?
CREATE TABLE table_name_72 (date VARCHAR, location VARCHAR)
SELECT date FROM table_name_72 WHERE location = "zandvoort"
### Context: CREATE TABLE table_name_72 (date VARCHAR, location VARCHAR) ### Question: What was the date when the location was Zandvoort? ### Answer: SELECT date FROM table_name_72 WHERE location = "zandvoort"
How many chapters did Elmer Clifton direct?
CREATE TABLE table_name_86 (chapters VARCHAR, director VARCHAR)
SELECT COUNT(chapters) FROM table_name_86 WHERE director = "elmer clifton"
### Context: CREATE TABLE table_name_86 (chapters VARCHAR, director VARCHAR) ### Question: How many chapters did Elmer Clifton direct? ### Answer: SELECT COUNT(chapters) FROM table_name_86 WHERE director = "elmer clifton"