text
stringlengths
146
1.06k
source
dict
### QUESTION After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango? ### CONTEXT CREATE TABLE table_name_65 (score VARCHAR, runners_up VARCHAR, year VARCHAR, tournament_name VARCHAR) ### ANSWER SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = "grand prix passing shot" AND runners_up = "jeff tarango"
{ "answer": "SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = \"grand prix passing shot\" AND runners_up = \"jeff tarango\"", "context": "CREATE TABLE table_name_65 (score VARCHAR, runners_up VARCHAR, year VARCHAR, tournament_name VARCHAR)", "question": "After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango?" }
### QUESTION If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking? ### CONTEXT CREATE TABLE table_19805130_3 (rating VARCHAR, viewers__millions_ VARCHAR) ### ANSWER SELECT rating FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 2.0 / 6 AND viewers__millions_ = "5.14"
{ "answer": "SELECT rating FROM table_19805130_3 WHERE rating / SHARE(18 - 49) = 2.0 / 6 AND viewers__millions_ = \"5.14\"", "context": "CREATE TABLE table_19805130_3 (rating VARCHAR, viewers__millions_ VARCHAR)", "question": "If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?" }
### QUESTION Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club? ### CONTEXT CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR) ### ANSWER SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = "ismaël bangoura"
{ "answer": "SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = \"ismaël bangoura\"", "context": "CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR)", "question": "Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?" }
### QUESTION When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament? ### CONTEXT CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR) ### ANSWER SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = "Madison Square Garden ( New York City, New York )"
{ "answer": "SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = \"Madison Square Garden ( New York City, New York )\"", "context": "CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR)", "question": "When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament?" }
### QUESTION How many people were in the crowd at Lake Oval? ### CONTEXT CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR) ### ANSWER SELECT crowd FROM table_name_2 WHERE venue = "lake oval"
{ "answer": "SELECT crowd FROM table_name_2 WHERE venue = \"lake oval\"", "context": "CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR)", "question": "How many people were in the crowd at Lake Oval?" }
### QUESTION How tall is the Anqing Bridge which opened prior to 2011? ### CONTEXT CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR) ### ANSWER SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = "anqing bridge"
{ "answer": "SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = \"anqing bridge\"", "context": "CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR)", "question": "How tall is the Anqing Bridge which opened prior to 2011?" }
### QUESTION What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network? ### CONTEXT CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR) ### ANSWER SELECT origin_of_programming FROM table_name_11 WHERE service = "dish" AND language = "malayalam" AND genre = "general" AND network = "asianet plus"
{ "answer": "SELECT origin_of_programming FROM table_name_11 WHERE service = \"dish\" AND language = \"malayalam\" AND genre = \"general\" AND network = \"asianet plus\"", "context": "CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR)", "question": "What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network?" }
### QUESTION What are the lot details of lots associated with transactions with share count smaller than 50? ### CONTEXT CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count INTEGER) ### ANSWER SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count < 50
{ "answer": "SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count < 50", "context": "CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count INTEGER)", "question": "What are the lot details of lots associated with transactions with share count smaller than 50?" }
### QUESTION What was the box score for the game where the away team was the sydney spirit? ### CONTEXT CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR) ### ANSWER SELECT Box AS score FROM table_name_40 WHERE away_team = "sydney spirit"
{ "answer": "SELECT Box AS score FROM table_name_40 WHERE away_team = \"sydney spirit\"", "context": "CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR)", "question": "What was the box score for the game where the away team was the sydney spirit?" }
### QUESTION When was the 1991 world group I with the opponent of Li Fang? ### CONTEXT CREATE TABLE table_name_2 (date VARCHAR, edition VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_2 WHERE edition = "1991 world group i" AND opponent = "li fang"
{ "answer": "SELECT date FROM table_name_2 WHERE edition = \"1991 world group i\" AND opponent = \"li fang\"", "context": "CREATE TABLE table_name_2 (date VARCHAR, edition VARCHAR, opponent VARCHAR)", "question": "When was the 1991 world group I with the opponent of Li Fang?" }
### QUESTION What is the President with a Location of justus lipsius building, brussels, and a Type with scheduled, and a Year larger than 2011, and a Date with 18–19 october? ### CONTEXT CREATE TABLE table_name_22 (president VARCHAR, date VARCHAR, year VARCHAR, location VARCHAR, type VARCHAR) ### ANSWER SELECT president FROM table_name_22 WHERE location = "justus lipsius building, brussels" AND type = "scheduled" AND year > 2011 AND date = "18–19 october"
{ "answer": "SELECT president FROM table_name_22 WHERE location = \"justus lipsius building, brussels\" AND type = \"scheduled\" AND year > 2011 AND date = \"18–19 october\"", "context": "CREATE TABLE table_name_22 (president VARCHAR, date VARCHAR, year VARCHAR, location VARCHAR, type VARCHAR)", "question": "What is the President with a Location of justus lipsius building, brussels, and a Type with scheduled, and a Year larger than 2011, and a Date with 18–19 october?" }
### QUESTION What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes? ### CONTEXT CREATE TABLE table_name_56 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ### ANSWER SELECT tournament FROM table_name_56 WHERE margin_of_victory = "2 strokes" AND date = "sep 20, 1981"
{ "answer": "SELECT tournament FROM table_name_56 WHERE margin_of_victory = \"2 strokes\" AND date = \"sep 20, 1981\"", "context": "CREATE TABLE table_name_56 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)", "question": "What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes?" }
### QUESTION What is Highest Days, when Launch Date is 23 January 2010? ### CONTEXT CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR) ### ANSWER SELECT MAX(days) FROM table_name_16 WHERE launch_date = "23 january 2010"
{ "answer": "SELECT MAX(days) FROM table_name_16 WHERE launch_date = \"23 january 2010\"", "context": "CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR)", "question": "What is Highest Days, when Launch Date is 23 January 2010?" }
### QUESTION What was the production code for the episode directed by Michael Morris? ### CONTEXT CREATE TABLE table_23793770_1 (production_code INTEGER, directed_by VARCHAR) ### ANSWER SELECT MIN(production_code) FROM table_23793770_1 WHERE directed_by = "Michael Morris"
{ "answer": "SELECT MIN(production_code) FROM table_23793770_1 WHERE directed_by = \"Michael Morris\"", "context": "CREATE TABLE table_23793770_1 (production_code INTEGER, directed_by VARCHAR)", "question": "What was the production code for the episode directed by Michael Morris?" }
### QUESTION How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0? ### CONTEXT CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0
{ "answer": "SELECT COUNT(total) FROM table_name_37 WHERE player = \"ahmad fouzee masuri\" AND fa_cup > 0", "context": "CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR)", "question": "How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?" }
### QUESTION What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'? ### CONTEXT CREATE TABLE table_290017_1 (subdivision_name___ru____gost_ VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) ### ANSWER SELECT subdivision_name___ru____gost_ FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Hrodzenskaya voblasts'"
{ "answer": "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'?" }
### QUESTION When the new orleans saints were visiting texas stadium, what was the final score? ### CONTEXT CREATE TABLE table_name_94 (final_score VARCHAR, stadium VARCHAR, visiting_team VARCHAR) ### ANSWER SELECT final_score FROM table_name_94 WHERE stadium = "texas stadium" AND visiting_team = "new orleans saints"
{ "answer": "SELECT final_score FROM table_name_94 WHERE stadium = \"texas stadium\" AND visiting_team = \"new orleans saints\"", "context": "CREATE TABLE table_name_94 (final_score VARCHAR, stadium VARCHAR, visiting_team VARCHAR)", "question": "When the new orleans saints were visiting texas stadium, what was the final score?" }
### QUESTION What is the highest Game, when High Assists is "Hedo Türkoğlu (7)"? ### CONTEXT CREATE TABLE table_name_86 (game INTEGER, high_assists VARCHAR) ### ANSWER SELECT MAX(game) FROM table_name_86 WHERE high_assists = "hedo türkoğlu (7)"
{ "answer": "SELECT MAX(game) FROM table_name_86 WHERE high_assists = \"hedo türkoğlu (7)\"", "context": "CREATE TABLE table_name_86 (game INTEGER, high_assists VARCHAR)", "question": "What is the highest Game, when High Assists is \"Hedo Türkoğlu (7)\"?" }
### QUESTION Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand? ### CONTEXT CREATE TABLE table_name_70 (member VARCHAR, electorate VARCHAR, state VARCHAR, first_elected VARCHAR, party VARCHAR) ### ANSWER SELECT member FROM table_name_70 WHERE first_elected = "1972" AND party = "alp" AND state = "vic" AND electorate = "gellibrand"
{ "answer": "SELECT member FROM table_name_70 WHERE first_elected = \"1972\" AND party = \"alp\" AND state = \"vic\" AND electorate = \"gellibrand\"", "context": "CREATE TABLE table_name_70 (member VARCHAR, electorate VARCHAR, state VARCHAR, first_elected VARCHAR, party VARCHAR)", "question": "Which memeber has a first elected of 1972, alp as the party, vic as the state, and an electorate of gellibrand?" }
### QUESTION What place in the United States has a To par of e? ### CONTEXT CREATE TABLE table_name_39 (place VARCHAR, country VARCHAR, to_par VARCHAR) ### ANSWER SELECT place FROM table_name_39 WHERE country = "united states" AND to_par = "e"
{ "answer": "SELECT place FROM table_name_39 WHERE country = \"united states\" AND to_par = \"e\"", "context": "CREATE TABLE table_name_39 (place VARCHAR, country VARCHAR, to_par VARCHAR)", "question": "What place in the United States has a To par of e?" }
### QUESTION What is the poor law union on Marshalstown? ### CONTEXT CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR) ### ANSWER SELECT poor_law_union FROM table_28802165_1 WHERE townland = "Marshalstown"
{ "answer": "SELECT poor_law_union FROM table_28802165_1 WHERE townland = \"Marshalstown\"", "context": "CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR)", "question": "What is the poor law union on Marshalstown?" }
### QUESTION When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points? ### CONTEXT CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR) ### ANSWER SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = "herb graver" AND touchdowns < 15
{ "answer": "SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = \"herb graver\" AND touchdowns < 15", "context": "CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR)", "question": "When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points?" }
### QUESTION What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960? ### CONTEXT CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, entrant VARCHAR, chassis VARCHAR) ### ANSWER SELECT COUNT(points) FROM table_name_74 WHERE entrant = "wolfgang seidel" AND chassis = "cooper t45" AND year > 1960
{ "answer": "SELECT COUNT(points) FROM table_name_74 WHERE entrant = \"wolfgang seidel\" AND chassis = \"cooper t45\" AND year > 1960", "context": "CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, entrant VARCHAR, chassis VARCHAR)", "question": "What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960?" }
### QUESTION What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო? ### CONTEXT CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR) ### ANSWER SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ეს ცრემლები / პარალელური საიდუმლო"
{ "answer": "SELECT series_finale FROM table_name_56 WHERE translation = \"ოჰ ეს ცრემლები / პარალელური საიდუმლო\"", "context": "CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR)", "question": "What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო?" }
### QUESTION What location was fábio maldonado the opponent at? ### CONTEXT CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR) ### ANSWER SELECT location FROM table_name_26 WHERE opponent = "fábio maldonado"
{ "answer": "SELECT location FROM table_name_26 WHERE opponent = \"fábio maldonado\"", "context": "CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)", "question": "What location was fábio maldonado the opponent at?" }
### QUESTION Which player has a College of arizona? ### CONTEXT CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR) ### ANSWER SELECT player FROM table_name_83 WHERE college = "arizona"
{ "answer": "SELECT player FROM table_name_83 WHERE college = \"arizona\"", "context": "CREATE TABLE table_name_83 (player VARCHAR, college VARCHAR)", "question": "Which player has a College of arizona?" }
### QUESTION List the name and count of each product in all orders. ### CONTEXT CREATE TABLE orders (order_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR) ### ANSWER SELECT T3.product_name, COUNT(*) FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id
{ "answer": "SELECT T3.product_name, COUNT(*) FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id", "context": "CREATE TABLE orders (order_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR)", "question": "List the name and count of each product in all orders." }
### QUESTION What are the details and ways to get to tourist attractions related to royal family? ### CONTEXT CREATE TABLE TOURIST_ATTRACTIONS (How_to_Get_There VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE ROYAL_FAMILY (Royal_Family_Details VARCHAR, Royal_Family_ID VARCHAR) ### ANSWER SELECT T1.Royal_Family_Details, T2.How_to_Get_There FROM ROYAL_FAMILY AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Royal_Family_ID = T2.Tourist_Attraction_ID
{ "answer": "SELECT T1.Royal_Family_Details, T2.How_to_Get_There FROM ROYAL_FAMILY AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Royal_Family_ID = T2.Tourist_Attraction_ID", "context": "CREATE TABLE TOURIST_ATTRACTIONS (How_to_Get_There VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE ROYAL_FAMILY (Royal_Family_Details VARCHAR, Royal_Family_ID VARCHAR)", "question": "What are the details and ways to get to tourist attractions related to royal family?" }
### QUESTION What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest? ### CONTEXT CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR) ### ANSWER SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = "300 g/mi (186 g/km)"
{ "answer": "SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = \"300 g/mi (186 g/km)\"", "context": "CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR)", "question": "What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest?" }
### QUESTION What is the Altitude (meters) associated with a rank smaller than 10, and the range Mühlig-Hofmann Mountains? ### CONTEXT CREATE TABLE table_name_72 (altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR) ### ANSWER SELECT COUNT(altitude__meters_) FROM table_name_72 WHERE range = "mühlig-hofmann mountains" AND rank < 10
{ "answer": "SELECT COUNT(altitude__meters_) FROM table_name_72 WHERE range = \"mühlig-hofmann mountains\" AND rank < 10", "context": "CREATE TABLE table_name_72 (altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR)", "question": "What is the Altitude (meters) associated with a rank smaller than 10, and the range Mühlig-Hofmann Mountains?" }
### QUESTION Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place. ### CONTEXT CREATE TABLE weather (zip_code VARCHAR, mean_humidity INTEGER); CREATE TABLE trip (zip_code VARCHAR, mean_humidity INTEGER) ### ANSWER SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING COUNT(*) >= 100
{ "answer": "SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING COUNT(*) >= 100", "context": "CREATE TABLE weather (zip_code VARCHAR, mean_humidity INTEGER); CREATE TABLE trip (zip_code VARCHAR, mean_humidity INTEGER)", "question": "Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place." }
### QUESTION When the Swedish People's Party had a net gain/loss of 0, how many seats did they have? ### CONTEXT CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR) ### ANSWER SELECT seats FROM table_name_38 WHERE net_gain_loss = "0" AND party = "swedish people's party"
{ "answer": "SELECT seats FROM table_name_38 WHERE net_gain_loss = \"0\" AND party = \"swedish people's party\"", "context": "CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR)", "question": "When the Swedish People's Party had a net gain/loss of 0, how many seats did they have?" }
### QUESTION Name the original air date for 7 1-07 ### CONTEXT CREATE TABLE table_24222929_4 (original_airdate VARCHAR, episode_number_production_number VARCHAR) ### ANSWER SELECT original_airdate FROM table_24222929_4 WHERE episode_number_production_number = "7 1-07"
{ "answer": "SELECT original_airdate FROM table_24222929_4 WHERE episode_number_production_number = \"7 1-07\"", "context": "CREATE TABLE table_24222929_4 (original_airdate VARCHAR, episode_number_production_number VARCHAR)", "question": "Name the original air date for 7 1-07" }
### QUESTION What year did the Ingots, who left after 2007, join? ### CONTEXT CREATE TABLE table_name_48 (year_joined VARCHAR, mascot VARCHAR, year_left VARCHAR) ### ANSWER SELECT COUNT(year_joined) FROM table_name_48 WHERE mascot = "ingots" AND year_left > 2007
{ "answer": "SELECT COUNT(year_joined) FROM table_name_48 WHERE mascot = \"ingots\" AND year_left > 2007", "context": "CREATE TABLE table_name_48 (year_joined VARCHAR, mascot VARCHAR, year_left VARCHAR)", "question": "What year did the Ingots, who left after 2007, join?" }
### QUESTION What was the score of the 2014 World Cup Qualification? ### CONTEXT CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR) ### ANSWER SELECT score FROM table_name_91 WHERE competition = "2014 world cup qualification"
{ "answer": "SELECT score FROM table_name_91 WHERE competition = \"2014 world cup qualification\"", "context": "CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR)", "question": "What was the score of the 2014 World Cup Qualification?" }
### QUESTION Find the description of the most popular role among the users that have logged in. ### CONTEXT CREATE TABLE users (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR); CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR) ### ANSWER SELECT role_description FROM ROLES WHERE role_code = (SELECT role_code FROM users WHERE user_login = 1 GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1)
{ "answer": "SELECT role_description FROM ROLES WHERE role_code = (SELECT role_code FROM users WHERE user_login = 1 GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1)", "context": "CREATE TABLE users (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR); CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR)", "question": "Find the description of the most popular role among the users that have logged in." }
### QUESTION Which Year(s) won has a Total smaller than 292, and a Player of hale irwin? ### CONTEXT CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) ### ANSWER SELECT year_s__won FROM table_name_42 WHERE total < 292 AND player = "hale irwin"
{ "answer": "SELECT year_s__won FROM table_name_42 WHERE total < 292 AND player = \"hale irwin\"", "context": "CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)", "question": "Which Year(s) won has a Total smaller than 292, and a Player of hale irwin?" }
### QUESTION How many times did outgoing manager Bart de Roover vacated a position? ### CONTEXT CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ### ANSWER SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = "Bart De Roover"
{ "answer": "SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = \"Bart De Roover\"", "context": "CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)", "question": "How many times did outgoing manager Bart de Roover vacated a position?" }
### QUESTION Name the team which has high rebounds of smith (10) ### CONTEXT CREATE TABLE table_name_96 (team VARCHAR, high_rebounds VARCHAR) ### ANSWER SELECT team FROM table_name_96 WHERE high_rebounds = "smith (10)"
{ "answer": "SELECT team FROM table_name_96 WHERE high_rebounds = \"smith (10)\"", "context": "CREATE TABLE table_name_96 (team VARCHAR, high_rebounds VARCHAR)", "question": "Name the team which has high rebounds of smith (10)" }
### QUESTION What is the team name and acc regular season score of the school that was founded for the longest time? ### CONTEXT CREATE TABLE university (school_id VARCHAR, founded VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, ACC_Regular_Season VARCHAR, school_id VARCHAR) ### ANSWER SELECT t2.team_name, t2.ACC_Regular_Season FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id ORDER BY t1.founded LIMIT 1
{ "answer": "SELECT t2.team_name, t2.ACC_Regular_Season FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id ORDER BY t1.founded LIMIT 1", "context": "CREATE TABLE university (school_id VARCHAR, founded VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, ACC_Regular_Season VARCHAR, school_id VARCHAR)", "question": "What is the team name and acc regular season score of the school that was founded for the longest time?" }
### QUESTION Where was the match with a score of 4.10 (34) - 8.12 (60)? ### CONTEXT CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR) ### ANSWER SELECT venue FROM table_name_51 WHERE score = "4.10 (34) - 8.12 (60)"
{ "answer": "SELECT venue FROM table_name_51 WHERE score = \"4.10 (34) - 8.12 (60)\"", "context": "CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR)", "question": "Where was the match with a score of 4.10 (34) - 8.12 (60)?" }
### QUESTION find the full name of employees who report to Nancy Edwards? ### CONTEXT CREATE TABLE employees (id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, reports_to VARCHAR) ### ANSWER SELECT T2.first_name, T2.last_name FROM employees AS T1 JOIN employees AS T2 ON T1.id = T2.reports_to WHERE T1.first_name = "Nancy" AND T1.last_name = "Edwards"
{ "answer": "SELECT T2.first_name, T2.last_name FROM employees AS T1 JOIN employees AS T2 ON T1.id = T2.reports_to WHERE T1.first_name = \"Nancy\" AND T1.last_name = \"Edwards\"", "context": "CREATE TABLE employees (id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, reports_to VARCHAR)", "question": "find the full name of employees who report to Nancy Edwards?" }
### QUESTION What is the biggest number of females where the males are at 28.2 with a rank greater than 5? ### CONTEXT CREATE TABLE table_name_46 (females INTEGER, males VARCHAR, rank VARCHAR) ### ANSWER SELECT MAX(females) FROM table_name_46 WHERE males = 28.2 AND rank > 5
{ "answer": "SELECT MAX(females) FROM table_name_46 WHERE males = 28.2 AND rank > 5", "context": "CREATE TABLE table_name_46 (females INTEGER, males VARCHAR, rank VARCHAR)", "question": "What is the biggest number of females where the males are at 28.2 with a rank greater than 5?" }
### QUESTION Which astrological sign has the Latin motto of Vita? ### CONTEXT CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR) ### ANSWER SELECT sign FROM table_name_21 WHERE latin_motto = "vita"
{ "answer": "SELECT sign FROM table_name_21 WHERE latin_motto = \"vita\"", "context": "CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR)", "question": "Which astrological sign has the Latin motto of Vita?" }
### QUESTION Which New/Returning/Same Network has a Retitled as/Same of same, and a Last Aired larger than 1984? ### CONTEXT CREATE TABLE table_name_8 (new_returning_same_network VARCHAR, retitled_as_same VARCHAR, last_aired VARCHAR) ### ANSWER SELECT new_returning_same_network FROM table_name_8 WHERE retitled_as_same = "same" AND last_aired > 1984
{ "answer": "SELECT new_returning_same_network FROM table_name_8 WHERE retitled_as_same = \"same\" AND last_aired > 1984", "context": "CREATE TABLE table_name_8 (new_returning_same_network VARCHAR, retitled_as_same VARCHAR, last_aired VARCHAR)", "question": "Which New/Returning/Same Network has a Retitled as/Same of same, and a Last Aired larger than 1984?" }
### QUESTION what is the highest ANSI code with a latitude more than 47.623288 and a geo id more than 3805508060 with land (sqmi) more than 35.66 and a longitude less than -102.054248 ### CONTEXT CREATE TABLE table_name_98 (ansi_code INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR, latitude VARCHAR, geo_id VARCHAR) ### ANSWER SELECT MAX(ansi_code) FROM table_name_98 WHERE latitude > 47.623288 AND geo_id > 3805508060 AND land___sqmi__ > 35.66 AND longitude < -102.054248
{ "answer": "SELECT MAX(ansi_code) FROM table_name_98 WHERE latitude > 47.623288 AND geo_id > 3805508060 AND land___sqmi__ > 35.66 AND longitude < -102.054248", "context": "CREATE TABLE table_name_98 (ansi_code INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR, latitude VARCHAR, geo_id VARCHAR)", "question": "what is the highest ANSI code with a latitude more than 47.623288 and a geo id more than 3805508060 with land (sqmi) more than 35.66 and a longitude less than -102.054248" }
### QUESTION How many accelerators are not compatible with the browsers listed ? ### CONTEXT CREATE TABLE accelerator_compatible_browser (id VARCHAR, accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, accelerator_id VARCHAR) ### ANSWER SELECT COUNT(*) FROM web_client_accelerator WHERE NOT id IN (SELECT accelerator_id FROM accelerator_compatible_browser)
{ "answer": "SELECT COUNT(*) FROM web_client_accelerator WHERE NOT id IN (SELECT accelerator_id FROM accelerator_compatible_browser)", "context": "CREATE TABLE accelerator_compatible_browser (id VARCHAR, accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, accelerator_id VARCHAR)", "question": "How many accelerators are not compatible with the browsers listed ?" }
### QUESTION size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number? ### CONTEXT CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) ### ANSWER SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = "28:27" AND just__cents_ > 62.96
{ "answer": "SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = \"28:27\" AND just__cents_ > 62.96", "context": "CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)", "question": "size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number?" }
### QUESTION What county has a CERCLIS ID of scd037405362? ### CONTEXT CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR) ### ANSWER SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362"
{ "answer": "SELECT county FROM table_name_64 WHERE cerclis_id = \"scd037405362\"", "context": "CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR)", "question": "What county has a CERCLIS ID of scd037405362?" }
### QUESTION Which elementary schools list Cort Monroe as the principal from 2013 to 2014? ### CONTEXT CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR) ### ANSWER SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Monroe"
{ "answer": "SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = \"Cort Monroe\"", "context": "CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR)", "question": "Which elementary schools list Cort Monroe as the principal from 2013 to 2014?" }
### QUESTION What was the enrollment (2005) for baccalaureate colleges , for Granite State College? ### CONTEXT CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, type VARCHAR, school VARCHAR) ### ANSWER SELECT enrollment__2005_ FROM table_2076490_1 WHERE type = "Baccalaureate college" AND school = "Granite State College"
{ "answer": "SELECT enrollment__2005_ FROM table_2076490_1 WHERE type = \"Baccalaureate college\" AND school = \"Granite State College\"", "context": "CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, type VARCHAR, school VARCHAR)", "question": "What was the enrollment (2005) for baccalaureate colleges , for Granite State College?" }
### QUESTION Where is il-36β located? ### CONTEXT CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR) ### ANSWER SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-36β"
{ "answer": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-36β\"", "context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)", "question": "Where is il-36β located?" }
### QUESTION What team draft a player from Canada that was picked #43 and plays right wing? ### CONTEXT CREATE TABLE table_name_59 (nhl_team VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR) ### ANSWER SELECT nhl_team FROM table_name_59 WHERE nationality = "canada" AND position = "right wing" AND pick__number = "43"
{ "answer": "SELECT nhl_team FROM table_name_59 WHERE nationality = \"canada\" AND position = \"right wing\" AND pick__number = \"43\"", "context": "CREATE TABLE table_name_59 (nhl_team VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)", "question": "What team draft a player from Canada that was picked #43 and plays right wing?" }
### QUESTION What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters? ### CONTEXT CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (name VARCHAR, architect_id VARCHAR); CREATE TABLE bridge (architect_id VARCHAR, length_meters INTEGER) ### ANSWER SELECT DISTINCT T1.name FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id JOIN bridge AS T3 ON T3.architect_id = T2.id WHERE T3.length_meters > 80
{ "answer": "SELECT DISTINCT T1.name FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id JOIN bridge AS T3 ON T3.architect_id = T2.id WHERE T3.length_meters > 80", "context": "CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (name VARCHAR, architect_id VARCHAR); CREATE TABLE bridge (architect_id VARCHAR, length_meters INTEGER)", "question": "What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters?" }
### QUESTION Find the number of members of club "Pen and Paper Gaming". ### CONTEXT CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR) ### ANSWER SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Pen and Paper Gaming"
{ "answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Pen and Paper Gaming\"", "context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR)", "question": "Find the number of members of club \"Pen and Paper Gaming\"." }
### QUESTION I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16 ### CONTEXT CREATE TABLE table_name_3 (ties VARCHAR, lost VARCHAR, win__percentage VARCHAR, tenure VARCHAR) ### ANSWER SELECT COUNT(ties) FROM table_name_3 WHERE win__percentage > 0 AND tenure = "2001-2011" AND lost > 16
{ "answer": "SELECT COUNT(ties) FROM table_name_3 WHERE win__percentage > 0 AND tenure = \"2001-2011\" AND lost > 16", "context": "CREATE TABLE table_name_3 (ties VARCHAR, lost VARCHAR, win__percentage VARCHAR, tenure VARCHAR)", "question": "I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16" }
### QUESTION What was the crowd size for the game where Footscray was the away team? ### CONTEXT CREATE TABLE table_name_21 (crowd VARCHAR, away_team VARCHAR) ### ANSWER SELECT COUNT(crowd) FROM table_name_21 WHERE away_team = "footscray"
{ "answer": "SELECT COUNT(crowd) FROM table_name_21 WHERE away_team = \"footscray\"", "context": "CREATE TABLE table_name_21 (crowd VARCHAR, away_team VARCHAR)", "question": "What was the crowd size for the game where Footscray was the away team?" }
### QUESTION Name the total number of high points for pepsi center 19,756 ### CONTEXT CREATE TABLE table_23284271_6 (high_points VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT COUNT(high_points) FROM table_23284271_6 WHERE location_attendance = "Pepsi Center 19,756"
{ "answer": "SELECT COUNT(high_points) FROM table_23284271_6 WHERE location_attendance = \"Pepsi Center 19,756\"", "context": "CREATE TABLE table_23284271_6 (high_points VARCHAR, location_attendance VARCHAR)", "question": "Name the total number of high points for pepsi center 19,756" }
### QUESTION What is the year leicester was established? ### CONTEXT CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR) ### ANSWER SELECT MAX(established) FROM table_142950_1 WHERE location = "Leicester"
{ "answer": "SELECT MAX(established) FROM table_142950_1 WHERE location = \"Leicester\"", "context": "CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR)", "question": "What is the year leicester was established?" }
### QUESTION What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2? ### CONTEXT CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR) ### ANSWER SELECT total FROM table_name_62 WHERE set_4 = "na" AND score = "3-0" AND set_2 = "26-24"
{ "answer": "SELECT total FROM table_name_62 WHERE set_4 = \"na\" AND score = \"3-0\" AND set_2 = \"26-24\"", "context": "CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)", "question": "What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?" }
### QUESTION When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors? ### CONTEXT CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR) ### ANSWER SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = "35.5"
{ "answer": "SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = \"35.5\"", "context": "CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR)", "question": "When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors?" }
### QUESTION Name the total number of SP+FS for places of 60 and points more than 151.66 ### CONTEXT CREATE TABLE table_name_28 (fs VARCHAR, sp VARCHAR, places VARCHAR, points VARCHAR) ### ANSWER SELECT COUNT(sp) + fs FROM table_name_28 WHERE places = 60 AND points > 151.66
{ "answer": "SELECT COUNT(sp) + fs FROM table_name_28 WHERE places = 60 AND points > 151.66", "context": "CREATE TABLE table_name_28 (fs VARCHAR, sp VARCHAR, places VARCHAR, points VARCHAR)", "question": "Name the total number of SP+FS for places of 60 and points more than 151.66" }
### QUESTION How many laps are associated with a grid greater than 8, under 11 points, and will power? ### CONTEXT CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR) ### ANSWER SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = "will power"
{ "answer": "SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = \"will power\"", "context": "CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR)", "question": "How many laps are associated with a grid greater than 8, under 11 points, and will power?" }
### QUESTION How many points have 500cc for the class, a win greater than 0, with a year after 1974? ### CONTEXT CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_77 WHERE class = "500cc" AND wins > 0 AND year > 1974
{ "answer": "SELECT SUM(points) FROM table_name_77 WHERE class = \"500cc\" AND wins > 0 AND year > 1974", "context": "CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR)", "question": "How many points have 500cc for the class, a win greater than 0, with a year after 1974?" }
### QUESTION How many to par has the winning score of 69-66-68=203. ### CONTEXT CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR) ### ANSWER SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203
{ "answer": "SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203", "context": "CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR)", "question": "How many to par has the winning score of 69-66-68=203." }
### QUESTION With a Primary military speciality of astral assault tactics, what is the Secondary military speciality? ### CONTEXT CREATE TABLE table_name_58 (secondary_military_speciality VARCHAR, primary_military_speciality VARCHAR) ### ANSWER SELECT secondary_military_speciality FROM table_name_58 WHERE primary_military_speciality = "astral assault tactics"
{ "answer": "SELECT secondary_military_speciality FROM table_name_58 WHERE primary_military_speciality = \"astral assault tactics\"", "context": "CREATE TABLE table_name_58 (secondary_military_speciality VARCHAR, primary_military_speciality VARCHAR)", "question": "With a Primary military speciality of astral assault tactics, what is the Secondary military speciality?" }
### QUESTION On what date did Universitario win the Torneo Apertura round after 2003 at Estadio Alejandro Villanueva? ### CONTEXT CREATE TABLE table_name_45 (date VARCHAR, winner VARCHAR, competition_round VARCHAR, venue VARCHAR, season VARCHAR) ### ANSWER SELECT date FROM table_name_45 WHERE venue = "estadio alejandro villanueva" AND season > 2003 AND competition_round = "torneo apertura" AND winner = "universitario"
{ "answer": "SELECT date FROM table_name_45 WHERE venue = \"estadio alejandro villanueva\" AND season > 2003 AND competition_round = \"torneo apertura\" AND winner = \"universitario\"", "context": "CREATE TABLE table_name_45 (date VARCHAR, winner VARCHAR, competition_round VARCHAR, venue VARCHAR, season VARCHAR)", "question": "On what date did Universitario win the Torneo Apertura round after 2003 at Estadio Alejandro Villanueva?" }
### QUESTION In which location did the Meca World Vale Tudo 6 event happen? ### CONTEXT CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR) ### ANSWER SELECT location FROM table_name_84 WHERE event = "meca world vale tudo 6"
{ "answer": "SELECT location FROM table_name_84 WHERE event = \"meca world vale tudo 6\"", "context": "CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)", "question": "In which location did the Meca World Vale Tudo 6 event happen?" }
### QUESTION List the names of products that are not in any event. ### CONTEXT CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_Name VARCHAR, Product_ID VARCHAR) ### ANSWER SELECT Product_Name FROM Products WHERE NOT Product_ID IN (SELECT Product_ID FROM Products_in_Events)
{ "answer": "SELECT Product_Name FROM Products WHERE NOT Product_ID IN (SELECT Product_ID FROM Products_in_Events)", "context": "CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_Name VARCHAR, Product_ID VARCHAR)", "question": "List the names of products that are not in any event." }
### QUESTION Show the names and genders of players with a coach starting after 2011. ### CONTEXT CREATE TABLE player (Player_name VARCHAR, gender VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR, Starting_year INTEGER); CREATE TABLE coach (Coach_ID VARCHAR) ### ANSWER SELECT T3.Player_name, T3.gender FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T1.Starting_year > 2011
{ "answer": "SELECT T3.Player_name, T3.gender FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T1.Starting_year > 2011", "context": "CREATE TABLE player (Player_name VARCHAR, gender VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR, Starting_year INTEGER); CREATE TABLE coach (Coach_ID VARCHAR)", "question": "Show the names and genders of players with a coach starting after 2011." }
### QUESTION What is the average price of the products for each category? ### CONTEXT CREATE TABLE products (product_category_code VARCHAR, product_price INTEGER) ### ANSWER SELECT AVG(product_price), product_category_code FROM products GROUP BY product_category_code
{ "answer": "SELECT AVG(product_price), product_category_code FROM products GROUP BY product_category_code", "context": "CREATE TABLE products (product_category_code VARCHAR, product_price INTEGER)", "question": "What is the average price of the products for each category?" }
### QUESTION Which study included autoimmune disease and inflammation? ### CONTEXT CREATE TABLE table_name_41 (name VARCHAR, indication VARCHAR) ### ANSWER SELECT name FROM table_name_41 WHERE indication = "autoimmune disease and inflammation"
{ "answer": "SELECT name FROM table_name_41 WHERE indication = \"autoimmune disease and inflammation\"", "context": "CREATE TABLE table_name_41 (name VARCHAR, indication VARCHAR)", "question": "Which study included autoimmune disease and inflammation?" }
### QUESTION What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15? ### CONTEXT CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, team VARCHAR) ### ANSWER SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = "paulistano" AND against < 15
{ "answer": "SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = \"paulistano\" AND against < 15", "context": "CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, team VARCHAR)", "question": "What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?" }
### QUESTION Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28? ### CONTEXT CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR) ### ANSWER SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND profits__billion_$_ = 19.28
{ "answer": "SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = \"oil and gas\" AND profits__billion_$_ = 19.28", "context": "CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR)", "question": "Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28?" }
### QUESTION Who is the womens doubles on the tour french super series? ### CONTEXT CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR) ### ANSWER SELECT womens_doubles FROM table_27753492_2 WHERE tour = "French Super Series"
{ "answer": "SELECT womens_doubles FROM table_27753492_2 WHERE tour = \"French Super Series\"", "context": "CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR)", "question": "Who is the womens doubles on the tour french super series?" }
### QUESTION When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA? ### CONTEXT CREATE TABLE table_name_66 (date VARCHAR, location VARCHAR, casualties VARCHAR, circumstances VARCHAR) ### ANSWER SELECT date FROM table_name_66 WHERE casualties = "1 wia" AND circumstances = "ied" AND location = "15km nw of pol-e khomri"
{ "answer": "SELECT date FROM table_name_66 WHERE casualties = \"1 wia\" AND circumstances = \"ied\" AND location = \"15km nw of pol-e khomri\"", "context": "CREATE TABLE table_name_66 (date VARCHAR, location VARCHAR, casualties VARCHAR, circumstances VARCHAR)", "question": "When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA?" }
### QUESTION What is the rank of the film directed by Kevin Costner? ### CONTEXT CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR) ### ANSWER SELECT COUNT(rank) FROM table_name_14 WHERE director = "kevin costner"
{ "answer": "SELECT COUNT(rank) FROM table_name_14 WHERE director = \"kevin costner\"", "context": "CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR)", "question": "What is the rank of the film directed by Kevin Costner?" }
### QUESTION Who is the player from the Buffalo Braves with the previous team Los Angeles Lakers and a career with the franchase in 1970? ### CONTEXT CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, previous_team VARCHAR, career_with_the_franchise_ VARCHAR, b_ VARCHAR) ### ANSWER SELECT player FROM table_name_89 WHERE team = "buffalo braves" AND previous_team = "los angeles lakers" AND career_with_the_franchise_[b_] = "1970"
{ "answer": "SELECT player FROM table_name_89 WHERE team = \"buffalo braves\" AND previous_team = \"los angeles lakers\" AND career_with_the_franchise_[b_] = \"1970\"", "context": "CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, previous_team VARCHAR, career_with_the_franchise_ VARCHAR, b_ VARCHAR)", "question": "Who is the player from the Buffalo Braves with the previous team Los Angeles Lakers and a career with the franchase in 1970?" }
### QUESTION Which MWEHL team has player Ben Johnson? ### CONTEXT CREATE TABLE table_name_29 (mwehl_team VARCHAR, player VARCHAR) ### ANSWER SELECT mwehl_team FROM table_name_29 WHERE player = "ben johnson"
{ "answer": "SELECT mwehl_team FROM table_name_29 WHERE player = \"ben johnson\"", "context": "CREATE TABLE table_name_29 (mwehl_team VARCHAR, player VARCHAR)", "question": "Which MWEHL team has player Ben Johnson?" }
### QUESTION Find the name of persons who are friends with Bob. ### CONTEXT CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) ### ANSWER SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob'
{ "answer": "SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob'", "context": "CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)", "question": "Find the name of persons who are friends with Bob." }
### QUESTION What is the total number of ends after 2006 with a nationality of ita and 0 goals? ### CONTEXT CREATE TABLE table_name_39 (ends VARCHAR, goals VARCHAR, since VARCHAR, nat VARCHAR) ### ANSWER SELECT COUNT(ends) FROM table_name_39 WHERE since > 2006 AND nat = "ita" AND goals < 0
{ "answer": "SELECT COUNT(ends) FROM table_name_39 WHERE since > 2006 AND nat = \"ita\" AND goals < 0", "context": "CREATE TABLE table_name_39 (ends VARCHAR, goals VARCHAR, since VARCHAR, nat VARCHAR)", "question": "What is the total number of ends after 2006 with a nationality of ita and 0 goals?" }
### QUESTION What is the name of the episode that was written by Scott M. Gimple? ### CONTEXT CREATE TABLE table_27450976_1 (title VARCHAR, written_by VARCHAR) ### ANSWER SELECT title FROM table_27450976_1 WHERE written_by = "Scott M. Gimple"
{ "answer": "SELECT title FROM table_27450976_1 WHERE written_by = \"Scott M. Gimple\"", "context": "CREATE TABLE table_27450976_1 (title VARCHAR, written_by VARCHAR)", "question": "What is the name of the episode that was written by Scott M. Gimple?" }
### QUESTION Please give me a list of cities whose regional population is over 8000000 or under 5000000. ### CONTEXT CREATE TABLE city (city VARCHAR, regional_population INTEGER) ### ANSWER SELECT city FROM city WHERE regional_population > 10000000 UNION SELECT city FROM city WHERE regional_population < 5000000
{ "answer": "SELECT city FROM city WHERE regional_population > 10000000 UNION SELECT city FROM city WHERE regional_population < 5000000", "context": "CREATE TABLE city (city VARCHAR, regional_population INTEGER)", "question": "Please give me a list of cities whose regional population is over 8000000 or under 5000000." }
### QUESTION What was the result of the game against the Miami Dolphins held at the Riverfront Stadium? ### CONTEXT CREATE TABLE table_name_46 (result VARCHAR, location VARCHAR, opponent VARCHAR) ### ANSWER SELECT result FROM table_name_46 WHERE location = "riverfront stadium" AND opponent = "miami dolphins"
{ "answer": "SELECT result FROM table_name_46 WHERE location = \"riverfront stadium\" AND opponent = \"miami dolphins\"", "context": "CREATE TABLE table_name_46 (result VARCHAR, location VARCHAR, opponent VARCHAR)", "question": "What was the result of the game against the Miami Dolphins held at the Riverfront Stadium?" }
### QUESTION What was the average speed (mph) for the racer who finished in 1:45:00? ### CONTEXT CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR) ### ANSWER SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = "1:45:00"
{ "answer": "SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = \"1:45:00\"", "context": "CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)", "question": "What was the average speed (mph) for the racer who finished in 1:45:00?" }
### QUESTION What's the reserved number for constituency number 108? ### CONTEXT CREATE TABLE table_name_43 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR) ### ANSWER SELECT reserved_for___sc___st__none_ FROM table_name_43 WHERE constituency_number = "108"
{ "answer": "SELECT reserved_for___sc___st__none_ FROM table_name_43 WHERE constituency_number = \"108\"", "context": "CREATE TABLE table_name_43 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)", "question": "What's the reserved number for constituency number 108?" }
### QUESTION What is Cabinet, when Year is before 2001, when Lijsttrekker is "No Elections", when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "S. Van Der Loo"? ### CONTEXT CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR) ### ANSWER SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = "no elections" AND fractievoorzitter = "hans van mierlo" AND chair = "s. van der loo"
{ "answer": "SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = \"no elections\" AND fractievoorzitter = \"hans van mierlo\" AND chair = \"s. van der loo\"", "context": "CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR)", "question": "What is Cabinet, when Year is before 2001, when Lijsttrekker is \"No Elections\", when Fractievoorzitter is \"Hans Van Mierlo\", and when Chair is \"S. Van Der Loo\"?" }
### QUESTION Which school is in the hometown of Aledo, Texas? ### CONTEXT CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR) ### ANSWER SELECT school FROM table_11677691_5 WHERE hometown = "Aledo, Texas"
{ "answer": "SELECT school FROM table_11677691_5 WHERE hometown = \"Aledo, Texas\"", "context": "CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR)", "question": "Which school is in the hometown of Aledo, Texas?" }
### QUESTION What Marisa Monte song choice was song during top 5? ### CONTEXT CREATE TABLE table_27614707_1 (song_choice VARCHAR, week__number VARCHAR, original_artist VARCHAR) ### ANSWER SELECT song_choice FROM table_27614707_1 WHERE week__number = "Top 5" AND original_artist = "Marisa Monte"
{ "answer": "SELECT song_choice FROM table_27614707_1 WHERE week__number = \"Top 5\" AND original_artist = \"Marisa Monte\"", "context": "CREATE TABLE table_27614707_1 (song_choice VARCHAR, week__number VARCHAR, original_artist VARCHAR)", "question": "What Marisa Monte song choice was song during top 5?" }
### QUESTION Name the number of Earnings per share (¢) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010? ### CONTEXT CREATE TABLE table_name_38 (earnings_per_share__ VARCHAR, net_profit__us_$m_ VARCHAR, year_to_april VARCHAR) ### ANSWER SELECT COUNT(earnings_per_share__) AS ¢_ FROM table_name_38 WHERE net_profit__us_$m_ > 66 AND year_to_april < 2010
{ "answer": "SELECT COUNT(earnings_per_share__) AS ¢_ FROM table_name_38 WHERE net_profit__us_$m_ > 66 AND year_to_april < 2010", "context": "CREATE TABLE table_name_38 (earnings_per_share__ VARCHAR, net_profit__us_$m_ VARCHAR, year_to_april VARCHAR)", "question": "Name the number of Earnings per share (¢) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010?" }
### QUESTION What is the code for a Le Haut-Saint-Laurent municipality that has 16 or more regions? ### CONTEXT CREATE TABLE table_name_14 (code INTEGER, regional_county_municipality VARCHAR, region VARCHAR) ### ANSWER SELECT MIN(code) FROM table_name_14 WHERE regional_county_municipality = "le haut-saint-laurent" AND region > 16
{ "answer": "SELECT MIN(code) FROM table_name_14 WHERE regional_county_municipality = \"le haut-saint-laurent\" AND region > 16", "context": "CREATE TABLE table_name_14 (code INTEGER, regional_county_municipality VARCHAR, region VARCHAR)", "question": "What is the code for a Le Haut-Saint-Laurent municipality that has 16 or more regions?" }
### QUESTION What was the gender of the contestant on RR: South Pacific season? ### CONTEXT CREATE TABLE table_18974269_1 (gender VARCHAR, original_season VARCHAR) ### ANSWER SELECT gender FROM table_18974269_1 WHERE original_season = "RR: South Pacific"
{ "answer": "SELECT gender FROM table_18974269_1 WHERE original_season = \"RR: South Pacific\"", "context": "CREATE TABLE table_18974269_1 (gender VARCHAR, original_season VARCHAR)", "question": "What was the gender of the contestant on RR: South Pacific season?" }
### QUESTION What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66? ### CONTEXT CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR) ### ANSWER SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = "nguyen huy thanh ( vie )" AND qiangshu > 9.66
{ "answer": "SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = \"nguyen huy thanh ( vie )\" AND qiangshu > 9.66", "context": "CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR)", "question": "What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?" }
### QUESTION What was the score for the South American Championship dated December 13, 1925? ### CONTEXT CREATE TABLE table_name_40 (result VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT result FROM table_name_40 WHERE competition = "south american championship" AND date = "december 13, 1925"
{ "answer": "SELECT result FROM table_name_40 WHERE competition = \"south american championship\" AND date = \"december 13, 1925\"", "context": "CREATE TABLE table_name_40 (result VARCHAR, competition VARCHAR, date VARCHAR)", "question": "What was the score for the South American Championship dated December 13, 1925?" }
### QUESTION List the forename and surname of all distinct drivers who once had laptime less than 93000 milliseconds? ### CONTEXT CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE laptimes (driverid VARCHAR, milliseconds INTEGER) ### ANSWER SELECT DISTINCT T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds < 93000
{ "answer": "SELECT DISTINCT T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds < 93000", "context": "CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE laptimes (driverid VARCHAR, milliseconds INTEGER)", "question": "List the forename and surname of all distinct drivers who once had laptime less than 93000 milliseconds?" }
### QUESTION Count the lowest Year which has gas explosion, Colliery of tylorstown colliery, and a Death toll larger than 57? ### CONTEXT CREATE TABLE table_name_15 (year INTEGER, death_toll VARCHAR, cause VARCHAR, colliery VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_15 WHERE cause = "gas explosion" AND colliery = "tylorstown colliery" AND death_toll > 57
{ "answer": "SELECT MIN(year) FROM table_name_15 WHERE cause = \"gas explosion\" AND colliery = \"tylorstown colliery\" AND death_toll > 57", "context": "CREATE TABLE table_name_15 (year INTEGER, death_toll VARCHAR, cause VARCHAR, colliery VARCHAR)", "question": "Count the lowest Year which has gas explosion, Colliery of tylorstown colliery, and a Death toll larger than 57?" }
### QUESTION What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage. ### CONTEXT CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR) ### ANSWER SELECT issue_price FROM table_name_46 WHERE artist = "john mardon" AND year = 2000 AND mintage = "included in steam buggy"
{ "answer": "SELECT issue_price FROM table_name_46 WHERE artist = \"john mardon\" AND year = 2000 AND mintage = \"included in steam buggy\"", "context": "CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR)", "question": "What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage." }
### QUESTION What NHL team was the player from Calgary Centennials (WCHL) drafted for? ### CONTEXT CREATE TABLE table_1965650_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR) ### ANSWER SELECT nhl_team FROM table_1965650_11 WHERE college_junior_club_team = "Calgary Centennials (WCHL)"
{ "answer": "SELECT nhl_team FROM table_1965650_11 WHERE college_junior_club_team = \"Calgary Centennials (WCHL)\"", "context": "CREATE TABLE table_1965650_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR)", "question": "What NHL team was the player from Calgary Centennials (WCHL) drafted for?" }
### QUESTION What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre? ### CONTEXT CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR) ### ANSWER SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = "group" AND finish = "bagnères-de-bigorre"
{ "answer": "SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = \"group\" AND finish = \"bagnères-de-bigorre\"", "context": "CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR)", "question": "What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?" }
### QUESTION Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert? ### CONTEXT CREATE TABLE table_name_58 (ice_level_reporters VARCHAR, year VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR) ### ANSWER SELECT ice_level_reporters FROM table_name_58 WHERE color_commentator_s_ = "john davidson" AND play_by_play = "marv albert" AND year > 1992
{ "answer": "SELECT ice_level_reporters FROM table_name_58 WHERE color_commentator_s_ = \"john davidson\" AND play_by_play = \"marv albert\" AND year > 1992", "context": "CREATE TABLE table_name_58 (ice_level_reporters VARCHAR, year VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR)", "question": "Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert?" }