text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is Player, when To Par is "+1", when Country is "United States", and when Score is "71-70=141"?
### CONTEXT
CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_32 WHERE to_par = "+1" AND country = "united states" AND score = 71 - 70 = 141</s> | {
"answer": "SELECT player FROM table_name_32 WHERE to_par = \"+1\" AND country = \"united states\" AND score = 71 - 70 = 141",
"context": "CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, score VARCHAR)",
"question": "What is Player, when To Par is \"+1\", when Country is \"United States\", and when Score is \"71-70=141\"?"
} |
### QUESTION
What is Score, when Place is "T8", and when Player is "Orville Moody"?
### CONTEXT
CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR)
### ANSWER
SELECT score FROM table_name_40 WHERE place = "t8" AND player = "orville moody"</s> | {
"answer": "SELECT score FROM table_name_40 WHERE place = \"t8\" AND player = \"orville moody\"",
"context": "CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR)",
"question": "What is Score, when Place is \"T8\", and when Player is \"Orville Moody\"?"
} |
### QUESTION
WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER?
### CONTEXT
CREATE TABLE table_name_1 (result VARCHAR, category VARCHAR, year VARCHAR)
### ANSWER
SELECT result FROM table_name_1 WHERE category = "best urban/alternative performance" AND year > 2003</s> | {
"answer": "SELECT result FROM table_name_1 WHERE category = \"best urban/alternative performance\" AND year > 2003",
"context": "CREATE TABLE table_name_1 (result VARCHAR, category VARCHAR, year VARCHAR)",
"question": "WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER?"
} |
### QUESTION
WHAT IS THE TITLE WITH CATEGORY OF best r&b song?
### CONTEXT
CREATE TABLE table_name_95 (title VARCHAR, category VARCHAR)
### ANSWER
SELECT title FROM table_name_95 WHERE category = "best r&b song"</s> | {
"answer": "SELECT title FROM table_name_95 WHERE category = \"best r&b song\"",
"context": "CREATE TABLE table_name_95 (title VARCHAR, category VARCHAR)",
"question": "WHAT IS THE TITLE WITH CATEGORY OF best r&b song?"
} |
### QUESTION
WHAT IS THE RESULT FOR 2003, IN best urban/alternative performance?
### CONTEXT
CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR, category VARCHAR)
### ANSWER
SELECT result FROM table_name_79 WHERE year = 2003 AND category = "best urban/alternative performance"</s> | {
"answer": "SELECT result FROM table_name_79 WHERE year = 2003 AND category = \"best urban/alternative performance\"",
"context": "CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR, category VARCHAR)",
"question": "WHAT IS THE RESULT FOR 2003, IN best urban/alternative performance?"
} |
### QUESTION
what is the latitude of the feature of longitude 80.0e
### CONTEXT
CREATE TABLE table_16799784_7 (latitude VARCHAR, longitude VARCHAR)
### ANSWER
SELECT latitude FROM table_16799784_7 WHERE longitude = "80.0E"</s> | {
"answer": "SELECT latitude FROM table_16799784_7 WHERE longitude = \"80.0E\"",
"context": "CREATE TABLE table_16799784_7 (latitude VARCHAR, longitude VARCHAR)",
"question": "what is the latitude of the feature of longitude 80.0e"
} |
### QUESTION
what is the amount of profits in billions for companies with a market value of 204.9 billion?
### CONTEXT
CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)
### ANSWER
SELECT profits__billion_$_ FROM table_1682026_6 WHERE market_value__billion_$_ = "204.9"</s> | {
"answer": "SELECT profits__billion_$_ FROM table_1682026_6 WHERE market_value__billion_$_ = \"204.9\"",
"context": "CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)",
"question": "what is the amount of profits in billions for companies with a market value of 204.9 billion? "
} |
### QUESTION
What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions?
### CONTEXT
CREATE TABLE table_name_92 (rank VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR, assets__billion_$_ VARCHAR, industry VARCHAR)
### ANSWER
SELECT COUNT(rank) FROM table_name_92 WHERE assets__billion_$_ < 248.44 AND industry = "oil and gas" AND headquarters = "france" AND market_value__billion_$_ > 152.62</s> | {
"answer": "SELECT COUNT(rank) FROM table_name_92 WHERE assets__billion_$_ < 248.44 AND industry = \"oil and gas\" AND headquarters = \"france\" AND market_value__billion_$_ > 152.62",
"context": "CREATE TABLE table_name_92 (rank VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR, assets__billion_$_ VARCHAR, industry VARCHAR)",
"question": "What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions?"
} |
### QUESTION
What company has more than 195.34 billion in sales, ranked greater than 7, more than 11.29 billion in profits, and a market value greater than 198.14 billion?
### CONTEXT
CREATE TABLE table_name_62 (company VARCHAR, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR, sales__billion_$_ VARCHAR, rank VARCHAR)
### ANSWER
SELECT company FROM table_name_62 WHERE sales__billion_$_ > 195.34 AND rank > 7 AND profits__billion_$_ > 11.29 AND market_value__billion_$_ > 198.14</s> | {
"answer": "SELECT company FROM table_name_62 WHERE sales__billion_$_ > 195.34 AND rank > 7 AND profits__billion_$_ > 11.29 AND market_value__billion_$_ > 198.14",
"context": "CREATE TABLE table_name_62 (company VARCHAR, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR, sales__billion_$_ VARCHAR, rank VARCHAR)",
"question": "What company has more than 195.34 billion in sales, ranked greater than 7, more than 11.29 billion in profits, and a market value greater than 198.14 billion?"
} |
### QUESTION
Which college had a pick in a round under 7, with a pick number 13 and overall was under 186?
### CONTEXT
CREATE TABLE table_name_6 (college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR)
### ANSWER
SELECT college FROM table_name_6 WHERE round < 7 AND overall < 186 AND pick = 13</s> | {
"answer": "SELECT college FROM table_name_6 WHERE round < 7 AND overall < 186 AND pick = 13",
"context": "CREATE TABLE table_name_6 (college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR)",
"question": "Which college had a pick in a round under 7, with a pick number 13 and overall was under 186?"
} |
### QUESTION
What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo?
### CONTEXT
CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, sport VARCHAR, bronze VARCHAR, total VARCHAR)
### ANSWER
SELECT MIN(silver) FROM table_name_90 WHERE bronze < 20 AND total = 1 AND sport = "water polo" AND gold < 0</s> | {
"answer": "SELECT MIN(silver) FROM table_name_90 WHERE bronze < 20 AND total = 1 AND sport = \"water polo\" AND gold < 0",
"context": "CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, sport VARCHAR, bronze VARCHAR, total VARCHAR)",
"question": "What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo?"
} |
### QUESTION
When @ new orleans is the team who has the highest amount of rebounds?
### CONTEXT
CREATE TABLE table_17288825_6 (high_rebounds VARCHAR, team VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_17288825_6 WHERE team = "@ New Orleans"</s> | {
"answer": "SELECT high_rebounds FROM table_17288825_6 WHERE team = \"@ New Orleans\"",
"context": "CREATE TABLE table_17288825_6 (high_rebounds VARCHAR, team VARCHAR)",
"question": "When @ new orleans is the team who has the highest amount of rebounds?"
} |
### QUESTION
When aaron brooks (6) had the highest amount of assists what is the date?
### CONTEXT
CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)
### ANSWER
SELECT date FROM table_17288825_6 WHERE high_assists = "Aaron Brooks (6)"</s> | {
"answer": "SELECT date FROM table_17288825_6 WHERE high_assists = \"Aaron Brooks (6)\"",
"context": "CREATE TABLE table_17288825_6 (date VARCHAR, high_assists VARCHAR)",
"question": "When aaron brooks (6) had the highest amount of assists what is the date?"
} |
### QUESTION
Which Round has a College of arizona?
### CONTEXT
CREATE TABLE table_name_26 (round INTEGER, college VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_26 WHERE college = "arizona"</s> | {
"answer": "SELECT MIN(round) FROM table_name_26 WHERE college = \"arizona\"",
"context": "CREATE TABLE table_name_26 (round INTEGER, college VARCHAR)",
"question": "Which Round has a College of arizona?"
} |
### QUESTION
Name the total number of fin pos for 12 points of accident
### CONTEXT
CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = "12" AND time_retired = "Accident"</s> | {
"answer": "SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = \"12\" AND time_retired = \"Accident\"",
"context": "CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR)",
"question": "Name the total number of fin pos for 12 points of accident"
} |
### QUESTION
What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?
### CONTEXT
CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR)
### ANSWER
SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883</s> | {
"answer": "SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = \"new private sector banks\" AND on_site_atms > 1883",
"context": "CREATE TABLE table_name_42 (total_atms INTEGER, bank_type VARCHAR, on_site_atms VARCHAR)",
"question": "What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?"
} |
### QUESTION
Name the total number of score for staples center 13,266
### CONTEXT
CREATE TABLE table_17323529_5 (score VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT COUNT(score) FROM table_17323529_5 WHERE location_attendance = "Staples Center 13,266"</s> | {
"answer": "SELECT COUNT(score) FROM table_17323529_5 WHERE location_attendance = \"Staples Center 13,266\"",
"context": "CREATE TABLE table_17323529_5 (score VARCHAR, location_attendance VARCHAR)",
"question": "Name the total number of score for staples center 13,266"
} |
### QUESTION
What is Date, when Effect is "Shot Down", and when Place is "South of Stanley Airport"?
### CONTEXT
CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR)
### ANSWER
SELECT date FROM table_name_82 WHERE effect = "shot down" AND place = "south of stanley airport"</s> | {
"answer": "SELECT date FROM table_name_82 WHERE effect = \"shot down\" AND place = \"south of stanley airport\"",
"context": "CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR)",
"question": "What is Date, when Effect is \"Shot Down\", and when Place is \"South of Stanley Airport\"?"
} |
### QUESTION
Name the title that was written by r. scott gemmill
### CONTEXT
CREATE TABLE table_17356042_1 (title VARCHAR, written_by VARCHAR)
### ANSWER
SELECT title FROM table_17356042_1 WHERE written_by = "R. Scott Gemmill"</s> | {
"answer": "SELECT title FROM table_17356042_1 WHERE written_by = \"R. Scott Gemmill\"",
"context": "CREATE TABLE table_17356042_1 (title VARCHAR, written_by VARCHAR)",
"question": "Name the title that was written by r. scott gemmill"
} |
### QUESTION
List all losses with average goals of 1.21.
### CONTEXT
CREATE TABLE table_17366952_1 (lost VARCHAR, goal_average_1 VARCHAR)
### ANSWER
SELECT lost FROM table_17366952_1 WHERE goal_average_1 = "1.21"</s> | {
"answer": "SELECT lost FROM table_17366952_1 WHERE goal_average_1 = \"1.21\"",
"context": "CREATE TABLE table_17366952_1 (lost VARCHAR, goal_average_1 VARCHAR)",
"question": "List all losses with average goals of 1.21."
} |
### QUESTION
What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?
### CONTEXT
CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR)
### ANSWER
SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846</s> | {
"answer": "SELECT SUM(enrollment) FROM table_name_62 WHERE location = \"buffalo, new york\" AND affiliation = \"public\" AND founded > 1846",
"context": "CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR)",
"question": "What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?"
} |
### QUESTION
What year did Bangkok University and Chunnam Dragons have a score of 0-0?
### CONTEXT
CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR)
### ANSWER
SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons"</s> | {
"answer": "SELECT SUM(season) FROM table_name_31 WHERE team_1 = \"bangkok university\" AND score = \"0-0\" AND team_2 = \"chunnam dragons\"",
"context": "CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR)",
"question": "What year did Bangkok University and Chunnam Dragons have a score of 0-0?"
} |
### QUESTION
What is the transfer window for Christian Nerlinger?
### CONTEXT
CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR)
### ANSWER
SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger"</s> | {
"answer": "SELECT transfer_window FROM table_name_23 WHERE name = \"christian nerlinger\"",
"context": "CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR)",
"question": "What is the transfer window for Christian Nerlinger?"
} |
### QUESTION
Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?
### CONTEXT
CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR)
### ANSWER
SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100</s> | {
"answer": "SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = \"brytus\" AND rating < 100",
"context": "CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR)",
"question": "Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?"
} |
### QUESTION
Name the location for school eckstein
### CONTEXT
CREATE TABLE table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood VARCHAR, _does_not_necessary_correspond_with_attendance_area VARCHAR, school VARCHAR)
### ANSWER
SELECT location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area FROM table_17641314_3 WHERE school = "Eckstein"</s> | {
"answer": "SELECT location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area FROM table_17641314_3 WHERE school = \"Eckstein\"",
"context": "CREATE TABLE table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood VARCHAR, _does_not_necessary_correspond_with_attendance_area VARCHAR, school VARCHAR)",
"question": "Name the location for school eckstein"
} |
### QUESTION
Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m?
### CONTEXT
CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR)
### ANSWER
SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m"</s> | {
"answer": "SELECT name FROM table_name_70 WHERE aafc_team = \"los angeles dons\" AND position = \"fb\" AND college = \"oklahoma a&m\"",
"context": "CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR)",
"question": "Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m?"
} |
### QUESTION
Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?
### CONTEXT
CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
### ANSWER
SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)"</s> | {
"answer": "SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = \"swift current broncos (wchl)\"",
"context": "CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)",
"question": "Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?"
} |
### QUESTION
What day was the complete 2nd series: volume one released?
### CONTEXT
CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)
### ANSWER
SELECT date_released FROM table_17798548_4 WHERE season = "The Complete 2nd Series: Volume One"</s> | {
"answer": "SELECT date_released FROM table_17798548_4 WHERE season = \"The Complete 2nd Series: Volume One\"",
"context": "CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)",
"question": "What day was the complete 2nd series: volume one released?"
} |
### QUESTION
Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?
### CONTEXT
CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR)
### ANSWER
SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw"</s> | {
"answer": "SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = \"hamilton red wings (oha)\" AND position = \"rw\"",
"context": "CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR)",
"question": "Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?"
} |
### QUESTION
Name the least matches for runs being 276
### CONTEXT
CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)
### ANSWER
SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276</s> | {
"answer": "SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276",
"context": "CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)",
"question": "Name the least matches for runs being 276"
} |
### QUESTION
Which driver was in 8 rounds with a chassis of dallara f306?
### CONTEXT
CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
### ANSWER
SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8"</s> | {
"answer": "SELECT driver FROM table_name_57 WHERE chassis = \"dallara f306\" AND rounds = \"8\"",
"context": "CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)",
"question": "Which driver was in 8 rounds with a chassis of dallara f306?"
} |
### QUESTION
What is the chassis for Augusto Scalbi on Team RP Motorsport?
### CONTEXT
CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)
### ANSWER
SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi"</s> | {
"answer": "SELECT chassis FROM table_name_34 WHERE team = \"rp motorsport\" AND driver = \"augusto scalbi\"",
"context": "CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)",
"question": "What is the chassis for Augusto Scalbi on Team RP Motorsport?"
} |
### 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</s> | {
"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
What is the total brup for the team?
### CONTEXT
CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR)
### ANSWER
SELECT brup FROM table_18064020_21 WHERE name = "total"</s> | {
"answer": "SELECT brup FROM table_18064020_21 WHERE name = \"total\"",
"context": "CREATE TABLE table_18064020_21 (brup VARCHAR, name VARCHAR)",
"question": "What is the total brup for the team?"
} |
### QUESTION
How many yards for the player with tfl-yds of 2.5-4?
### CONTEXT
CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR)
### ANSWER
SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = "2.5-4"</s> | {
"answer": "SELECT no_yds FROM table_18064020_21 WHERE tfl_yds = \"2.5-4\"",
"context": "CREATE TABLE table_18064020_21 (no_yds VARCHAR, tfl_yds VARCHAR)",
"question": "How many yards for the player with tfl-yds of 2.5-4?"
} |
### QUESTION
What is the lowest rank of Gatwick Airport?
### CONTEXT
CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport"</s> | {
"answer": "SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = \"Gatwick Airport\"",
"context": "CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)",
"question": "What is the lowest rank of Gatwick Airport? "
} |
### QUESTION
What is the modern german standard wording for the german based writing system 2 phrase "wie mir die vergewwe wu uns schuldich sinn."?
### CONTEXT
CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR)
### ANSWER
SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = "wie mir die vergewwe wu uns schuldich sinn."</s> | {
"answer": "SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = \"wie mir die vergewwe wu uns schuldich sinn.\"",
"context": "CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR)",
"question": "What is the modern german standard wording for the german based writing system 2 phrase \"wie mir die vergewwe wu uns schuldich sinn.\"?"
} |
### QUESTION
What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western?
### CONTEXT
CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)
### ANSWER
SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Westlake/MacArthur Park to Wilshire/Western"</s> | {
"answer": "SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = \"Westlake/MacArthur Park to Wilshire/Western\"",
"context": "CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR)",
"question": "What is the lenth (miles) of endpoints westlake/macarthur park to wilshire/western?"
} |
### QUESTION
WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100?
### CONTEXT
CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR)
### ANSWER
SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100</s> | {
"answer": "SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100",
"context": "CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR)",
"question": "WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100?"
} |
### QUESTION
What was the game edition when they played on the clay (i) surface and the outcome was a winner?
### CONTEXT
CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)
### ANSWER
SELECT edition FROM table_18183850_12 WHERE surface = "Clay (i)" AND outcome = "Winner"</s> | {
"answer": "SELECT edition FROM table_18183850_12 WHERE surface = \"Clay (i)\" AND outcome = \"Winner\"",
"context": "CREATE TABLE table_18183850_12 (edition VARCHAR, surface VARCHAR, outcome VARCHAR)",
"question": "What was the game edition when they played on the clay (i) surface and the outcome was a winner?"
} |
### QUESTION
Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?
### CONTEXT
CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR)
### ANSWER
SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = "2004/2005" AND red_cards > 3</s> | {
"answer": "SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = \"2004/2005\" AND red_cards > 3",
"context": "CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR)",
"question": "Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?"
} |
### QUESTION
How many number of screenings have an opening film of the journey of vaan nguyen?
### CONTEXT
CREATE TABLE table_18220102_1 (number_of_screening VARCHAR, opening_film VARCHAR)
### ANSWER
SELECT COUNT(number_of_screening) FROM table_18220102_1 WHERE opening_film = "The Journey of Vaan Nguyen"</s> | {
"answer": "SELECT COUNT(number_of_screening) FROM table_18220102_1 WHERE opening_film = \"The Journey of Vaan Nguyen\"",
"context": "CREATE TABLE table_18220102_1 (number_of_screening VARCHAR, opening_film VARCHAR)",
"question": "How many number of screenings have an opening film of the journey of vaan nguyen?"
} |
### QUESTION
What series number garnered 20.64 million viewers?
### CONTEXT
CREATE TABLE table_18217750_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT series__number FROM table_18217750_1 WHERE us_viewers__millions_ = "20.64"</s> | {
"answer": "SELECT series__number FROM table_18217750_1 WHERE us_viewers__millions_ = \"20.64\"",
"context": "CREATE TABLE table_18217750_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)",
"question": "What series number garnered 20.64 million viewers?"
} |
### QUESTION
What date did Jatin Shah and Shalini Chandran perform?
### CONTEXT
CREATE TABLE table_18278508_2 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
### ANSWER
SELECT date_performed FROM table_18278508_2 WHERE main_contestant = "Jatin Shah" AND co_contestant__yaar_vs_pyaar_ = "Shalini Chandran"</s> | {
"answer": "SELECT date_performed FROM table_18278508_2 WHERE main_contestant = \"Jatin Shah\" AND co_contestant__yaar_vs_pyaar_ = \"Shalini Chandran\"",
"context": "CREATE TABLE table_18278508_2 (date_performed VARCHAR, main_contestant VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)",
"question": "What date did Jatin Shah and Shalini Chandran perform?"
} |
### QUESTION
Which round 5 Grand Prix had Daijiro Hiura at pole position?
### CONTEXT
CREATE TABLE table_18303274_1 (grand_prix VARCHAR, pole_position VARCHAR, round VARCHAR)
### ANSWER
SELECT grand_prix FROM table_18303274_1 WHERE pole_position = "Daijiro Hiura" AND round = 5</s> | {
"answer": "SELECT grand_prix FROM table_18303274_1 WHERE pole_position = \"Daijiro Hiura\" AND round = 5",
"context": "CREATE TABLE table_18303274_1 (grand_prix VARCHAR, pole_position VARCHAR, round VARCHAR)",
"question": "Which round 5 Grand Prix had Daijiro Hiura at pole position? "
} |
### QUESTION
What grand prixs did Daijiro Hiura win?
### CONTEXT
CREATE TABLE table_18303274_1 (grand_prix VARCHAR, race_winner VARCHAR)
### ANSWER
SELECT grand_prix FROM table_18303274_1 WHERE race_winner = "Daijiro Hiura"</s> | {
"answer": "SELECT grand_prix FROM table_18303274_1 WHERE race_winner = \"Daijiro Hiura\"",
"context": "CREATE TABLE table_18303274_1 (grand_prix VARCHAR, race_winner VARCHAR)",
"question": "What grand prixs did Daijiro Hiura win? "
} |
### QUESTION
What score won $36,090?
### CONTEXT
CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR)
### ANSWER
SELECT score FROM table_name_65 WHERE money___$__ = "36,090"</s> | {
"answer": "SELECT score FROM table_name_65 WHERE money___$__ = \"36,090\"",
"context": "CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR)",
"question": "What score won $36,090?"
} |
### QUESTION
What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School?
### CONTEXT
CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR)
### ANSWER
SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = "maac" AND school = "fairfield"</s> | {
"answer": "SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = \"maac\" AND school = \"fairfield\"",
"context": "CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR)",
"question": "What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School?"
} |
### QUESTION
How many editions have a most wins value of Franco Marvulli (4)?
### CONTEXT
CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR)
### ANSWER
SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = "Franco Marvulli (4)"</s> | {
"answer": "SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = \"Franco Marvulli (4)\"",
"context": "CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR)",
"question": "How many editions have a most wins value of Franco Marvulli (4)?"
} |
### QUESTION
What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls?
### CONTEXT
CREATE TABLE table_18461045_1 (kentucky VARCHAR, illinois VARCHAR)
### ANSWER
SELECT kentucky FROM table_18461045_1 WHERE illinois = "Rock Falls LL Rock Falls"</s> | {
"answer": "SELECT kentucky FROM table_18461045_1 WHERE illinois = \"Rock Falls LL Rock Falls\"",
"context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, illinois VARCHAR)",
"question": "What was the little league team from Kentucky when the little league team from Illinois was Rock Falls LL Rock Falls?"
} |
### QUESTION
What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill?
### CONTEXT
CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR)
### ANSWER
SELECT kentucky FROM table_18461045_1 WHERE indiana = "Brownsburg LL Brownsburg" AND wisconsin = "Merrill LL Merrill"</s> | {
"answer": "SELECT kentucky FROM table_18461045_1 WHERE indiana = \"Brownsburg LL Brownsburg\" AND wisconsin = \"Merrill LL Merrill\"",
"context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR)",
"question": "What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill?"
} |
### QUESTION
Which Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2µm, and a Class of f6?
### CONTEXT
CREATE TABLE table_name_39 (performance VARCHAR, class VARCHAR, test_standard VARCHAR, particulate_size_approaching_100_percentage_retention VARCHAR)
### ANSWER
SELECT performance FROM table_name_39 WHERE test_standard = "bs en779" AND particulate_size_approaching_100_percentage_retention = ">2µm" AND class = "f6"</s> | {
"answer": "SELECT performance FROM table_name_39 WHERE test_standard = \"bs en779\" AND particulate_size_approaching_100_percentage_retention = \">2µm\" AND class = \"f6\"",
"context": "CREATE TABLE table_name_39 (performance VARCHAR, class VARCHAR, test_standard VARCHAR, particulate_size_approaching_100_percentage_retention VARCHAR)",
"question": "Which Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2µm, and a Class of f6?"
} |
### QUESTION
Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?
### CONTEXT
CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)
### ANSWER
SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = "semi hepa" AND class = "h12"</s> | {
"answer": "SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = \"semi hepa\" AND class = \"h12\"",
"context": "CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)",
"question": "Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?"
} |
### QUESTION
What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms?
### CONTEXT
CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)
### ANSWER
SELECT kentucky FROM table_18461045_1 WHERE michigan = "Grosse Pointe Farms-City LL Grosse Pointe Farms"</s> | {
"answer": "SELECT kentucky FROM table_18461045_1 WHERE michigan = \"Grosse Pointe Farms-City LL Grosse Pointe Farms\"",
"context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)",
"question": "What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? "
} |
### QUESTION
How many table points are listed for the deficit is +194?
### CONTEXT
CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)
### ANSWER
SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = "+194"</s> | {
"answer": "SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = \"+194\"",
"context": "CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)",
"question": " How many table points are listed for the deficit is +194? "
} |
### QUESTION
What is the Japanese title with an average rating of 11.6%?
### CONTEXT
CREATE TABLE table_18540104_1 (japanese_title VARCHAR, average_ratings VARCHAR)
### ANSWER
SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = "11.6%"</s> | {
"answer": "SELECT japanese_title FROM table_18540104_1 WHERE average_ratings = \"11.6%\"",
"context": "CREATE TABLE table_18540104_1 (japanese_title VARCHAR, average_ratings VARCHAR)",
"question": "What is the Japanese title with an average rating of 11.6%?"
} |
### QUESTION
If the points scored were 93.45%, what's the lowest amount of games lost?
### CONTEXT
CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR)
### ANSWER
SELECT MIN(lost) FROM table_name_27 WHERE _percentage_pts = 93.45</s> | {
"answer": "SELECT MIN(lost) FROM table_name_27 WHERE _percentage_pts = 93.45",
"context": "CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR)",
"question": "If the points scored were 93.45%, what's the lowest amount of games lost?"
} |
### 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"</s> | {
"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
If the parallel bars is 14.025, what is the total number of gymnasts?
### CONTEXT
CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)
### ANSWER
SELECT COUNT(gymnast) FROM table_18662026_10 WHERE parallel_bars = "14.025"</s> | {
"answer": "SELECT COUNT(gymnast) FROM table_18662026_10 WHERE parallel_bars = \"14.025\"",
"context": "CREATE TABLE table_18662026_10 (gymnast VARCHAR, parallel_bars VARCHAR)",
"question": "If the parallel bars is 14.025, what is the total number of gymnasts?"
} |
### QUESTION
When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications?
### CONTEXT
CREATE TABLE table_18733814_2 (general_classification VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)
### ANSWER
SELECT general_classification FROM table_18733814_2 WHERE points_classification = "Alessandro Petacchi" AND young_rider_classification = "Thomas Löfkvist"</s> | {
"answer": "SELECT general_classification FROM table_18733814_2 WHERE points_classification = \"Alessandro Petacchi\" AND young_rider_classification = \"Thomas Löfkvist\"",
"context": "CREATE TABLE table_18733814_2 (general_classification VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)",
"question": "When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications? "
} |
### QUESTION
Name the most numbers dam and gnis query link for borough or census area for fairbanks north star
### CONTEXT
CREATE TABLE table_18760137_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)
### ANSWER
SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_18760137_2 WHERE borough_or_census_area = "Fairbanks North Star"</s> | {
"answer": "SELECT MAX(_number_s_dam_and_gnis_query_link) FROM table_18760137_2 WHERE borough_or_census_area = \"Fairbanks North Star\"",
"context": "CREATE TABLE table_18760137_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)",
"question": "Name the most numbers dam and gnis query link for borough or census area for fairbanks north star"
} |
### QUESTION
What is the average Poles, when Wins is 0, when Position is "nc", and when Season is before 2004?
### CONTEXT
CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR)
### ANSWER
SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = "nc" AND season < 2004</s> | {
"answer": "SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = \"nc\" AND season < 2004",
"context": "CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR)",
"question": "What is the average Poles, when Wins is 0, when Position is \"nc\", and when Season is before 2004?"
} |
### QUESTION
Who were the opponents for the event in Milan, Italy?
### CONTEXT
CREATE TABLE table_name_78 (opponent VARCHAR, tournament VARCHAR)
### ANSWER
SELECT opponent FROM table_name_78 WHERE tournament = "milan, italy"</s> | {
"answer": "SELECT opponent FROM table_name_78 WHERE tournament = \"milan, italy\"",
"context": "CREATE TABLE table_name_78 (opponent VARCHAR, tournament VARCHAR)",
"question": "Who were the opponents for the event in Milan, Italy?"
} |
### QUESTION
When hit by sam at 38,500 feet just after bomb release was the cause of loss what is the mission/target?
### CONTEXT
CREATE TABLE table_18933037_3 (mission_target VARCHAR, cause_of_loss VARCHAR)
### ANSWER
SELECT mission_target FROM table_18933037_3 WHERE cause_of_loss = "Hit by SAM at 38,500 feet just after bomb release"</s> | {
"answer": "SELECT mission_target FROM table_18933037_3 WHERE cause_of_loss = \"Hit by SAM at 38,500 feet just after bomb release\"",
"context": "CREATE TABLE table_18933037_3 (mission_target VARCHAR, cause_of_loss VARCHAR)",
"question": "When hit by sam at 38,500 feet just after bomb release was the cause of loss what is the mission/target?"
} |
### QUESTION
When 441st bs, 7th bw is the unit what is the b-52 model?
### CONTEXT
CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)
### ANSWER
SELECT b_52_model FROM table_18933037_3 WHERE unit = "441st BS, 7th BW"</s> | {
"answer": "SELECT b_52_model FROM table_18933037_3 WHERE unit = \"441st BS, 7th BW\"",
"context": "CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)",
"question": "When 441st bs, 7th bw is the unit what is the b-52 model?"
} |
### QUESTION
What is the overall sum of round 3?
### CONTEXT
CREATE TABLE table_name_55 (overall INTEGER, round VARCHAR)
### ANSWER
SELECT SUM(overall) FROM table_name_55 WHERE round = 3</s> | {
"answer": "SELECT SUM(overall) FROM table_name_55 WHERE round = 3",
"context": "CREATE TABLE table_name_55 (overall INTEGER, round VARCHAR)",
"question": "What is the overall sum of round 3?"
} |
### QUESTION
When conjunction junction is the episode title and the music is by bob dorough who is the performer?
### CONTEXT
CREATE TABLE table_191105_2 (performed_by VARCHAR, music_by VARCHAR, episode_title VARCHAR)
### ANSWER
SELECT performed_by FROM table_191105_2 WHERE music_by = "Bob Dorough" AND episode_title = "Conjunction Junction"</s> | {
"answer": "SELECT performed_by FROM table_191105_2 WHERE music_by = \"Bob Dorough\" AND episode_title = \"Conjunction Junction\"",
"context": "CREATE TABLE table_191105_2 (performed_by VARCHAR, music_by VARCHAR, episode_title VARCHAR)",
"question": "When conjunction junction is the episode title and the music is by bob dorough who is the performer?"
} |
### QUESTION
What was the 1st leg when team 2 was nov milenium?
### CONTEXT
CREATE TABLE table_name_7 (team_2 VARCHAR)
### ANSWER
SELECT 1 AS st_leg FROM table_name_7 WHERE team_2 = "nov milenium"</s> | {
"answer": "SELECT 1 AS st_leg FROM table_name_7 WHERE team_2 = \"nov milenium\"",
"context": "CREATE TABLE table_name_7 (team_2 VARCHAR)",
"question": "What was the 1st leg when team 2 was nov milenium?"
} |
### QUESTION
When zachary sanders is the performer how many first aired are there?
### CONTEXT
CREATE TABLE table_191105_2 (first_aired VARCHAR, performed_by VARCHAR)
### ANSWER
SELECT COUNT(first_aired) FROM table_191105_2 WHERE performed_by = "Zachary Sanders"</s> | {
"answer": "SELECT COUNT(first_aired) FROM table_191105_2 WHERE performed_by = \"Zachary Sanders\"",
"context": "CREATE TABLE table_191105_2 (first_aired VARCHAR, performed_by VARCHAR)",
"question": "When zachary sanders is the performer how many first aired are there?"
} |
### QUESTION
What is the sum of Date of Official Foundation of Municipality, when Province is "Kermān", when 2006 us "167014", and when Rank is less than 46?
### CONTEXT
CREATE TABLE table_name_65 (date_of_official_foundation_of_municipality INTEGER, rank VARCHAR, province VARCHAR)
### ANSWER
SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = "kermān" AND 2006 = 167014 AND rank < 46</s> | {
"answer": "SELECT SUM(date_of_official_foundation_of_municipality) FROM table_name_65 WHERE province = \"kermān\" AND 2006 = 167014 AND rank < 46",
"context": "CREATE TABLE table_name_65 (date_of_official_foundation_of_municipality INTEGER, rank VARCHAR, province VARCHAR)",
"question": "What is the sum of Date of Official Foundation of Municipality, when Province is \"Kermān\", when 2006 us \"167014\", and when Rank is less than 46?"
} |
### QUESTION
which institutes gave the democratic renewal 18.0% – 22.0% on a poll from October 6, 1985?
### CONTEXT
CREATE TABLE table_1919538_1 (institute VARCHAR, democratic_renewal VARCHAR)
### ANSWER
SELECT institute FROM table_1919538_1 WHERE democratic_renewal = "18.0% – 22.0%"</s> | {
"answer": "SELECT institute FROM table_1919538_1 WHERE democratic_renewal = \"18.0% – 22.0%\"",
"context": "CREATE TABLE table_1919538_1 (institute VARCHAR, democratic_renewal VARCHAR)",
"question": "which institutes gave the democratic renewal 18.0% – 22.0% on a poll from October 6, 1985?"
} |
### QUESTION
Name the number of seats to be won being % of popular vote at 6.88%
### CONTEXT
CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR)
### ANSWER
SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = "6.88%"</s> | {
"answer": "SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = \"6.88%\"",
"context": "CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR)",
"question": "Name the number of seats to be won being % of popular vote at 6.88%"
} |
### QUESTION
Name the number of total votes for # of seats won being 30
### CONTEXT
CREATE TABLE table_19283982_4 (_number_of_total_votes VARCHAR, _number_of_seats_won VARCHAR)
### ANSWER
SELECT _number_of_total_votes FROM table_19283982_4 WHERE _number_of_seats_won = 30</s> | {
"answer": "SELECT _number_of_total_votes FROM table_19283982_4 WHERE _number_of_seats_won = 30",
"context": "CREATE TABLE table_19283982_4 (_number_of_total_votes VARCHAR, _number_of_seats_won VARCHAR)",
"question": "Name the number of total votes for # of seats won being 30"
} |
### QUESTION
What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?
### CONTEXT
CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)
### ANSWER
SELECT MAX(laps) FROM table_name_13 WHERE class = "v8" AND entrant = "diet-coke racing"</s> | {
"answer": "SELECT MAX(laps) FROM table_name_13 WHERE class = \"v8\" AND entrant = \"diet-coke racing\"",
"context": "CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)",
"question": "What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?"
} |
### QUESTION
who is the player when the place is t5 and the score is 69-66-71=206?
### CONTEXT
CREATE TABLE table_name_51 (player VARCHAR, place VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_51 WHERE place = "t5" AND score = 69 - 66 - 71 = 206</s> | {
"answer": "SELECT player FROM table_name_51 WHERE place = \"t5\" AND score = 69 - 66 - 71 = 206",
"context": "CREATE TABLE table_name_51 (player VARCHAR, place VARCHAR, score VARCHAR)",
"question": "who is the player when the place is t5 and the score is 69-66-71=206?"
} |
### QUESTION
Name the number of candidates for # of seats won being 43
### CONTEXT
CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR)
### ANSWER
SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43</s> | {
"answer": "SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43",
"context": "CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR)",
"question": "Name the number of candidates for # of seats won being 43"
} |
### QUESTION
What Social AO has an External CO of simonas savickas, and an Internal CO of pieter kuijsten?
### CONTEXT
CREATE TABLE table_name_83 (social_ao VARCHAR, external_co VARCHAR, internal_co VARCHAR)
### ANSWER
SELECT social_ao FROM table_name_83 WHERE external_co = "simonas savickas" AND internal_co = "pieter kuijsten"</s> | {
"answer": "SELECT social_ao FROM table_name_83 WHERE external_co = \"simonas savickas\" AND internal_co = \"pieter kuijsten\"",
"context": "CREATE TABLE table_name_83 (social_ao VARCHAR, external_co VARCHAR, internal_co VARCHAR)",
"question": "What Social AO has an External CO of simonas savickas, and an Internal CO of pieter kuijsten?"
} |
### QUESTION
What is the Cook PVI for the location that has a representative of Mike Thompson?
### CONTEXT
CREATE TABLE table_19283806_4 (cook_pvi VARCHAR, representative VARCHAR)
### ANSWER
SELECT cook_pvi FROM table_19283806_4 WHERE representative = "Mike Thompson"</s> | {
"answer": "SELECT cook_pvi FROM table_19283806_4 WHERE representative = \"Mike Thompson\"",
"context": "CREATE TABLE table_19283806_4 (cook_pvi VARCHAR, representative VARCHAR)",
"question": "What is the Cook PVI for the location that has a representative of Mike Thompson?"
} |
### QUESTION
What is the Location of the Hietalahti Stadium?
### CONTEXT
CREATE TABLE table_name_46 (location VARCHAR, stadium VARCHAR)
### ANSWER
SELECT location FROM table_name_46 WHERE stadium = "hietalahti stadium"</s> | {
"answer": "SELECT location FROM table_name_46 WHERE stadium = \"hietalahti stadium\"",
"context": "CREATE TABLE table_name_46 (location VARCHAR, stadium VARCHAR)",
"question": "What is the Location of the Hietalahti Stadium?"
} |
### QUESTION
what is the highest lane number for johan wissman when the react is less than 0.242?
### CONTEXT
CREATE TABLE table_name_48 (lane INTEGER, name VARCHAR, react VARCHAR)
### ANSWER
SELECT MAX(lane) FROM table_name_48 WHERE name = "johan wissman" AND react < 0.242</s> | {
"answer": "SELECT MAX(lane) FROM table_name_48 WHERE name = \"johan wissman\" AND react < 0.242",
"context": "CREATE TABLE table_name_48 (lane INTEGER, name VARCHAR, react VARCHAR)",
"question": "what is the highest lane number for johan wissman when the react is less than 0.242?"
} |
### QUESTION
what is the heat when the country is united kingdom and react is less than 0.232?
### CONTEXT
CREATE TABLE table_name_91 (heat INTEGER, country VARCHAR, react VARCHAR)
### ANSWER
SELECT MAX(heat) FROM table_name_91 WHERE country = "united kingdom" AND react < 0.232</s> | {
"answer": "SELECT MAX(heat) FROM table_name_91 WHERE country = \"united kingdom\" AND react < 0.232",
"context": "CREATE TABLE table_name_91 (heat INTEGER, country VARCHAR, react VARCHAR)",
"question": "what is the heat when the country is united kingdom and react is less than 0.232?"
} |
### QUESTION
What is the 1st leg of the UEFA Champions League Compeition in the Skonto Riga Club?
### CONTEXT
CREATE TABLE table_name_52 (competition VARCHAR, club VARCHAR)
### ANSWER
SELECT 1 AS st_leg FROM table_name_52 WHERE competition = "uefa champions league" AND club = "skonto riga"</s> | {
"answer": "SELECT 1 AS st_leg FROM table_name_52 WHERE competition = \"uefa champions league\" AND club = \"skonto riga\"",
"context": "CREATE TABLE table_name_52 (competition VARCHAR, club VARCHAR)",
"question": "What is the 1st leg of the UEFA Champions League Compeition in the Skonto Riga Club?"
} |
### QUESTION
What group had 29 studio albums?
### CONTEXT
CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)
### ANSWER
SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29</s> | {
"answer": "SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29",
"context": "CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)",
"question": "What group had 29 studio albums?"
} |
### 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)"</s> | {
"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 team did Russ Wiechnik, on the centre position, come from?
### CONTEXT
CREATE TABLE table_1965650_11 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_1965650_11 WHERE position = "Centre" AND player = "Russ Wiechnik"</s> | {
"answer": "SELECT college_junior_club_team FROM table_1965650_11 WHERE position = \"Centre\" AND player = \"Russ Wiechnik\"",
"context": "CREATE TABLE table_1965650_11 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)",
"question": "What team did Russ Wiechnik, on the centre position, come from?"
} |
### QUESTION
Name the party for yvette clarke (d) 90.6% hugh carr (r) 9.4%
### CONTEXT
CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR)
### ANSWER
SELECT party FROM table_19753079_35 WHERE candidates = "Yvette Clarke (D) 90.6% Hugh Carr (R) 9.4%"</s> | {
"answer": "SELECT party FROM table_19753079_35 WHERE candidates = \"Yvette Clarke (D) 90.6% Hugh Carr (R) 9.4%\"",
"context": "CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR)",
"question": "Name the party for yvette clarke (d) 90.6% hugh carr (r) 9.4%"
} |
### QUESTION
Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?
### CONTEXT
CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(pick) FROM table_name_96 WHERE position = "offensive guard" AND player = "reggie mckenzie" AND round > 2</s> | {
"answer": "SELECT COUNT(pick) FROM table_name_96 WHERE position = \"offensive guard\" AND player = \"reggie mckenzie\" AND round > 2",
"context": "CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR)",
"question": "Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?"
} |
### QUESTION
Name the total number of viewers for audience share in timeslot for 10.2%
### CONTEXT
CREATE TABLE table_19834691_4 (viewers__millions_ VARCHAR, audience_share_in_timeslot VARCHAR)
### ANSWER
SELECT COUNT(viewers__millions_) FROM table_19834691_4 WHERE audience_share_in_timeslot = "10.2%"</s> | {
"answer": "SELECT COUNT(viewers__millions_) FROM table_19834691_4 WHERE audience_share_in_timeslot = \"10.2%\"",
"context": "CREATE TABLE table_19834691_4 (viewers__millions_ VARCHAR, audience_share_in_timeslot VARCHAR)",
"question": "Name the total number of viewers for audience share in timeslot for 10.2%"
} |
### QUESTION
Name the lowest Gain which has a Long of 0, and a GP-GS of 4–0, and a Loss smaller than 3?
### CONTEXT
CREATE TABLE table_name_95 (gain INTEGER, loss VARCHAR, long VARCHAR, gp_gs VARCHAR)
### ANSWER
SELECT MIN(gain) FROM table_name_95 WHERE long = 0 AND gp_gs = "4–0" AND loss < 3</s> | {
"answer": "SELECT MIN(gain) FROM table_name_95 WHERE long = 0 AND gp_gs = \"4–0\" AND loss < 3",
"context": "CREATE TABLE table_name_95 (gain INTEGER, loss VARCHAR, long VARCHAR, gp_gs VARCHAR)",
"question": "Name the lowest Gain which has a Long of 0, and a GP-GS of 4–0, and a Loss smaller than 3?"
} |
### QUESTION
Who's the principal of Edgewood High School?/
### CONTEXT
CREATE TABLE table_1984697_53 (principal VARCHAR, school VARCHAR)
### ANSWER
SELECT principal FROM table_1984697_53 WHERE school = "Edgewood High school"</s> | {
"answer": "SELECT principal FROM table_1984697_53 WHERE school = \"Edgewood High school\"",
"context": "CREATE TABLE table_1984697_53 (principal VARCHAR, school VARCHAR)",
"question": "Who's the principal of Edgewood High School?/"
} |
### QUESTION
What's the report of the race won by Michael Andretti, with Nigel Mansell driving the fastest lap?
### CONTEXT
CREATE TABLE table_19908651_3 (report VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)
### ANSWER
SELECT report FROM table_19908651_3 WHERE winning_driver = "Michael Andretti" AND fastest_lap = "Nigel Mansell"</s> | {
"answer": "SELECT report FROM table_19908651_3 WHERE winning_driver = \"Michael Andretti\" AND fastest_lap = \"Nigel Mansell\"",
"context": "CREATE TABLE table_19908651_3 (report VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)",
"question": "What's the report of the race won by Michael Andretti, with Nigel Mansell driving the fastest lap?"
} |
### QUESTION
Who directed the episode with production code 4akj01?
### CONTEXT
CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR)
### ANSWER
SELECT directed_by FROM table_19929970_1 WHERE production_code = "4AKJ01"</s> | {
"answer": "SELECT directed_by FROM table_19929970_1 WHERE production_code = \"4AKJ01\"",
"context": "CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR)",
"question": "Who directed the episode with production code 4akj01?"
} |
### QUESTION
Which streak before game 12 had a team points larger than 113 on November 16?
### CONTEXT
CREATE TABLE table_name_88 (streak VARCHAR, date VARCHAR, team_points VARCHAR, game VARCHAR)
### ANSWER
SELECT streak FROM table_name_88 WHERE team_points > 113 AND game < 12 AND date = "november 16"</s> | {
"answer": "SELECT streak FROM table_name_88 WHERE team_points > 113 AND game < 12 AND date = \"november 16\"",
"context": "CREATE TABLE table_name_88 (streak VARCHAR, date VARCHAR, team_points VARCHAR, game VARCHAR)",
"question": "Which streak before game 12 had a team points larger than 113 on November 16?"
} |
### QUESTION
What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?
### CONTEXT
CREATE TABLE table_name_22 (played INTEGER, position VARCHAR, goals_for VARCHAR, lost VARCHAR)
### ANSWER
SELECT SUM(played) FROM table_name_22 WHERE goals_for > 60 AND lost = 8 AND position < 1</s> | {
"answer": "SELECT SUM(played) FROM table_name_22 WHERE goals_for > 60 AND lost = 8 AND position < 1",
"context": "CREATE TABLE table_name_22 (played INTEGER, position VARCHAR, goals_for VARCHAR, lost VARCHAR)",
"question": "What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?"
} |
### QUESTION
What is the average Lost for Team Matlock Town when the Goals Against is higher than 66?
### CONTEXT
CREATE TABLE table_name_79 (lost INTEGER, team VARCHAR, goals_against VARCHAR)
### ANSWER
SELECT AVG(lost) FROM table_name_79 WHERE team = "matlock town" AND goals_against > 66</s> | {
"answer": "SELECT AVG(lost) FROM table_name_79 WHERE team = \"matlock town\" AND goals_against > 66",
"context": "CREATE TABLE table_name_79 (lost INTEGER, team VARCHAR, goals_against VARCHAR)",
"question": "What is the average Lost for Team Matlock Town when the Goals Against is higher than 66?"
} |
### QUESTION
Where was the attendance more than 57,347?
### CONTEXT
CREATE TABLE table_name_27 (location VARCHAR, attendance INTEGER)
### ANSWER
SELECT location FROM table_name_27 WHERE attendance > 57 OFFSET 347</s> | {
"answer": "SELECT location FROM table_name_27 WHERE attendance > 57 OFFSET 347",
"context": "CREATE TABLE table_name_27 (location VARCHAR, attendance INTEGER)",
"question": "Where was the attendance more than 57,347?"
} |
### QUESTION
What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa?
### CONTEXT
CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_95 WHERE state = "orissa" AND name = "prof. priyambada mohanty hejmadi"</s> | {
"answer": "SELECT SUM(year) FROM table_name_95 WHERE state = \"orissa\" AND name = \"prof. priyambada mohanty hejmadi\"",
"context": "CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR)",
"question": "What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa?"
} |
### QUESTION
what is the television order of the episode directed by ben jones, written by j. m. dematteis and originally aired on february6,2009
### CONTEXT
CREATE TABLE table_20360535_2 (television_order VARCHAR, original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)
### ANSWER
SELECT television_order FROM table_20360535_2 WHERE directed_by = "Ben Jones" AND written_by = "J. M. DeMatteis" AND original_air_date = "February6,2009"</s> | {
"answer": "SELECT television_order FROM table_20360535_2 WHERE directed_by = \"Ben Jones\" AND written_by = \"J. M. DeMatteis\" AND original_air_date = \"February6,2009\"",
"context": "CREATE TABLE table_20360535_2 (television_order VARCHAR, original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)",
"question": "what is the television order of the episode directed by ben jones, written by j. m. dematteis and originally aired on february6,2009"
} |
### QUESTION
hat is the Result F– A when they played against Leeds United?
### CONTEXT
CREATE TABLE table_name_98 (result_f___a VARCHAR, opponents VARCHAR)
### ANSWER
SELECT result_f___a FROM table_name_98 WHERE opponents = "leeds united"</s> | {
"answer": "SELECT result_f___a FROM table_name_98 WHERE opponents = \"leeds united\"",
"context": "CREATE TABLE table_name_98 (result_f___a VARCHAR, opponents VARCHAR)",
"question": "hat is the Result F– A when they played against Leeds United?"
} |
### QUESTION
What vehicle has an epa highway fuel economy of 109 mpg-e?
### CONTEXT
CREATE TABLE table_20549371_3 (vehicle VARCHAR, epa_rated_highway_fuel_economy VARCHAR)
### ANSWER
SELECT vehicle FROM table_20549371_3 WHERE epa_rated_highway_fuel_economy = "109 mpg-e"</s> | {
"answer": "SELECT vehicle FROM table_20549371_3 WHERE epa_rated_highway_fuel_economy = \"109 mpg-e\"",
"context": "CREATE TABLE table_20549371_3 (vehicle VARCHAR, epa_rated_highway_fuel_economy VARCHAR)",
"question": "What vehicle has an epa highway fuel economy of 109 mpg-e?"
} |
Subsets and Splits