question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the highest rank for Nat Lofthouse, and goals more than 255?
CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR, goals VARCHAR)
SELECT MAX(rank) FROM table_name_20 WHERE name = "nat lofthouse" AND goals > 255
### Context: CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR, goals VARCHAR) ### Question: What is the highest rank for Nat Lofthouse, and goals more than 255? ### Answer: SELECT MAX(rank) FROM table_name_20 WHERE name = "nat lofthouse" AND goals > 255
What is the location/state that has adelaide international raceway as the circuit?
CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR)
SELECT location___state FROM table_name_5 WHERE circuit = "adelaide international raceway"
### Context: CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR) ### Question: What is the location/state that has adelaide international raceway as the circuit? ### Answer: SELECT location___state FROM table_name_5 WHERE circuit = "adelaide international raceway"
What is the Original air date for the episode with a Production code of 07-00-107?
CREATE TABLE table_name_85 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_name_85 WHERE production_code = "07-00-107"
### Context: CREATE TABLE table_name_85 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What is the Original air date for the episode with a Production code of 07-00-107? ### Answer: SELECT original_air_date FROM table_name_85 WHERE production_code = "07-00-107"
What is the name of the director of the episode written by robin schwartz & robert tarlow?
CREATE TABLE table_name_55 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_name_55 WHERE written_by = "robin schwartz & robert tarlow"
### Context: CREATE TABLE table_name_55 (directed_by VARCHAR, written_by VARCHAR) ### Question: What is the name of the director of the episode written by robin schwartz & robert tarlow? ### Answer: SELECT directed_by FROM table_name_55 WHERE written_by = "robin schwartz & robert tarlow"
What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109?
CREATE TABLE table_name_35 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_name_35 WHERE directed_by = "lev l. spiro" AND production_code = "07-00-109"
### Context: CREATE TABLE table_name_35 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR) ### Question: What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109? ### Answer: SELECT original_air_date FROM table_name_35 WHERE directed_by = "lev l. spiro" AND production_code = "07-00-109"
What is the name of the writer for the episode with an Original air date of october 9, 2000?
CREATE TABLE table_name_71 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_name_71 WHERE original_air_date = "october 9, 2000"
### Context: CREATE TABLE table_name_71 (written_by VARCHAR, original_air_date VARCHAR) ### Question: What is the name of the writer for the episode with an Original air date of october 9, 2000? ### Answer: SELECT written_by FROM table_name_71 WHERE original_air_date = "october 9, 2000"
What is the Title written by Terri Hughes & Ron Milbauer, and an Original air date of march 6, 2001?
CREATE TABLE table_name_87 (title VARCHAR, written_by VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_name_87 WHERE written_by = "terri hughes & ron milbauer" AND original_air_date = "march 6, 2001"
### Context: CREATE TABLE table_name_87 (title VARCHAR, written_by VARCHAR, original_air_date VARCHAR) ### Question: What is the Title written by Terri Hughes & Ron Milbauer, and an Original air date of march 6, 2001? ### Answer: SELECT title FROM table_name_87 WHERE written_by = "terri hughes & ron milbauer" AND original_air_date = "march 6, 2001"
What time or retired does Scott Dixon have?
CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_7 WHERE driver = "scott dixon"
### Context: CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR) ### Question: What time or retired does Scott Dixon have? ### Answer: SELECT time_retired FROM table_name_7 WHERE driver = "scott dixon"
Which driver has a grid bigger than 3 and a time of +62.6 secs?
CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_38 WHERE grid > 3 AND time_retired = "+62.6 secs"
### Context: CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR) ### Question: Which driver has a grid bigger than 3 and a time of +62.6 secs? ### Answer: SELECT driver FROM table_name_38 WHERE grid > 3 AND time_retired = "+62.6 secs"
Who drives for Newman-Haas Racing with a time of 1:51:47.260?
CREATE TABLE table_name_43 (driver VARCHAR, team VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_43 WHERE team = "newman-haas racing" AND time_retired = "1:51:47.260"
### Context: CREATE TABLE table_name_43 (driver VARCHAR, team VARCHAR, time_retired VARCHAR) ### Question: Who drives for Newman-Haas Racing with a time of 1:51:47.260? ### Answer: SELECT driver FROM table_name_43 WHERE team = "newman-haas racing" AND time_retired = "1:51:47.260"
Which driver had less than 65 laps for Sigma Autosport?
CREATE TABLE table_name_64 (driver VARCHAR, laps VARCHAR, team VARCHAR)
SELECT driver FROM table_name_64 WHERE laps < 65 AND team = "sigma autosport"
### Context: CREATE TABLE table_name_64 (driver VARCHAR, laps VARCHAR, team VARCHAR) ### Question: Which driver had less than 65 laps for Sigma Autosport? ### Answer: SELECT driver FROM table_name_64 WHERE laps < 65 AND team = "sigma autosport"
Which game modes have Pinyin of chāojí mǎlìōu shìjiè?
CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR)
SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè"
### Context: CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR) ### Question: Which game modes have Pinyin of chāojí mǎlìōu shìjiè? ### Answer: SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè"
What is the lowest Population (1 July 2005 est.), when Population density (per km²) is 0?
CREATE TABLE table_name_5 (population__1_july_2005_est_ INTEGER, population_density__per_km²_ VARCHAR)
SELECT MIN(population__1_july_2005_est_) FROM table_name_5 WHERE population_density__per_km²_ = 0
### Context: CREATE TABLE table_name_5 (population__1_july_2005_est_ INTEGER, population_density__per_km²_ VARCHAR) ### Question: What is the lowest Population (1 July 2005 est.), when Population density (per km²) is 0? ### Answer: SELECT MIN(population__1_july_2005_est_) FROM table_name_5 WHERE population_density__per_km²_ = 0
What is Population density (per km²), when Name is Antigua and Barbuda, and when Capital is St. John's?
CREATE TABLE table_name_81 (population_density__per_km²_ VARCHAR, name VARCHAR, capital VARCHAR)
SELECT population_density__per_km²_ FROM table_name_81 WHERE name = "antigua and barbuda" AND capital = "st. john's"
### Context: CREATE TABLE table_name_81 (population_density__per_km²_ VARCHAR, name VARCHAR, capital VARCHAR) ### Question: What is Population density (per km²), when Name is Antigua and Barbuda, and when Capital is St. John's? ### Answer: SELECT population_density__per_km²_ FROM table_name_81 WHERE name = "antigua and barbuda" AND capital = "st. john's"
Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996?
CREATE TABLE table_name_61 (opponents VARCHAR, year VARCHAR, outcome VARCHAR, surface VARCHAR, partner VARCHAR)
SELECT opponents FROM table_name_61 WHERE surface = "grass" AND partner = "mark woodforde" AND outcome = "winner" AND year > 1996
### Context: CREATE TABLE table_name_61 (opponents VARCHAR, year VARCHAR, outcome VARCHAR, surface VARCHAR, partner VARCHAR) ### Question: Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996? ### Answer: SELECT opponents FROM table_name_61 WHERE surface = "grass" AND partner = "mark woodforde" AND outcome = "winner" AND year > 1996
Who was the partner at the Australian Open, Melbourne when the score was 2–6, 7–5, 6–2, 4–6, 3–6?
CREATE TABLE table_name_6 (partner VARCHAR, championship VARCHAR, score VARCHAR)
SELECT partner FROM table_name_6 WHERE championship = "australian open, melbourne" AND score = "2–6, 7–5, 6–2, 4–6, 3–6"
### Context: CREATE TABLE table_name_6 (partner VARCHAR, championship VARCHAR, score VARCHAR) ### Question: Who was the partner at the Australian Open, Melbourne when the score was 2–6, 7–5, 6–2, 4–6, 3–6? ### Answer: SELECT partner FROM table_name_6 WHERE championship = "australian open, melbourne" AND score = "2–6, 7–5, 6–2, 4–6, 3–6"
When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman?
CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR)
SELECT opponents FROM table_name_10 WHERE surface = "grass" AND year > 1993 AND partner = "jonas björkman"
### Context: CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR) ### Question: When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman? ### Answer: SELECT opponents FROM table_name_10 WHERE surface = "grass" AND year > 1993 AND partner = "jonas björkman"
Which league's playoffs was national semi-finals?
CREATE TABLE table_name_51 (league VARCHAR, playoffs VARCHAR)
SELECT league FROM table_name_51 WHERE playoffs = "national semi-finals"
### Context: CREATE TABLE table_name_51 (league VARCHAR, playoffs VARCHAR) ### Question: Which league's playoffs was national semi-finals? ### Answer: SELECT league FROM table_name_51 WHERE playoffs = "national semi-finals"
Which country is Lemd the ICAO of?
CREATE TABLE table_name_34 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_34 WHERE icao = "lemd"
### Context: CREATE TABLE table_name_34 (country VARCHAR, icao VARCHAR) ### Question: Which country is Lemd the ICAO of? ### Answer: SELECT country FROM table_name_34 WHERE icao = "lemd"
Paris-Charles de Gaulle airport is in which country?
CREATE TABLE table_name_46 (country VARCHAR, airport VARCHAR)
SELECT country FROM table_name_46 WHERE airport = "paris-charles de gaulle airport"
### Context: CREATE TABLE table_name_46 (country VARCHAR, airport VARCHAR) ### Question: Paris-Charles de Gaulle airport is in which country? ### Answer: SELECT country FROM table_name_46 WHERE airport = "paris-charles de gaulle airport"
What is the ICAO for Riyadh, Saudi Arabia?
CREATE TABLE table_name_35 (icao VARCHAR, country VARCHAR, city VARCHAR)
SELECT icao FROM table_name_35 WHERE country = "saudi arabia" AND city = "riyadh"
### Context: CREATE TABLE table_name_35 (icao VARCHAR, country VARCHAR, city VARCHAR) ### Question: What is the ICAO for Riyadh, Saudi Arabia? ### Answer: SELECT icao FROM table_name_35 WHERE country = "saudi arabia" AND city = "riyadh"
What is the IATA for Benghazi, Libya?
CREATE TABLE table_name_56 (iata VARCHAR, country VARCHAR, city VARCHAR)
SELECT iata FROM table_name_56 WHERE country = "libya" AND city = "benghazi"
### Context: CREATE TABLE table_name_56 (iata VARCHAR, country VARCHAR, city VARCHAR) ### Question: What is the IATA for Benghazi, Libya? ### Answer: SELECT iata FROM table_name_56 WHERE country = "libya" AND city = "benghazi"
What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?
CREATE TABLE table_name_45 (grid INTEGER, time VARCHAR, bike VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_45 WHERE bike = "honda cbr1000rr" AND laps = 18 AND time = "+1:12.884"
### Context: CREATE TABLE table_name_45 (grid INTEGER, time VARCHAR, bike VARCHAR, laps VARCHAR) ### Question: What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884? ### Answer: SELECT AVG(grid) FROM table_name_45 WHERE bike = "honda cbr1000rr" AND laps = 18 AND time = "+1:12.884"
What is the Bike with 18 laps and +41.280 as the time?
CREATE TABLE table_name_51 (bike VARCHAR, laps VARCHAR, time VARCHAR)
SELECT bike FROM table_name_51 WHERE laps = 18 AND time = "+41.280"
### Context: CREATE TABLE table_name_51 (bike VARCHAR, laps VARCHAR, time VARCHAR) ### Question: What is the Bike with 18 laps and +41.280 as the time? ### Answer: SELECT bike FROM table_name_51 WHERE laps = 18 AND time = "+41.280"
What is the Time when there are 18 laps, grid larger than 15, and Rider of Russell Holland?
CREATE TABLE table_name_42 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time FROM table_name_42 WHERE laps = 18 AND grid > 15 AND rider = "russell holland"
### Context: CREATE TABLE table_name_42 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What is the Time when there are 18 laps, grid larger than 15, and Rider of Russell Holland? ### Answer: SELECT time FROM table_name_42 WHERE laps = 18 AND grid > 15 AND rider = "russell holland"
What is the Bike with a grid more than 4 and the rider is Michel Fabrizio?
CREATE TABLE table_name_17 (bike VARCHAR, grid VARCHAR, rider VARCHAR)
SELECT bike FROM table_name_17 WHERE grid > 4 AND rider = "michel fabrizio"
### Context: CREATE TABLE table_name_17 (bike VARCHAR, grid VARCHAR, rider VARCHAR) ### Question: What is the Bike with a grid more than 4 and the rider is Michel Fabrizio? ### Answer: SELECT bike FROM table_name_17 WHERE grid > 4 AND rider = "michel fabrizio"
What was Lee Smith's highest number of goals when he made fewer than 364 appearances?
CREATE TABLE table_name_51 (goals INTEGER, name VARCHAR, appearances VARCHAR)
SELECT MAX(goals) FROM table_name_51 WHERE name = "lee smith" AND appearances < 364
### Context: CREATE TABLE table_name_51 (goals INTEGER, name VARCHAR, appearances VARCHAR) ### Question: What was Lee Smith's highest number of goals when he made fewer than 364 appearances? ### Answer: SELECT MAX(goals) FROM table_name_51 WHERE name = "lee smith" AND appearances < 364
Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances?
CREATE TABLE table_name_29 (goals VARCHAR, Game VARCHAR, appearances VARCHAR)
SELECT goals / Game AS Ratio FROM table_name_29 WHERE goals < 201 AND appearances < 170
### Context: CREATE TABLE table_name_29 (goals VARCHAR, Game VARCHAR, appearances VARCHAR) ### Question: Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances? ### Answer: SELECT goals / Game AS Ratio FROM table_name_29 WHERE goals < 201 AND appearances < 170
What is the average rank of the airport with a 9.3% annual change?
CREATE TABLE table_name_59 (rank INTEGER, annual_change VARCHAR)
SELECT AVG(rank) FROM table_name_59 WHERE annual_change = "9.3%"
### Context: CREATE TABLE table_name_59 (rank INTEGER, annual_change VARCHAR) ### Question: What is the average rank of the airport with a 9.3% annual change? ### Answer: SELECT AVG(rank) FROM table_name_59 WHERE annual_change = "9.3%"
Where is the airport located that has a 98.9% in use capacity?
CREATE TABLE table_name_51 (location VARCHAR, capacity_in_use VARCHAR)
SELECT location FROM table_name_51 WHERE capacity_in_use = "98.9%"
### Context: CREATE TABLE table_name_51 (location VARCHAR, capacity_in_use VARCHAR) ### Question: Where is the airport located that has a 98.9% in use capacity? ### Answer: SELECT location FROM table_name_51 WHERE capacity_in_use = "98.9%"
What rank is the airport in Fortaleza?
CREATE TABLE table_name_19 (rank VARCHAR, location VARCHAR)
SELECT rank FROM table_name_19 WHERE location = "fortaleza"
### Context: CREATE TABLE table_name_19 (rank VARCHAR, location VARCHAR) ### Question: What rank is the airport in Fortaleza? ### Answer: SELECT rank FROM table_name_19 WHERE location = "fortaleza"
What is the Award name with a Team name that is cougar robotics team?
CREATE TABLE table_name_53 (award_name VARCHAR, team_name VARCHAR)
SELECT award_name FROM table_name_53 WHERE team_name = "cougar robotics team"
### Context: CREATE TABLE table_name_53 (award_name VARCHAR, team_name VARCHAR) ### Question: What is the Award name with a Team name that is cougar robotics team? ### Answer: SELECT award_name FROM table_name_53 WHERE team_name = "cougar robotics team"
What is the zan 1 that has 11 as the nor 1?
CREATE TABLE table_name_34 (zan_1 VARCHAR, nor_1 VARCHAR)
SELECT zan_1 FROM table_name_34 WHERE nor_1 = "11"
### Context: CREATE TABLE table_name_34 (zan_1 VARCHAR, nor_1 VARCHAR) ### Question: What is the zan 1 that has 11 as the nor 1? ### Answer: SELECT zan_1 FROM table_name_34 WHERE nor_1 = "11"
What driver has 19 as the zan 1?
CREATE TABLE table_name_13 (driver VARCHAR, zan_1 VARCHAR)
SELECT driver FROM table_name_13 WHERE zan_1 = "19"
### Context: CREATE TABLE table_name_13 (driver VARCHAR, zan_1 VARCHAR) ### Question: What driver has 19 as the zan 1? ### Answer: SELECT driver FROM table_name_13 WHERE zan_1 = "19"
What driver has 5 as the zan 2?
CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR)
SELECT driver FROM table_name_69 WHERE zan_2 = "5"
### Context: CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR) ### Question: What driver has 5 as the zan 2? ### Answer: SELECT driver FROM table_name_69 WHERE zan_2 = "5"
What is the nor 2 that has nor 1 as nor 1?
CREATE TABLE table_name_25 (nor_2 VARCHAR, nor_1 VARCHAR)
SELECT nor_2 FROM table_name_25 WHERE nor_1 = "nor 1"
### Context: CREATE TABLE table_name_25 (nor_2 VARCHAR, nor_1 VARCHAR) ### Question: What is the nor 2 that has nor 1 as nor 1? ### Answer: SELECT nor_2 FROM table_name_25 WHERE nor_1 = "nor 1"
What driver has 22 as nor 1?
CREATE TABLE table_name_85 (driver VARCHAR, nor_1 VARCHAR)
SELECT driver FROM table_name_85 WHERE nor_1 = "22"
### Context: CREATE TABLE table_name_85 (driver VARCHAR, nor_1 VARCHAR) ### Question: What driver has 22 as nor 1? ### Answer: SELECT driver FROM table_name_85 WHERE nor_1 = "22"
What Date had a Result of draw, and a Venue of lord's?
CREATE TABLE table_name_28 (date VARCHAR, result VARCHAR, venue VARCHAR)
SELECT date FROM table_name_28 WHERE result = "draw" AND venue = "lord's"
### Context: CREATE TABLE table_name_28 (date VARCHAR, result VARCHAR, venue VARCHAR) ### Question: What Date had a Result of draw, and a Venue of lord's? ### Answer: SELECT date FROM table_name_28 WHERE result = "draw" AND venue = "lord's"
What Date that had a Result of draw, with Oval as a venue?
CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR, venue VARCHAR)
SELECT date FROM table_name_32 WHERE result = "draw" AND venue = "oval"
### Context: CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR, venue VARCHAR) ### Question: What Date that had a Result of draw, with Oval as a venue? ### Answer: SELECT date FROM table_name_32 WHERE result = "draw" AND venue = "oval"
What is the Away captain when the Result was draw, and a Venue of lord's?
CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR)
SELECT away_captain FROM table_name_72 WHERE result = "draw" AND venue = "lord's"
### Context: CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR) ### Question: What is the Away captain when the Result was draw, and a Venue of lord's? ### Answer: SELECT away_captain FROM table_name_72 WHERE result = "draw" AND venue = "lord's"
What is the Date when the match Resulted in a draw?
CREATE TABLE table_name_95 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_95 WHERE result = "draw"
### Context: CREATE TABLE table_name_95 (date VARCHAR, result VARCHAR) ### Question: What is the Date when the match Resulted in a draw? ### Answer: SELECT date FROM table_name_95 WHERE result = "draw"
What was the margin of victory when the winning score was –10 (70-72-68-68=278)?
CREATE TABLE table_name_6 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_6 WHERE winning_score = –10(70 - 72 - 68 - 68 = 278)
### Context: CREATE TABLE table_name_6 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: What was the margin of victory when the winning score was –10 (70-72-68-68=278)? ### Answer: SELECT margin_of_victory FROM table_name_6 WHERE winning_score = –10(70 - 72 - 68 - 68 = 278)
When Gary Player was the runner-up, what was the margin of victory?
CREATE TABLE table_name_28 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_28 WHERE runner_s__up = "gary player"
### Context: CREATE TABLE table_name_28 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: When Gary Player was the runner-up, what was the margin of victory? ### Answer: SELECT margin_of_victory FROM table_name_28 WHERE runner_s__up = "gary player"
In what tournament was the winning score –10 (68-71-69-70=278)?
CREATE TABLE table_name_21 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_21 WHERE winning_score = –10(68 - 71 - 69 - 70 = 278)
### Context: CREATE TABLE table_name_21 (tournament VARCHAR, winning_score VARCHAR) ### Question: In what tournament was the winning score –10 (68-71-69-70=278)? ### Answer: SELECT tournament FROM table_name_21 WHERE winning_score = –10(68 - 71 - 69 - 70 = 278)
What is the highest number of wins when more than 17 cuts and more than 25 starts were made, and the top 10 ranking is less than 8?
CREATE TABLE table_name_95 (wins INTEGER, top_10 VARCHAR, cuts_made VARCHAR, starts VARCHAR)
SELECT MAX(wins) FROM table_name_95 WHERE cuts_made > 17 AND starts > 25 AND top_10 < 8
### Context: CREATE TABLE table_name_95 (wins INTEGER, top_10 VARCHAR, cuts_made VARCHAR, starts VARCHAR) ### Question: What is the highest number of wins when more than 17 cuts and more than 25 starts were made, and the top 10 ranking is less than 8? ### Answer: SELECT MAX(wins) FROM table_name_95 WHERE cuts_made > 17 AND starts > 25 AND top_10 < 8
What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4?
CREATE TABLE table_name_58 (starts INTEGER, money_list_rank VARCHAR, top_25 VARCHAR)
SELECT AVG(starts) FROM table_name_58 WHERE money_list_rank = "108" AND top_25 > 4
### Context: CREATE TABLE table_name_58 (starts INTEGER, money_list_rank VARCHAR, top_25 VARCHAR) ### Question: What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4? ### Answer: SELECT AVG(starts) FROM table_name_58 WHERE money_list_rank = "108" AND top_25 > 4
What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?
CREATE TABLE table_name_33 (starts INTEGER, cuts_made VARCHAR, top_10 VARCHAR)
SELECT AVG(starts) FROM table_name_33 WHERE cuts_made = 11 AND top_10 > 4
### Context: CREATE TABLE table_name_33 (starts INTEGER, cuts_made VARCHAR, top_10 VARCHAR) ### Question: What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4? ### Answer: SELECT AVG(starts) FROM table_name_33 WHERE cuts_made = 11 AND top_10 > 4
What is the Name when the position is g, and weight is 190 pounds?
CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR, weight__lbs_ VARCHAR)
SELECT name FROM table_name_54 WHERE position = "g" AND weight__lbs_ = 190
### Context: CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR, weight__lbs_ VARCHAR) ### Question: What is the Name when the position is g, and weight is 190 pounds? ### Answer: SELECT name FROM table_name_54 WHERE position = "g" AND weight__lbs_ = 190
Who was the home team of the game on 2 February 2006?
CREATE TABLE table_name_12 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_12 WHERE date = "2 february 2006"
### Context: CREATE TABLE table_name_12 (home VARCHAR, date VARCHAR) ### Question: Who was the home team of the game on 2 February 2006? ### Answer: SELECT home FROM table_name_12 WHERE date = "2 february 2006"
What is the home team of the game with Warriors as the visitor team?
CREATE TABLE table_name_35 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_35 WHERE visitor = "warriors"
### Context: CREATE TABLE table_name_35 (home VARCHAR, visitor VARCHAR) ### Question: What is the home team of the game with Warriors as the visitor team? ### Answer: SELECT home FROM table_name_35 WHERE visitor = "warriors"
What date was the match on a hard surface with a score of 6–4, 2–6, 3–6?
CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, score VARCHAR)
SELECT date FROM table_name_83 WHERE surface = "hard" AND score = "6–4, 2–6, 3–6"
### Context: CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, score VARCHAR) ### Question: What date was the match on a hard surface with a score of 6–4, 2–6, 3–6? ### Answer: SELECT date FROM table_name_83 WHERE surface = "hard" AND score = "6–4, 2–6, 3–6"
What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún?
CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT score FROM table_name_48 WHERE surface = "clay" AND outcome = "winner" AND tournament = "ciudad juárez" AND opponent_in_the_final = "estefania craciún"
### Context: CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR) ### Question: What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún? ### Answer: SELECT score FROM table_name_48 WHERE surface = "clay" AND outcome = "winner" AND tournament = "ciudad juárez" AND opponent_in_the_final = "estefania craciún"
What is the Outcome of the match with a Score of 6–3, 6–4?
CREATE TABLE table_name_2 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_2 WHERE score = "6–3, 6–4"
### Context: CREATE TABLE table_name_2 (outcome VARCHAR, score VARCHAR) ### Question: What is the Outcome of the match with a Score of 6–3, 6–4? ### Answer: SELECT outcome FROM table_name_2 WHERE score = "6–3, 6–4"
What is the Outcome of the match with a Score of 6–3, 6–4?
CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_75 WHERE score = "6–3, 6–4"
### Context: CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR) ### Question: What is the Outcome of the match with a Score of 6–3, 6–4? ### Answer: SELECT outcome FROM table_name_75 WHERE score = "6–3, 6–4"
What is the Outcome of the match on 12 september 2004?
CREATE TABLE table_name_21 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_21 WHERE date = "12 september 2004"
### Context: CREATE TABLE table_name_21 (outcome VARCHAR, date VARCHAR) ### Question: What is the Outcome of the match on 12 september 2004? ### Answer: SELECT outcome FROM table_name_21 WHERE date = "12 september 2004"
What was the Surface when the Score was 6–4, 2–6, 3–6?
CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_17 WHERE score = "6–4, 2–6, 3–6"
### Context: CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR) ### Question: What was the Surface when the Score was 6–4, 2–6, 3–6? ### Answer: SELECT surface FROM table_name_17 WHERE score = "6–4, 2–6, 3–6"
What was the total attendance at a game against the Pittsburgh Steelers before week 4?
CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = "pittsburgh steelers" AND week < 4
### Context: CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, week VARCHAR) ### Question: What was the total attendance at a game against the Pittsburgh Steelers before week 4? ### Answer: SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = "pittsburgh steelers" AND week < 4
What was the date of the game held at the A venue with a result of 0-1 against the Rangers?
CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, venue VARCHAR, result VARCHAR)
SELECT date FROM table_name_87 WHERE venue = "a" AND result = "0-1" AND opponent = "rangers"
### Context: CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, venue VARCHAR, result VARCHAR) ### Question: What was the date of the game held at the A venue with a result of 0-1 against the Rangers? ### Answer: SELECT date FROM table_name_87 WHERE venue = "a" AND result = "0-1" AND opponent = "rangers"
Who was the opponent on November 11, 2001?
CREATE TABLE table_name_4 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_4 WHERE date = "november 11, 2001"
### Context: CREATE TABLE table_name_4 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on November 11, 2001? ### Answer: SELECT opponent FROM table_name_4 WHERE date = "november 11, 2001"
Who was the opponent before week 5 that played on September 23, 2001?
CREATE TABLE table_name_99 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_99 WHERE week < 5 AND date = "september 23, 2001"
### Context: CREATE TABLE table_name_99 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: Who was the opponent before week 5 that played on September 23, 2001? ### Answer: SELECT opponent FROM table_name_99 WHERE week < 5 AND date = "september 23, 2001"
What is the frequency of the Turion 64 X2 TL-62?
CREATE TABLE table_name_8 (frequency VARCHAR, model_number VARCHAR)
SELECT frequency FROM table_name_8 WHERE model_number = "turion 64 x2 tl-62"
### Context: CREATE TABLE table_name_8 (frequency VARCHAR, model_number VARCHAR) ### Question: What is the frequency of the Turion 64 X2 TL-62? ### Answer: SELECT frequency FROM table_name_8 WHERE model_number = "turion 64 x2 tl-62"
What is the socket for Order Part Number TMDTL68HAX5DM?
CREATE TABLE table_name_67 (socket VARCHAR, order_part_number VARCHAR)
SELECT socket FROM table_name_67 WHERE order_part_number = "tmdtl68hax5dm"
### Context: CREATE TABLE table_name_67 (socket VARCHAR, order_part_number VARCHAR) ### Question: What is the socket for Order Part Number TMDTL68HAX5DM? ### Answer: SELECT socket FROM table_name_67 WHERE order_part_number = "tmdtl68hax5dm"
What is the multiplier 1 for chips with a frequency of 1800MHz?
CREATE TABLE table_name_25 (multiplier_1 VARCHAR, frequency VARCHAR)
SELECT multiplier_1 FROM table_name_25 WHERE frequency = "1800mhz"
### Context: CREATE TABLE table_name_25 (multiplier_1 VARCHAR, frequency VARCHAR) ### Question: What is the multiplier 1 for chips with a frequency of 1800MHz? ### Answer: SELECT multiplier_1 FROM table_name_25 WHERE frequency = "1800mhz"
What is the socket type for the processor with a multiplier 1 of 11.5x?
CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR)
SELECT socket FROM table_name_66 WHERE multiplier_1 = "11.5x"
### Context: CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR) ### Question: What is the socket type for the processor with a multiplier 1 of 11.5x? ### Answer: SELECT socket FROM table_name_66 WHERE multiplier_1 = "11.5x"
What is the highest sample size administered on October 18?
CREATE TABLE table_name_35 (sample_size INTEGER, date_s__administered VARCHAR)
SELECT MAX(sample_size) FROM table_name_35 WHERE date_s__administered = "october 18"
### Context: CREATE TABLE table_name_35 (sample_size INTEGER, date_s__administered VARCHAR) ### Question: What is the highest sample size administered on October 18? ### Answer: SELECT MAX(sample_size) FROM table_name_35 WHERE date_s__administered = "october 18"
What is the percentage for Mel Martinez when the sample size is 800?
CREATE TABLE table_name_6 (mel_martinez__r_ VARCHAR, sample_size VARCHAR)
SELECT mel_martinez__r_ FROM table_name_6 WHERE sample_size = 800
### Context: CREATE TABLE table_name_6 (mel_martinez__r_ VARCHAR, sample_size VARCHAR) ### Question: What is the percentage for Mel Martinez when the sample size is 800? ### Answer: SELECT mel_martinez__r_ FROM table_name_6 WHERE sample_size = 800
How many games were played by the Scottish Wanderers where less than 5 Points were scored?
CREATE TABLE table_name_21 (played INTEGER, team VARCHAR, points VARCHAR)
SELECT SUM(played) FROM table_name_21 WHERE team = "scottish wanderers" AND points < 5
### Context: CREATE TABLE table_name_21 (played INTEGER, team VARCHAR, points VARCHAR) ### Question: How many games were played by the Scottish Wanderers where less than 5 Points were scored? ### Answer: SELECT SUM(played) FROM table_name_21 WHERE team = "scottish wanderers" AND points < 5
How many games were played where exactly 15 points were scored?
CREATE TABLE table_name_34 (played INTEGER, points VARCHAR)
SELECT SUM(played) FROM table_name_34 WHERE points = 15
### Context: CREATE TABLE table_name_34 (played INTEGER, points VARCHAR) ### Question: How many games were played where exactly 15 points were scored? ### Answer: SELECT SUM(played) FROM table_name_34 WHERE points = 15
What LINER class has a W.A. of 0-6-0st with a 2 No. Built?
CREATE TABLE table_name_44 (lner_class VARCHAR, wa VARCHAR, no_built VARCHAR)
SELECT lner_class FROM table_name_44 WHERE wa = "0-6-0st" AND no_built = 2
### Context: CREATE TABLE table_name_44 (lner_class VARCHAR, wa VARCHAR, no_built VARCHAR) ### Question: What LINER class has a W.A. of 0-6-0st with a 2 No. Built? ### Answer: SELECT lner_class FROM table_name_44 WHERE wa = "0-6-0st" AND no_built = 2
What is the pick number for Peter Moore of the Montreal Alouettes?
CREATE TABLE table_name_74 (pick__number VARCHAR, cfl_team VARCHAR, player VARCHAR)
SELECT pick__number FROM table_name_74 WHERE cfl_team = "montreal alouettes" AND player = "peter moore"
### Context: CREATE TABLE table_name_74 (pick__number VARCHAR, cfl_team VARCHAR, player VARCHAR) ### Question: What is the pick number for Peter Moore of the Montreal Alouettes? ### Answer: SELECT pick__number FROM table_name_74 WHERE cfl_team = "montreal alouettes" AND player = "peter moore"
What CFL team did Kelly Bates play for?
CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR)
SELECT cfl_team FROM table_name_32 WHERE player = "kelly bates"
### Context: CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR) ### Question: What CFL team did Kelly Bates play for? ### Answer: SELECT cfl_team FROM table_name_32 WHERE player = "kelly bates"
How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0?
CREATE TABLE table_name_23 (total_matches INTEGER, draw VARCHAR, swansea_win VARCHAR, competition VARCHAR)
SELECT AVG(total_matches) FROM table_name_23 WHERE swansea_win < 3 AND competition = "fa cup" AND draw < 0
### Context: CREATE TABLE table_name_23 (total_matches INTEGER, draw VARCHAR, swansea_win VARCHAR, competition VARCHAR) ### Question: How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0? ### Answer: SELECT AVG(total_matches) FROM table_name_23 WHERE swansea_win < 3 AND competition = "fa cup" AND draw < 0
How many cardiff wins have a draw greater than 27?
CREATE TABLE table_name_26 (cardiff_win VARCHAR, draw INTEGER)
SELECT COUNT(cardiff_win) FROM table_name_26 WHERE draw > 27
### Context: CREATE TABLE table_name_26 (cardiff_win VARCHAR, draw INTEGER) ### Question: How many cardiff wins have a draw greater than 27? ### Answer: SELECT COUNT(cardiff_win) FROM table_name_26 WHERE draw > 27
How many average total matches have league cup as the competition, with a draw greater than 0?
CREATE TABLE table_name_34 (total_matches INTEGER, competition VARCHAR, draw VARCHAR)
SELECT AVG(total_matches) FROM table_name_34 WHERE competition = "league cup" AND draw > 0
### Context: CREATE TABLE table_name_34 (total_matches INTEGER, competition VARCHAR, draw VARCHAR) ### Question: How many average total matches have league cup as the competition, with a draw greater than 0? ### Answer: SELECT AVG(total_matches) FROM table_name_34 WHERE competition = "league cup" AND draw > 0
What is the number of tries for when the try bonus is 0?
CREATE TABLE table_name_16 (tries_for VARCHAR, try_bonus VARCHAR)
SELECT tries_for FROM table_name_16 WHERE try_bonus = "0"
### Context: CREATE TABLE table_name_16 (tries_for VARCHAR, try_bonus VARCHAR) ### Question: What is the number of tries for when the try bonus is 0? ### Answer: SELECT tries_for FROM table_name_16 WHERE try_bonus = "0"
How many points is there when the lost is 6 and the try bonus is 9?
CREATE TABLE table_name_24 (points_for VARCHAR, lost VARCHAR, try_bonus VARCHAR)
SELECT points_for FROM table_name_24 WHERE lost = "6" AND try_bonus = "9"
### Context: CREATE TABLE table_name_24 (points_for VARCHAR, lost VARCHAR, try_bonus VARCHAR) ### Question: How many points is there when the lost is 6 and the try bonus is 9? ### Answer: SELECT points_for FROM table_name_24 WHERE lost = "6" AND try_bonus = "9"
How many pints does the Cambrian Welfare RFC have?
CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR)
SELECT points_for FROM table_name_50 WHERE club = "cambrian welfare rfc"
### Context: CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR) ### Question: How many pints does the Cambrian Welfare RFC have? ### Answer: SELECT points_for FROM table_name_50 WHERE club = "cambrian welfare rfc"
When the try bonus is 9 and the lost 4, what is the drawn?
CREATE TABLE table_name_50 (drawn VARCHAR, try_bonus VARCHAR, lost VARCHAR)
SELECT drawn FROM table_name_50 WHERE try_bonus = "9" AND lost = "4"
### Context: CREATE TABLE table_name_50 (drawn VARCHAR, try_bonus VARCHAR, lost VARCHAR) ### Question: When the try bonus is 9 and the lost 4, what is the drawn? ### Answer: SELECT drawn FROM table_name_50 WHERE try_bonus = "9" AND lost = "4"
Club Clwb Rygbi Cymru Caerdydd RFC has how many points?
CREATE TABLE table_name_40 (points VARCHAR, club VARCHAR)
SELECT points FROM table_name_40 WHERE club = "clwb rygbi cymru caerdydd rfc"
### Context: CREATE TABLE table_name_40 (points VARCHAR, club VARCHAR) ### Question: Club Clwb Rygbi Cymru Caerdydd RFC has how many points? ### Answer: SELECT points FROM table_name_40 WHERE club = "clwb rygbi cymru caerdydd rfc"
What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823?
CREATE TABLE table_name_68 (rank INTEGER, area VARCHAR, density VARCHAR, province VARCHAR)
SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = "valverde" AND area > 823
### Context: CREATE TABLE table_name_68 (rank INTEGER, area VARCHAR, density VARCHAR, province VARCHAR) ### Question: What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823? ### Answer: SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = "valverde" AND area > 823
What is the highest Density for the independencia province, with an area smaller than 2,007.4?
CREATE TABLE table_name_88 (density INTEGER, province VARCHAR, area VARCHAR)
SELECT MAX(density) FROM table_name_88 WHERE province = "independencia" AND area < 2 OFFSET 007.4
### Context: CREATE TABLE table_name_88 (density INTEGER, province VARCHAR, area VARCHAR) ### Question: What is the highest Density for the independencia province, with an area smaller than 2,007.4? ### Answer: SELECT MAX(density) FROM table_name_88 WHERE province = "independencia" AND area < 2 OFFSET 007.4
Which 2nd leg has pamesa valencia for team #2?
CREATE TABLE table_name_52 (team__number2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_52 WHERE team__number2 = "pamesa valencia"
### Context: CREATE TABLE table_name_52 (team__number2 VARCHAR) ### Question: Which 2nd leg has pamesa valencia for team #2? ### Answer: SELECT 2 AS nd_leg FROM table_name_52 WHERE team__number2 = "pamesa valencia"
What is the team #1 that has unics kazan for team #2?
CREATE TABLE table_name_97 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT team__number1 FROM table_name_97 WHERE team__number2 = "unics kazan"
### Context: CREATE TABLE table_name_97 (team__number1 VARCHAR, team__number2 VARCHAR) ### Question: What is the team #1 that has unics kazan for team #2? ### Answer: SELECT team__number1 FROM table_name_97 WHERE team__number2 = "unics kazan"
What is the 1st leg that has akasvayu girona as team #2?
CREATE TABLE table_name_37 (team__number2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_37 WHERE team__number2 = "akasvayu girona"
### Context: CREATE TABLE table_name_37 (team__number2 VARCHAR) ### Question: What is the 1st leg that has akasvayu girona as team #2? ### Answer: SELECT 1 AS st_leg FROM table_name_37 WHERE team__number2 = "akasvayu girona"
Which Wins has a Tournament of totals, and a Cuts made larger than 42?
CREATE TABLE table_name_2 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR)
SELECT AVG(wins) FROM table_name_2 WHERE tournament = "totals" AND cuts_made > 42
### Context: CREATE TABLE table_name_2 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR) ### Question: Which Wins has a Tournament of totals, and a Cuts made larger than 42? ### Answer: SELECT AVG(wins) FROM table_name_2 WHERE tournament = "totals" AND cuts_made > 42
Which Top-10 has a Cuts made larger than 42?
CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made INTEGER)
SELECT MIN(top_10) FROM table_name_57 WHERE cuts_made > 42
### Context: CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made INTEGER) ### Question: Which Top-10 has a Cuts made larger than 42? ### Answer: SELECT MIN(top_10) FROM table_name_57 WHERE cuts_made > 42
Which Wins has a Top-5 of 6?
CREATE TABLE table_name_26 (wins INTEGER, top_5 VARCHAR)
SELECT AVG(wins) FROM table_name_26 WHERE top_5 = 6
### Context: CREATE TABLE table_name_26 (wins INTEGER, top_5 VARCHAR) ### Question: Which Wins has a Top-5 of 6? ### Answer: SELECT AVG(wins) FROM table_name_26 WHERE top_5 = 6
Which Cuts made has a Top-25 smaller than 3?
CREATE TABLE table_name_26 (cuts_made INTEGER, top_25 INTEGER)
SELECT MAX(cuts_made) FROM table_name_26 WHERE top_25 < 3
### Context: CREATE TABLE table_name_26 (cuts_made INTEGER, top_25 INTEGER) ### Question: Which Cuts made has a Top-25 smaller than 3? ### Answer: SELECT MAX(cuts_made) FROM table_name_26 WHERE top_25 < 3
Which Top-10 has a Cuts made of 10, and a Top-5 larger than 1?
CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR)
SELECT MIN(top_10) FROM table_name_95 WHERE cuts_made = 10 AND top_5 > 1
### Context: CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR) ### Question: Which Top-10 has a Cuts made of 10, and a Top-5 larger than 1? ### Answer: SELECT MIN(top_10) FROM table_name_95 WHERE cuts_made = 10 AND top_5 > 1
Concerning protestantism by country, the ranking is out of how many total?
CREATE TABLE table_name_62 (out_of VARCHAR, source VARCHAR)
SELECT out_of FROM table_name_62 WHERE source = "protestantism by country"
### Context: CREATE TABLE table_name_62 (out_of VARCHAR, source VARCHAR) ### Question: Concerning protestantism by country, the ranking is out of how many total? ### Answer: SELECT out_of FROM table_name_62 WHERE source = "protestantism by country"
What is the lowest rank that the protestants population holds?
CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR)
SELECT MIN(rank) FROM table_name_67 WHERE name = "protestants population"
### Context: CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR) ### Question: What is the lowest rank that the protestants population holds? ### Answer: SELECT MIN(rank) FROM table_name_67 WHERE name = "protestants population"
The album titled I had what chart positions?
CREATE TABLE table_name_21 (chart_positions VARCHAR, album_title VARCHAR)
SELECT chart_positions FROM table_name_21 WHERE album_title = "i"
### Context: CREATE TABLE table_name_21 (chart_positions VARCHAR, album_title VARCHAR) ### Question: The album titled I had what chart positions? ### Answer: SELECT chart_positions FROM table_name_21 WHERE album_title = "i"
What is the title of the album that has Popup has the original label?
CREATE TABLE table_name_25 (album_title VARCHAR, original_label VARCHAR)
SELECT album_title FROM table_name_25 WHERE original_label = "popup"
### Context: CREATE TABLE table_name_25 (album_title VARCHAR, original_label VARCHAR) ### Question: What is the title of the album that has Popup has the original label? ### Answer: SELECT album_title FROM table_name_25 WHERE original_label = "popup"
What is the format of the album with a year less than 1992?
CREATE TABLE table_name_58 (format VARCHAR, year INTEGER)
SELECT format FROM table_name_58 WHERE year < 1992
### Context: CREATE TABLE table_name_58 (format VARCHAR, year INTEGER) ### Question: What is the format of the album with a year less than 1992? ### Answer: SELECT format FROM table_name_58 WHERE year < 1992
What chart positions did the album reach when ep was the format?
CREATE TABLE table_name_1 (chart_positions VARCHAR, format VARCHAR)
SELECT chart_positions FROM table_name_1 WHERE format = "ep"
### Context: CREATE TABLE table_name_1 (chart_positions VARCHAR, format VARCHAR) ### Question: What chart positions did the album reach when ep was the format? ### Answer: SELECT chart_positions FROM table_name_1 WHERE format = "ep"
What was the average pick with Ed O'Bannon and a round smaller than 1?
CREATE TABLE table_name_74 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT AVG(pick) FROM table_name_74 WHERE player = "ed o'bannon" AND round < 1
### Context: CREATE TABLE table_name_74 (pick INTEGER, player VARCHAR, round VARCHAR) ### Question: What was the average pick with Ed O'Bannon and a round smaller than 1? ### Answer: SELECT AVG(pick) FROM table_name_74 WHERE player = "ed o'bannon" AND round < 1
What player was drafted for the Detroit Pistons?
CREATE TABLE table_name_27 (player VARCHAR, nba_team VARCHAR)
SELECT player FROM table_name_27 WHERE nba_team = "detroit pistons"
### Context: CREATE TABLE table_name_27 (player VARCHAR, nba_team VARCHAR) ### Question: What player was drafted for the Detroit Pistons? ### Answer: SELECT player FROM table_name_27 WHERE nba_team = "detroit pistons"
Which Team 2 had a Team 1 of montreal impact?
CREATE TABLE table_name_81 (team_2 VARCHAR, team_1 VARCHAR)
SELECT team_2 FROM table_name_81 WHERE team_1 = "montreal impact"
### Context: CREATE TABLE table_name_81 (team_2 VARCHAR, team_1 VARCHAR) ### Question: Which Team 2 had a Team 1 of montreal impact? ### Answer: SELECT team_2 FROM table_name_81 WHERE team_1 = "montreal impact"
Which Team 2 had a Team 1of joe public?
CREATE TABLE table_name_52 (team_2 VARCHAR, team_1 VARCHAR)
SELECT team_2 FROM table_name_52 WHERE team_1 = "joe public"
### Context: CREATE TABLE table_name_52 (team_2 VARCHAR, team_1 VARCHAR) ### Question: Which Team 2 had a Team 1of joe public? ### Answer: SELECT team_2 FROM table_name_52 WHERE team_1 = "joe public"
Which team 1 had a Team 2 of hankook verdes?
CREATE TABLE table_name_19 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_19 WHERE team_2 = "hankook verdes"
### Context: CREATE TABLE table_name_19 (team_1 VARCHAR, team_2 VARCHAR) ### Question: Which team 1 had a Team 2 of hankook verdes? ### Answer: SELECT team_1 FROM table_name_19 WHERE team_2 = "hankook verdes"