text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
Which team plays at Lake Oval?
### CONTEXT
CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team FROM table_name_39 WHERE venue = "lake oval" | {
"answer": "SELECT home_team FROM table_name_39 WHERE venue = \"lake oval\"",
"context": "CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)",
"question": "Which team plays at Lake Oval?"
} |
### QUESTION
What was the first season for Syrianska FC
### CONTEXT
CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR)
### ANSWER
SELECT first_season FROM table_1560673_1 WHERE club = "Syrianska FC" | {
"answer": "SELECT first_season FROM table_1560673_1 WHERE club = \"Syrianska FC\"",
"context": "CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR)",
"question": "What was the first season for Syrianska FC"
} |
### QUESTION
Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado
### CONTEXT
CREATE TABLE table_name_80 (score VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR)
### ANSWER
SELECT score FROM table_name_80 WHERE decision = "dipietro" AND visitor = "ny islanders" AND home = "colorado" | {
"answer": "SELECT score FROM table_name_80 WHERE decision = \"dipietro\" AND visitor = \"ny islanders\" AND home = \"colorado\"",
"context": "CREATE TABLE table_name_80 (score VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR)",
"question": "Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado"
} |
### QUESTION
What Venue had Carlton has the Away team?
### CONTEXT
CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)
### ANSWER
SELECT venue FROM table_name_29 WHERE away_team = "carlton" | {
"answer": "SELECT venue FROM table_name_29 WHERE away_team = \"carlton\"",
"context": "CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)",
"question": "What Venue had Carlton has the Away team?"
} |
### QUESTION
Which Bronze has a Nation of argentina, and a Silver smaller than 0?
### CONTEXT
CREATE TABLE table_name_28 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
### ANSWER
SELECT AVG(bronze) FROM table_name_28 WHERE nation = "argentina" AND silver < 0 | {
"answer": "SELECT AVG(bronze) FROM table_name_28 WHERE nation = \"argentina\" AND silver < 0",
"context": "CREATE TABLE table_name_28 (bronze INTEGER, nation VARCHAR, silver VARCHAR)",
"question": "Which Bronze has a Nation of argentina, and a Silver smaller than 0?"
} |
### QUESTION
Name the years in orlando that the player from concord hs was in
### CONTEXT
CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, school_club_team VARCHAR)
### ANSWER
SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = "Concord HS" | {
"answer": "SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = \"Concord HS\"",
"context": "CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, school_club_team VARCHAR)",
"question": "Name the years in orlando that the player from concord hs was in"
} |
### QUESTION
What is the high loss total for players with zero wins and a win % greater than 0?
### CONTEXT
CREATE TABLE table_name_82 (losses INTEGER, wins VARCHAR, win__percentage VARCHAR)
### ANSWER
SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0 | {
"answer": "SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0",
"context": "CREATE TABLE table_name_82 (losses INTEGER, wins VARCHAR, win__percentage VARCHAR)",
"question": "What is the high loss total for players with zero wins and a win % greater than 0?"
} |
### QUESTION
What position does the player from the Miami University (CCHA) club team play?
### CONTEXT
CREATE TABLE table_name_20 (position VARCHAR, club_team VARCHAR)
### ANSWER
SELECT position FROM table_name_20 WHERE club_team = "miami university (ccha)" | {
"answer": "SELECT position FROM table_name_20 WHERE club_team = \"miami university (ccha)\"",
"context": "CREATE TABLE table_name_20 (position VARCHAR, club_team VARCHAR)",
"question": "What position does the player from the Miami University (CCHA) club team play?"
} |
### QUESTION
What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?
### CONTEXT
CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs" | {
"answer": "SELECT MIN(_number) FROM table_15647838_3 WHERE location = \"Atlanta, GA\" AND opponent = \"Georgia Bulldogs\"",
"context": "CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR)",
"question": "What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?"
} |
### QUESTION
What was the home team's score at junction oval?
### CONTEXT
CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_17 WHERE venue = "junction oval" | {
"answer": "SELECT home_team AS score FROM table_name_17 WHERE venue = \"junction oval\"",
"context": "CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)",
"question": "What was the home team's score at junction oval?"
} |
### QUESTION
What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5?
### CONTEXT
CREATE TABLE table_name_30 (storage_stability INTEGER, field_stability VARCHAR, toxicity_as_blood_agent VARCHAR, agent VARCHAR)
### ANSWER
SELECT MIN(storage_stability) FROM table_name_30 WHERE toxicity_as_blood_agent > 8 AND agent = "arsine" AND field_stability < 5 | {
"answer": "SELECT MIN(storage_stability) FROM table_name_30 WHERE toxicity_as_blood_agent > 8 AND agent = \"arsine\" AND field_stability < 5",
"context": "CREATE TABLE table_name_30 (storage_stability INTEGER, field_stability VARCHAR, toxicity_as_blood_agent VARCHAR, agent VARCHAR)",
"question": "What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5?"
} |
### QUESTION
IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?
### CONTEXT
CREATE TABLE table_1566852_3 (date VARCHAR, interview_subject VARCHAR)
### ANSWER
SELECT COUNT(date) FROM table_1566852_3 WHERE interview_subject = "Harrison Ford" | {
"answer": "SELECT COUNT(date) FROM table_1566852_3 WHERE interview_subject = \"Harrison Ford\"",
"context": "CREATE TABLE table_1566852_3 (date VARCHAR, interview_subject VARCHAR)",
"question": "IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?"
} |
### QUESTION
Tell me the object type which has an apparent magnitude more than 10.6 and declination of °44′07″
### CONTEXT
CREATE TABLE table_name_28 (object_type VARCHAR, apparent_magnitude VARCHAR, declination___j2000__ VARCHAR)
### ANSWER
SELECT object_type FROM table_name_28 WHERE apparent_magnitude > 10.6 AND declination___j2000__ = "°44′07″" | {
"answer": "SELECT object_type FROM table_name_28 WHERE apparent_magnitude > 10.6 AND declination___j2000__ = \"°44′07″\"",
"context": "CREATE TABLE table_name_28 (object_type VARCHAR, apparent_magnitude VARCHAR, declination___j2000__ VARCHAR)",
"question": "Tell me the object type which has an apparent magnitude more than 10.6 and declination of °44′07″"
} |
### QUESTION
Tell me the declination with apparent magnitude more than 10.4 and NGC number of 5112
### CONTEXT
CREATE TABLE table_name_12 (declination___j2000__ VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR)
### ANSWER
SELECT declination___j2000__ FROM table_name_12 WHERE apparent_magnitude > 10.4 AND ngc_number = 5112 | {
"answer": "SELECT declination___j2000__ FROM table_name_12 WHERE apparent_magnitude > 10.4 AND ngc_number = 5112",
"context": "CREATE TABLE table_name_12 (declination___j2000__ VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR)",
"question": "Tell me the declination with apparent magnitude more than 10.4 and NGC number of 5112"
} |
### QUESTION
What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model?
### CONTEXT
CREATE TABLE table_1566852_6 (centerfold_model VARCHAR)
### ANSWER
SELECT 20 AS _questions FROM table_1566852_6 WHERE centerfold_model = "Jillian Grace" | {
"answer": "SELECT 20 AS _questions FROM table_1566852_6 WHERE centerfold_model = \"Jillian Grace\"",
"context": "CREATE TABLE table_1566852_6 (centerfold_model VARCHAR)",
"question": "What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model?"
} |
### QUESTION
What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?
### CONTEXT
CREATE TABLE table_name_17 (_percentage_of_pop INTEGER, country__or_dependent_territory_ VARCHAR, average_relative_annual_growth___percentage_ VARCHAR)
### ANSWER
SELECT AVG(_percentage_of_pop) FROM table_name_17 WHERE country__or_dependent_territory_ = "tunisia" AND average_relative_annual_growth___percentage_ < 1.03 | {
"answer": "SELECT AVG(_percentage_of_pop) FROM table_name_17 WHERE country__or_dependent_territory_ = \"tunisia\" AND average_relative_annual_growth___percentage_ < 1.03",
"context": "CREATE TABLE table_name_17 (_percentage_of_pop INTEGER, country__or_dependent_territory_ VARCHAR, average_relative_annual_growth___percentage_ VARCHAR)",
"question": "What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?"
} |
### QUESTION
what rank has viewers at 6.45?
### CONTEXT
CREATE TABLE table_15681686_4 (rank__week_ VARCHAR, viewers__millions_ VARCHAR)
### ANSWER
SELECT rank__week_ FROM table_15681686_4 WHERE viewers__millions_ = "6.45" | {
"answer": "SELECT rank__week_ FROM table_15681686_4 WHERE viewers__millions_ = \"6.45\"",
"context": "CREATE TABLE table_15681686_4 (rank__week_ VARCHAR, viewers__millions_ VARCHAR)",
"question": "what rank has viewers at 6.45?"
} |
### QUESTION
what is the total number of rank where viewers is 9.38?
### CONTEXT
CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR)
### ANSWER
SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = "9.38" | {
"answer": "SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = \"9.38\"",
"context": "CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR)",
"question": "what is the total number of rank where viewers is 9.38?"
} |
### QUESTION
Where is the service pattern sydenham then fast to norwood junction?
### CONTEXT
CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR)
### ANSWER
SELECT destination FROM table_1569516_1 WHERE service_pattern = "Sydenham then fast to Norwood Junction" | {
"answer": "SELECT destination FROM table_1569516_1 WHERE service_pattern = \"Sydenham then fast to Norwood Junction\"",
"context": "CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR)",
"question": "Where is the service pattern sydenham then fast to norwood junction?"
} |
### QUESTION
What city is the lamar tower 1, ranked above 5?
### CONTEXT
CREATE TABLE table_name_87 (city VARCHAR, rank VARCHAR, name VARCHAR)
### ANSWER
SELECT city FROM table_name_87 WHERE rank < 5 AND name = "lamar tower 1" | {
"answer": "SELECT city FROM table_name_87 WHERE rank < 5 AND name = \"lamar tower 1\"",
"context": "CREATE TABLE table_name_87 (city VARCHAR, rank VARCHAR, name VARCHAR)",
"question": "What city is the lamar tower 1, ranked above 5?"
} |
### QUESTION
Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274
### CONTEXT
CREATE TABLE table_1569625_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = "3 strokes" AND winning_score = 71 - 66 - 70 - 67 = 274 | {
"answer": "SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = \"3 strokes\" AND winning_score = 71 - 66 - 70 - 67 = 274",
"context": "CREATE TABLE table_1569625_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)",
"question": "Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274"
} |
### QUESTION
How many laps did antônio pizzonia do?
### CONTEXT
CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR)
### ANSWER
SELECT COUNT(laps) FROM table_name_32 WHERE driver = "antônio pizzonia" | {
"answer": "SELECT COUNT(laps) FROM table_name_32 WHERE driver = \"antônio pizzonia\"",
"context": "CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR)",
"question": "How many laps did antônio pizzonia do?"
} |
### QUESTION
What is the constructor for time/retired of handling?
### CONTEXT
CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT constructor FROM table_name_99 WHERE time_retired = "handling" | {
"answer": "SELECT constructor FROM table_name_99 WHERE time_retired = \"handling\"",
"context": "CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR)",
"question": "What is the constructor for time/retired of handling?"
} |
### QUESTION
What is the highest round of a player from Sweden who plays right wing?
### CONTEXT
CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR)
### ANSWER
SELECT MAX(round) FROM table_name_59 WHERE nationality = "sweden" AND position = "right wing" | {
"answer": "SELECT MAX(round) FROM table_name_59 WHERE nationality = \"sweden\" AND position = \"right wing\"",
"context": "CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR)",
"question": "What is the highest round of a player from Sweden who plays right wing?"
} |
### QUESTION
who won the kansas state game on 11/26/1988
### CONTEXT
CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR)
### ANSWER
SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = "11/26/1988" | {
"answer": "SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = \"11/26/1988\"",
"context": "CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR)",
"question": "who won the kansas state game on 11/26/1988"
} |
### QUESTION
What was the final episode credited of 187?
### CONTEXT
CREATE TABLE table_name_72 (final_episode VARCHAR, episodes_credited VARCHAR)
### ANSWER
SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187 | {
"answer": "SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187",
"context": "CREATE TABLE table_name_72 (final_episode VARCHAR, episodes_credited VARCHAR)",
"question": "What was the final episode credited of 187?"
} |
### QUESTION
Name the poll winner for march 19, 2008
### CONTEXT
CREATE TABLE table_15781170_2 (poll_winner VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT COUNT(poll_winner) FROM table_15781170_2 WHERE original_air_date = "March 19, 2008" | {
"answer": "SELECT COUNT(poll_winner) FROM table_15781170_2 WHERE original_air_date = \"March 19, 2008\"",
"context": "CREATE TABLE table_15781170_2 (poll_winner VARCHAR, original_air_date VARCHAR)",
"question": "Name the poll winner for march 19, 2008"
} |
### QUESTION
Who was the original artist for week number Top 16 (8 women)?
### CONTEXT
CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR)
### ANSWER
SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)" | {
"answer": "SELECT original_artist FROM table_15796072_1 WHERE week__number = \"Top 16 (8 Women)\"",
"context": "CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR)",
"question": "Who was the original artist for week number Top 16 (8 women)?"
} |
### QUESTION
How many laps had a grid of greater than 17 and retired due to collision?
### CONTEXT
CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT SUM(laps) FROM table_name_99 WHERE grid > 17 AND time_retired = "collision" | {
"answer": "SELECT SUM(laps) FROM table_name_99 WHERE grid > 17 AND time_retired = \"collision\"",
"context": "CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)",
"question": "How many laps had a grid of greater than 17 and retired due to collision?"
} |
### QUESTION
Who was the original artist when the order number is 9?
### CONTEXT
CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR)
### ANSWER
SELECT original_artist FROM table_15796072_1 WHERE order__number = "9" | {
"answer": "SELECT original_artist FROM table_15796072_1 WHERE order__number = \"9\"",
"context": "CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR)",
"question": "Who was the original artist when the order number is 9?"
} |
### QUESTION
Which week has a Kickoff time of 1:00 with a record of 4-5-1?
### CONTEXT
CREATE TABLE table_name_85 (week VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)
### ANSWER
SELECT week FROM table_name_85 WHERE kickoff_[a_] = "1:00" AND record = "4-5-1" | {
"answer": "SELECT week FROM table_name_85 WHERE kickoff_[a_] = \"1:00\" AND record = \"4-5-1\"",
"context": "CREATE TABLE table_name_85 (week VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)",
"question": "Which week has a Kickoff time of 1:00 with a record of 4-5-1?"
} |
### QUESTION
What season began on december 5, 1953?
### CONTEXT
CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR)
### ANSWER
SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = "December 5, 1953" | {
"answer": "SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = \"December 5, 1953\"",
"context": "CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR)",
"question": "What season began on december 5, 1953?"
} |
### QUESTION
What is the title of the first episode of the season that begin on february 27, 1954?
### CONTEXT
CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954" | {
"answer": "SELECT title FROM table_15824796_3 WHERE original_air_date = \"February 27, 1954\"",
"context": "CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)",
"question": "What is the title of the first episode of the season that begin on february 27, 1954?"
} |
### QUESTION
Name the minimum enrollment for montana tech of the university of montana
### CONTEXT
CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR)
### ANSWER
SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = "Montana Tech of the University of Montana" | {
"answer": "SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = \"Montana Tech of the University of Montana\"",
"context": "CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR)",
"question": "Name the minimum enrollment for montana tech of the university of montana"
} |
### QUESTION
What was the away team score, when the away team was Fitzroy?
### CONTEXT
CREATE TABLE table_name_32 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_32 WHERE away_team = "fitzroy" | {
"answer": "SELECT away_team AS score FROM table_name_32 WHERE away_team = \"fitzroy\"",
"context": "CREATE TABLE table_name_32 (away_team VARCHAR)",
"question": "What was the away team score, when the away team was Fitzroy?"
} |
### QUESTION
What is the content of la7 television service?
### CONTEXT
CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)
### ANSWER
SELECT content FROM table_15887683_1 WHERE television_service = "LA7" | {
"answer": "SELECT content FROM table_15887683_1 WHERE television_service = \"LA7\"",
"context": "CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)",
"question": "What is the content of la7 television service?"
} |
### QUESTION
What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131?
### CONTEXT
CREATE TABLE table_name_16 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, team__league_ VARCHAR)
### ANSWER
SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = "seattle thunderbirds" AND pick__number < 131 | {
"answer": "SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = \"seattle thunderbirds\" AND pick__number < 131",
"context": "CREATE TABLE table_name_16 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, team__league_ VARCHAR)",
"question": "What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131?"
} |
### QUESTION
Name the content for sky famiglia for italian and dar 16:9 for mtv hits
### CONTEXT
CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR)
### ANSWER
SELECT content FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND language = "Italian" AND dar = "16:9" AND television_service = "MTV Hits" | {
"answer": "SELECT content FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND language = \"Italian\" AND dar = \"16:9\" AND television_service = \"MTV Hits\"",
"context": "CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR)",
"question": "Name the content for sky famiglia for italian and dar 16:9 for mtv hits"
} |
### QUESTION
Name the ppv for sky famiglia and dar 16:9 for mtv dance
### CONTEXT
CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR)
### ANSWER
SELECT ppv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "MTV Dance" | {
"answer": "SELECT ppv FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND dar = \"16:9\" AND television_service = \"MTV Dance\"",
"context": "CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR)",
"question": "Name the ppv for sky famiglia and dar 16:9 for mtv dance"
} |
### QUESTION
Name the dar for telenord
### CONTEXT
CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR)
### ANSWER
SELECT dar FROM table_15887683_17 WHERE television_service = "Telenord" | {
"answer": "SELECT dar FROM table_15887683_17 WHERE television_service = \"Telenord\"",
"context": "CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR)",
"question": "Name the dar for telenord"
} |
### QUESTION
How many pages were in the book by Stefano D'Arrigo?
### CONTEXT
CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR)
### ANSWER
SELECT page_count FROM table_name_39 WHERE author = "stefano d'arrigo" | {
"answer": "SELECT page_count FROM table_name_39 WHERE author = \"stefano d'arrigo\"",
"context": "CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR)",
"question": "How many pages were in the book by Stefano D'Arrigo?"
} |
### QUESTION
What packages offer the Cartello Promozionale Sky HD service?
### CONTEXT
CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)
### ANSWER
SELECT package_option FROM table_15887683_3 WHERE television_service = "Cartello promozionale Sky HD" | {
"answer": "SELECT package_option FROM table_15887683_3 WHERE television_service = \"Cartello promozionale Sky HD\"",
"context": "CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)",
"question": "What packages offer the Cartello Promozionale Sky HD service?"
} |
### QUESTION
What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?
### CONTEXT
CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR)
### ANSWER
SELECT n° FROM table_15887683_5 WHERE package_option = "Sky Cinema" AND content = "cinema" AND television_service = "Sky Cinema" + 24 | {
"answer": "SELECT n° FROM table_15887683_5 WHERE package_option = \"Sky Cinema\" AND content = \"cinema\" AND television_service = \"Sky Cinema\" + 24",
"context": "CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR)",
"question": "What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?"
} |
### QUESTION
What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?
### CONTEXT
CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)" | {
"answer": "SELECT location_attendance FROM table_name_49 WHERE high_rebounds = \"a. horford (10)\" AND high_points = \"j. johnson (21)\"",
"context": "CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR)",
"question": "What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?"
} |
### QUESTION
Name the total number of dar for disney channel and number is 613
### CONTEXT
CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR)
### ANSWER
SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = "Disney Channel" AND n° = 613 | {
"answer": "SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = \"Disney Channel\" AND n° = 613",
"context": "CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR)",
"question": "Name the total number of dar for disney channel and number is 613"
} |
### QUESTION
Name the country when dar is 16:9 for italian english for disney xd +2
### CONTEXT
CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR)
### ANSWER
SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television_service = "Disney XD +2" | {
"answer": "SELECT country FROM table_15887683_9 WHERE dar = \"16:9\" AND language = \"Italian English\" AND television_service = \"Disney XD +2\"",
"context": "CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR)",
"question": "Name the country when dar is 16:9 for italian english for disney xd +2"
} |
### QUESTION
I want the country for score of 274 and runner-up of virginie lagoutte-clément
### CONTEXT
CREATE TABLE table_name_93 (country VARCHAR, score VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT country FROM table_name_93 WHERE score = "274" AND runner_s__up = "virginie lagoutte-clément" | {
"answer": "SELECT country FROM table_name_93 WHERE score = \"274\" AND runner_s__up = \"virginie lagoutte-clément\"",
"context": "CREATE TABLE table_name_93 (country VARCHAR, score VARCHAR, runner_s__up VARCHAR)",
"question": "I want the country for score of 274 and runner-up of virginie lagoutte-clément"
} |
### QUESTION
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?
### CONTEXT
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
### ANSWER
SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)" | {
"answer": "SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"2040(93%)\"",
"context": "CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)",
"question": "What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?"
} |
### QUESTION
How many countries had a per capita withdrawal (m 3 /p/yr) of 372?
### CONTEXT
CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR)
### ANSWER
SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372 | {
"answer": "SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372",
"context": "CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR)",
"question": "How many countries had a per capita withdrawal (m 3 /p/yr) of 372?"
} |
### QUESTION
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?
### CONTEXT
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
### ANSWER
SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)" | {
"answer": "SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"428(62%)\"",
"context": "CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)",
"question": "How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?"
} |
### QUESTION
In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?
### CONTEXT
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
### ANSWER
SELECT total_freshwater_withdrawal__km_3__yr_ FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "1029(96%)" | {
"answer": "SELECT total_freshwater_withdrawal__km_3__yr_ FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"1029(96%)\"",
"context": "CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)",
"question": "In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?"
} |
### QUESTION
When did the tom smith built train enter service with a number under 7007?
### CONTEXT
CREATE TABLE table_name_73 (entered_service INTEGER, builder VARCHAR, number VARCHAR)
### ANSWER
SELECT AVG(entered_service) FROM table_name_73 WHERE builder = "tom smith" AND number < 7007 | {
"answer": "SELECT AVG(entered_service) FROM table_name_73 WHERE builder = \"tom smith\" AND number < 7007",
"context": "CREATE TABLE table_name_73 (entered_service INTEGER, builder VARCHAR, number VARCHAR)",
"question": "When did the tom smith built train enter service with a number under 7007?"
} |
### QUESTION
What is the D 42 when the D 50 is d 31?
### CONTEXT
CREATE TABLE table_name_17 (d_42 VARCHAR, d_50 VARCHAR)
### ANSWER
SELECT d_42 FROM table_name_17 WHERE d_50 = "d 31" | {
"answer": "SELECT d_42 FROM table_name_17 WHERE d_50 = \"d 31\"",
"context": "CREATE TABLE table_name_17 (d_42 VARCHAR, d_50 VARCHAR)",
"question": "What is the D 42 when the D 50 is d 31?"
} |
### QUESTION
What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?
### CONTEXT
CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)
### ANSWER
SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423 | {
"answer": "SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423",
"context": "CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)",
"question": "What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?"
} |
### QUESTION
what is the yard name when the ship types delivered is n3 type, v4 type and the total vessels built for usmc is 13 ships for usmc?
### CONTEXT
CREATE TABLE table_name_19 (yard_name VARCHAR, ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)
### ANSWER
SELECT yard_name FROM table_name_19 WHERE ship_types_delivered = "n3 type, v4 type" AND total_vessels_built_for_usmc = "13 ships for usmc" | {
"answer": "SELECT yard_name FROM table_name_19 WHERE ship_types_delivered = \"n3 type, v4 type\" AND total_vessels_built_for_usmc = \"13 ships for usmc\"",
"context": "CREATE TABLE table_name_19 (yard_name VARCHAR, ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)",
"question": "what is the yard name when the ship types delivered is n3 type, v4 type and the total vessels built for usmc is 13 ships for usmc?"
} |
### QUESTION
what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)?
### CONTEXT
CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)
### ANSWER
SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = "13 ships for usmc (plus 37 more for usn)" | {
"answer": "SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = \"13 ships for usmc (plus 37 more for usn)\"",
"context": "CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)",
"question": "what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)?"
} |
### QUESTION
Name the centennial for 1992 akimel
### CONTEXT
CREATE TABLE table_15977768_1 (centennial VARCHAR, akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river VARCHAR)
### ANSWER
SELECT centennial FROM table_15977768_1 WHERE akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river = "1992" | {
"answer": "SELECT centennial FROM table_15977768_1 WHERE akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river = \"1992\"",
"context": "CREATE TABLE table_15977768_1 (centennial VARCHAR, akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river VARCHAR)",
"question": "Name the centennial for 1992 akimel"
} |
### QUESTION
How many chapters did Elmer Clifton direct?
### CONTEXT
CREATE TABLE table_name_86 (chapters VARCHAR, director VARCHAR)
### ANSWER
SELECT COUNT(chapters) FROM table_name_86 WHERE director = "elmer clifton" | {
"answer": "SELECT COUNT(chapters) FROM table_name_86 WHERE director = \"elmer clifton\"",
"context": "CREATE TABLE table_name_86 (chapters VARCHAR, director VARCHAR)",
"question": "How many chapters did Elmer Clifton direct?"
} |
### QUESTION
Name the number of team for 35 runs margin and india winner
### CONTEXT
CREATE TABLE table_1594772_2 (team__b_ VARCHAR, margin VARCHAR, winner VARCHAR)
### ANSWER
SELECT COUNT(team__b_) FROM table_1594772_2 WHERE margin = "35 runs" AND winner = "India" | {
"answer": "SELECT COUNT(team__b_) FROM table_1594772_2 WHERE margin = \"35 runs\" AND winner = \"India\"",
"context": "CREATE TABLE table_1594772_2 (team__b_ VARCHAR, margin VARCHAR, winner VARCHAR)",
"question": "Name the number of team for 35 runs margin and india winner"
} |
### QUESTION
What is the annual inflation % when GDP per capita in ppp US$ is 24505 in 2012?
### CONTEXT
CREATE TABLE table_1598533_8 (inflation__percentage_annual__2012_ VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR)
### ANSWER
SELECT inflation__percentage_annual__2012_ FROM table_1598533_8 WHERE gdp_per_capita_in_ppp_us$__2012_ = 24505 | {
"answer": "SELECT inflation__percentage_annual__2012_ FROM table_1598533_8 WHERE gdp_per_capita_in_ppp_us$__2012_ = 24505",
"context": "CREATE TABLE table_1598533_8 (inflation__percentage_annual__2012_ VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR)",
"question": "What is the annual inflation % when GDP per capita in ppp US$ is 24505 in 2012?"
} |
### QUESTION
What is the average of the Series #s that were directed by Matthew Penn?
### CONTEXT
CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR)
### ANSWER
SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = "matthew penn" | {
"answer": "SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = \"matthew penn\"",
"context": "CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR)",
"question": "What is the average of the Series #s that were directed by Matthew Penn?"
} |
### QUESTION
How many first downs did the bills have when their opponent had 6
### CONTEXT
CREATE TABLE table_16028459_2 (bills_first_downs INTEGER, opponents VARCHAR)
### ANSWER
SELECT MIN(bills_first_downs) FROM table_16028459_2 WHERE opponents = 6 | {
"answer": "SELECT MIN(bills_first_downs) FROM table_16028459_2 WHERE opponents = 6",
"context": "CREATE TABLE table_16028459_2 (bills_first_downs INTEGER, opponents VARCHAR)",
"question": "How many first downs did the bills have when their opponent had 6"
} |
### QUESTION
How many points did the bills score when their opponent had 14
### CONTEXT
CREATE TABLE table_16028459_2 (bills_points VARCHAR, opponents VARCHAR)
### ANSWER
SELECT bills_points FROM table_16028459_2 WHERE opponents = 14 | {
"answer": "SELECT bills_points FROM table_16028459_2 WHERE opponents = 14",
"context": "CREATE TABLE table_16028459_2 (bills_points VARCHAR, opponents VARCHAR)",
"question": "How many points did the bills score when their opponent had 14"
} |
### QUESTION
Which model was made from 2001–2004, with a Torque of n·m (lb·ft) @ 3750, and an Engine code of n42b18 / n46b18?
### CONTEXT
CREATE TABLE table_name_72 (model VARCHAR, engine_code VARCHAR, years VARCHAR, torque VARCHAR)
### ANSWER
SELECT model FROM table_name_72 WHERE years = "2001–2004" AND torque = "n·m (lb·ft) @ 3750" AND engine_code = "n42b18 / n46b18" | {
"answer": "SELECT model FROM table_name_72 WHERE years = \"2001–2004\" AND torque = \"n·m (lb·ft) @ 3750\" AND engine_code = \"n42b18 / n46b18\"",
"context": "CREATE TABLE table_name_72 (model VARCHAR, engine_code VARCHAR, years VARCHAR, torque VARCHAR)",
"question": "Which model was made from 2001–2004, with a Torque of n·m (lb·ft) @ 3750, and an Engine code of n42b18 / n46b18?"
} |
### QUESTION
Which stadium has a payout of $3 million?
### CONTEXT
CREATE TABLE table_16046689_29 (stadium VARCHAR, payout___us$__ VARCHAR)
### ANSWER
SELECT stadium FROM table_16046689_29 WHERE payout___us$__ = "$3 Million" | {
"answer": "SELECT stadium FROM table_16046689_29 WHERE payout___us$__ = \"$3 Million\"",
"context": "CREATE TABLE table_16046689_29 (stadium VARCHAR, payout___us$__ VARCHAR)",
"question": "Which stadium has a payout of $3 million?"
} |
### QUESTION
What is the total number of regions where the average family size is 2.8?
### CONTEXT
CREATE TABLE table_16048129_5 (_percentage_of_total_deportees VARCHAR, average_family_size VARCHAR)
### ANSWER
SELECT COUNT(_percentage_of_total_deportees) FROM table_16048129_5 WHERE average_family_size = "2.8" | {
"answer": "SELECT COUNT(_percentage_of_total_deportees) FROM table_16048129_5 WHERE average_family_size = \"2.8\"",
"context": "CREATE TABLE table_16048129_5 (_percentage_of_total_deportees VARCHAR, average_family_size VARCHAR)",
"question": "What is the total number of regions where the average family size is 2.8?"
} |
### QUESTION
Name the population density people where population % eu for 1.7%
### CONTEXT
CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR)
### ANSWER
SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = "1.7%" | {
"answer": "SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = \"1.7%\"",
"context": "CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR)",
"question": "Name the population density people where population % eu for 1.7%"
} |
### QUESTION
Name the population % of eu for greece
### CONTEXT
CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR)
### ANSWER
SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = "Greece" | {
"answer": "SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = \"Greece\"",
"context": "CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR)",
"question": "Name the population % of eu for greece"
} |
### QUESTION
Who is the player that plays position f from Fort Wayne Pistons?
### CONTEXT
CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, position VARCHAR)
### ANSWER
SELECT player FROM table_name_89 WHERE team = "fort wayne pistons" AND position = "f" | {
"answer": "SELECT player FROM table_name_89 WHERE team = \"fort wayne pistons\" AND position = \"f\"",
"context": "CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, position VARCHAR)",
"question": "Who is the player that plays position f from Fort Wayne Pistons?"
} |
### QUESTION
How many episodes have a share bigger than 7.0?
### CONTEXT
CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER)
### ANSWER
SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0 | {
"answer": "SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0",
"context": "CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER)",
"question": "How many episodes have a share bigger than 7.0?"
} |
### QUESTION
Name the height in feet for the guard from north carolina-charlotte
### CONTEXT
CREATE TABLE table_name_35 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR)
### ANSWER
SELECT height_in_ft FROM table_name_35 WHERE position = "guard" AND school_club_team_country = "north carolina-charlotte" | {
"answer": "SELECT height_in_ft FROM table_name_35 WHERE position = \"guard\" AND school_club_team_country = \"north carolina-charlotte\"",
"context": "CREATE TABLE table_name_35 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR)",
"question": "Name the height in feet for the guard from north carolina-charlotte"
} |
### QUESTION
Name the height in ft for the player from wyoming
### CONTEXT
CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
### ANSWER
SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = "wyoming" | {
"answer": "SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = \"wyoming\"",
"context": "CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR)",
"question": "Name the height in ft for the player from wyoming"
} |
### QUESTION
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California?
### CONTEXT
CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR)
### ANSWER
SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE alaska___juneau__ = "90 g/mi (56 g/km)" AND california__san_francisco_ = "110 g/mi (68 g/km)" | {
"answer": "SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE alaska___juneau__ = \"90 g/mi (56 g/km)\" AND california__san_francisco_ = \"110 g/mi (68 g/km)\"",
"context": "CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR)",
"question": "What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California?"
} |
### 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 was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ?
### CONTEXT
CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR)
### ANSWER
SELECT california__san_francisco_ FROM table_16105186_2 WHERE alaska___juneau__ = "80 g/mi (50 g/km)" AND southeast__atlanta_ = "250 g/mi (155 g/km)" | {
"answer": "SELECT california__san_francisco_ FROM table_16105186_2 WHERE alaska___juneau__ = \"80 g/mi (50 g/km)\" AND southeast__atlanta_ = \"250 g/mi (155 g/km)\"",
"context": "CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR)",
"question": "What was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ?"
} |
### QUESTION
In what year did a car have a yamaha v12 engine and a brabham bt60y chassis
### CONTEXT
CREATE TABLE table_name_70 (year VARCHAR, engine VARCHAR, chassis VARCHAR)
### ANSWER
SELECT year FROM table_name_70 WHERE engine = "yamaha v12" AND chassis = "brabham bt60y" | {
"answer": "SELECT year FROM table_name_70 WHERE engine = \"yamaha v12\" AND chassis = \"brabham bt60y\"",
"context": "CREATE TABLE table_name_70 (year VARCHAR, engine VARCHAR, chassis VARCHAR)",
"question": "In what year did a car have a yamaha v12 engine and a brabham bt60y chassis"
} |
### QUESTION
Name the simplified charaacters being hsin-yüan … i-ma
### CONTEXT
CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR)
### ANSWER
SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = "hsin-yüan … i-ma" | {
"answer": "SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = \"hsin-yüan … i-ma\"",
"context": "CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR)",
"question": "Name the simplified charaacters being hsin-yüan … i-ma"
} |
### QUESTION
Name the total number of pinyin for hsin-yüan-i-ma
### CONTEXT
CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR)
### ANSWER
SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = "hsin-yüan-i-ma" | {
"answer": "SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = \"hsin-yüan-i-ma\"",
"context": "CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR)",
"question": "Name the total number of pinyin for hsin-yüan-i-ma"
} |
### QUESTION
Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52?
### CONTEXT
CREATE TABLE table_name_70 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)
### ANSWER
SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52 | {
"answer": "SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52",
"context": "CREATE TABLE table_name_70 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)",
"question": "Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52?"
} |
### QUESTION
How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?
### CONTEXT
CREATE TABLE table_name_96 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR)
### ANSWER
SELECT SUM(average) FROM table_name_96 WHERE swimsuit = 8.42 AND evening_gown < 8.71 | {
"answer": "SELECT SUM(average) FROM table_name_96 WHERE swimsuit = 8.42 AND evening_gown < 8.71",
"context": "CREATE TABLE table_name_96 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR)",
"question": "How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?"
} |
### QUESTION
Who was the opponent during the competition in which the bowling figures were 5-33 (10)?
### CONTEXT
CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR)
### ANSWER
SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = "5-33 (10)" | {
"answer": "SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = \"5-33 (10)\"",
"context": "CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR)",
"question": "Who was the opponent during the competition in which the bowling figures were 5-33 (10)?"
} |
### QUESTION
How many tournament wins were at Volvo Masters Andalucia?
### CONTEXT
CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR)
### ANSWER
SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia" | {
"answer": "SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = \"Volvo Masters Andalucia\"",
"context": "CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR)",
"question": "How many tournament wins were at Volvo Masters Andalucia?"
} |
### QUESTION
During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures?
### CONTEXT
CREATE TABLE table_name_43 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR, versus VARCHAR)
### ANSWER
SELECT bowling_figures_wickets_runs__overs_ FROM table_name_43 WHERE venue = "port elizabeth" AND versus = "australia" | {
"answer": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_43 WHERE venue = \"port elizabeth\" AND versus = \"australia\"",
"context": "CREATE TABLE table_name_43 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR, versus VARCHAR)",
"question": "During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures?"
} |
### QUESTION
What is the lowest amount of floors after rank 1 in the Trillium (residential) building?
### CONTEXT
CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR)
### ANSWER
SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = "the trillium (residential)" | {
"answer": "SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = \"the trillium (residential)\"",
"context": "CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR)",
"question": "What is the lowest amount of floors after rank 1 in the Trillium (residential) building?"
} |
### QUESTION
What is the sum of Sylvain Guintoli's laps?
### CONTEXT
CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR)
### ANSWER
SELECT SUM(laps) FROM table_name_8 WHERE rider = "sylvain guintoli" | {
"answer": "SELECT SUM(laps) FROM table_name_8 WHERE rider = \"sylvain guintoli\"",
"context": "CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR)",
"question": "What is the sum of Sylvain Guintoli's laps?"
} |
### QUESTION
What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?
### CONTEXT
CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR)
### ANSWER
SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "6 children" AND allowed_recipients = "no data" | {
"answer": "SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = \"6 children\" AND allowed_recipients = \"no data\"",
"context": "CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR)",
"question": "What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?"
} |
### QUESTION
What is the country where there are 8 children per donor and no data for donor payments?
### CONTEXT
CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR)
### ANSWER
SELECT country FROM table_16175217_1 WHERE children_per_donor = "8 children" AND donor_payment = "no data" | {
"answer": "SELECT country FROM table_16175217_1 WHERE children_per_donor = \"8 children\" AND donor_payment = \"no data\"",
"context": "CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR)",
"question": "What is the country where there are 8 children per donor and no data for donor payments?"
} |
### QUESTION
What are the children per donor in the country where the allowed recipients are married or in cohabitation?
### CONTEXT
CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)
### ANSWER
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or in cohabitation" | {
"answer": "SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = \"Married or in cohabitation\"",
"context": "CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)",
"question": "What are the children per donor in the country where the allowed recipients are married or in cohabitation?"
} |
### QUESTION
Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?
### CONTEXT
CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR)
### ANSWER
SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = "MU, 2-1" | {
"answer": "SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = \"MU, 2-1\"",
"context": "CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR)",
"question": "Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?"
} |
### QUESTION
What report happened on 22 september?
### CONTEXT
CREATE TABLE table_name_25 (report VARCHAR, date VARCHAR)
### ANSWER
SELECT report FROM table_name_25 WHERE date = "22 september" | {
"answer": "SELECT report FROM table_name_25 WHERE date = \"22 september\"",
"context": "CREATE TABLE table_name_25 (report VARCHAR, date VARCHAR)",
"question": "What report happened on 22 september?"
} |
### QUESTION
Which report has a Winning driver of peter collins, and a Circuit of syracuse?
### CONTEXT
CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
### ANSWER
SELECT report FROM table_name_33 WHERE winning_driver = "peter collins" AND circuit = "syracuse" | {
"answer": "SELECT report FROM table_name_33 WHERE winning_driver = \"peter collins\" AND circuit = \"syracuse\"",
"context": "CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR)",
"question": "Which report has a Winning driver of peter collins, and a Circuit of syracuse?"
} |
### QUESTION
When the stamp duty reserve tax is 3,669 what is the percentage over gdp?
### CONTEXT
CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR)
### ANSWER
SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = "3,669" | {
"answer": "SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = \"3,669\"",
"context": "CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR)",
"question": "When the stamp duty reserve tax is 3,669 what is the percentage over gdp?"
} |
### QUESTION
What is the date of birth of the player that has 11 caps and plays the prop position?
### CONTEXT
CREATE TABLE table_name_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR)
### ANSWER
SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = "prop" | {
"answer": "SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = \"prop\"",
"context": "CREATE TABLE table_name_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR)",
"question": "What is the date of birth of the player that has 11 caps and plays the prop position?"
} |
### QUESTION
What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?
### CONTEXT
CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)
### ANSWER
SELECT position FROM table_name_47 WHERE club_province = "newcastle" AND caps < 24 AND player = "toby flood" | {
"answer": "SELECT position FROM table_name_47 WHERE club_province = \"newcastle\" AND caps < 24 AND player = \"toby flood\"",
"context": "CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)",
"question": "What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?"
} |
### QUESTION
What was the winning team with the 8,132 final attendance?
### CONTEXT
CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR)
### ANSWER
SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = "8,132" | {
"answer": "SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = \"8,132\"",
"context": "CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR)",
"question": "What was the winning team with the 8,132 final attendance?"
} |
### QUESTION
Who are the finals opponents for the match with partner Ricardo Hocevar?
### CONTEXT
CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR)
### ANSWER
SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = "ricardo hocevar" | {
"answer": "SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = \"ricardo hocevar\"",
"context": "CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR)",
"question": "Who are the finals opponents for the match with partner Ricardo Hocevar?"
} |
### QUESTION
When did Episode 29 (7) originally air?
### CONTEXT
CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR)
### ANSWER
SELECT original_airdate FROM table_name_65 WHERE episode__number = "29 (7)" | {
"answer": "SELECT original_airdate FROM table_name_65 WHERE episode__number = \"29 (7)\"",
"context": "CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR)",
"question": "When did Episode 29 (7) originally air?"
} |
### QUESTION
Name the most number for new england blazers
### CONTEXT
CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR)
### ANSWER
SELECT MAX(_number) FROM table_16227492_1 WHERE opponent = "New England Blazers" | {
"answer": "SELECT MAX(_number) FROM table_16227492_1 WHERE opponent = \"New England Blazers\"",
"context": "CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR)",
"question": "Name the most number for new england blazers"
} |
### QUESTION
What is the opening day net gross a Reliance Entertainment movie before 2011 had?
### CONTEXT
CREATE TABLE table_name_90 (opening_day_net_gross INTEGER, studio_s_ VARCHAR, year VARCHAR)
### ANSWER
SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = "reliance entertainment" AND year < 2011 | {
"answer": "SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = \"reliance entertainment\" AND year < 2011",
"context": "CREATE TABLE table_name_90 (opening_day_net_gross INTEGER, studio_s_ VARCHAR, year VARCHAR)",
"question": "What is the opening day net gross a Reliance Entertainment movie before 2011 had?"
} |
### QUESTION
What is the population density of the Capital Region of Denmark?
### CONTEXT
CREATE TABLE table_16278602_1 (pop_density__per_km²_ VARCHAR, english_name VARCHAR)
### ANSWER
SELECT pop_density__per_km²_ FROM table_16278602_1 WHERE english_name = "Capital Region of Denmark" | {
"answer": "SELECT pop_density__per_km²_ FROM table_16278602_1 WHERE english_name = \"Capital Region of Denmark\"",
"context": "CREATE TABLE table_16278602_1 (pop_density__per_km²_ VARCHAR, english_name VARCHAR)",
"question": "What is the population density of the Capital Region of Denmark?"
} |
Subsets and Splits