question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
for the drumset name td-15k how many snare pads are | CREATE TABLE table_2889300_6 (snare_pad VARCHAR, drumset_name VARCHAR) | SELECT COUNT(snare_pad) FROM table_2889300_6 WHERE drumset_name = "TD-15K" | ### Context: CREATE TABLE table_2889300_6 (snare_pad VARCHAR, drumset_name VARCHAR) ### Question: for the drumset name td-15k how many snare pads are ### Answer: SELECT COUNT(snare_pad) FROM table_2889300_6 WHERE drumset_name = "TD-15K" |
Who won the race on June 26? | CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) | SELECT race_winner FROM table_28925058_1 WHERE date = "June 26" | ### Context: CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) ### Question: Who won the race on June 26? ### Answer: SELECT race_winner FROM table_28925058_1 WHERE date = "June 26" |
Who won the race on August 15? | CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) | SELECT race_winner FROM table_28925058_1 WHERE date = "August 15" | ### Context: CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) ### Question: Who won the race on August 15? ### Answer: SELECT race_winner FROM table_28925058_1 WHERE date = "August 15" |
What is the date of the Italian Grand Prix? | CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR) | SELECT date FROM table_28925058_1 WHERE grand_prix = "Italian grand_prix" | ### Context: CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR) ### Question: What is the date of the Italian Grand Prix? ### Answer: SELECT date FROM table_28925058_1 WHERE grand_prix = "Italian grand_prix" |
How many dates did Daniel Ruiz win the Spanish Grand Prix? | CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR) | SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz" | ### Context: CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR) ### Question: How many dates did Daniel Ruiz win the Spanish Grand Prix? ### Answer: SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz" |
Who won the race on May 1? | CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) | SELECT race_winner FROM table_28925058_1 WHERE date = "May 1" | ### Context: CREATE TABLE table_28925058_1 (race_winner VARCHAR, date VARCHAR) ### Question: Who won the race on May 1? ### Answer: SELECT race_winner FROM table_28925058_1 WHERE date = "May 1" |
When james rutherford is the incumbent how many dates are there? | CREATE TABLE table_28898974_3 (date VARCHAR, incumbent VARCHAR) | SELECT COUNT(date) FROM table_28898974_3 WHERE incumbent = "James Rutherford" | ### Context: CREATE TABLE table_28898974_3 (date VARCHAR, incumbent VARCHAR) ### Question: When james rutherford is the incumbent how many dates are there? ### Answer: SELECT COUNT(date) FROM table_28898974_3 WHERE incumbent = "James Rutherford" |
When edward shaw is the winner what is the date? | CREATE TABLE table_28898974_3 (date VARCHAR, winner VARCHAR) | SELECT date FROM table_28898974_3 WHERE winner = "Edward Shaw" | ### Context: CREATE TABLE table_28898974_3 (date VARCHAR, winner VARCHAR) ### Question: When edward shaw is the winner what is the date? ### Answer: SELECT date FROM table_28898974_3 WHERE winner = "Edward Shaw" |
When peninsula is the electorate what is the reason? | CREATE TABLE table_28898974_3 (reason VARCHAR, electorate VARCHAR) | SELECT reason FROM table_28898974_3 WHERE electorate = "Peninsula" | ### Context: CREATE TABLE table_28898974_3 (reason VARCHAR, electorate VARCHAR) ### Question: When peninsula is the electorate what is the reason? ### Answer: SELECT reason FROM table_28898974_3 WHERE electorate = "Peninsula" |
When james seaton is the incumbent what is the reason? | CREATE TABLE table_28898974_3 (reason VARCHAR, incumbent VARCHAR) | SELECT reason FROM table_28898974_3 WHERE incumbent = "James Seaton" | ### Context: CREATE TABLE table_28898974_3 (reason VARCHAR, incumbent VARCHAR) ### Question: When james seaton is the incumbent what is the reason? ### Answer: SELECT reason FROM table_28898974_3 WHERE incumbent = "James Seaton" |
What was the handicap when the prize money was 120s? | CREATE TABLE table_2896329_1 (handicap VARCHAR, prize_money VARCHAR) | SELECT handicap FROM table_2896329_1 WHERE prize_money = "120s" | ### Context: CREATE TABLE table_2896329_1 (handicap VARCHAR, prize_money VARCHAR) ### Question: What was the handicap when the prize money was 120s? ### Answer: SELECT handicap FROM table_2896329_1 WHERE prize_money = "120s" |
On what date was the handicap 8 st 12 lb? | CREATE TABLE table_2896329_1 (date VARCHAR, handicap VARCHAR) | SELECT date FROM table_2896329_1 WHERE handicap = "8 st 12 lb" | ### Context: CREATE TABLE table_2896329_1 (date VARCHAR, handicap VARCHAR) ### Question: On what date was the handicap 8 st 12 lb? ### Answer: SELECT date FROM table_2896329_1 WHERE handicap = "8 st 12 lb" |
On what date was the track Ballarat? | CREATE TABLE table_2896329_1 (date VARCHAR, track VARCHAR) | SELECT date FROM table_2896329_1 WHERE track = "Ballarat" | ### Context: CREATE TABLE table_2896329_1 (date VARCHAR, track VARCHAR) ### Question: On what date was the track Ballarat? ### Answer: SELECT date FROM table_2896329_1 WHERE track = "Ballarat" |
How many literate males are there in the taluka name nevasa? | CREATE TABLE table_28939145_2 (Literate INTEGER, taluka_name VARCHAR) | SELECT MAX(Literate) AS male FROM table_28939145_2 WHERE taluka_name = "Nevasa" | ### Context: CREATE TABLE table_28939145_2 (Literate INTEGER, taluka_name VARCHAR) ### Question: How many literate males are there in the taluka name nevasa? ### Answer: SELECT MAX(Literate) AS male FROM table_28939145_2 WHERE taluka_name = "Nevasa" |
how many literate males are there that has a district population of 6.65? | CREATE TABLE table_28939145_2 (Literate VARCHAR, _percentage_of_district_population VARCHAR) | SELECT Literate AS male FROM table_28939145_2 WHERE _percentage_of_district_population = "6.65" | ### Context: CREATE TABLE table_28939145_2 (Literate VARCHAR, _percentage_of_district_population VARCHAR) ### Question: how many literate males are there that has a district population of 6.65? ### Answer: SELECT Literate AS male FROM table_28939145_2 WHERE _percentage_of_district_population = "6.65" |
How many males are in the group that has an amount of 139361 | CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR) | SELECT male FROM table_28939145_2 WHERE female = 139361 | ### Context: CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR) ### Question: How many males are in the group that has an amount of 139361 ### Answer: SELECT male FROM table_28939145_2 WHERE female = 139361 |
List all the runners-up on 16 October 2012? | CREATE TABLE table_28962227_1 (runners_up VARCHAR, finale VARCHAR) | SELECT runners_up FROM table_28962227_1 WHERE finale = "16 October 2012" | ### Context: CREATE TABLE table_28962227_1 (runners_up VARCHAR, finale VARCHAR) ### Question: List all the runners-up on 16 October 2012? ### Answer: SELECT runners_up FROM table_28962227_1 WHERE finale = "16 October 2012" |
What is the date when Miranda Gore Browne was runner-up? | CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR) | SELECT finale FROM table_28962227_1 WHERE runners_up = "Miranda Gore Browne" | ### Context: CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR) ### Question: What is the date when Miranda Gore Browne was runner-up? ### Answer: SELECT finale FROM table_28962227_1 WHERE runners_up = "Miranda Gore Browne" |
What is the date of the finale where Holly Bell was runner-up? | CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR) | SELECT finale FROM table_28962227_1 WHERE runners_up = "Holly Bell" | ### Context: CREATE TABLE table_28962227_1 (finale VARCHAR, runners_up VARCHAR) ### Question: What is the date of the finale where Holly Bell was runner-up? ### Answer: SELECT finale FROM table_28962227_1 WHERE runners_up = "Holly Bell" |
What is the premiere of the season where Holly Bell was the runner-up? | CREATE TABLE table_28962227_1 (premiere VARCHAR, runners_up VARCHAR) | SELECT premiere FROM table_28962227_1 WHERE runners_up = "Holly Bell" | ### Context: CREATE TABLE table_28962227_1 (premiere VARCHAR, runners_up VARCHAR) ### Question: What is the premiere of the season where Holly Bell was the runner-up? ### Answer: SELECT premiere FROM table_28962227_1 WHERE runners_up = "Holly Bell" |
How many runners-up were there when Joanne Wheatley won? | CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR) | SELECT COUNT(runners_up) FROM table_28962227_1 WHERE winner = "Joanne Wheatley" | ### Context: CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR) ### Question: How many runners-up were there when Joanne Wheatley won? ### Answer: SELECT COUNT(runners_up) FROM table_28962227_1 WHERE winner = "Joanne Wheatley" |
Who won the season for which Brendan Lynch is the runner-up? | CREATE TABLE table_28962227_1 (winner VARCHAR, runners_up VARCHAR) | SELECT winner FROM table_28962227_1 WHERE runners_up = "Brendan Lynch" | ### Context: CREATE TABLE table_28962227_1 (winner VARCHAR, runners_up VARCHAR) ### Question: Who won the season for which Brendan Lynch is the runner-up? ### Answer: SELECT winner FROM table_28962227_1 WHERE runners_up = "Brendan Lynch" |
What is the pick # when the new jersey devils is the nhl team? | CREATE TABLE table_2897457_3 (pick__number VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" | ### Context: CREATE TABLE table_2897457_3 (pick__number VARCHAR, nhl_team VARCHAR) ### Question: What is the pick # when the new jersey devils is the nhl team? ### Answer: SELECT pick__number FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" |
Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0? | CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT college_junior_club_team FROM table_2897457_3 WHERE position = "Defence" AND nationality = "Canada" AND pick__number < 61.0 | ### Context: CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR) ### Question: Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0? ### Answer: SELECT college_junior_club_team FROM table_2897457_3 WHERE position = "Defence" AND nationality = "Canada" AND pick__number < 61.0 |
Which nhl team has kris draper as the player? | CREATE TABLE table_2897457_3 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2897457_3 WHERE player = "Kris Draper" | ### Context: CREATE TABLE table_2897457_3 (nhl_team VARCHAR, player VARCHAR) ### Question: Which nhl team has kris draper as the player? ### Answer: SELECT nhl_team FROM table_2897457_3 WHERE player = "Kris Draper" |
Which position has new Jersey Devils as the nhl team? | CREATE TABLE table_2897457_3 (position VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" | ### Context: CREATE TABLE table_2897457_3 (position VARCHAR, nhl_team VARCHAR) ### Question: Which position has new Jersey Devils as the nhl team? ### Answer: SELECT position FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" |
Which college/junior/club team has jim mathieson as the player? | CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2897457_3 WHERE player = "Jim Mathieson" | ### Context: CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Which college/junior/club team has jim mathieson as the player? ### Answer: SELECT college_junior_club_team FROM table_2897457_3 WHERE player = "Jim Mathieson" |
What is the production code of the episode with series #8? | CREATE TABLE table_28967275_2 (production_code VARCHAR, series__number VARCHAR) | SELECT production_code FROM table_28967275_2 WHERE series__number = 8 | ### Context: CREATE TABLE table_28967275_2 (production_code VARCHAR, series__number VARCHAR) ### Question: What is the production code of the episode with series #8? ### Answer: SELECT production_code FROM table_28967275_2 WHERE series__number = 8 |
What is the title of the episode with series number 14? | CREATE TABLE table_28967275_2 (episode_title VARCHAR, series__number VARCHAR) | SELECT episode_title FROM table_28967275_2 WHERE series__number = 14 | ### Context: CREATE TABLE table_28967275_2 (episode_title VARCHAR, series__number VARCHAR) ### Question: What is the title of the episode with series number 14? ### Answer: SELECT episode_title FROM table_28967275_2 WHERE series__number = 14 |
What is the original airdate of episode #31? | CREATE TABLE table_28967275_2 (original_air_date VARCHAR, episode__number VARCHAR) | SELECT original_air_date FROM table_28967275_2 WHERE episode__number = 31 | ### Context: CREATE TABLE table_28967275_2 (original_air_date VARCHAR, episode__number VARCHAR) ### Question: What is the original airdate of episode #31? ### Answer: SELECT original_air_date FROM table_28967275_2 WHERE episode__number = 31 |
Who was drafted to the Vancouver Canucks? | CREATE TABLE table_2897457_8 (player VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_2897457_8 WHERE nhl_team = "Vancouver Canucks" | ### Context: CREATE TABLE table_2897457_8 (player VARCHAR, nhl_team VARCHAR) ### Question: Who was drafted to the Vancouver Canucks? ### Answer: SELECT player FROM table_2897457_8 WHERE nhl_team = "Vancouver Canucks" |
How many figures are provided for the team when the position drafted is center? | CREATE TABLE table_2897457_8 (nhl_team VARCHAR, position VARCHAR) | SELECT COUNT(nhl_team) FROM table_2897457_8 WHERE position = "Center" | ### Context: CREATE TABLE table_2897457_8 (nhl_team VARCHAR, position VARCHAR) ### Question: How many figures are provided for the team when the position drafted is center? ### Answer: SELECT COUNT(nhl_team) FROM table_2897457_8 WHERE position = "Center" |
What was the pick number when Paul Krake was selected? | CREATE TABLE table_2897457_8 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_2897457_8 WHERE player = "Paul Krake" | ### Context: CREATE TABLE table_2897457_8 (pick__number INTEGER, player VARCHAR) ### Question: What was the pick number when Paul Krake was selected? ### Answer: SELECT MIN(pick__number) FROM table_2897457_8 WHERE player = "Paul Krake" |
What pick number did the New York Rangers have? | CREATE TABLE table_2897457_8 (pick__number VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_2897457_8 WHERE nhl_team = "New York Rangers" | ### Context: CREATE TABLE table_2897457_8 (pick__number VARCHAR, nhl_team VARCHAR) ### Question: What pick number did the New York Rangers have? ### Answer: SELECT pick__number FROM table_2897457_8 WHERE nhl_team = "New York Rangers" |
What pick number was the Boston Bruins selection for defence? | CREATE TABLE table_2897457_8 (pick__number VARCHAR, position VARCHAR, nhl_team VARCHAR) | SELECT pick__number FROM table_2897457_8 WHERE position = "Defence" AND nhl_team = "Boston Bruins" | ### Context: CREATE TABLE table_2897457_8 (pick__number VARCHAR, position VARCHAR, nhl_team VARCHAR) ### Question: What pick number was the Boston Bruins selection for defence? ### Answer: SELECT pick__number FROM table_2897457_8 WHERE position = "Defence" AND nhl_team = "Boston Bruins" |
Which player is pick 64? | CREATE TABLE table_2897457_4 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_2897457_4 WHERE pick__number = 64 | ### Context: CREATE TABLE table_2897457_4 (player VARCHAR, pick__number VARCHAR) ### Question: Which player is pick 64? ### Answer: SELECT player FROM table_2897457_4 WHERE pick__number = 64 |
Which player is the centre for the Detroit Red Wings? | CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_2897457_4 WHERE position = "Centre" AND nhl_team = "Detroit Red Wings" | ### Context: CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) ### Question: Which player is the centre for the Detroit Red Wings? ### Answer: SELECT player FROM table_2897457_4 WHERE position = "Centre" AND nhl_team = "Detroit Red Wings" |
How many positions drafted for the Minnesota North Stars? | CREATE TABLE table_2897457_4 (position VARCHAR, nhl_team VARCHAR) | SELECT COUNT(position) FROM table_2897457_4 WHERE nhl_team = "Minnesota North Stars" | ### Context: CREATE TABLE table_2897457_4 (position VARCHAR, nhl_team VARCHAR) ### Question: How many positions drafted for the Minnesota North Stars? ### Answer: SELECT COUNT(position) FROM table_2897457_4 WHERE nhl_team = "Minnesota North Stars" |
What position did Roseau High School (USHS-MN) play? | CREATE TABLE table_2897457_7 (position VARCHAR, college_junior_club_team VARCHAR) | SELECT position FROM table_2897457_7 WHERE college_junior_club_team = "Roseau High School (USHS-MN)" | ### Context: CREATE TABLE table_2897457_7 (position VARCHAR, college_junior_club_team VARCHAR) ### Question: What position did Roseau High School (USHS-MN) play? ### Answer: SELECT position FROM table_2897457_7 WHERE college_junior_club_team = "Roseau High School (USHS-MN)" |
What are Scott Zygulski's pick numbers? | CREATE TABLE table_2897457_7 (pick__number VARCHAR, player VARCHAR) | SELECT pick__number FROM table_2897457_7 WHERE player = "Scott Zygulski" | ### Context: CREATE TABLE table_2897457_7 (pick__number VARCHAR, player VARCHAR) ### Question: What are Scott Zygulski's pick numbers? ### Answer: SELECT pick__number FROM table_2897457_7 WHERE player = "Scott Zygulski" |
Which country is pick# 136 from? | CREATE TABLE table_2897457_7 (nationality VARCHAR, pick__number VARCHAR) | SELECT nationality FROM table_2897457_7 WHERE pick__number = 136 | ### Context: CREATE TABLE table_2897457_7 (nationality VARCHAR, pick__number VARCHAR) ### Question: Which country is pick# 136 from? ### Answer: SELECT nationality FROM table_2897457_7 WHERE pick__number = 136 |
How many nationalities does Alex Nikolic come from? | CREATE TABLE table_2897457_7 (nationality VARCHAR, player VARCHAR) | SELECT COUNT(nationality) FROM table_2897457_7 WHERE player = "Alex Nikolic" | ### Context: CREATE TABLE table_2897457_7 (nationality VARCHAR, player VARCHAR) ### Question: How many nationalities does Alex Nikolic come from? ### Answer: SELECT COUNT(nationality) FROM table_2897457_7 WHERE player = "Alex Nikolic" |
How many NHL teams have a pick number of 128? | CREATE TABLE table_2897457_7 (nhl_team VARCHAR, pick__number VARCHAR) | SELECT COUNT(nhl_team) FROM table_2897457_7 WHERE pick__number = 128 | ### Context: CREATE TABLE table_2897457_7 (nhl_team VARCHAR, pick__number VARCHAR) ### Question: How many NHL teams have a pick number of 128? ### Answer: SELECT COUNT(nhl_team) FROM table_2897457_7 WHERE pick__number = 128 |
Name the opponents for anabel medina garrigues | CREATE TABLE table_28979895_4 (opponents VARCHAR, partner VARCHAR) | SELECT COUNT(opponents) FROM table_28979895_4 WHERE partner = "Anabel Medina Garrigues" | ### Context: CREATE TABLE table_28979895_4 (opponents VARCHAR, partner VARCHAR) ### Question: Name the opponents for anabel medina garrigues ### Answer: SELECT COUNT(opponents) FROM table_28979895_4 WHERE partner = "Anabel Medina Garrigues" |
Name the parter for w/o | CREATE TABLE table_28979895_4 (partner VARCHAR, score VARCHAR) | SELECT partner FROM table_28979895_4 WHERE score = "w/o" | ### Context: CREATE TABLE table_28979895_4 (partner VARCHAR, score VARCHAR) ### Question: Name the parter for w/o ### Answer: SELECT partner FROM table_28979895_4 WHERE score = "w/o" |
Which of the networks originate in Xalapa? | CREATE TABLE table_2899987_2 (network VARCHAR, origin VARCHAR) | SELECT network FROM table_2899987_2 WHERE origin = "Xalapa" | ### Context: CREATE TABLE table_2899987_2 (network VARCHAR, origin VARCHAR) ### Question: Which of the networks originate in Xalapa? ### Answer: SELECT network FROM table_2899987_2 WHERE origin = "Xalapa" |
What are all the programs on the Soy Guerrero network? | CREATE TABLE table_2899987_2 (programming VARCHAR, network VARCHAR) | SELECT programming FROM table_2899987_2 WHERE network = "Soy Guerrero" | ### Context: CREATE TABLE table_2899987_2 (programming VARCHAR, network VARCHAR) ### Question: What are all the programs on the Soy Guerrero network? ### Answer: SELECT programming FROM table_2899987_2 WHERE network = "Soy Guerrero" |
Which owners originate in Mexico City? | CREATE TABLE table_2899987_2 (owner VARCHAR, origin VARCHAR) | SELECT owner FROM table_2899987_2 WHERE origin = "Mexico City" | ### Context: CREATE TABLE table_2899987_2 (owner VARCHAR, origin VARCHAR) ### Question: Which owners originate in Mexico City? ### Answer: SELECT owner FROM table_2899987_2 WHERE origin = "Mexico City" |
Which network serves the Guerrero region | CREATE TABLE table_2899987_2 (network VARCHAR, region VARCHAR) | SELECT network FROM table_2899987_2 WHERE region = "Guerrero" | ### Context: CREATE TABLE table_2899987_2 (network VARCHAR, region VARCHAR) ### Question: Which network serves the Guerrero region ### Answer: SELECT network FROM table_2899987_2 WHERE region = "Guerrero" |
Which regions are owned by estado de tabasco? | CREATE TABLE table_2899987_2 (region VARCHAR, owner VARCHAR) | SELECT region FROM table_2899987_2 WHERE owner = "Estado de Tabasco" | ### Context: CREATE TABLE table_2899987_2 (region VARCHAR, owner VARCHAR) ### Question: Which regions are owned by estado de tabasco? ### Answer: SELECT region FROM table_2899987_2 WHERE owner = "Estado de Tabasco" |
What subdivision names (RU) have a code of by-hr? | CREATE TABLE table_290017_1 (subdivision_name___ru____bgn_pcgn_ VARCHAR, code VARCHAR) | SELECT subdivision_name___ru____bgn_pcgn_ FROM table_290017_1 WHERE code = "BY-HR" | ### Context: CREATE TABLE table_290017_1 (subdivision_name___ru____bgn_pcgn_ VARCHAR, code VARCHAR) ### Question: What subdivision names (RU) have a code of by-hr? ### Answer: SELECT subdivision_name___ru____bgn_pcgn_ FROM table_290017_1 WHERE code = "BY-HR" |
What cods have a subdivision name (RU) of Grodnenskaya Oblast'? | CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR) | SELECT code FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = "Grodnenskaya oblast'" | ### Context: CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR) ### Question: What cods have a subdivision name (RU) of Grodnenskaya Oblast'? ### Answer: SELECT code FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = "Grodnenskaya oblast'" |
What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'? | CREATE TABLE table_290017_1 (subdivision_name___ru____gost_ VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) | SELECT subdivision_name___ru____gost_ FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Hrodzenskaya voblasts'" | ### Context: CREATE TABLE table_290017_1 (subdivision_name___ru____gost_ VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) ### Question: What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'? ### Answer: SELECT subdivision_name___ru____gost_ FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Hrodzenskaya voblasts'" |
What is the subdivision name (BE) where subdivision name (RU) (BGN) is Grodnenskaya Oblast'? | CREATE TABLE table_290017_1 (subdivision_name___be____bgn_pcgn_ VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR) | SELECT subdivision_name___be____bgn_pcgn_ FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = "Grodnenskaya oblast'" | ### Context: CREATE TABLE table_290017_1 (subdivision_name___be____bgn_pcgn_ VARCHAR, subdivision_name___ru____bgn_pcgn_ VARCHAR) ### Question: What is the subdivision name (BE) where subdivision name (RU) (BGN) is Grodnenskaya Oblast'? ### Answer: SELECT subdivision_name___be____bgn_pcgn_ FROM table_290017_1 WHERE subdivision_name___ru____bgn_pcgn_ = "Grodnenskaya oblast'" |
Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'? | CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) | SELECT code FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Homyel'skaya voblasts'" | ### Context: CREATE TABLE table_290017_1 (code VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) ### Question: Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'? ### Answer: SELECT code FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Homyel'skaya voblasts'" |
Name the into service for dh1 | CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR) | SELECT into_service FROM table_29002641_1 WHERE number = "DH1" | ### Context: CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR) ### Question: Name the into service for dh1 ### Answer: SELECT into_service FROM table_29002641_1 WHERE number = "DH1" |
Name the into service for dh2 | CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR) | SELECT into_service FROM table_29002641_1 WHERE number = "DH2" | ### Context: CREATE TABLE table_29002641_1 (into_service VARCHAR, number VARCHAR) ### Question: Name the into service for dh2 ### Answer: SELECT into_service FROM table_29002641_1 WHERE number = "DH2" |
Name the most serial number for feb 1994 | CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR) | SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = "Feb 1994" | ### Context: CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR) ### Question: Name the most serial number for feb 1994 ### Answer: SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = "Feb 1994" |
Name the number for 2004 scapped | CREATE TABLE table_29002641_1 (number VARCHAR, scrapped VARCHAR) | SELECT number FROM table_29002641_1 WHERE scrapped = "2004" | ### Context: CREATE TABLE table_29002641_1 (number VARCHAR, scrapped VARCHAR) ### Question: Name the number for 2004 scapped ### Answer: SELECT number FROM table_29002641_1 WHERE scrapped = "2004" |
How many month names are there for the tenth numbered month? | CREATE TABLE table_28985631_1 (month_name VARCHAR, numbered_month VARCHAR) | SELECT COUNT(month_name) FROM table_28985631_1 WHERE numbered_month = "Tenth" | ### Context: CREATE TABLE table_28985631_1 (month_name VARCHAR, numbered_month VARCHAR) ### Question: How many month names are there for the tenth numbered month? ### Answer: SELECT COUNT(month_name) FROM table_28985631_1 WHERE numbered_month = "Tenth" |
What is the defective year for the eighth numbered month? | CREATE TABLE table_28985631_1 (defective_year VARCHAR, numbered_month VARCHAR) | SELECT defective_year FROM table_28985631_1 WHERE numbered_month = "Eighth" | ### Context: CREATE TABLE table_28985631_1 (defective_year VARCHAR, numbered_month VARCHAR) ### Question: What is the defective year for the eighth numbered month? ### Answer: SELECT defective_year FROM table_28985631_1 WHERE numbered_month = "Eighth" |
What is the month sequence for the month name of av? | CREATE TABLE table_28985631_1 (month_sequence INTEGER, month_name VARCHAR) | SELECT MIN(month_sequence) FROM table_28985631_1 WHERE month_name = "Av" | ### Context: CREATE TABLE table_28985631_1 (month_sequence INTEGER, month_name VARCHAR) ### Question: What is the month sequence for the month name of av? ### Answer: SELECT MIN(month_sequence) FROM table_28985631_1 WHERE month_name = "Av" |
What is the defective year for the regular year of 29 days and month sequence of 2? | CREATE TABLE table_28985631_1 (defective_year INTEGER, regular_year VARCHAR, month_sequence VARCHAR) | SELECT MAX(defective_year) FROM table_28985631_1 WHERE regular_year = "29 days" AND month_sequence = 2 | ### Context: CREATE TABLE table_28985631_1 (defective_year INTEGER, regular_year VARCHAR, month_sequence VARCHAR) ### Question: What is the defective year for the regular year of 29 days and month sequence of 2? ### Answer: SELECT MAX(defective_year) FROM table_28985631_1 WHERE regular_year = "29 days" AND month_sequence = 2 |
When 4.5 is the rating (18-49) what is the air date? | CREATE TABLE table_28980706_4 (first_air_date VARCHAR, rating__18_49_ VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE rating__18_49_ = "4.5" | ### Context: CREATE TABLE table_28980706_4 (first_air_date VARCHAR, rating__18_49_ VARCHAR) ### Question: When 4.5 is the rating (18-49) what is the air date? ### Answer: SELECT first_air_date FROM table_28980706_4 WHERE rating__18_49_ = "4.5" |
When 13 is the share (18-49) what is the rank (timeslot)? | CREATE TABLE table_28980706_4 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR) | SELECT rank__timeslot_ FROM table_28980706_4 WHERE share__18_49_ = 13 | ### Context: CREATE TABLE table_28980706_4 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR) ### Question: When 13 is the share (18-49) what is the rank (timeslot)? ### Answer: SELECT rank__timeslot_ FROM table_28980706_4 WHERE share__18_49_ = 13 |
When 11 is the episode what is the air date? | CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE episode = 11 | ### Context: CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) ### Question: When 11 is the episode what is the air date? ### Answer: SELECT first_air_date FROM table_28980706_4 WHERE episode = 11 |
When there are 10.02 million viewers what is the rating (18-49)? | CREATE TABLE table_28980706_4 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR) | SELECT rating__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "10.02" | ### Context: CREATE TABLE table_28980706_4 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR) ### Question: When there are 10.02 million viewers what is the rating (18-49)? ### Answer: SELECT rating__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "10.02" |
When there are 9.28 million viewers what is the share (18-49)? | CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR, viewers__millions_ VARCHAR) | SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "9.28" | ### Context: CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR, viewers__millions_ VARCHAR) ### Question: When there are 9.28 million viewers what is the share (18-49)? ### Answer: SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "9.28" |
When 4 is the episode what is the air date? | CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) | SELECT first_air_date FROM table_28980706_4 WHERE episode = 4 | ### Context: CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR) ### Question: When 4 is the episode what is the air date? ### Answer: SELECT first_air_date FROM table_28980706_4 WHERE episode = 4 |
How many different results were there for the scores 6–7 (2–7) , 6–2, 7–6 (7–3)? | CREATE TABLE table_29026564_9 (result VARCHAR, score VARCHAR) | SELECT COUNT(result) FROM table_29026564_9 WHERE score = "6–7 (2–7) , 6–2, 7–6 (7–3)" | ### Context: CREATE TABLE table_29026564_9 (result VARCHAR, score VARCHAR) ### Question: How many different results were there for the scores 6–7 (2–7) , 6–2, 7–6 (7–3)? ### Answer: SELECT COUNT(result) FROM table_29026564_9 WHERE score = "6–7 (2–7) , 6–2, 7–6 (7–3)" |
Who was the writer for episode 3? | CREATE TABLE table_29039942_1 (writer VARCHAR, episode VARCHAR) | SELECT writer FROM table_29039942_1 WHERE episode = 3 | ### Context: CREATE TABLE table_29039942_1 (writer VARCHAR, episode VARCHAR) ### Question: Who was the writer for episode 3? ### Answer: SELECT writer FROM table_29039942_1 WHERE episode = 3 |
What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki | CREATE TABLE table_29039942_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR) | SELECT original_airdate FROM table_29039942_1 WHERE writer = "Daisuke Habara" AND director = "Akimitsu Sasaki" | ### Context: CREATE TABLE table_29039942_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR) ### Question: What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki ### Answer: SELECT original_airdate FROM table_29039942_1 WHERE writer = "Daisuke Habara" AND director = "Akimitsu Sasaki" |
What episode did tomoyuki furumaya | CREATE TABLE table_29039942_1 (title VARCHAR, director VARCHAR) | SELECT title FROM table_29039942_1 WHERE director = "Tomoyuki Furumaya" | ### Context: CREATE TABLE table_29039942_1 (title VARCHAR, director VARCHAR) ### Question: What episode did tomoyuki furumaya ### Answer: SELECT title FROM table_29039942_1 WHERE director = "Tomoyuki Furumaya" |
What is the earliest round where collingswood lost by 36 points? | CREATE TABLE table_29033869_3 (round INTEGER, result__includes_margin_ VARCHAR) | SELECT MIN(round) FROM table_29033869_3 WHERE result__includes_margin_ = "Lost by 36 points" | ### Context: CREATE TABLE table_29033869_3 (round INTEGER, result__includes_margin_ VARCHAR) ### Question: What is the earliest round where collingswood lost by 36 points? ### Answer: SELECT MIN(round) FROM table_29033869_3 WHERE result__includes_margin_ = "Lost by 36 points" |
What was the score on saturday, 26 june 7:10pm? | CREATE TABLE table_29033869_3 (score__collingwoods_score_is_in_bold_ VARCHAR, date VARCHAR) | SELECT score__collingwoods_score_is_in_bold_ FROM table_29033869_3 WHERE date = "Saturday, 26 June 7:10pm" | ### Context: CREATE TABLE table_29033869_3 (score__collingwoods_score_is_in_bold_ VARCHAR, date VARCHAR) ### Question: What was the score on saturday, 26 june 7:10pm? ### Answer: SELECT score__collingwoods_score_is_in_bold_ FROM table_29033869_3 WHERE date = "Saturday, 26 June 7:10pm" |
What is the round number of the round against melbourne on saturday, 4 april 2:10pm? | CREATE TABLE table_29033869_3 (round INTEGER, opponent VARCHAR, date VARCHAR) | SELECT MIN(round) FROM table_29033869_3 WHERE opponent = "Melbourne" AND date = "Saturday, 4 April 2:10pm" | ### Context: CREATE TABLE table_29033869_3 (round INTEGER, opponent VARCHAR, date VARCHAR) ### Question: What is the round number of the round against melbourne on saturday, 4 april 2:10pm? ### Answer: SELECT MIN(round) FROM table_29033869_3 WHERE opponent = "Melbourne" AND date = "Saturday, 4 April 2:10pm" |
Which venue did collingsworth play essendon in when they had the 3rd position on the ladder? | CREATE TABLE table_29033869_3 (venue VARCHAR, opponent VARCHAR, position_on_ladder VARCHAR) | SELECT venue FROM table_29033869_3 WHERE opponent = "Essendon" AND position_on_ladder = "3rd" | ### Context: CREATE TABLE table_29033869_3 (venue VARCHAR, opponent VARCHAR, position_on_ladder VARCHAR) ### Question: Which venue did collingsworth play essendon in when they had the 3rd position on the ladder? ### Answer: SELECT venue FROM table_29033869_3 WHERE opponent = "Essendon" AND position_on_ladder = "3rd" |
Was the round where they were in 6th at home or away? | CREATE TABLE table_29033869_3 (home_away VARCHAR, position_on_ladder VARCHAR) | SELECT home_away FROM table_29033869_3 WHERE position_on_ladder = "6th" | ### Context: CREATE TABLE table_29033869_3 (home_away VARCHAR, position_on_ladder VARCHAR) ### Question: Was the round where they were in 6th at home or away? ### Answer: SELECT home_away FROM table_29033869_3 WHERE position_on_ladder = "6th" |
What was the previous school for the forward with a height of ft5in (m)? | CREATE TABLE table_29050051_3 (previous_school VARCHAR, height VARCHAR, position VARCHAR) | SELECT previous_school FROM table_29050051_3 WHERE height = "ft5in (m)" AND position = "Forward" | ### Context: CREATE TABLE table_29050051_3 (previous_school VARCHAR, height VARCHAR, position VARCHAR) ### Question: What was the previous school for the forward with a height of ft5in (m)? ### Answer: SELECT previous_school FROM table_29050051_3 WHERE height = "ft5in (m)" AND position = "Forward" |
What is the lowest listed number for a player? | CREATE TABLE table_29050051_3 (_number INTEGER) | SELECT MIN(_number) FROM table_29050051_3 | ### Context: CREATE TABLE table_29050051_3 (_number INTEGER) ### Question: What is the lowest listed number for a player? ### Answer: SELECT MIN(_number) FROM table_29050051_3 |
Who previously attended south kent school / brentwood hs? | CREATE TABLE table_29050051_3 (name VARCHAR, previous_school VARCHAR) | SELECT name FROM table_29050051_3 WHERE previous_school = "South Kent School / Brentwood HS" | ### Context: CREATE TABLE table_29050051_3 (name VARCHAR, previous_school VARCHAR) ### Question: Who previously attended south kent school / brentwood hs? ### Answer: SELECT name FROM table_29050051_3 WHERE previous_school = "South Kent School / Brentwood HS" |
What is the highest number a guard from brophy college prep wore? | CREATE TABLE table_29050051_3 (_number INTEGER, position VARCHAR, previous_school VARCHAR) | SELECT MAX(_number) FROM table_29050051_3 WHERE position = "Guard" AND previous_school = "Brophy College Prep" | ### Context: CREATE TABLE table_29050051_3 (_number INTEGER, position VARCHAR, previous_school VARCHAR) ### Question: What is the highest number a guard from brophy college prep wore? ### Answer: SELECT MAX(_number) FROM table_29050051_3 WHERE position = "Guard" AND previous_school = "Brophy College Prep" |
How many directed by entries have UK viewership over 6.16 million? | CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) | SELECT COUNT(directed_by) FROM table_29063233_1 WHERE uk_viewers__million_ = "6.16" | ### Context: CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) ### Question: How many directed by entries have UK viewership over 6.16 million? ### Answer: SELECT COUNT(directed_by) FROM table_29063233_1 WHERE uk_viewers__million_ = "6.16" |
Who directed the episode with a UK viewership of exactly 5.77 million? | CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) | SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = "5.77" | ### Context: CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) ### Question: Who directed the episode with a UK viewership of exactly 5.77 million? ### Answer: SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = "5.77" |
What was the airdate of the episode with a UK viewership of 6.02 million? | CREATE TABLE table_29063233_1 (original_air_date VARCHAR, uk_viewers__million_ VARCHAR) | SELECT original_air_date FROM table_29063233_1 WHERE uk_viewers__million_ = "6.02" | ### Context: CREATE TABLE table_29063233_1 (original_air_date VARCHAR, uk_viewers__million_ VARCHAR) ### Question: What was the airdate of the episode with a UK viewership of 6.02 million? ### Answer: SELECT original_air_date FROM table_29063233_1 WHERE uk_viewers__million_ = "6.02" |
Who directed the episode with UK viewership of 6.09 million? | CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) | SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = "6.09" | ### Context: CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) ### Question: Who directed the episode with UK viewership of 6.09 million? ### Answer: SELECT directed_by FROM table_29063233_1 WHERE uk_viewers__million_ = "6.09" |
Name the general classification for mauricio soler | CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR) | SELECT general_classification FROM table_29077342_19 WHERE winner = "Mauricio Soler" | ### Context: CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR) ### Question: Name the general classification for mauricio soler ### Answer: SELECT general_classification FROM table_29077342_19 WHERE winner = "Mauricio Soler" |
Name the general classification for steven kruijswijk | CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR) | SELECT general_classification FROM table_29077342_19 WHERE winner = "Steven Kruijswijk" | ### Context: CREATE TABLE table_29077342_19 (general_classification VARCHAR, winner VARCHAR) ### Question: Name the general classification for steven kruijswijk ### Answer: SELECT general_classification FROM table_29077342_19 WHERE winner = "Steven Kruijswijk" |
Name the points classification for levi leipheimer | CREATE TABLE table_29077342_19 (points_classification VARCHAR, general_classification VARCHAR) | SELECT points_classification FROM table_29077342_19 WHERE general_classification = "Levi Leipheimer" | ### Context: CREATE TABLE table_29077342_19 (points_classification VARCHAR, general_classification VARCHAR) ### Question: Name the points classification for levi leipheimer ### Answer: SELECT points_classification FROM table_29077342_19 WHERE general_classification = "Levi Leipheimer" |
Name the mountains classification for rabobank and damiano cunego | CREATE TABLE table_29077342_19 (mountains_classification VARCHAR, team_classification VARCHAR, general_classification VARCHAR) | SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = "Rabobank" AND general_classification = "Damiano Cunego" | ### Context: CREATE TABLE table_29077342_19 (mountains_classification VARCHAR, team_classification VARCHAR, general_classification VARCHAR) ### Question: Name the mountains classification for rabobank and damiano cunego ### Answer: SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = "Rabobank" AND general_classification = "Damiano Cunego" |
Name the team classification for thomas de gendt | CREATE TABLE table_29077342_19 (team_classification VARCHAR, winner VARCHAR) | SELECT team_classification FROM table_29077342_19 WHERE winner = "Thomas De Gendt" | ### Context: CREATE TABLE table_29077342_19 (team_classification VARCHAR, winner VARCHAR) ### Question: Name the team classification for thomas de gendt ### Answer: SELECT team_classification FROM table_29077342_19 WHERE winner = "Thomas De Gendt" |
What is listed in built for when the original number is 24d? | CREATE TABLE table_29071587_1 (built_for VARCHAR, original_no VARCHAR) | SELECT built_for FROM table_29071587_1 WHERE original_no = "24D" | ### Context: CREATE TABLE table_29071587_1 (built_for VARCHAR, original_no VARCHAR) ### Question: What is listed in built for when the original number is 24d? ### Answer: SELECT built_for FROM table_29071587_1 WHERE original_no = "24D" |
What is the season # when ther are 5.3 million U.S viewers? | CREATE TABLE table_29102612_1 (season__number INTEGER, us_viewers__millions_ VARCHAR) | SELECT MAX(season__number) FROM table_29102612_1 WHERE us_viewers__millions_ = "5.3" | ### Context: CREATE TABLE table_29102612_1 (season__number INTEGER, us_viewers__millions_ VARCHAR) ### Question: What is the season # when ther are 5.3 million U.S viewers? ### Answer: SELECT MAX(season__number) FROM table_29102612_1 WHERE us_viewers__millions_ = "5.3" |
What are the titles of episodes written by Eric Trueheart? | CREATE TABLE table_29087004_3 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_29087004_3 WHERE written_by = "Eric Trueheart" | ### Context: CREATE TABLE table_29087004_3 (title VARCHAR, written_by VARCHAR) ### Question: What are the titles of episodes written by Eric Trueheart? ### Answer: SELECT title FROM table_29087004_3 WHERE written_by = "Eric Trueheart" |
Who were the writers of episode/s first aired in the US on June 9, 2012? | CREATE TABLE table_29087004_3 (written_by VARCHAR, united_states_original_airdate VARCHAR) | SELECT written_by FROM table_29087004_3 WHERE united_states_original_airdate = "June 9, 2012" | ### Context: CREATE TABLE table_29087004_3 (written_by VARCHAR, united_states_original_airdate VARCHAR) ### Question: Who were the writers of episode/s first aired in the US on June 9, 2012? ### Answer: SELECT written_by FROM table_29087004_3 WHERE united_states_original_airdate = "June 9, 2012" |
Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012? | CREATE TABLE table_29087004_3 (written_by VARCHAR, directed_by VARCHAR, united_states_original_airdate VARCHAR) | SELECT written_by FROM table_29087004_3 WHERE directed_by = "Greg Sullivan" AND united_states_original_airdate = "July 21, 2012" | ### Context: CREATE TABLE table_29087004_3 (written_by VARCHAR, directed_by VARCHAR, united_states_original_airdate VARCHAR) ### Question: Who were the writers of the episodes directed by Greg Sullivan and which first aired on July 21, 2012? ### Answer: SELECT written_by FROM table_29087004_3 WHERE directed_by = "Greg Sullivan" AND united_states_original_airdate = "July 21, 2012" |
Which episode/s were written by Evan Gore? | CREATE TABLE table_29087004_3 (series__number VARCHAR, written_by VARCHAR) | SELECT series__number FROM table_29087004_3 WHERE written_by = "Evan Gore" | ### Context: CREATE TABLE table_29087004_3 (series__number VARCHAR, written_by VARCHAR) ### Question: Which episode/s were written by Evan Gore? ### Answer: SELECT series__number FROM table_29087004_3 WHERE written_by = "Evan Gore" |
Which team was the away team when home team was essendon? | CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_29090919_1 WHERE home_team = "Essendon" | ### Context: CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) ### Question: Which team was the away team when home team was essendon? ### Answer: SELECT away_team FROM table_29090919_1 WHERE home_team = "Essendon" |
How many scores were there for the home team when the away team was fitzroy? | CREATE TABLE table_29090919_1 (home_team VARCHAR, away_team VARCHAR) | SELECT COUNT(home_team) AS score FROM table_29090919_1 WHERE away_team = "Fitzroy" | ### Context: CREATE TABLE table_29090919_1 (home_team VARCHAR, away_team VARCHAR) ### Question: How many scores were there for the home team when the away team was fitzroy? ### Answer: SELECT COUNT(home_team) AS score FROM table_29090919_1 WHERE away_team = "Fitzroy" |
Which team was the away team when the home team was north melbourne? | CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_29090919_1 WHERE home_team = "North Melbourne" | ### Context: CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) ### Question: Which team was the away team when the home team was north melbourne? ### Answer: SELECT away_team FROM table_29090919_1 WHERE home_team = "North Melbourne" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.