question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the date of the game when the home team is melbourne?
CREATE TABLE table_29090919_1 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_29090919_1 WHERE home_team = "Melbourne"
### Context: CREATE TABLE table_29090919_1 (date VARCHAR, home_team VARCHAR) ### Question: What is the date of the game when the home team is melbourne? ### Answer: SELECT date FROM table_29090919_1 WHERE home_team = "Melbourne"
Name the singer for 1.45m
CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, ratings VARCHAR)
SELECT singer_s_ FROM table_29135051_2 WHERE ratings = "1.45m"
### Context: CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, ratings VARCHAR) ### Question: Name the singer for 1.45m ### Answer: SELECT singer_s_ FROM table_29135051_2 WHERE ratings = "1.45m"
Name the singer for joe wilkinson
CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, comedian VARCHAR)
SELECT singer_s_ FROM table_29135051_2 WHERE comedian = "Joe Wilkinson"
### Context: CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, comedian VARCHAR) ### Question: Name the singer for joe wilkinson ### Answer: SELECT singer_s_ FROM table_29135051_2 WHERE comedian = "Joe Wilkinson"
Name the singer for bruce forsyth
CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, guest_s_ VARCHAR)
SELECT singer_s_ FROM table_29135051_2 WHERE guest_s_ = "Bruce Forsyth"
### Context: CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, guest_s_ VARCHAR) ### Question: Name the singer for bruce forsyth ### Answer: SELECT singer_s_ FROM table_29135051_2 WHERE guest_s_ = "Bruce Forsyth"
Name the number of ratings for bruce forsyth
CREATE TABLE table_29135051_2 (ratings VARCHAR, guest_s_ VARCHAR)
SELECT COUNT(ratings) FROM table_29135051_2 WHERE guest_s_ = "Bruce Forsyth"
### Context: CREATE TABLE table_29135051_2 (ratings VARCHAR, guest_s_ VARCHAR) ### Question: Name the number of ratings for bruce forsyth ### Answer: SELECT COUNT(ratings) FROM table_29135051_2 WHERE guest_s_ = "Bruce Forsyth"
Name the guest for 1.64m ratings
CREATE TABLE table_29135051_2 (guest_s_ VARCHAR, ratings VARCHAR)
SELECT guest_s_ FROM table_29135051_2 WHERE ratings = "1.64m"
### Context: CREATE TABLE table_29135051_2 (guest_s_ VARCHAR, ratings VARCHAR) ### Question: Name the guest for 1.64m ratings ### Answer: SELECT guest_s_ FROM table_29135051_2 WHERE ratings = "1.64m"
What was the constructor in the Belgian Grand Prix round?
CREATE TABLE table_2911781_3 (constructor VARCHAR, grand_prix VARCHAR)
SELECT constructor FROM table_2911781_3 WHERE grand_prix = "Belgian grand_prix"
### Context: CREATE TABLE table_2911781_3 (constructor VARCHAR, grand_prix VARCHAR) ### Question: What was the constructor in the Belgian Grand Prix round? ### Answer: SELECT constructor FROM table_2911781_3 WHERE grand_prix = "Belgian grand_prix"
Who had the fastest lap in round 15?
CREATE TABLE table_2911781_3 (fastest_lap VARCHAR, rd VARCHAR)
SELECT fastest_lap FROM table_2911781_3 WHERE rd = 15
### Context: CREATE TABLE table_2911781_3 (fastest_lap VARCHAR, rd VARCHAR) ### Question: Who had the fastest lap in round 15? ### Answer: SELECT fastest_lap FROM table_2911781_3 WHERE rd = 15
When was the home team Essendon?
CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_29126507_1 WHERE home_team = "Essendon"
### Context: CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR) ### Question: When was the home team Essendon? ### Answer: SELECT date FROM table_29126507_1 WHERE home_team = "Essendon"
When Richmond played as the away team, what was the ground?
CREATE TABLE table_29126507_1 (ground VARCHAR, away_team VARCHAR)
SELECT ground FROM table_29126507_1 WHERE away_team = "Richmond"
### Context: CREATE TABLE table_29126507_1 (ground VARCHAR, away_team VARCHAR) ### Question: When Richmond played as the away team, what was the ground? ### Answer: SELECT ground FROM table_29126507_1 WHERE away_team = "Richmond"
When did Fitzroy play as the home team?
CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_29126507_1 WHERE home_team = "Fitzroy"
### Context: CREATE TABLE table_29126507_1 (date VARCHAR, home_team VARCHAR) ### Question: When did Fitzroy play as the home team? ### Answer: SELECT date FROM table_29126507_1 WHERE home_team = "Fitzroy"
what was the result on 01x06
CREATE TABLE table_29141354_1 (scores VARCHAR, episode VARCHAR)
SELECT scores FROM table_29141354_1 WHERE episode = "01x06"
### Context: CREATE TABLE table_29141354_1 (scores VARCHAR, episode VARCHAR) ### Question: what was the result on 01x06 ### Answer: SELECT scores FROM table_29141354_1 WHERE episode = "01x06"
what was the size when tom daley appeared
CREATE TABLE table_29141354_1 (episode VARCHAR, jamie_and_johns_guest VARCHAR)
SELECT episode FROM table_29141354_1 WHERE jamie_and_johns_guest = "Tom Daley"
### Context: CREATE TABLE table_29141354_1 (episode VARCHAR, jamie_and_johns_guest VARCHAR) ### Question: what was the size when tom daley appeared ### Answer: SELECT episode FROM table_29141354_1 WHERE jamie_and_johns_guest = "Tom Daley"
How many scores had an episode of 03x06?
CREATE TABLE table_29141354_3 (scores VARCHAR, episode VARCHAR)
SELECT COUNT(scores) FROM table_29141354_3 WHERE episode = "03x06"
### Context: CREATE TABLE table_29141354_3 (scores VARCHAR, episode VARCHAR) ### Question: How many scores had an episode of 03x06? ### Answer: SELECT COUNT(scores) FROM table_29141354_3 WHERE episode = "03x06"
When id the episode broadcast with Mark Webber as Jamie and John's guest?
CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR)
SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = "Mark Webber"
### Context: CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR) ### Question: When id the episode broadcast with Mark Webber as Jamie and John's guest? ### Answer: SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = "Mark Webber"
What date did the episode with Andy Murray as Jamie and John's guest first broadcast?
CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR)
SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = "Andy Murray"
### Context: CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR) ### Question: What date did the episode with Andy Murray as Jamie and John's guest first broadcast? ### Answer: SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = "Andy Murray"
How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04?
CREATE TABLE table_29141354_4 (_episode_2 VARCHAR, andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4 VARCHAR, episode VARCHAR)
SELECT COUNT(andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4), _episode_2 FROM table_29141354_4 WHERE episode = "04x04"
### Context: CREATE TABLE table_29141354_4 (_episode_2 VARCHAR, andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4 VARCHAR, episode VARCHAR) ### Question: How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04? ### Answer: SELECT COUNT(andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4), _episode_2 FROM table_29141354_4 WHERE episode = "04x04"
who guest starred on the episode with a 1.44m rating
CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, ratings VARCHAR)
SELECT guest_s_ FROM table_29135051_3 WHERE ratings = "1.44m"
### Context: CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, ratings VARCHAR) ### Question: who guest starred on the episode with a 1.44m rating ### Answer: SELECT guest_s_ FROM table_29135051_3 WHERE ratings = "1.44m"
when was the episode on which barbara windsor and heston blumenthal guest starred broadcasted
CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR)
SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = "Barbara Windsor and Heston Blumenthal"
### Context: CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR) ### Question: when was the episode on which barbara windsor and heston blumenthal guest starred broadcasted ### Answer: SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = "Barbara Windsor and Heston Blumenthal"
how many broadcaste dates features the overtones
CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, singer_s_ VARCHAR)
SELECT COUNT(broadcast_date) FROM table_29135051_3 WHERE singer_s_ = "The Overtones"
### Context: CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, singer_s_ VARCHAR) ### Question: how many broadcaste dates features the overtones ### Answer: SELECT COUNT(broadcast_date) FROM table_29135051_3 WHERE singer_s_ = "The Overtones"
how many guest stars did the episode that was broadcasted 11september2012 have
CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, broadcast_date VARCHAR)
SELECT COUNT(guest_s_) FROM table_29135051_3 WHERE broadcast_date = "11September2012"
### Context: CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, broadcast_date VARCHAR) ### Question: how many guest stars did the episode that was broadcasted 11september2012 have ### Answer: SELECT COUNT(guest_s_) FROM table_29135051_3 WHERE broadcast_date = "11September2012"
when was the episode guest starring michael mcintyre and alex james broadcasted
CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR)
SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = "Michael McIntyre and Alex James"
### Context: CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR) ### Question: when was the episode guest starring michael mcintyre and alex james broadcasted ### Answer: SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = "Michael McIntyre and Alex James"
which episode did sarah millican and grayson perry appear in
CREATE TABLE table_29135051_3 (episode INTEGER, guest_s_ VARCHAR)
SELECT MIN(episode) FROM table_29135051_3 WHERE guest_s_ = "Sarah Millican and Grayson Perry"
### Context: CREATE TABLE table_29135051_3 (episode INTEGER, guest_s_ VARCHAR) ### Question: which episode did sarah millican and grayson perry appear in ### Answer: SELECT MIN(episode) FROM table_29135051_3 WHERE guest_s_ = "Sarah Millican and Grayson Perry"
When were episodes first broadcast with jessica ennis as andrew and jacks guest?
CREATE TABLE table_29141354_5 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR)
SELECT first_broadcast FROM table_29141354_5 WHERE andrew_and_jacks_guest = "Jessica Ennis"
### Context: CREATE TABLE table_29141354_5 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR) ### Question: When were episodes first broadcast with jessica ennis as andrew and jacks guest? ### Answer: SELECT first_broadcast FROM table_29141354_5 WHERE andrew_and_jacks_guest = "Jessica Ennis"
Who directed the episode that is written by Eli Attie and production code is 2t5018?
CREATE TABLE table_29152820_1 (directed_by VARCHAR, written_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_29152820_1 WHERE written_by = "Eli Attie" AND production_code = "2T5018"
### Context: CREATE TABLE table_29152820_1 (directed_by VARCHAR, written_by VARCHAR, production_code VARCHAR) ### Question: Who directed the episode that is written by Eli Attie and production code is 2t5018? ### Answer: SELECT directed_by FROM table_29152820_1 WHERE written_by = "Eli Attie" AND production_code = "2T5018"
How many episodes are 122 in the series?
CREATE TABLE table_29152820_1 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT COUNT(no_in_season) FROM table_29152820_1 WHERE no_in_series = 122
### Context: CREATE TABLE table_29152820_1 (no_in_season VARCHAR, no_in_series VARCHAR) ### Question: How many episodes are 122 in the series? ### Answer: SELECT COUNT(no_in_season) FROM table_29152820_1 WHERE no_in_series = 122
What was the score for the episode with Matt Smith as Andrew and Jack's guest?
CREATE TABLE table_29141354_7 (scores VARCHAR, andrew_and_jacks_guest VARCHAR)
SELECT scores FROM table_29141354_7 WHERE andrew_and_jacks_guest = "Matt Smith"
### Context: CREATE TABLE table_29141354_7 (scores VARCHAR, andrew_and_jacks_guest VARCHAR) ### Question: What was the score for the episode with Matt Smith as Andrew and Jack's guest? ### Answer: SELECT scores FROM table_29141354_7 WHERE andrew_and_jacks_guest = "Matt Smith"
When was the episode with Amy Williams as Andrew and Jack's guest broadcast?
CREATE TABLE table_29141354_7 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR)
SELECT first_broadcast FROM table_29141354_7 WHERE andrew_and_jacks_guest = "Amy Williams"
### Context: CREATE TABLE table_29141354_7 (first_broadcast VARCHAR, andrew_and_jacks_guest VARCHAR) ### Question: When was the episode with Amy Williams as Andrew and Jack's guest broadcast? ### Answer: SELECT first_broadcast FROM table_29141354_7 WHERE andrew_and_jacks_guest = "Amy Williams"
What is the last episode in the season that had 3.91 million viewers in the US?
CREATE TABLE table_29154676_1 (season_no INTEGER, us_viewers__millions_ VARCHAR)
SELECT MIN(season_no) FROM table_29154676_1 WHERE us_viewers__millions_ = "3.91"
### Context: CREATE TABLE table_29154676_1 (season_no INTEGER, us_viewers__millions_ VARCHAR) ### Question: What is the last episode in the season that had 3.91 million viewers in the US? ### Answer: SELECT MIN(season_no) FROM table_29154676_1 WHERE us_viewers__millions_ = "3.91"
How many episodes were written by Warren Leight?
CREATE TABLE table_29154676_1 (season_no VARCHAR, written_by VARCHAR)
SELECT COUNT(season_no) FROM table_29154676_1 WHERE written_by = "Warren Leight"
### Context: CREATE TABLE table_29154676_1 (season_no VARCHAR, written_by VARCHAR) ### Question: How many episodes were written by Warren Leight? ### Answer: SELECT COUNT(season_no) FROM table_29154676_1 WHERE written_by = "Warren Leight"
How many championships were there where the score was 4–6, 7–6 (7–5) , [5–10]?
CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR)
SELECT COUNT(championship) FROM table_29163303_4 WHERE score = "4–6, 7–6 (7–5) , [5–10]"
### Context: CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR) ### Question: How many championships were there where the score was 4–6, 7–6 (7–5) , [5–10]? ### Answer: SELECT COUNT(championship) FROM table_29163303_4 WHERE score = "4–6, 7–6 (7–5) , [5–10]"
On what surface was it the year when the score was 6–1, 4–6, [12–10]?
CREATE TABLE table_29163303_4 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_29163303_4 WHERE score = "6–1, 4–6, [12–10]"
### Context: CREATE TABLE table_29163303_4 (surface VARCHAR, score VARCHAR) ### Question: On what surface was it the year when the score was 6–1, 4–6, [12–10]? ### Answer: SELECT surface FROM table_29163303_4 WHERE score = "6–1, 4–6, [12–10]"
How many times has the score been 6–4, 3–6, [11–13]?
CREATE TABLE table_29163303_4 (opponent VARCHAR, score VARCHAR)
SELECT COUNT(opponent) FROM table_29163303_4 WHERE score = "6–4, 3–6, [11–13]"
### Context: CREATE TABLE table_29163303_4 (opponent VARCHAR, score VARCHAR) ### Question: How many times has the score been 6–4, 3–6, [11–13]? ### Answer: SELECT COUNT(opponent) FROM table_29163303_4 WHERE score = "6–4, 3–6, [11–13]"
Who are the outgoing head coaches whose manner of departure is Gardening Leave 1?
CREATE TABLE table_29171931_3 (outgoing_head_coach VARCHAR, manner_of_departure VARCHAR)
SELECT outgoing_head_coach FROM table_29171931_3 WHERE manner_of_departure = "Gardening leave 1"
### Context: CREATE TABLE table_29171931_3 (outgoing_head_coach VARCHAR, manner_of_departure VARCHAR) ### Question: Who are the outgoing head coaches whose manner of departure is Gardening Leave 1? ### Answer: SELECT outgoing_head_coach FROM table_29171931_3 WHERE manner_of_departure = "Gardening leave 1"
Who was the incoming head coach after Wan Jamak Wan Hassan quit the coaching job?
CREATE TABLE table_29171931_3 (incoming_head_coach VARCHAR, outgoing_head_coach VARCHAR)
SELECT incoming_head_coach FROM table_29171931_3 WHERE outgoing_head_coach = "Wan Jamak Wan Hassan"
### Context: CREATE TABLE table_29171931_3 (incoming_head_coach VARCHAR, outgoing_head_coach VARCHAR) ### Question: Who was the incoming head coach after Wan Jamak Wan Hassan quit the coaching job? ### Answer: SELECT incoming_head_coach FROM table_29171931_3 WHERE outgoing_head_coach = "Wan Jamak Wan Hassan"
Who had the fastest lap in round 1?
CREATE TABLE table_29162856_1 (fastest_lap VARCHAR, round VARCHAR)
SELECT fastest_lap FROM table_29162856_1 WHERE round = 1
### Context: CREATE TABLE table_29162856_1 (fastest_lap VARCHAR, round VARCHAR) ### Question: Who had the fastest lap in round 1? ### Answer: SELECT fastest_lap FROM table_29162856_1 WHERE round = 1
Who had the pole position when matt davies had the fastest lap?
CREATE TABLE table_29162856_1 (pole_position VARCHAR, fastest_lap VARCHAR)
SELECT pole_position FROM table_29162856_1 WHERE fastest_lap = "Matt Davies"
### Context: CREATE TABLE table_29162856_1 (pole_position VARCHAR, fastest_lap VARCHAR) ### Question: Who had the pole position when matt davies had the fastest lap? ### Answer: SELECT pole_position FROM table_29162856_1 WHERE fastest_lap = "Matt Davies"
Who had the pole position(s) when rob guiver won and kyle ryde had the fastest lap?
CREATE TABLE table_29162856_1 (pole_position VARCHAR, winning_rider VARCHAR, fastest_lap VARCHAR)
SELECT pole_position FROM table_29162856_1 WHERE winning_rider = "Rob Guiver" AND fastest_lap = "Kyle Ryde"
### Context: CREATE TABLE table_29162856_1 (pole_position VARCHAR, winning_rider VARCHAR, fastest_lap VARCHAR) ### Question: Who had the pole position(s) when rob guiver won and kyle ryde had the fastest lap? ### Answer: SELECT pole_position FROM table_29162856_1 WHERE winning_rider = "Rob Guiver" AND fastest_lap = "Kyle Ryde"
What is the earliest year in which the result is championship US Open (2)?
CREATE TABLE table_29163303_2 (year INTEGER, championship VARCHAR)
SELECT MIN(year) FROM table_29163303_2 WHERE championship = "US Open (2)"
### Context: CREATE TABLE table_29163303_2 (year INTEGER, championship VARCHAR) ### Question: What is the earliest year in which the result is championship US Open (2)? ### Answer: SELECT MIN(year) FROM table_29163303_2 WHERE championship = "US Open (2)"
Who was Bob Bryan's partner in the Championship where the result is US Open (2)?
CREATE TABLE table_29163303_2 (partner VARCHAR, championship VARCHAR)
SELECT partner FROM table_29163303_2 WHERE championship = "US Open (2)"
### Context: CREATE TABLE table_29163303_2 (partner VARCHAR, championship VARCHAR) ### Question: Who was Bob Bryan's partner in the Championship where the result is US Open (2)? ### Answer: SELECT partner FROM table_29163303_2 WHERE championship = "US Open (2)"
What are the results of those matches where the championship is French Open?
CREATE TABLE table_29163303_2 (score VARCHAR, championship VARCHAR)
SELECT score FROM table_29163303_2 WHERE championship = "French Open"
### Context: CREATE TABLE table_29163303_2 (score VARCHAR, championship VARCHAR) ### Question: What are the results of those matches where the championship is French Open? ### Answer: SELECT score FROM table_29163303_2 WHERE championship = "French Open"
on how many days did the episode written by harold hayes jr. & craig s. phillips originally air
CREATE TABLE table_29196086_4 (original_air_date VARCHAR, written_by VARCHAR)
SELECT COUNT(original_air_date) FROM table_29196086_4 WHERE written_by = "Harold Hayes Jr. & Craig S. Phillips"
### Context: CREATE TABLE table_29196086_4 (original_air_date VARCHAR, written_by VARCHAR) ### Question: on how many days did the episode written by harold hayes jr. & craig s. phillips originally air ### Answer: SELECT COUNT(original_air_date) FROM table_29196086_4 WHERE written_by = "Harold Hayes Jr. & Craig S. Phillips"
how many episodes originally aired january19,2013
CREATE TABLE table_29196086_4 (no_in_series VARCHAR, original_air_date VARCHAR)
SELECT COUNT(no_in_series) FROM table_29196086_4 WHERE original_air_date = "January19,2013"
### Context: CREATE TABLE table_29196086_4 (no_in_series VARCHAR, original_air_date VARCHAR) ### Question: how many episodes originally aired january19,2013 ### Answer: SELECT COUNT(no_in_series) FROM table_29196086_4 WHERE original_air_date = "January19,2013"
which episode of the season aired on october20,2012
CREATE TABLE table_29196086_4 (no_in_season INTEGER, original_air_date VARCHAR)
SELECT MAX(no_in_season) FROM table_29196086_4 WHERE original_air_date = "October20,2012"
### Context: CREATE TABLE table_29196086_4 (no_in_season INTEGER, original_air_date VARCHAR) ### Question: which episode of the season aired on october20,2012 ### Answer: SELECT MAX(no_in_season) FROM table_29196086_4 WHERE original_air_date = "October20,2012"
Which team was the opponent in game 5?
CREATE TABLE table_29181479_3 (team VARCHAR, game VARCHAR)
SELECT team FROM table_29181479_3 WHERE game = 5
### Context: CREATE TABLE table_29181479_3 (team VARCHAR, game VARCHAR) ### Question: Which team was the opponent in game 5? ### Answer: SELECT team FROM table_29181479_3 WHERE game = 5
Lis the series for game 5.
CREATE TABLE table_29181479_5 (series VARCHAR, game VARCHAR)
SELECT series FROM table_29181479_5 WHERE game = 5
### Context: CREATE TABLE table_29181479_5 (series VARCHAR, game VARCHAR) ### Question: Lis the series for game 5. ### Answer: SELECT series FROM table_29181479_5 WHERE game = 5
What was the final in the game that boris diaw (34) scored the most points?
CREATE TABLE table_29181479_5 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_29181479_5 WHERE high_points = "Boris Diaw (34)"
### Context: CREATE TABLE table_29181479_5 (score VARCHAR, high_points VARCHAR) ### Question: What was the final in the game that boris diaw (34) scored the most points? ### Answer: SELECT score FROM table_29181479_5 WHERE high_points = "Boris Diaw (34)"
What is the figure for December 28 for ang tanging ina mo (last na 'to!)?
CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR)
SELECT december_28 FROM table_29217650_1 WHERE movies = "Ang Tanging Ina Mo (Last na 'To!)"
### Context: CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR) ### Question: What is the figure for December 28 for ang tanging ina mo (last na 'to!)? ### Answer: SELECT december_28 FROM table_29217650_1 WHERE movies = "Ang Tanging Ina Mo (Last na 'To!)"
What is the figure for December 27 for ang tanging ina mo (last na 'to!)?
CREATE TABLE table_29217650_1 (december_27 VARCHAR, movies VARCHAR)
SELECT december_27 FROM table_29217650_1 WHERE movies = "Ang Tanging Ina Mo (Last na 'To!)"
### Context: CREATE TABLE table_29217650_1 (december_27 VARCHAR, movies VARCHAR) ### Question: What is the figure for December 27 for ang tanging ina mo (last na 'to!)? ### Answer: SELECT december_27 FROM table_29217650_1 WHERE movies = "Ang Tanging Ina Mo (Last na 'To!)"
How many figures are provided for December 28 for Rosario?
CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR)
SELECT COUNT(december_28) FROM table_29217650_1 WHERE movies = "Rosario"
### Context: CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR) ### Question: How many figures are provided for December 28 for Rosario? ### Answer: SELECT COUNT(december_28) FROM table_29217650_1 WHERE movies = "Rosario"
What film earmed p3.2 million on December 25?
CREATE TABLE table_29217650_1 (movies VARCHAR, december_25 VARCHAR)
SELECT movies FROM table_29217650_1 WHERE december_25 = "P3.2 million"
### Context: CREATE TABLE table_29217650_1 (movies VARCHAR, december_25 VARCHAR) ### Question: What film earmed p3.2 million on December 25? ### Answer: SELECT movies FROM table_29217650_1 WHERE december_25 = "P3.2 million"
What was the Friday June 3 practice time of the rider who did 20' 50.45 108.623mph on Thursday, June 2?
CREATE TABLE table_29218221_3 (fri_3_june VARCHAR, thurs_2_june VARCHAR)
SELECT fri_3_june FROM table_29218221_3 WHERE thurs_2_june = "20' 50.45 108.623mph"
### Context: CREATE TABLE table_29218221_3 (fri_3_june VARCHAR, thurs_2_june VARCHAR) ### Question: What was the Friday June 3 practice time of the rider who did 20' 50.45 108.623mph on Thursday, June 2? ### Answer: SELECT fri_3_june FROM table_29218221_3 WHERE thurs_2_june = "20' 50.45 108.623mph"
What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?
CREATE TABLE table_29218221_3 (wed_1_june VARCHAR, thurs_2_june VARCHAR)
SELECT wed_1_june FROM table_29218221_3 WHERE thurs_2_june = "21' 05.87 107.300mph"
### Context: CREATE TABLE table_29218221_3 (wed_1_june VARCHAR, thurs_2_june VARCHAR) ### Question: What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2? ### Answer: SELECT wed_1_june FROM table_29218221_3 WHERE thurs_2_june = "21' 05.87 107.300mph"
How many people wrote episode 9 in the season that was directed by Ernest Dickerson?
CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)
SELECT COUNT(written_by) FROM table_29219286_1 WHERE directed_by = "Ernest Dickerson" AND no_in_season = 9
### Context: CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR) ### Question: How many people wrote episode 9 in the season that was directed by Ernest Dickerson? ### Answer: SELECT COUNT(written_by) FROM table_29219286_1 WHERE directed_by = "Ernest Dickerson" AND no_in_season = 9
Who wrote the episode that was directed by Milan Cheylov?
CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_29219286_1 WHERE directed_by = "Milan Cheylov"
### Context: CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who wrote the episode that was directed by Milan Cheylov? ### Answer: SELECT written_by FROM table_29219286_1 WHERE directed_by = "Milan Cheylov"
Who was the EP winning team when the CP winning team was Dave Clark and the GM winning team was Stuart Northrup?
CREATE TABLE table_29225103_2 (ep_winning_team VARCHAR, cp_winning_team VARCHAR, gm_winning_team VARCHAR)
SELECT ep_winning_team FROM table_29225103_2 WHERE cp_winning_team = "Dave Clark" AND gm_winning_team = "Stuart Northrup"
### Context: CREATE TABLE table_29225103_2 (ep_winning_team VARCHAR, cp_winning_team VARCHAR, gm_winning_team VARCHAR) ### Question: Who was the EP winning team when the CP winning team was Dave Clark and the GM winning team was Stuart Northrup? ### Answer: SELECT ep_winning_team FROM table_29225103_2 WHERE cp_winning_team = "Dave Clark" AND gm_winning_team = "Stuart Northrup"
Who was the CM winning team when the FM winning team was #17 Elva - Ford?
CREATE TABLE table_29225103_2 (cm_winning_team VARCHAR, fm_winning_team VARCHAR)
SELECT cm_winning_team FROM table_29225103_2 WHERE fm_winning_team = "#17 Elva - Ford"
### Context: CREATE TABLE table_29225103_2 (cm_winning_team VARCHAR, fm_winning_team VARCHAR) ### Question: Who was the CM winning team when the FM winning team was #17 Elva - Ford? ### Answer: SELECT cm_winning_team FROM table_29225103_2 WHERE fm_winning_team = "#17 Elva - Ford"
Who the GM winning team when the EP winning team was #37 Porsche?
CREATE TABLE table_29225103_2 (gm_winning_team VARCHAR, ep_winning_team VARCHAR)
SELECT gm_winning_team FROM table_29225103_2 WHERE ep_winning_team = "#37 Porsche"
### Context: CREATE TABLE table_29225103_2 (gm_winning_team VARCHAR, ep_winning_team VARCHAR) ### Question: Who the GM winning team when the EP winning team was #37 Porsche? ### Answer: SELECT gm_winning_team FROM table_29225103_2 WHERE ep_winning_team = "#37 Porsche"
Who was the EP winning team when the FM winning team was Brabham - Ford and the HM winning team was Osca?
CREATE TABLE table_29225103_2 (ep_winning_team VARCHAR, fm_winning_team VARCHAR, hm_winning_team VARCHAR)
SELECT ep_winning_team FROM table_29225103_2 WHERE fm_winning_team = "Brabham - Ford" AND hm_winning_team = "Osca"
### Context: CREATE TABLE table_29225103_2 (ep_winning_team VARCHAR, fm_winning_team VARCHAR, hm_winning_team VARCHAR) ### Question: Who was the EP winning team when the FM winning team was Brabham - Ford and the HM winning team was Osca? ### Answer: SELECT ep_winning_team FROM table_29225103_2 WHERE fm_winning_team = "Brabham - Ford" AND hm_winning_team = "Osca"
Who was the HP winning team when the EP winning team was Hans Zereis and the GM winning team was Charles Gibson?
CREATE TABLE table_29225103_2 (hp_winning_team VARCHAR, ep_winning_team VARCHAR, gm_winning_team VARCHAR)
SELECT hp_winning_team FROM table_29225103_2 WHERE ep_winning_team = "Hans Zereis" AND gm_winning_team = "Charles Gibson"
### Context: CREATE TABLE table_29225103_2 (hp_winning_team VARCHAR, ep_winning_team VARCHAR, gm_winning_team VARCHAR) ### Question: Who was the HP winning team when the EP winning team was Hans Zereis and the GM winning team was Charles Gibson? ### Answer: SELECT hp_winning_team FROM table_29225103_2 WHERE ep_winning_team = "Hans Zereis" AND gm_winning_team = "Charles Gibson"
what was the name of the team opponent to elfsborg
CREATE TABLE table_29261823_10 (team VARCHAR, opponent VARCHAR)
SELECT team FROM table_29261823_10 WHERE opponent = "Elfsborg"
### Context: CREATE TABLE table_29261823_10 (team VARCHAR, opponent VARCHAR) ### Question: what was the name of the team opponent to elfsborg ### Answer: SELECT team FROM table_29261823_10 WHERE opponent = "Elfsborg"
what is the name of the team which aggregate score is l 1–2
CREATE TABLE table_29261823_10 (team VARCHAR, aggregate_score VARCHAR)
SELECT team FROM table_29261823_10 WHERE aggregate_score = "L 1–2"
### Context: CREATE TABLE table_29261823_10 (team VARCHAR, aggregate_score VARCHAR) ### Question: what is the name of the team which aggregate score is l 1–2 ### Answer: SELECT team FROM table_29261823_10 WHERE aggregate_score = "L 1–2"
what is the aggregate score for the europa league play off round contest and round
CREATE TABLE table_29261823_10 (aggregate_score VARCHAR, contest_and_round VARCHAR)
SELECT aggregate_score FROM table_29261823_10 WHERE contest_and_round = "Europa League Play Off Round"
### Context: CREATE TABLE table_29261823_10 (aggregate_score VARCHAR, contest_and_round VARCHAR) ### Question: what is the aggregate score for the europa league play off round contest and round ### Answer: SELECT aggregate_score FROM table_29261823_10 WHERE contest_and_round = "Europa League Play Off Round"
How many dollars is listed under Sydney when the distance is 10km?
CREATE TABLE table_2923917_4 (sydney VARCHAR, distance VARCHAR)
SELECT sydney FROM table_2923917_4 WHERE distance = "10km"
### Context: CREATE TABLE table_2923917_4 (sydney VARCHAR, distance VARCHAR) ### Question: How many dollars is listed under Sydney when the distance is 10km? ### Answer: SELECT sydney FROM table_2923917_4 WHERE distance = "10km"
How many distance places have brisbane at $3.80?
CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)
SELECT COUNT(distance) FROM table_2923917_4 WHERE brisbane = "$3.80"
### Context: CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR) ### Question: How many distance places have brisbane at $3.80? ### Answer: SELECT COUNT(distance) FROM table_2923917_4 WHERE brisbane = "$3.80"
How many listings under Melbourne has a distance at 15km?
CREATE TABLE table_2923917_4 (melbourne VARCHAR, distance VARCHAR)
SELECT COUNT(melbourne) FROM table_2923917_4 WHERE distance = "15km"
### Context: CREATE TABLE table_2923917_4 (melbourne VARCHAR, distance VARCHAR) ### Question: How many listings under Melbourne has a distance at 15km? ### Answer: SELECT COUNT(melbourne) FROM table_2923917_4 WHERE distance = "15km"
What is the distance when brisbane is $4.80?
CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)
SELECT distance FROM table_2923917_4 WHERE brisbane = "$4.80"
### Context: CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR) ### Question: What is the distance when brisbane is $4.80? ### Answer: SELECT distance FROM table_2923917_4 WHERE brisbane = "$4.80"
What is the distance when brisbane is $5.20?
CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR)
SELECT distance FROM table_2923917_4 WHERE brisbane = "$5.20"
### Context: CREATE TABLE table_2923917_4 (distance VARCHAR, brisbane VARCHAR) ### Question: What is the distance when brisbane is $5.20? ### Answer: SELECT distance FROM table_2923917_4 WHERE brisbane = "$5.20"
How many scores did Helen Sildna give when Iiris Vesik gave a 3?
CREATE TABLE table_29261215_4 (helen_sildna VARCHAR, iiris_vesik VARCHAR)
SELECT COUNT(helen_sildna) FROM table_29261215_4 WHERE iiris_vesik = 3
### Context: CREATE TABLE table_29261215_4 (helen_sildna VARCHAR, iiris_vesik VARCHAR) ### Question: How many scores did Helen Sildna give when Iiris Vesik gave a 3? ### Answer: SELECT COUNT(helen_sildna) FROM table_29261215_4 WHERE iiris_vesik = 3
What is the maximum points received when Peeter Vähl gave a 9?
CREATE TABLE table_29261215_4 (points INTEGER, peeter_vähi VARCHAR)
SELECT MIN(points) FROM table_29261215_4 WHERE peeter_vähi = 9
### Context: CREATE TABLE table_29261215_4 (points INTEGER, peeter_vähi VARCHAR) ### Question: What is the maximum points received when Peeter Vähl gave a 9? ### Answer: SELECT MIN(points) FROM table_29261215_4 WHERE peeter_vähi = 9
Who is the manager for the fc inter club?
CREATE TABLE table_29250534_1 (manager VARCHAR, club VARCHAR)
SELECT manager FROM table_29250534_1 WHERE club = "FC Inter"
### Context: CREATE TABLE table_29250534_1 (manager VARCHAR, club VARCHAR) ### Question: Who is the manager for the fc inter club? ### Answer: SELECT manager FROM table_29250534_1 WHERE club = "FC Inter"
Which club is at the location of kuopio?
CREATE TABLE table_29250534_1 (club VARCHAR, location VARCHAR)
SELECT club FROM table_29250534_1 WHERE location = "Kuopio"
### Context: CREATE TABLE table_29250534_1 (club VARCHAR, location VARCHAR) ### Question: Which club is at the location of kuopio? ### Answer: SELECT club FROM table_29250534_1 WHERE location = "Kuopio"
How many stadiums have haka as the club?
CREATE TABLE table_29250534_1 (stadium VARCHAR, club VARCHAR)
SELECT COUNT(stadium) FROM table_29250534_1 WHERE club = "Haka"
### Context: CREATE TABLE table_29250534_1 (stadium VARCHAR, club VARCHAR) ### Question: How many stadiums have haka as the club? ### Answer: SELECT COUNT(stadium) FROM table_29250534_1 WHERE club = "Haka"
Who is the artist 2 on the setlist where the artist 1 is Sparfunk & D-Code?
CREATE TABLE table_29264319_1 (artist_2 VARCHAR, artist_1 VARCHAR)
SELECT artist_2 FROM table_29264319_1 WHERE artist_1 = "Sparfunk & D-Code"
### Context: CREATE TABLE table_29264319_1 (artist_2 VARCHAR, artist_1 VARCHAR) ### Question: Who is the artist 2 on the setlist where the artist 1 is Sparfunk & D-Code? ### Answer: SELECT artist_2 FROM table_29264319_1 WHERE artist_1 = "Sparfunk & D-Code"
Who is the mix artist for the closing party setlist where artist 1 is Dillinja and Skibadee?
CREATE TABLE table_29264319_1 (mix_artist VARCHAR, setlist VARCHAR, artist_1 VARCHAR)
SELECT mix_artist FROM table_29264319_1 WHERE setlist = "Closing Party" AND artist_1 = "Dillinja and Skibadee"
### Context: CREATE TABLE table_29264319_1 (mix_artist VARCHAR, setlist VARCHAR, artist_1 VARCHAR) ### Question: Who is the mix artist for the closing party setlist where artist 1 is Dillinja and Skibadee? ### Answer: SELECT mix_artist FROM table_29264319_1 WHERE setlist = "Closing Party" AND artist_1 = "Dillinja and Skibadee"
On how many different dates was the episode written by Charlie Day aired for the first time?
CREATE TABLE table_29273115_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT COUNT(original_air_date) FROM table_29273115_1 WHERE written_by = "Charlie Day"
### Context: CREATE TABLE table_29273115_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: On how many different dates was the episode written by Charlie Day aired for the first time? ### Answer: SELECT COUNT(original_air_date) FROM table_29273115_1 WHERE written_by = "Charlie Day"
Who are the writers of the episode with production code IP02009?
CREATE TABLE table_29273115_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_29273115_1 WHERE production_code = "IP02009"
### Context: CREATE TABLE table_29273115_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who are the writers of the episode with production code IP02009? ### Answer: SELECT written_by FROM table_29273115_1 WHERE production_code = "IP02009"
How many different titles does the episode with production code IP02003 have?
CREATE TABLE table_29273115_1 (title VARCHAR, production_code VARCHAR)
SELECT COUNT(title) FROM table_29273115_1 WHERE production_code = "IP02003"
### Context: CREATE TABLE table_29273115_1 (title VARCHAR, production_code VARCHAR) ### Question: How many different titles does the episode with production code IP02003 have? ### Answer: SELECT COUNT(title) FROM table_29273115_1 WHERE production_code = "IP02003"
Who wrote the episode with a production code of ip03007?
CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_29273182_1 WHERE production_code = "IP03007"
### Context: CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode with a production code of ip03007? ### Answer: SELECT written_by FROM table_29273182_1 WHERE production_code = "IP03007"
What is the name of episode number 29 in the series?
CREATE TABLE table_29273182_1 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_29273182_1 WHERE no_in_series = 29
### Context: CREATE TABLE table_29273182_1 (title VARCHAR, no_in_series VARCHAR) ### Question: What is the name of episode number 29 in the series? ### Answer: SELECT title FROM table_29273182_1 WHERE no_in_series = 29
Who wrote the episode with ip03012 as the production code?
CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_29273182_1 WHERE production_code = "IP03012"
### Context: CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode with ip03012 as the production code? ### Answer: SELECT written_by FROM table_29273182_1 WHERE production_code = "IP03012"
Who directed the episode with production code ip03010?
CREATE TABLE table_29273182_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_29273182_1 WHERE production_code = "IP03010"
### Context: CREATE TABLE table_29273182_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: Who directed the episode with production code ip03010? ### Answer: SELECT directed_by FROM table_29273182_1 WHERE production_code = "IP03010"
What is the least amount in each season?
CREATE TABLE table_29273390_1 (no_in_season INTEGER)
SELECT MIN(no_in_season) FROM table_29273390_1
### Context: CREATE TABLE table_29273390_1 (no_in_season INTEGER) ### Question: What is the least amount in each season? ### Answer: SELECT MIN(no_in_season) FROM table_29273390_1
Who directed an episode with 1.19 million?
CREATE TABLE table_29273390_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_29273390_1 WHERE us_viewers__million_ = "1.19"
### Context: CREATE TABLE table_29273390_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed an episode with 1.19 million? ### Answer: SELECT directed_by FROM table_29273390_1 WHERE us_viewers__million_ = "1.19"
At what location was the March 17 race held?
CREATE TABLE table_29285076_2 (location VARCHAR, date VARCHAR)
SELECT location FROM table_29285076_2 WHERE date = "March 17"
### Context: CREATE TABLE table_29285076_2 (location VARCHAR, date VARCHAR) ### Question: At what location was the March 17 race held? ### Answer: SELECT location FROM table_29285076_2 WHERE date = "March 17"
What location did Zach Veach have the fastest lap?
CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR)
SELECT location FROM table_29285076_2 WHERE fastest_lap = "Zach Veach"
### Context: CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR) ### Question: What location did Zach Veach have the fastest lap? ### Answer: SELECT location FROM table_29285076_2 WHERE fastest_lap = "Zach Veach"
Where was the race with Luke Ellery as fastest lap and Wayne Boyd as winning driver?
CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT location FROM table_29285076_2 WHERE fastest_lap = "Luke Ellery" AND winning_driver = "Wayne Boyd"
### Context: CREATE TABLE table_29285076_2 (location VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) ### Question: Where was the race with Luke Ellery as fastest lap and Wayne Boyd as winning driver? ### Answer: SELECT location FROM table_29285076_2 WHERE fastest_lap = "Luke Ellery" AND winning_driver = "Wayne Boyd"
When 318676 is the population of 2010 and 1st class is the income classification what is the area in kilometers squared?
CREATE TABLE table_29289372_1 (area__km²_ VARCHAR, income_classification VARCHAR, population__2010_ VARCHAR)
SELECT area__km²_ FROM table_29289372_1 WHERE income_classification = "1st Class" AND population__2010_ = 318676
### Context: CREATE TABLE table_29289372_1 (area__km²_ VARCHAR, income_classification VARCHAR, population__2010_ VARCHAR) ### Question: When 318676 is the population of 2010 and 1st class is the income classification what is the area in kilometers squared? ### Answer: SELECT area__km²_ FROM table_29289372_1 WHERE income_classification = "1st Class" AND population__2010_ = 318676
When itogon, benguet is the city/municipality and 1st class is the income classification how many measurements of population in 2010?
CREATE TABLE table_29289372_1 (population__2010_ VARCHAR, income_classification VARCHAR, city_municipality VARCHAR)
SELECT COUNT(population__2010_) FROM table_29289372_1 WHERE income_classification = "1st Class" AND city_municipality = "Itogon, Benguet"
### Context: CREATE TABLE table_29289372_1 (population__2010_ VARCHAR, income_classification VARCHAR, city_municipality VARCHAR) ### Question: When itogon, benguet is the city/municipality and 1st class is the income classification how many measurements of population in 2010? ### Answer: SELECT COUNT(population__2010_) FROM table_29289372_1 WHERE income_classification = "1st Class" AND city_municipality = "Itogon, Benguet"
When 82.74 is the area in kilometers squared what is the pop.density (per km2)?
CREATE TABLE table_29289372_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)
SELECT pop_density__per_km²_ FROM table_29289372_1 WHERE area__km²_ = "82.74"
### Context: CREATE TABLE table_29289372_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR) ### Question: When 82.74 is the area in kilometers squared what is the pop.density (per km2)? ### Answer: SELECT pop_density__per_km²_ FROM table_29289372_1 WHERE area__km²_ = "82.74"
When 106 is the area in kilometers squared what is the city/municipality?
CREATE TABLE table_29289372_1 (city_municipality VARCHAR, area__km²_ VARCHAR)
SELECT city_municipality FROM table_29289372_1 WHERE area__km²_ = "106"
### Context: CREATE TABLE table_29289372_1 (city_municipality VARCHAR, area__km²_ VARCHAR) ### Question: When 106 is the area in kilometers squared what is the city/municipality? ### Answer: SELECT city_municipality FROM table_29289372_1 WHERE area__km²_ = "106"
How many episodes have the production code ip04004?
CREATE TABLE table_29273243_1 (title VARCHAR, production_code VARCHAR)
SELECT COUNT(title) FROM table_29273243_1 WHERE production_code = "IP04004"
### Context: CREATE TABLE table_29273243_1 (title VARCHAR, production_code VARCHAR) ### Question: How many episodes have the production code ip04004? ### Answer: SELECT COUNT(title) FROM table_29273243_1 WHERE production_code = "IP04004"
Who wrote episode number 11?
CREATE TABLE table_29273243_1 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_29273243_1 WHERE no_in_season = 11
### Context: CREATE TABLE table_29273243_1 (written_by VARCHAR, no_in_season VARCHAR) ### Question: Who wrote episode number 11? ### Answer: SELECT written_by FROM table_29273243_1 WHERE no_in_season = 11
Who was the challenger when guillaume brahimi was the iron chef?
CREATE TABLE table_29281529_2 (challenger VARCHAR, iron_chef VARCHAR)
SELECT challenger FROM table_29281529_2 WHERE iron_chef = "Guillaume Brahimi"
### Context: CREATE TABLE table_29281529_2 (challenger VARCHAR, iron_chef VARCHAR) ### Question: Who was the challenger when guillaume brahimi was the iron chef? ### Answer: SELECT challenger FROM table_29281529_2 WHERE iron_chef = "Guillaume Brahimi"
Who was the iron chef when herb Faust was the challenger?
CREATE TABLE table_29281529_2 (iron_chef VARCHAR, challenger VARCHAR)
SELECT iron_chef FROM table_29281529_2 WHERE challenger = "Herb Faust"
### Context: CREATE TABLE table_29281529_2 (iron_chef VARCHAR, challenger VARCHAR) ### Question: Who was the iron chef when herb Faust was the challenger? ### Answer: SELECT iron_chef FROM table_29281529_2 WHERE challenger = "Herb Faust"
What date did the episode air when guy grossi won?
CREATE TABLE table_29281529_2 (airdate VARCHAR, winner VARCHAR)
SELECT airdate FROM table_29281529_2 WHERE winner = "Guy Grossi"
### Context: CREATE TABLE table_29281529_2 (airdate VARCHAR, winner VARCHAR) ### Question: What date did the episode air when guy grossi won? ### Answer: SELECT airdate FROM table_29281529_2 WHERE winner = "Guy Grossi"
Who played Lily Cahill in the Australian 2012 production?
CREATE TABLE table_29289213_1 (australian_cast VARCHAR, _2012 VARCHAR, character VARCHAR)
SELECT australian_cast, _2012 FROM table_29289213_1 WHERE character = "Lily Cahill"
### Context: CREATE TABLE table_29289213_1 (australian_cast VARCHAR, _2012 VARCHAR, character VARCHAR) ### Question: Who played Lily Cahill in the Australian 2012 production? ### Answer: SELECT australian_cast, _2012 FROM table_29289213_1 WHERE character = "Lily Cahill"
which tournament was the champion nick saviano florin segărceanu 6–3, 6–4?
CREATE TABLE table_29296103_10 (tournament VARCHAR, champion VARCHAR)
SELECT tournament FROM table_29296103_10 WHERE champion = "Nick Saviano Florin Segărceanu 6–3, 6–4"
### Context: CREATE TABLE table_29296103_10 (tournament VARCHAR, champion VARCHAR) ### Question: which tournament was the champion nick saviano florin segărceanu 6–3, 6–4? ### Answer: SELECT tournament FROM table_29296103_10 WHERE champion = "Nick Saviano Florin Segărceanu 6–3, 6–4"
Which tournament was runner-up paul annacone eric korita?
CREATE TABLE table_29296103_10 (tournament VARCHAR, runner_up VARCHAR)
SELECT tournament FROM table_29296103_10 WHERE runner_up = "Paul Annacone Eric Korita"
### Context: CREATE TABLE table_29296103_10 (tournament VARCHAR, runner_up VARCHAR) ### Question: Which tournament was runner-up paul annacone eric korita? ### Answer: SELECT tournament FROM table_29296103_10 WHERE runner_up = "Paul Annacone Eric Korita"
Who were the semifinalists when sammy giammalva was runner-up?
CREATE TABLE table_29296103_10 (semifinalists VARCHAR, runner_up VARCHAR)
SELECT semifinalists FROM table_29296103_10 WHERE runner_up = "Sammy Giammalva"
### Context: CREATE TABLE table_29296103_10 (semifinalists VARCHAR, runner_up VARCHAR) ### Question: Who were the semifinalists when sammy giammalva was runner-up? ### Answer: SELECT semifinalists FROM table_29296103_10 WHERE runner_up = "Sammy Giammalva"