text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What is the civil parish of the cappanaboul townland?
### CONTEXT
CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR)
### ANSWER
SELECT civil_parish FROM table_30120547_1 WHERE townland = "Cappanaboul"</s> | {
"answer": "SELECT civil_parish FROM table_30120547_1 WHERE townland = \"Cappanaboul\"",
"context": "CREATE TABLE table_30120547_1 (civil_parish VARCHAR, townland VARCHAR)",
"question": "What is the civil parish of the cappanaboul townland?"
} |
### QUESTION
What are the special notes for an issue price under 24.95 with an edmonton oilers theme?
### CONTEXT
CREATE TABLE table_name_91 (special_notes VARCHAR, issue_price VARCHAR, theme VARCHAR)
### ANSWER
SELECT special_notes FROM table_name_91 WHERE issue_price < 24.95 AND theme = "edmonton oilers"</s> | {
"answer": "SELECT special_notes FROM table_name_91 WHERE issue_price < 24.95 AND theme = \"edmonton oilers\"",
"context": "CREATE TABLE table_name_91 (special_notes VARCHAR, issue_price VARCHAR, theme VARCHAR)",
"question": "What are the special notes for an issue price under 24.95 with an edmonton oilers theme?"
} |
### QUESTION
What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?
### CONTEXT
CREATE TABLE table_name_10 (year VARCHAR, issue_price VARCHAR, special_notes VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_10 WHERE issue_price > 15.95 AND special_notes = "from edmonton oilers gift set"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_10 WHERE issue_price > 15.95 AND special_notes = \"from edmonton oilers gift set\"",
"context": "CREATE TABLE table_name_10 (year VARCHAR, issue_price VARCHAR, special_notes VARCHAR)",
"question": "What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?"
} |
### QUESTION
What is the area of the civil parish kilworth and townland monadrishane?
### CONTEXT
CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR)
### ANSWER
SELECT area__acres__ FROM table_30120556_1 WHERE civil_parish = "Kilworth" AND townland = "Monadrishane"</s> | {
"answer": "SELECT area__acres__ FROM table_30120556_1 WHERE civil_parish = \"Kilworth\" AND townland = \"Monadrishane\"",
"context": "CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR)",
"question": "What is the area of the civil parish kilworth and townland monadrishane?"
} |
### QUESTION
How many barony's appear when Ballyvadona is the townland.
### CONTEXT
CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)
### ANSWER
SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = "Ballyvadona"</s> | {
"answer": "SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = \"Ballyvadona\"",
"context": "CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)",
"question": "How many barony's appear when Ballyvadona is the townland."
} |
### QUESTION
Who hosted the visiting team Baltimore Ravens?
### CONTEXT
CREATE TABLE table_name_24 (host_team VARCHAR, visiting_team VARCHAR)
### ANSWER
SELECT host_team FROM table_name_24 WHERE visiting_team = "baltimore ravens"</s> | {
"answer": "SELECT host_team FROM table_name_24 WHERE visiting_team = \"baltimore ravens\"",
"context": "CREATE TABLE table_name_24 (host_team VARCHAR, visiting_team VARCHAR)",
"question": "Who hosted the visiting team Baltimore Ravens?"
} |
### QUESTION
what is the number of areas where the townland is brittas?
### CONTEXT
CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)
### ANSWER
SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Brittas"</s> | {
"answer": "SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = \"Brittas\"",
"context": "CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR)",
"question": "what is the number of areas where the townland is brittas?"
} |
### QUESTION
How few acres is the area of Clashroe?
### CONTEXT
CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR)
### ANSWER
SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = "Clashroe"</s> | {
"answer": "SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = \"Clashroe\"",
"context": "CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR)",
"question": "How few acres is the area of Clashroe?"
} |
### QUESTION
What date did the New York Giants play as a visiting team?
### CONTEXT
CREATE TABLE table_name_34 (date VARCHAR, visiting_team VARCHAR)
### ANSWER
SELECT date FROM table_name_34 WHERE visiting_team = "new york giants"</s> | {
"answer": "SELECT date FROM table_name_34 WHERE visiting_team = \"new york giants\"",
"context": "CREATE TABLE table_name_34 (date VARCHAR, visiting_team VARCHAR)",
"question": "What date did the New York Giants play as a visiting team?"
} |
### QUESTION
What team draft a player from Canada that was picked #43 and plays right wing?
### CONTEXT
CREATE TABLE table_name_59 (nhl_team VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)
### ANSWER
SELECT nhl_team FROM table_name_59 WHERE nationality = "canada" AND position = "right wing" AND pick__number = "43"</s> | {
"answer": "SELECT nhl_team FROM table_name_59 WHERE nationality = \"canada\" AND position = \"right wing\" AND pick__number = \"43\"",
"context": "CREATE TABLE table_name_59 (nhl_team VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)",
"question": "What team draft a player from Canada that was picked #43 and plays right wing?"
} |
### QUESTION
What is the area when the poor law union is skibbereen and the townland is knockmore?
### CONTEXT
CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR)
### ANSWER
SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = "Skibbereen" AND townland = "Knockmore"</s> | {
"answer": "SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = \"Skibbereen\" AND townland = \"Knockmore\"",
"context": "CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR)",
"question": "What is the area when the poor law union is skibbereen and the townland is knockmore?"
} |
### QUESTION
what's the number of games with a Goals Against smaller than 14, and a Wins larger than 1, and a Draws smaller than 2, and a Goals For of 3?
### CONTEXT
CREATE TABLE table_name_27 (games INTEGER, goals_for VARCHAR, draws VARCHAR, goals_against VARCHAR, wins VARCHAR)
### ANSWER
SELECT MAX(games) FROM table_name_27 WHERE goals_against < 14 AND wins > 1 AND draws < 2 AND goals_for = 3</s> | {
"answer": "SELECT MAX(games) FROM table_name_27 WHERE goals_against < 14 AND wins > 1 AND draws < 2 AND goals_for = 3",
"context": "CREATE TABLE table_name_27 (games INTEGER, goals_for VARCHAR, draws VARCHAR, goals_against VARCHAR, wins VARCHAR)",
"question": "what's the number of games with a Goals Against smaller than 14, and a Wins larger than 1, and a Draws smaller than 2, and a Goals For of 3?"
} |
### QUESTION
how many pick# does the university of akron reading united michigan bucks affiliation have
### CONTEXT
CREATE TABLE table_29626583_1 (pick__number VARCHAR, affiliation VARCHAR)
### ANSWER
SELECT COUNT(pick__number) FROM table_29626583_1 WHERE affiliation = "University of Akron Reading United Michigan Bucks"</s> | {
"answer": "SELECT COUNT(pick__number) FROM table_29626583_1 WHERE affiliation = \"University of Akron Reading United Michigan Bucks\"",
"context": "CREATE TABLE table_29626583_1 (pick__number VARCHAR, affiliation VARCHAR)",
"question": "how many pick# does the university of akron reading united michigan bucks affiliation have"
} |
### QUESTION
what is the position for the united states u-20 affiliation
### CONTEXT
CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR)
### ANSWER
SELECT position FROM table_29626583_1 WHERE affiliation = "United States U-20"</s> | {
"answer": "SELECT position FROM table_29626583_1 WHERE affiliation = \"United States U-20\"",
"context": "CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR)",
"question": "what is the position for the united states u-20 affiliation "
} |
### QUESTION
What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38?
### CONTEXT
CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR)
### ANSWER
SELECT 1985 FROM table_30133_3 WHERE gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ = "369.38"</s> | {
"answer": "SELECT 1985 FROM table_30133_3 WHERE gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ = \"369.38\"",
"context": "CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR)",
"question": "What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38?"
} |
### QUESTION
How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113?
### CONTEXT
CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR)
### ANSWER
SELECT COUNT(gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_) FROM table_30133_3 WHERE 2012 = 23113</s> | {
"answer": "SELECT COUNT(gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_) FROM table_30133_3 WHERE 2012 = 23113",
"context": "CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR)",
"question": "How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113?"
} |
### QUESTION
How many fast laps are in 6 races with 30 points in the World Series by Nissan?
### CONTEXT
CREATE TABLE table_name_28 (fast_laps VARCHAR, points VARCHAR, series VARCHAR, races VARCHAR)
### ANSWER
SELECT fast_laps FROM table_name_28 WHERE series = "world series by nissan" AND races = "6" AND points = "30"</s> | {
"answer": "SELECT fast_laps FROM table_name_28 WHERE series = \"world series by nissan\" AND races = \"6\" AND points = \"30\"",
"context": "CREATE TABLE table_name_28 (fast_laps VARCHAR, points VARCHAR, series VARCHAR, races VARCHAR)",
"question": "How many fast laps are in 6 races with 30 points in the World Series by Nissan?"
} |
### QUESTION
What is the train number for the train name island express with a destination of kanniyakumari?
### CONTEXT
CREATE TABLE table_29770377_1 (train_number VARCHAR, train_name VARCHAR, destination VARCHAR)
### ANSWER
SELECT train_number FROM table_29770377_1 WHERE train_name = "Island Express" AND destination = "Kanniyakumari"</s> | {
"answer": "SELECT train_number FROM table_29770377_1 WHERE train_name = \"Island Express\" AND destination = \"Kanniyakumari\"",
"context": "CREATE TABLE table_29770377_1 (train_number VARCHAR, train_name VARCHAR, destination VARCHAR)",
"question": "What is the train number for the train name island express with a destination of kanniyakumari?"
} |
### QUESTION
How many reservations for sc/st are there in constituency 191?
### CONTEXT
CREATE TABLE table_29785324_4 (reservation_for_sc_st VARCHAR, constituency_no VARCHAR)
### ANSWER
SELECT COUNT(reservation_for_sc_st) FROM table_29785324_4 WHERE constituency_no = 191</s> | {
"answer": "SELECT COUNT(reservation_for_sc_st) FROM table_29785324_4 WHERE constituency_no = 191",
"context": "CREATE TABLE table_29785324_4 (reservation_for_sc_st VARCHAR, constituency_no VARCHAR)",
"question": "How many reservations for sc/st are there in constituency 191?"
} |
### QUESTION
Award of troisième prix, and a Year smaller than 2010, and a Director of jan komasa is what film?
### CONTEXT
CREATE TABLE table_name_10 (film VARCHAR, director VARCHAR, award VARCHAR, year VARCHAR)
### ANSWER
SELECT film FROM table_name_10 WHERE award = "troisième prix" AND year < 2010 AND director = "jan komasa"</s> | {
"answer": "SELECT film FROM table_name_10 WHERE award = \"troisième prix\" AND year < 2010 AND director = \"jan komasa\"",
"context": "CREATE TABLE table_name_10 (film VARCHAR, director VARCHAR, award VARCHAR, year VARCHAR)",
"question": "Award of troisième prix, and a Year smaller than 2010, and a Director of jan komasa is what film?"
} |
### QUESTION
What is the chromosomal location of il-1β?
### CONTEXT
CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)
### ANSWER
SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-1β"</s> | {
"answer": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-1β\"",
"context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)",
"question": "What is the chromosomal location of il-1β?"
} |
### QUESTION
What are the coreceptors of the chromosomes in that location 11q22.2-q22.3?
### CONTEXT
CREATE TABLE table_29871617_1 (coreceptor VARCHAR, chromosomal_location VARCHAR)
### ANSWER
SELECT coreceptor FROM table_29871617_1 WHERE chromosomal_location = "11q22.2-q22.3"</s> | {
"answer": "SELECT coreceptor FROM table_29871617_1 WHERE chromosomal_location = \"11q22.2-q22.3\"",
"context": "CREATE TABLE table_29871617_1 (coreceptor VARCHAR, chromosomal_location VARCHAR)",
"question": "What are the coreceptors of the chromosomes in that location 11q22.2-q22.3?"
} |
### QUESTION
Where is il-36β located?
### CONTEXT
CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)
### ANSWER
SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-36β"</s> | {
"answer": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-36β\"",
"context": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)",
"question": "Where is il-36β located?"
} |
### QUESTION
How many synthesis are there for 5~16.2 pw per cycle (calculated) output power?
### CONTEXT
CREATE TABLE table_30057479_1 (synthesis VARCHAR, output_power VARCHAR)
### ANSWER
SELECT COUNT(synthesis) FROM table_30057479_1 WHERE output_power = "5~16.2 pW per cycle (calculated)"</s> | {
"answer": "SELECT COUNT(synthesis) FROM table_30057479_1 WHERE output_power = \"5~16.2 pW per cycle (calculated)\"",
"context": "CREATE TABLE table_30057479_1 (synthesis VARCHAR, output_power VARCHAR)",
"question": "How many synthesis are there for 5~16.2 pw per cycle (calculated) output power?"
} |
### QUESTION
What score did vasil levski national stadium, sofia, which was friendly during competition, earn?
### CONTEXT
CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT score FROM table_name_96 WHERE competition = "friendly" AND venue = "vasil levski national stadium, sofia"</s> | {
"answer": "SELECT score FROM table_name_96 WHERE competition = \"friendly\" AND venue = \"vasil levski national stadium, sofia\"",
"context": "CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "What score did vasil levski national stadium, sofia, which was friendly during competition, earn?"
} |
### QUESTION
What is the nationality of the Washington Capitals?
### CONTEXT
CREATE TABLE table_name_68 (nationality VARCHAR, nhl_team VARCHAR)
### ANSWER
SELECT nationality FROM table_name_68 WHERE nhl_team = "washington capitals"</s> | {
"answer": "SELECT nationality FROM table_name_68 WHERE nhl_team = \"washington capitals\"",
"context": "CREATE TABLE table_name_68 (nationality VARCHAR, nhl_team VARCHAR)",
"question": "What is the nationality of the Washington Capitals?"
} |
### QUESTION
What is the least attendance that has 3-5 as a record?
### CONTEXT
CREATE TABLE table_name_25 (attendance INTEGER, record VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_25 WHERE record = "3-5"</s> | {
"answer": "SELECT MIN(attendance) FROM table_name_25 WHERE record = \"3-5\"",
"context": "CREATE TABLE table_name_25 (attendance INTEGER, record VARCHAR)",
"question": "What is the least attendance that has 3-5 as a record?"
} |
### QUESTION
Name the date for s. valentino alla muta , italia
### CONTEXT
CREATE TABLE table_30073089_2 (date VARCHAR, location VARCHAR)
### ANSWER
SELECT date FROM table_30073089_2 WHERE location = "S. Valentino Alla Muta , Italia"</s> | {
"answer": "SELECT date FROM table_30073089_2 WHERE location = \"S. Valentino Alla Muta , Italia\"",
"context": "CREATE TABLE table_30073089_2 (date VARCHAR, location VARCHAR)",
"question": "Name the date for s. valentino alla muta , italia"
} |
### QUESTION
What was the date of the game against Northwestern?
### CONTEXT
CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)
### ANSWER
SELECT date FROM table_name_62 WHERE opponent = "northwestern"</s> | {
"answer": "SELECT date FROM table_name_62 WHERE opponent = \"northwestern\"",
"context": "CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)",
"question": "What was the date of the game against Northwestern?"
} |
### QUESTION
Which competition occurred after 1980 with a score of 0:5 in Jerusalem?
### CONTEXT
CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR)
### ANSWER
SELECT competition FROM table_name_51 WHERE year > 1980 AND score = "0:5" AND location = "jerusalem"</s> | {
"answer": "SELECT competition FROM table_name_51 WHERE year > 1980 AND score = \"0:5\" AND location = \"jerusalem\"",
"context": "CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR)",
"question": "Which competition occurred after 1980 with a score of 0:5 in Jerusalem?"
} |
### QUESTION
What was the result at dakar , senegal, on 3 september 2011, and with a Score of 2–0?
### CONTEXT
CREATE TABLE table_name_17 (result VARCHAR, score VARCHAR, venue VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_17 WHERE venue = "dakar , senegal" AND date = "3 september 2011" AND score = "2–0"</s> | {
"answer": "SELECT result FROM table_name_17 WHERE venue = \"dakar , senegal\" AND date = \"3 september 2011\" AND score = \"2–0\"",
"context": "CREATE TABLE table_name_17 (result VARCHAR, score VARCHAR, venue VARCHAR, date VARCHAR)",
"question": "What was the result at dakar , senegal, on 3 september 2011, and with a Score of 2–0?"
} |
### QUESTION
Which time has a Rank larger than 3, and a Name of andrey kapralov?
### CONTEXT
CREATE TABLE table_name_31 (time VARCHAR, rank VARCHAR, name VARCHAR)
### ANSWER
SELECT time FROM table_name_31 WHERE rank > 3 AND name = "andrey kapralov"</s> | {
"answer": "SELECT time FROM table_name_31 WHERE rank > 3 AND name = \"andrey kapralov\"",
"context": "CREATE TABLE table_name_31 (time VARCHAR, rank VARCHAR, name VARCHAR)",
"question": "Which time has a Rank larger than 3, and a Name of andrey kapralov?"
} |
### QUESTION
How much is the total assets of a company based in Stockholm, Sweden with a market capitalization smaller than 39.8 with revenues greater than 5.8 and profit of 1.1?
### CONTEXT
CREATE TABLE table_name_14 (s_asset__billion_ VARCHAR, profits__billion_$_ VARCHAR, revenue__billion_$__ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)
### ANSWER
SELECT COUNT(s_asset__billion_) AS $_ FROM table_name_14 WHERE headquarters = "stockholm, sweden" AND market_value__billion_$_ < 39.8 AND revenue__billion_$__ > 5.8 AND profits__billion_$_ = 1.1</s> | {
"answer": "SELECT COUNT(s_asset__billion_) AS $_ FROM table_name_14 WHERE headquarters = \"stockholm, sweden\" AND market_value__billion_$_ < 39.8 AND revenue__billion_$__ > 5.8 AND profits__billion_$_ = 1.1",
"context": "CREATE TABLE table_name_14 (s_asset__billion_ VARCHAR, profits__billion_$_ VARCHAR, revenue__billion_$__ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)",
"question": "How much is the total assets of a company based in Stockholm, Sweden with a market capitalization smaller than 39.8 with revenues greater than 5.8 and profit of 1.1?"
} |
### QUESTION
What is Ken Walter's lowest pick number with an overall pick number larger than 195?
### CONTEXT
CREATE TABLE table_name_28 (pick__number INTEGER, name VARCHAR, overall VARCHAR)
### ANSWER
SELECT MIN(pick__number) FROM table_name_28 WHERE name = "ken walter" AND overall > 195</s> | {
"answer": "SELECT MIN(pick__number) FROM table_name_28 WHERE name = \"ken walter\" AND overall > 195",
"context": "CREATE TABLE table_name_28 (pick__number INTEGER, name VARCHAR, overall VARCHAR)",
"question": "What is Ken Walter's lowest pick number with an overall pick number larger than 195?"
} |
### QUESTION
How many current account balances are associated with GDP at constant prices growth rates of 4.6?
### CONTEXT
CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_constant_prices_growth_rate__percent_change_ VARCHAR)
### ANSWER
SELECT COUNT(current_account_balance__percent_of_gdp_) FROM table_30133_1 WHERE gdp_at_constant_prices_growth_rate__percent_change_ = "4.6"</s> | {
"answer": "SELECT COUNT(current_account_balance__percent_of_gdp_) FROM table_30133_1 WHERE gdp_at_constant_prices_growth_rate__percent_change_ = \"4.6\"",
"context": "CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_constant_prices_growth_rate__percent_change_ VARCHAR)",
"question": "How many current account balances are associated with GDP at constant prices growth rates of 4.6?"
} |
### QUESTION
How many export volume of goods/services values are associated with GDP at constant prices values of 3.072?
### CONTEXT
CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_constant_prices__thb_trillions_ VARCHAR)
### ANSWER
SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_constant_prices__thb_trillions_ = "3.072"</s> | {
"answer": "SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_constant_prices__thb_trillions_ = \"3.072\"",
"context": "CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_constant_prices__thb_trillions_ VARCHAR)",
"question": "How many export volume of goods/services values are associated with GDP at constant prices values of 3.072?"
} |
### QUESTION
How many export volume of goods and services values are associated with GDP at current prices of 161.340?
### CONTEXT
CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)
### ANSWER
SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "161.340"</s> | {
"answer": "SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = \"161.340\"",
"context": "CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)",
"question": "How many export volume of goods and services values are associated with GDP at current prices of 161.340?"
} |
### QUESTION
What is the current account balance for an export volume of goods and service value of -4.2?
### CONTEXT
CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, export_volume_of_goods_and_services__percent_change_ VARCHAR)
### ANSWER
SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE export_volume_of_goods_and_services__percent_change_ = "-4.2"</s> | {
"answer": "SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE export_volume_of_goods_and_services__percent_change_ = \"-4.2\"",
"context": "CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, export_volume_of_goods_and_services__percent_change_ VARCHAR)",
"question": "What is the current account balance for an export volume of goods and service value of -4.2?"
} |
### QUESTION
What is the current account balance for a GDP at current prices of 142.640?
### CONTEXT
CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)
### ANSWER
SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "142.640"</s> | {
"answer": "SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = \"142.640\"",
"context": "CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)",
"question": "What is the current account balance for a GDP at current prices of 142.640?"
} |
### QUESTION
What is the chassis of Officine Alfieri Maserati with a Maserati Straight-6 engine and fewer than 6 points?
### CONTEXT
CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR, engine VARCHAR, entrant VARCHAR)
### ANSWER
SELECT chassis FROM table_name_55 WHERE engine = "maserati straight-6" AND entrant = "officine alfieri maserati" AND points < 6</s> | {
"answer": "SELECT chassis FROM table_name_55 WHERE engine = \"maserati straight-6\" AND entrant = \"officine alfieri maserati\" AND points < 6",
"context": "CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR, engine VARCHAR, entrant VARCHAR)",
"question": "What is the chassis of Officine Alfieri Maserati with a Maserati Straight-6 engine and fewer than 6 points?"
} |
### QUESTION
What is the Election date for Member william richmond category:articles with hcards?
### CONTEXT
CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR)
### ANSWER
SELECT election_date FROM table_name_49 WHERE member = "william richmond category:articles with hcards"</s> | {
"answer": "SELECT election_date FROM table_name_49 WHERE member = \"william richmond category:articles with hcards\"",
"context": "CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR)",
"question": "What is the Election date for Member william richmond category:articles with hcards?"
} |
### QUESTION
What electorate does Member dingley brittin category:articles with hcards represent?
### CONTEXT
CREATE TABLE table_name_37 (electorate VARCHAR, member VARCHAR)
### ANSWER
SELECT electorate FROM table_name_37 WHERE member = "dingley brittin category:articles with hcards"</s> | {
"answer": "SELECT electorate FROM table_name_37 WHERE member = \"dingley brittin category:articles with hcards\"",
"context": "CREATE TABLE table_name_37 (electorate VARCHAR, member VARCHAR)",
"question": "What electorate does Member dingley brittin category:articles with hcards represent?"
} |
### QUESTION
Where is NCAA division ii Franklin Pierce University located at?
### CONTEXT
CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR)
### ANSWER
SELECT location FROM table_name_54 WHERE classification = "ncaa division ii" AND institution = "franklin pierce university"</s> | {
"answer": "SELECT location FROM table_name_54 WHERE classification = \"ncaa division ii\" AND institution = \"franklin pierce university\"",
"context": "CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR)",
"question": "Where is NCAA division ii Franklin Pierce University located at?"
} |
### QUESTION
Tell me the DA for bureau chief ada
### CONTEXT
CREATE TABLE table_name_22 (district_attorney VARCHAR, position VARCHAR)
### ANSWER
SELECT district_attorney FROM table_name_22 WHERE position = "bureau chief ada"</s> | {
"answer": "SELECT district_attorney FROM table_name_22 WHERE position = \"bureau chief ada\"",
"context": "CREATE TABLE table_name_22 (district_attorney VARCHAR, position VARCHAR)",
"question": "Tell me the DA for bureau chief ada"
} |
### QUESTION
What is the classification for the school in the NEC Conference located in New Britain, Connecticut?
### CONTEXT
CREATE TABLE table_name_4 (classification VARCHAR, current_conference VARCHAR, location VARCHAR)
### ANSWER
SELECT classification FROM table_name_4 WHERE current_conference = "nec" AND location = "new britain, connecticut"</s> | {
"answer": "SELECT classification FROM table_name_4 WHERE current_conference = \"nec\" AND location = \"new britain, connecticut\"",
"context": "CREATE TABLE table_name_4 (classification VARCHAR, current_conference VARCHAR, location VARCHAR)",
"question": "What is the classification for the school in the NEC Conference located in New Britain, Connecticut?"
} |
### QUESTION
What institution is a NCAA Division i school and part of the NEC conference with a nickname the Blue Devils?
### CONTEXT
CREATE TABLE table_name_48 (institution VARCHAR, nickname VARCHAR, classification VARCHAR, current_conference VARCHAR)
### ANSWER
SELECT institution FROM table_name_48 WHERE classification = "ncaa division i" AND current_conference = "nec" AND nickname = "blue devils"</s> | {
"answer": "SELECT institution FROM table_name_48 WHERE classification = \"ncaa division i\" AND current_conference = \"nec\" AND nickname = \"blue devils\"",
"context": "CREATE TABLE table_name_48 (institution VARCHAR, nickname VARCHAR, classification VARCHAR, current_conference VARCHAR)",
"question": "What institution is a NCAA Division i school and part of the NEC conference with a nickname the Blue Devils?"
} |
### QUESTION
Name the score for moscow, ussr 15 february 1971
### CONTEXT
CREATE TABLE table_name_57 (score_in_the_final VARCHAR, location VARCHAR, date VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_57 WHERE location = "moscow, ussr" AND date = "15 february 1971"</s> | {
"answer": "SELECT score_in_the_final FROM table_name_57 WHERE location = \"moscow, ussr\" AND date = \"15 february 1971\"",
"context": "CREATE TABLE table_name_57 (score_in_the_final VARCHAR, location VARCHAR, date VARCHAR)",
"question": "Name the score for moscow, ussr 15 february 1971"
} |
### QUESTION
I want to know the highest heat rank for overall rank of t63 and time less than 25.47
### CONTEXT
CREATE TABLE table_name_88 (heat_rank INTEGER, overall_rank VARCHAR, time VARCHAR)
### ANSWER
SELECT MAX(heat_rank) FROM table_name_88 WHERE overall_rank = "t63" AND time < 25.47</s> | {
"answer": "SELECT MAX(heat_rank) FROM table_name_88 WHERE overall_rank = \"t63\" AND time < 25.47",
"context": "CREATE TABLE table_name_88 (heat_rank INTEGER, overall_rank VARCHAR, time VARCHAR)",
"question": "I want to know the highest heat rank for overall rank of t63 and time less than 25.47"
} |
### QUESTION
What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?
### CONTEXT
CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR)
### ANSWER
SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12</s> | {
"answer": "SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12",
"context": "CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR)",
"question": "What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?"
} |
### QUESTION
Who directed the movie when John Wayne played the role of John Travers?
### CONTEXT
CREATE TABLE table_name_54 (director VARCHAR, role VARCHAR)
### ANSWER
SELECT director FROM table_name_54 WHERE role = "john travers"</s> | {
"answer": "SELECT director FROM table_name_54 WHERE role = \"john travers\"",
"context": "CREATE TABLE table_name_54 (director VARCHAR, role VARCHAR)",
"question": "Who directed the movie when John Wayne played the role of John Travers?"
} |
### QUESTION
Tell me the format for worldwide region july 22, 2008
### CONTEXT
CREATE TABLE table_name_67 (format VARCHAR, region VARCHAR, date VARCHAR)
### ANSWER
SELECT format FROM table_name_67 WHERE region = "worldwide" AND date = "july 22, 2008"</s> | {
"answer": "SELECT format FROM table_name_67 WHERE region = \"worldwide\" AND date = \"july 22, 2008\"",
"context": "CREATE TABLE table_name_67 (format VARCHAR, region VARCHAR, date VARCHAR)",
"question": "Tell me the format for worldwide region july 22, 2008"
} |
### QUESTION
What is the stage of Fabiano Fontanelli, who had a Trofeo Fast Team of Gewiss Playbus and a point classification of Fabrizio Guidi?
### CONTEXT
CREATE TABLE table_name_13 (stage VARCHAR, winner VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)
### ANSWER
SELECT stage FROM table_name_13 WHERE trofeo_fast_team = "gewiss playbus" AND points_classification = "fabrizio guidi" AND winner = "fabiano fontanelli"</s> | {
"answer": "SELECT stage FROM table_name_13 WHERE trofeo_fast_team = \"gewiss playbus\" AND points_classification = \"fabrizio guidi\" AND winner = \"fabiano fontanelli\"",
"context": "CREATE TABLE table_name_13 (stage VARCHAR, winner VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)",
"question": "What is the stage of Fabiano Fontanelli, who had a Trofeo Fast Team of Gewiss Playbus and a point classification of Fabrizio Guidi?"
} |
### QUESTION
When did a Competition of friendly, and a Score of 2–1, and a Venue of philadelphia , pennsylvania occur?
### CONTEXT
CREATE TABLE table_name_4 (date VARCHAR, venue VARCHAR, competition VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_4 WHERE competition = "friendly" AND score = "2–1" AND venue = "philadelphia , pennsylvania"</s> | {
"answer": "SELECT date FROM table_name_4 WHERE competition = \"friendly\" AND score = \"2–1\" AND venue = \"philadelphia , pennsylvania\"",
"context": "CREATE TABLE table_name_4 (date VARCHAR, venue VARCHAR, competition VARCHAR, score VARCHAR)",
"question": "When did a Competition of friendly, and a Score of 2–1, and a Venue of philadelphia , pennsylvania occur?"
} |
### QUESTION
What is the Transfer window, when the Transfer fee is "free", and when the item "Moving to" is Norwich City?
### CONTEXT
CREATE TABLE table_name_30 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)
### ANSWER
SELECT transfer_window FROM table_name_30 WHERE transfer_fee = "free" AND moving_to = "norwich city"</s> | {
"answer": "SELECT transfer_window FROM table_name_30 WHERE transfer_fee = \"free\" AND moving_to = \"norwich city\"",
"context": "CREATE TABLE table_name_30 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)",
"question": "What is the Transfer window, when the Transfer fee is \"free\", and when the item \"Moving to\" is Norwich City?"
} |
### QUESTION
When was Mushfiqur Rahim's test career?
### CONTEXT
CREATE TABLE table_name_98 (test_career VARCHAR, player VARCHAR)
### ANSWER
SELECT test_career FROM table_name_98 WHERE player = "mushfiqur rahim"</s> | {
"answer": "SELECT test_career FROM table_name_98 WHERE player = \"mushfiqur rahim\"",
"context": "CREATE TABLE table_name_98 (test_career VARCHAR, player VARCHAR)",
"question": "When was Mushfiqur Rahim's test career?"
} |
### QUESTION
When did the opponent knockout Barry Prior in more than 2 rounds?
### CONTEXT
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)
### ANSWER
SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior"</s> | {
"answer": "SELECT date FROM table_name_53 WHERE method = \"knockout\" AND round > 2 AND opponent = \"barry prior\"",
"context": "CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)",
"question": "When did the opponent knockout Barry Prior in more than 2 rounds?"
} |
### QUESTION
Tell me the host for midwest thomas assembly center
### CONTEXT
CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR)
### ANSWER
SELECT host FROM table_name_85 WHERE region = "midwest" AND venue = "thomas assembly center"</s> | {
"answer": "SELECT host FROM table_name_85 WHERE region = \"midwest\" AND venue = \"thomas assembly center\"",
"context": "CREATE TABLE table_name_85 (host VARCHAR, region VARCHAR, venue VARCHAR)",
"question": "Tell me the host for midwest thomas assembly center"
} |
### QUESTION
In 1971 at MCG, what was the score of the VFL Reserves?
### CONTEXT
CREATE TABLE table_name_35 (score VARCHAR, year VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT score FROM table_name_35 WHERE competition = "vfl reserves" AND venue = "mcg" AND year = "1971"</s> | {
"answer": "SELECT score FROM table_name_35 WHERE competition = \"vfl reserves\" AND venue = \"mcg\" AND year = \"1971\"",
"context": "CREATE TABLE table_name_35 (score VARCHAR, year VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "In 1971 at MCG, what was the score of the VFL Reserves?"
} |
### QUESTION
Where was the match with a score of 4.10 (34) - 8.12 (60)?
### CONTEXT
CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR)
### ANSWER
SELECT venue FROM table_name_51 WHERE score = "4.10 (34) - 8.12 (60)"</s> | {
"answer": "SELECT venue FROM table_name_51 WHERE score = \"4.10 (34) - 8.12 (60)\"",
"context": "CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR)",
"question": "Where was the match with a score of 4.10 (34) - 8.12 (60)?"
} |
### QUESTION
What was the score of the game when the record was 28–19?
### CONTEXT
CREATE TABLE table_name_62 (score VARCHAR, record VARCHAR)
### ANSWER
SELECT score FROM table_name_62 WHERE record = "28–19"</s> | {
"answer": "SELECT score FROM table_name_62 WHERE record = \"28–19\"",
"context": "CREATE TABLE table_name_62 (score VARCHAR, record VARCHAR)",
"question": "What was the score of the game when the record was 28–19?"
} |
### QUESTION
What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000?
### CONTEXT
CREATE TABLE table_name_2 (bbc_two_rank VARCHAR, bbc_one_rank VARCHAR, bbc_one_total_viewing VARCHAR)
### ANSWER
SELECT bbc_two_rank FROM table_name_2 WHERE bbc_one_rank = "1st" AND bbc_one_total_viewing = "9,840,000"</s> | {
"answer": "SELECT bbc_two_rank FROM table_name_2 WHERE bbc_one_rank = \"1st\" AND bbc_one_total_viewing = \"9,840,000\"",
"context": "CREATE TABLE table_name_2 (bbc_two_rank VARCHAR, bbc_one_rank VARCHAR, bbc_one_total_viewing VARCHAR)",
"question": "What is the BBC 2 rank when BBC 1 is 1st rank and the total viewing is 9,840,000?"
} |
### QUESTION
Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997?
### CONTEXT
CREATE TABLE table_name_41 (constituency VARCHAR, candidate VARCHAR, position VARCHAR, party VARCHAR, election VARCHAR)
### ANSWER
SELECT constituency FROM table_name_41 WHERE party = "alliance" AND election < 1997 AND position = 2 AND candidate = "seamus close"</s> | {
"answer": "SELECT constituency FROM table_name_41 WHERE party = \"alliance\" AND election < 1997 AND position = 2 AND candidate = \"seamus close\"",
"context": "CREATE TABLE table_name_41 (constituency VARCHAR, candidate VARCHAR, position VARCHAR, party VARCHAR, election VARCHAR)",
"question": "Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997?"
} |
### QUESTION
How many points for the navy team that lost over 11?
### CONTEXT
CREATE TABLE table_name_4 (points INTEGER, team VARCHAR, lost VARCHAR)
### ANSWER
SELECT SUM(points) FROM table_name_4 WHERE team = "navy" AND lost > 11</s> | {
"answer": "SELECT SUM(points) FROM table_name_4 WHERE team = \"navy\" AND lost > 11",
"context": "CREATE TABLE table_name_4 (points INTEGER, team VARCHAR, lost VARCHAR)",
"question": "How many points for the navy team that lost over 11?"
} |
### QUESTION
What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?
### CONTEXT
CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR)
### ANSWER
SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = "royal philharmonic orchestra" AND record_company = "decca records"</s> | {
"answer": "SELECT MIN(year_of_recording) FROM table_name_63 WHERE orchestra = \"royal philharmonic orchestra\" AND record_company = \"decca records\"",
"context": "CREATE TABLE table_name_63 (year_of_recording INTEGER, orchestra VARCHAR, record_company VARCHAR)",
"question": "What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?"
} |
### QUESTION
Tell me the lowest interview for oklahoma and swimsuit less than 8.8
### CONTEXT
CREATE TABLE table_name_46 (interview INTEGER, state VARCHAR, swimsuit VARCHAR)
### ANSWER
SELECT MIN(interview) FROM table_name_46 WHERE state = "oklahoma" AND swimsuit < 8.8</s> | {
"answer": "SELECT MIN(interview) FROM table_name_46 WHERE state = \"oklahoma\" AND swimsuit < 8.8",
"context": "CREATE TABLE table_name_46 (interview INTEGER, state VARCHAR, swimsuit VARCHAR)",
"question": "Tell me the lowest interview for oklahoma and swimsuit less than 8.8"
} |
### QUESTION
Which authors belong to the institution "Google"? Show the first names and last names.
### CONTEXT
CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)
### ANSWER
SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google"</s> | {
"answer": "SELECT DISTINCT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = \"Google\"",
"context": "CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR); CREATE TABLE inst (instid VARCHAR, name VARCHAR)",
"question": "Which authors belong to the institution \"Google\"? Show the first names and last names."
} |
### QUESTION
I want the average for evening gown of 7.52 and swimsuit larger than 7.78
### CONTEXT
CREATE TABLE table_name_54 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR)
### ANSWER
SELECT AVG(average) FROM table_name_54 WHERE evening_gown = 7.52 AND swimsuit > 7.78</s> | {
"answer": "SELECT AVG(average) FROM table_name_54 WHERE evening_gown = 7.52 AND swimsuit > 7.78",
"context": "CREATE TABLE table_name_54 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR)",
"question": "I want the average for evening gown of 7.52 and swimsuit larger than 7.78"
} |
### QUESTION
Tell me the highest interview for north carolina and evening gown more than 7.68
### CONTEXT
CREATE TABLE table_name_19 (interview INTEGER, state VARCHAR, evening_gown VARCHAR)
### ANSWER
SELECT MAX(interview) FROM table_name_19 WHERE state = "north carolina" AND evening_gown > 7.68</s> | {
"answer": "SELECT MAX(interview) FROM table_name_19 WHERE state = \"north carolina\" AND evening_gown > 7.68",
"context": "CREATE TABLE table_name_19 (interview INTEGER, state VARCHAR, evening_gown VARCHAR)",
"question": "Tell me the highest interview for north carolina and evening gown more than 7.68"
} |
### QUESTION
Which NCAA Tournament Appearances have Conference Titles that are larger than 0, NCAA Titles of 0, and were coached by Lou Watson?
### CONTEXT
CREATE TABLE table_name_3 (ncaa_tourn_appearances VARCHAR, coach VARCHAR, conference_titles VARCHAR, ncaa_titles VARCHAR)
### ANSWER
SELECT ncaa_tourn_appearances FROM table_name_3 WHERE conference_titles > "0" AND ncaa_titles = "0" AND coach = "lou watson"</s> | {
"answer": "SELECT ncaa_tourn_appearances FROM table_name_3 WHERE conference_titles > \"0\" AND ncaa_titles = \"0\" AND coach = \"lou watson\"",
"context": "CREATE TABLE table_name_3 (ncaa_tourn_appearances VARCHAR, coach VARCHAR, conference_titles VARCHAR, ncaa_titles VARCHAR)",
"question": "Which NCAA Tournament Appearances have Conference Titles that are larger than 0, NCAA Titles of 0, and were coached by Lou Watson?"
} |
### QUESTION
Who won the XXIV Gran Premio di Pescara in the sports car class?
### CONTEXT
CREATE TABLE table_name_81 (driver_s VARCHAR, class VARCHAR, race_title VARCHAR)
### ANSWER
SELECT driver_s FROM table_name_81 WHERE class = "sports car" AND race_title = "xxiv gran premio di pescara"</s> | {
"answer": "SELECT driver_s FROM table_name_81 WHERE class = \"sports car\" AND race_title = \"xxiv gran premio di pescara\"",
"context": "CREATE TABLE table_name_81 (driver_s VARCHAR, class VARCHAR, race_title VARCHAR)",
"question": "Who won the XXIV Gran Premio di Pescara in the sports car class?"
} |
### QUESTION
What surface was the città di caltanissetta played on?
### CONTEXT
CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)
### ANSWER
SELECT surface FROM table_name_22 WHERE tournament = "città di caltanissetta"</s> | {
"answer": "SELECT surface FROM table_name_22 WHERE tournament = \"città di caltanissetta\"",
"context": "CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)",
"question": "What surface was the città di caltanissetta played on?"
} |
### QUESTION
How much is the total ERP W for an 107.9 fm freqeuncy MHz?
### CONTEXT
CREATE TABLE table_name_63 (erp_w VARCHAR, frequency_mhz VARCHAR)
### ANSWER
SELECT COUNT(erp_w) FROM table_name_63 WHERE frequency_mhz = "107.9 fm"</s> | {
"answer": "SELECT COUNT(erp_w) FROM table_name_63 WHERE frequency_mhz = \"107.9 fm\"",
"context": "CREATE TABLE table_name_63 (erp_w VARCHAR, frequency_mhz VARCHAR)",
"question": "How much is the total ERP W for an 107.9 fm freqeuncy MHz?"
} |
### QUESTION
Which Tournament has a winner Outcome with a Score of 6–3, 7–5 with Kimberly Po-Messerli as a Partner?
### CONTEXT
CREATE TABLE table_name_85 (tournament VARCHAR, partner VARCHAR, outcome VARCHAR, score VARCHAR)
### ANSWER
SELECT tournament FROM table_name_85 WHERE outcome = "winner" AND score = "6–3, 7–5" AND partner = "kimberly po-messerli"</s> | {
"answer": "SELECT tournament FROM table_name_85 WHERE outcome = \"winner\" AND score = \"6–3, 7–5\" AND partner = \"kimberly po-messerli\"",
"context": "CREATE TABLE table_name_85 (tournament VARCHAR, partner VARCHAR, outcome VARCHAR, score VARCHAR)",
"question": "Which Tournament has a winner Outcome with a Score of 6–3, 7–5 with Kimberly Po-Messerli as a Partner?"
} |
### QUESTION
What is the smallest sales area (m²) that has €4,094/m² and more than 2 stores?
### CONTEXT
CREATE TABLE table_name_20 (sales_area__m²_ INTEGER, sales_per_area VARCHAR, no_of_stores VARCHAR)
### ANSWER
SELECT MIN(sales_area__m²_) FROM table_name_20 WHERE sales_per_area = "€4,094/m²" AND no_of_stores > 2</s> | {
"answer": "SELECT MIN(sales_area__m²_) FROM table_name_20 WHERE sales_per_area = \"€4,094/m²\" AND no_of_stores > 2",
"context": "CREATE TABLE table_name_20 (sales_area__m²_ INTEGER, sales_per_area VARCHAR, no_of_stores VARCHAR)",
"question": "What is the smallest sales area (m²) that has €4,094/m² and more than 2 stores?"
} |
### QUESTION
Tell me the total number of attendance for result of l 18-6
### CONTEXT
CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_name_3 WHERE result = "l 18-6"</s> | {
"answer": "SELECT COUNT(attendance) FROM table_name_3 WHERE result = \"l 18-6\"",
"context": "CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR)",
"question": "Tell me the total number of attendance for result of l 18-6"
} |
### QUESTION
Tell me the average spectators for 2006-06-21 and time more than 21
### CONTEXT
CREATE TABLE table_name_56 (spectators INTEGER, date VARCHAR, time_cet_ VARCHAR)
### ANSWER
SELECT AVG(spectators) FROM table_name_56 WHERE date = "2006-06-21" AND time_cet_ > 21</s> | {
"answer": "SELECT AVG(spectators) FROM table_name_56 WHERE date = \"2006-06-21\" AND time_cet_ > 21",
"context": "CREATE TABLE table_name_56 (spectators INTEGER, date VARCHAR, time_cet_ VARCHAR)",
"question": "Tell me the average spectators for 2006-06-21 and time more than 21"
} |
### QUESTION
How many people participated in the Rasmussen Reports poll on October 13, 2010?
### CONTEXT
CREATE TABLE table_name_61 (sample_size VARCHAR, poll_source VARCHAR, date_s__administered VARCHAR)
### ANSWER
SELECT sample_size FROM table_name_61 WHERE poll_source = "rasmussen reports" AND date_s__administered = "october 13, 2010"</s> | {
"answer": "SELECT sample_size FROM table_name_61 WHERE poll_source = \"rasmussen reports\" AND date_s__administered = \"october 13, 2010\"",
"context": "CREATE TABLE table_name_61 (sample_size VARCHAR, poll_source VARCHAR, date_s__administered VARCHAR)",
"question": "How many people participated in the Rasmussen Reports poll on October 13, 2010?"
} |
### QUESTION
Tell me the tournament for outcome of winner and score of 4-6 6-3 10-5
### CONTEXT
CREATE TABLE table_name_90 (tournament VARCHAR, outcome VARCHAR, score VARCHAR)
### ANSWER
SELECT tournament FROM table_name_90 WHERE outcome = "winner" AND score = "4-6 6-3 10-5"</s> | {
"answer": "SELECT tournament FROM table_name_90 WHERE outcome = \"winner\" AND score = \"4-6 6-3 10-5\"",
"context": "CREATE TABLE table_name_90 (tournament VARCHAR, outcome VARCHAR, score VARCHAR)",
"question": "Tell me the tournament for outcome of winner and score of 4-6 6-3 10-5"
} |
### QUESTION
What is the number of Ashmolean with 14s Harrison, and image less than 542?
### CONTEXT
CREATE TABLE table_name_40 (ashmolean VARCHAR, harrison VARCHAR, image VARCHAR)
### ANSWER
SELECT COUNT(ashmolean) FROM table_name_40 WHERE harrison = "14s" AND image < 542</s> | {
"answer": "SELECT COUNT(ashmolean) FROM table_name_40 WHERE harrison = \"14s\" AND image < 542",
"context": "CREATE TABLE table_name_40 (ashmolean VARCHAR, harrison VARCHAR, image VARCHAR)",
"question": "What is the number of Ashmolean with 14s Harrison, and image less than 542?"
} |
### QUESTION
Tell me the date for dinah pfizenmaier anna zaja and winner
### CONTEXT
CREATE TABLE table_name_46 (date VARCHAR, outcome VARCHAR, opponents VARCHAR)
### ANSWER
SELECT date FROM table_name_46 WHERE outcome = "winner" AND opponents = "dinah pfizenmaier anna zaja"</s> | {
"answer": "SELECT date FROM table_name_46 WHERE outcome = \"winner\" AND opponents = \"dinah pfizenmaier anna zaja\"",
"context": "CREATE TABLE table_name_46 (date VARCHAR, outcome VARCHAR, opponents VARCHAR)",
"question": "Tell me the date for dinah pfizenmaier anna zaja and winner"
} |
### QUESTION
What order has the Species Authority of hydrochaeris hydrochaeris (linnaeus, 1766)?
### CONTEXT
CREATE TABLE table_name_84 (order VARCHAR, species_authority VARCHAR)
### ANSWER
SELECT order FROM table_name_84 WHERE species_authority = "hydrochaeris hydrochaeris (linnaeus, 1766)"</s> | {
"answer": "SELECT order FROM table_name_84 WHERE species_authority = \"hydrochaeris hydrochaeris (linnaeus, 1766)\"",
"context": "CREATE TABLE table_name_84 (order VARCHAR, species_authority VARCHAR)",
"question": "What order has the Species Authority of hydrochaeris hydrochaeris (linnaeus, 1766)?"
} |
### QUESTION
What is the smallest total for a rank below 4, 0 silver medals, and 2 gold medals?
### CONTEXT
CREATE TABLE table_name_85 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_85 WHERE rank < 4 AND silver > 0 AND gold < 2</s> | {
"answer": "SELECT MIN(total) FROM table_name_85 WHERE rank < 4 AND silver > 0 AND gold < 2",
"context": "CREATE TABLE table_name_85 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR)",
"question": "What is the smallest total for a rank below 4, 0 silver medals, and 2 gold medals?"
} |
### QUESTION
What is the name for the species Authority of sigmodon hispidus say & ord, 1825?
### CONTEXT
CREATE TABLE table_name_76 (name VARCHAR, species_authority VARCHAR)
### ANSWER
SELECT name FROM table_name_76 WHERE species_authority = "sigmodon hispidus say & ord, 1825"</s> | {
"answer": "SELECT name FROM table_name_76 WHERE species_authority = \"sigmodon hispidus say & ord, 1825\"",
"context": "CREATE TABLE table_name_76 (name VARCHAR, species_authority VARCHAR)",
"question": "What is the name for the species Authority of sigmodon hispidus say & ord, 1825?"
} |
### QUESTION
Tell me the total number of pick for university of virginia
### CONTEXT
CREATE TABLE table_name_78 (pick__number VARCHAR, affiliation VARCHAR)
### ANSWER
SELECT COUNT(pick__number) FROM table_name_78 WHERE affiliation = "university of virginia"</s> | {
"answer": "SELECT COUNT(pick__number) FROM table_name_78 WHERE affiliation = \"university of virginia\"",
"context": "CREATE TABLE table_name_78 (pick__number VARCHAR, affiliation VARCHAR)",
"question": "Tell me the total number of pick for university of virginia"
} |
### QUESTION
What is the frequency of number 3 with a bus station origin?
### CONTEXT
CREATE TABLE table_name_33 (frequency VARCHAR, origin VARCHAR, number VARCHAR)
### ANSWER
SELECT frequency FROM table_name_33 WHERE origin = "bus station" AND number = 3</s> | {
"answer": "SELECT frequency FROM table_name_33 WHERE origin = \"bus station\" AND number = 3",
"context": "CREATE TABLE table_name_33 (frequency VARCHAR, origin VARCHAR, number VARCHAR)",
"question": "What is the frequency of number 3 with a bus station origin?"
} |
### QUESTION
for the name of jamar jackson what is the class?
### CONTEXT
CREATE TABLE table_name_87 (class VARCHAR, name VARCHAR)
### ANSWER
SELECT class FROM table_name_87 WHERE name = "jamar jackson"</s> | {
"answer": "SELECT class FROM table_name_87 WHERE name = \"jamar jackson\"",
"context": "CREATE TABLE table_name_87 (class VARCHAR, name VARCHAR)",
"question": "for the name of jamar jackson what is the class?"
} |
### QUESTION
for the name of jamar jackson what is the total of Number?
### CONTEXT
CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(number) FROM table_name_99 WHERE name = "jamar jackson"</s> | {
"answer": "SELECT COUNT(number) FROM table_name_99 WHERE name = \"jamar jackson\"",
"context": "CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR)",
"question": "for the name of jamar jackson what is the total of Number?"
} |
### QUESTION
Name the wicket for 19-03-2007
### CONTEXT
CREATE TABLE table_name_59 (wicket VARCHAR, date VARCHAR)
### ANSWER
SELECT wicket FROM table_name_59 WHERE date = "19-03-2007"</s> | {
"answer": "SELECT wicket FROM table_name_59 WHERE date = \"19-03-2007\"",
"context": "CREATE TABLE table_name_59 (wicket VARCHAR, date VARCHAR)",
"question": "Name the wicket for 19-03-2007"
} |
### QUESTION
At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?
### CONTEXT
CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR)
### ANSWER
SELECT track FROM table_name_80 WHERE pole_winner = "frank kimmel" AND event_name = "pennsylvania 200"</s> | {
"answer": "SELECT track FROM table_name_80 WHERE pole_winner = \"frank kimmel\" AND event_name = \"pennsylvania 200\"",
"context": "CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR)",
"question": "At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?"
} |
### QUESTION
Steve Wallace was a Race Winner at the Kentucky Speedway on what date?
### CONTEXT
CREATE TABLE table_name_75 (date VARCHAR, race_winner VARCHAR, track VARCHAR)
### ANSWER
SELECT date FROM table_name_75 WHERE race_winner = "steve wallace" AND track = "kentucky speedway"</s> | {
"answer": "SELECT date FROM table_name_75 WHERE race_winner = \"steve wallace\" AND track = \"kentucky speedway\"",
"context": "CREATE TABLE table_name_75 (date VARCHAR, race_winner VARCHAR, track VARCHAR)",
"question": "Steve Wallace was a Race Winner at the Kentucky Speedway on what date?"
} |
### QUESTION
Tell me what was commissioned december 30, 1965
### CONTEXT
CREATE TABLE table_name_12 (commissioned VARCHAR, launched VARCHAR)
### ANSWER
SELECT commissioned FROM table_name_12 WHERE launched = "december 30, 1965"</s> | {
"answer": "SELECT commissioned FROM table_name_12 WHERE launched = \"december 30, 1965\"",
"context": "CREATE TABLE table_name_12 (commissioned VARCHAR, launched VARCHAR)",
"question": "Tell me what was commissioned december 30, 1965"
} |
### QUESTION
Tell me the result for lincoln financial field december 11, 2005
### CONTEXT
CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_90 WHERE venue = "lincoln financial field" AND date = "december 11, 2005"</s> | {
"answer": "SELECT result FROM table_name_90 WHERE venue = \"lincoln financial field\" AND date = \"december 11, 2005\"",
"context": "CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, date VARCHAR)",
"question": "Tell me the result for lincoln financial field december 11, 2005"
} |
### QUESTION
Who was the winner when Katsuyuki Hiranaka had the fastest lap?
### CONTEXT
CREATE TABLE table_name_89 (winner VARCHAR, fastest_lap VARCHAR)
### ANSWER
SELECT winner FROM table_name_89 WHERE fastest_lap = "katsuyuki hiranaka"</s> | {
"answer": "SELECT winner FROM table_name_89 WHERE fastest_lap = \"katsuyuki hiranaka\"",
"context": "CREATE TABLE table_name_89 (winner VARCHAR, fastest_lap VARCHAR)",
"question": "Who was the winner when Katsuyuki Hiranaka had the fastest lap?"
} |
### QUESTION
What is the lowest division in the playoffs and did not qualify for the Open Cup in 2002?
### CONTEXT
CREATE TABLE table_name_91 (division INTEGER, year VARCHAR, playoffs VARCHAR, open_cup VARCHAR)
### ANSWER
SELECT MIN(division) FROM table_name_91 WHERE playoffs = "did not qualify" AND open_cup = "did not qualify" AND year = "2002"</s> | {
"answer": "SELECT MIN(division) FROM table_name_91 WHERE playoffs = \"did not qualify\" AND open_cup = \"did not qualify\" AND year = \"2002\"",
"context": "CREATE TABLE table_name_91 (division INTEGER, year VARCHAR, playoffs VARCHAR, open_cup VARCHAR)",
"question": "What is the lowest division in the playoffs and did not qualify for the Open Cup in 2002?"
} |
### QUESTION
Tell me the total number of years for wins less than 2 and class of 50cc with points of 15
### CONTEXT
CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = "50cc" AND points = 15</s> | {
"answer": "SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = \"50cc\" AND points = 15",
"context": "CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR)",
"question": "Tell me the total number of years for wins less than 2 and class of 50cc with points of 15"
} |
### QUESTION
Before round 9, when Takashi Kogure held pole position, who was the team?
### CONTEXT
CREATE TABLE table_name_85 (team VARCHAR, round VARCHAR, pole_position VARCHAR)
### ANSWER
SELECT team FROM table_name_85 WHERE round < 9 AND pole_position = "takashi kogure"</s> | {
"answer": "SELECT team FROM table_name_85 WHERE round < 9 AND pole_position = \"takashi kogure\"",
"context": "CREATE TABLE table_name_85 (team VARCHAR, round VARCHAR, pole_position VARCHAR)",
"question": "Before round 9, when Takashi Kogure held pole position, who was the team?"
} |
### QUESTION
Tell me the affiliation for mls team of metrostars and pick number of 26
### CONTEXT
CREATE TABLE table_name_28 (affiliation VARCHAR, mls_team VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT affiliation FROM table_name_28 WHERE mls_team = "metrostars" AND pick__number = 26</s> | {
"answer": "SELECT affiliation FROM table_name_28 WHERE mls_team = \"metrostars\" AND pick__number = 26",
"context": "CREATE TABLE table_name_28 (affiliation VARCHAR, mls_team VARCHAR, pick__number VARCHAR)",
"question": "Tell me the affiliation for mls team of metrostars and pick number of 26"
} |
### QUESTION
Tell me the total number of picks for position of m of williams college
### CONTEXT
CREATE TABLE table_name_9 (pick__number VARCHAR, position VARCHAR, affiliation VARCHAR)
### ANSWER
SELECT COUNT(pick__number) FROM table_name_9 WHERE position = "m" AND affiliation = "williams college"</s> | {
"answer": "SELECT COUNT(pick__number) FROM table_name_9 WHERE position = \"m\" AND affiliation = \"williams college\"",
"context": "CREATE TABLE table_name_9 (pick__number VARCHAR, position VARCHAR, affiliation VARCHAR)",
"question": "Tell me the total number of picks for position of m of williams college"
} |
### QUESTION
How many years did Team Newman/Haas Racing receive a 1st place ranking?
### CONTEXT
CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_86 WHERE team = "newman/haas racing" AND rank = "1st"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_86 WHERE team = \"newman/haas racing\" AND rank = \"1st\"",
"context": "CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)",
"question": "How many years did Team Newman/Haas Racing receive a 1st place ranking?"
} |
### QUESTION
What date did the VFL play Punt Road Oval?
### CONTEXT
CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_90 WHERE venue = "punt road oval"</s> | {
"answer": "SELECT date FROM table_name_90 WHERE venue = \"punt road oval\"",
"context": "CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)",
"question": "What date did the VFL play Punt Road Oval?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.