text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
Name the attribute for mutation and domcharacterdatamodified
### CONTEXT
CREATE TABLE table_name_81 (attribute VARCHAR, category VARCHAR, type VARCHAR)
### ANSWER
SELECT attribute FROM table_name_81 WHERE category = "mutation" AND type = "domcharacterdatamodified"</s> | {
"answer": "SELECT attribute FROM table_name_81 WHERE category = \"mutation\" AND type = \"domcharacterdatamodified\"",
"context": "CREATE TABLE table_name_81 (attribute VARCHAR, category VARCHAR, type VARCHAR)",
"question": "Name the attribute for mutation and domcharacterdatamodified"
} |
### QUESTION
What is the tournament with a clay surface and sofia shapatava as the opponent?
### CONTEXT
CREATE TABLE table_name_54 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)
### ANSWER
SELECT tournament FROM table_name_54 WHERE surface = "clay" AND opponent = "sofia shapatava"</s> | {
"answer": "SELECT tournament FROM table_name_54 WHERE surface = \"clay\" AND opponent = \"sofia shapatava\"",
"context": "CREATE TABLE table_name_54 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)",
"question": "What is the tournament with a clay surface and sofia shapatava as the opponent?"
} |
### QUESTION
What location attendance had a score of l 92–116?
### CONTEXT
CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_30 WHERE score = "l 92–116"</s> | {
"answer": "SELECT location_attendance FROM table_name_30 WHERE score = \"l 92–116\"",
"context": "CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR)",
"question": "What location attendance had a score of l 92–116?"
} |
### QUESTION
Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7
### CONTEXT
CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR, wins__outdoor_ VARCHAR)
### ANSWER
SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7</s> | {
"answer": "SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7",
"context": "CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR, wins__outdoor_ VARCHAR)",
"question": "Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7"
} |
### QUESTION
What is the series 4 with sarah newman in series 1?
### CONTEXT
CREATE TABLE table_name_70 (series_4 VARCHAR, series_1 VARCHAR)
### ANSWER
SELECT series_4 FROM table_name_70 WHERE series_1 = "sarah newman"</s> | {
"answer": "SELECT series_4 FROM table_name_70 WHERE series_1 = \"sarah newman\"",
"context": "CREATE TABLE table_name_70 (series_4 VARCHAR, series_1 VARCHAR)",
"question": "What is the series 4 with sarah newman in series 1?"
} |
### QUESTION
What is the highest number of losses of club cf calvo sotelo, which has more than 31 goals against, 38 goals for, and less than 30 played?
### CONTEXT
CREATE TABLE table_name_85 (losses INTEGER, played VARCHAR, club VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT MAX(losses) FROM table_name_85 WHERE goals_against > 31 AND goals_for = 38 AND club = "cf calvo sotelo" AND played < 30</s> | {
"answer": "SELECT MAX(losses) FROM table_name_85 WHERE goals_against > 31 AND goals_for = 38 AND club = \"cf calvo sotelo\" AND played < 30",
"context": "CREATE TABLE table_name_85 (losses INTEGER, played VARCHAR, club VARCHAR, goals_against VARCHAR, goals_for VARCHAR)",
"question": "What is the highest number of losses of club cf calvo sotelo, which has more than 31 goals against, 38 goals for, and less than 30 played?"
} |
### QUESTION
What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?
### CONTEXT
CREATE TABLE table_name_5 (population VARCHAR, former_local_authority VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(population) FROM table_name_5 WHERE former_local_authority = "cockermouth rural district" AND name = "plumbland"</s> | {
"answer": "SELECT COUNT(population) FROM table_name_5 WHERE former_local_authority = \"cockermouth rural district\" AND name = \"plumbland\"",
"context": "CREATE TABLE table_name_5 (population VARCHAR, former_local_authority VARCHAR, name VARCHAR)",
"question": "What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?"
} |
### QUESTION
What is Pick, when Round is "6", when Nationality is "Canada", when Draft is greater than 1983, and when Player is "Ed Ward Category:Articles with hCards"?
### CONTEXT
CREATE TABLE table_name_37 (pick VARCHAR, player VARCHAR, draft VARCHAR, round VARCHAR, nationality VARCHAR)
### ANSWER
SELECT pick FROM table_name_37 WHERE round = "6" AND nationality = "canada" AND draft > 1983 AND player = "ed ward category:articles with hcards"</s> | {
"answer": "SELECT pick FROM table_name_37 WHERE round = \"6\" AND nationality = \"canada\" AND draft > 1983 AND player = \"ed ward category:articles with hcards\"",
"context": "CREATE TABLE table_name_37 (pick VARCHAR, player VARCHAR, draft VARCHAR, round VARCHAR, nationality VARCHAR)",
"question": "What is Pick, when Round is \"6\", when Nationality is \"Canada\", when Draft is greater than 1983, and when Player is \"Ed Ward Category:Articles with hCards\"?"
} |
### QUESTION
What year featured lola motorsport as an entrant with over 0 points?
### CONTEXT
CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR)
### ANSWER
SELECT AVG(year) FROM table_name_44 WHERE entrant = "lola motorsport" AND points > 0</s> | {
"answer": "SELECT AVG(year) FROM table_name_44 WHERE entrant = \"lola motorsport\" AND points > 0",
"context": "CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR)",
"question": "What year featured lola motorsport as an entrant with over 0 points?"
} |
### QUESTION
What was built in 1857?
### CONTEXT
CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR)
### ANSWER
SELECT name FROM table_name_89 WHERE year_built = 1857</s> | {
"answer": "SELECT name FROM table_name_89 WHERE year_built = 1857",
"context": "CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR)",
"question": "What was built in 1857?"
} |
### QUESTION
What was the result in 2011 for the French Open tournament?
### CONTEXT
CREATE TABLE table_name_16 (tournament VARCHAR)
### ANSWER
SELECT 2011 FROM table_name_16 WHERE tournament = "french open"</s> | {
"answer": "SELECT 2011 FROM table_name_16 WHERE tournament = \"french open\"",
"context": "CREATE TABLE table_name_16 (tournament VARCHAR)",
"question": "What was the result in 2011 for the French Open tournament?"
} |
### QUESTION
What was the winning score when Steve Stricker was runner-up?
### CONTEXT
CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT winning_score FROM table_name_1 WHERE runner_s__up = "steve stricker"</s> | {
"answer": "SELECT winning_score FROM table_name_1 WHERE runner_s__up = \"steve stricker\"",
"context": "CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR)",
"question": "What was the winning score when Steve Stricker was runner-up?"
} |
### QUESTION
What was the margin of victory when the winning score was −14 (63-67-73-67=270)?
### CONTEXT
CREATE TABLE table_name_2 (margin_of_victory VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT margin_of_victory FROM table_name_2 WHERE winning_score = −14(63 - 67 - 73 - 67 = 270)</s> | {
"answer": "SELECT margin_of_victory FROM table_name_2 WHERE winning_score = −14(63 - 67 - 73 - 67 = 270)",
"context": "CREATE TABLE table_name_2 (margin_of_victory VARCHAR, winning_score VARCHAR)",
"question": "What was the margin of victory when the winning score was −14 (63-67-73-67=270)?"
} |
### QUESTION
What was the pick number for the person from the United States who as drafted to the SF position from North Carolina?
### CONTEXT
CREATE TABLE table_name_78 (pick VARCHAR, position VARCHAR, nationality VARCHAR, college_high_school_club VARCHAR)
### ANSWER
SELECT pick FROM table_name_78 WHERE nationality = "united states" AND college_high_school_club = "north carolina" AND position = "sf"</s> | {
"answer": "SELECT pick FROM table_name_78 WHERE nationality = \"united states\" AND college_high_school_club = \"north carolina\" AND position = \"sf\"",
"context": "CREATE TABLE table_name_78 (pick VARCHAR, position VARCHAR, nationality VARCHAR, college_high_school_club VARCHAR)",
"question": "What was the pick number for the person from the United States who as drafted to the SF position from North Carolina?"
} |
### QUESTION
What is the record for the game against the New England Patriots with a recap?
### CONTEXT
CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR)
### ANSWER
SELECT record FROM table_name_90 WHERE nfl_recap = "recap" AND opponent = "new england patriots"</s> | {
"answer": "SELECT record FROM table_name_90 WHERE nfl_recap = \"recap\" AND opponent = \"new england patriots\"",
"context": "CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR)",
"question": "What is the record for the game against the New England Patriots with a recap?"
} |
### QUESTION
What is the original title of the Gypsy Magic film title used in nomination?
### CONTEXT
CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
### ANSWER
SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = "gypsy magic"</s> | {
"answer": "SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = \"gypsy magic\"",
"context": "CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)",
"question": "What is the original title of the Gypsy Magic film title used in nomination?"
} |
### QUESTION
What is the location of the Conquista Fight 1?
### CONTEXT
CREATE TABLE table_name_11 (location VARCHAR, event VARCHAR)
### ANSWER
SELECT location FROM table_name_11 WHERE event = "conquista fight 1"</s> | {
"answer": "SELECT location FROM table_name_11 WHERE event = \"conquista fight 1\"",
"context": "CREATE TABLE table_name_11 (location VARCHAR, event VARCHAR)",
"question": "What is the location of the Conquista Fight 1?"
} |
### QUESTION
What's the total long for more than 24 loss, a gain over 273, and an avg/g of 207.8?
### CONTEXT
CREATE TABLE table_name_19 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)
### ANSWER
SELECT SUM(long) FROM table_name_19 WHERE loss > 24 AND gain > 273 AND avg_g = 207.8</s> | {
"answer": "SELECT SUM(long) FROM table_name_19 WHERE loss > 24 AND gain > 273 AND avg_g = 207.8",
"context": "CREATE TABLE table_name_19 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)",
"question": "What's the total long for more than 24 loss, a gain over 273, and an avg/g of 207.8?"
} |
### QUESTION
Which Pocona Municipality (%) is the lowest one that has a Puerto Villarroel Municipality (%) smaller than 14.6, and a Chimoré Municipality (%) of 5.1, and an Entre Ríos Municipality (%) smaller than 0.9?
### CONTEXT
CREATE TABLE table_name_61 (pocona_municipality___percentage_ INTEGER, entre_ríos_municipality___percentage_ VARCHAR, puerto_villarroel_municipality___percentage_ VARCHAR, chimoré_municipality___percentage_ VARCHAR)
### ANSWER
SELECT MIN(pocona_municipality___percentage_) FROM table_name_61 WHERE puerto_villarroel_municipality___percentage_ < 14.6 AND chimoré_municipality___percentage_ = 5.1 AND entre_ríos_municipality___percentage_ < 0.9</s> | {
"answer": "SELECT MIN(pocona_municipality___percentage_) FROM table_name_61 WHERE puerto_villarroel_municipality___percentage_ < 14.6 AND chimoré_municipality___percentage_ = 5.1 AND entre_ríos_municipality___percentage_ < 0.9",
"context": "CREATE TABLE table_name_61 (pocona_municipality___percentage_ INTEGER, entre_ríos_municipality___percentage_ VARCHAR, puerto_villarroel_municipality___percentage_ VARCHAR, chimoré_municipality___percentage_ VARCHAR)",
"question": "Which Pocona Municipality (%) is the lowest one that has a Puerto Villarroel Municipality (%) smaller than 14.6, and a Chimoré Municipality (%) of 5.1, and an Entre Ríos Municipality (%) smaller than 0.9?"
} |
### QUESTION
Which Puerto Villarroel Municipality (%) is the lowest one that has an Ethnic group of not indigenous, and a Totora Municipality (%) smaller than 4.4?
### CONTEXT
CREATE TABLE table_name_94 (puerto_villarroel_municipality___percentage_ INTEGER, ethnic_group VARCHAR, totora_municipality___percentage_ VARCHAR)
### ANSWER
SELECT MIN(puerto_villarroel_municipality___percentage_) FROM table_name_94 WHERE ethnic_group = "not indigenous" AND totora_municipality___percentage_ < 4.4</s> | {
"answer": "SELECT MIN(puerto_villarroel_municipality___percentage_) FROM table_name_94 WHERE ethnic_group = \"not indigenous\" AND totora_municipality___percentage_ < 4.4",
"context": "CREATE TABLE table_name_94 (puerto_villarroel_municipality___percentage_ INTEGER, ethnic_group VARCHAR, totora_municipality___percentage_ VARCHAR)",
"question": "Which Puerto Villarroel Municipality (%) is the lowest one that has an Ethnic group of not indigenous, and a Totora Municipality (%) smaller than 4.4?"
} |
### QUESTION
Which Pocona Municipality (%) has a Puerto Villarroel Municipality (%) larger than 14.6, and a Pojo Municipality (%) smaller than 88.5?
### CONTEXT
CREATE TABLE table_name_6 (pocona_municipality___percentage_ INTEGER, puerto_villarroel_municipality___percentage_ VARCHAR, pojo_municipality___percentage_ VARCHAR)
### ANSWER
SELECT SUM(pocona_municipality___percentage_) FROM table_name_6 WHERE puerto_villarroel_municipality___percentage_ > 14.6 AND pojo_municipality___percentage_ < 88.5</s> | {
"answer": "SELECT SUM(pocona_municipality___percentage_) FROM table_name_6 WHERE puerto_villarroel_municipality___percentage_ > 14.6 AND pojo_municipality___percentage_ < 88.5",
"context": "CREATE TABLE table_name_6 (pocona_municipality___percentage_ INTEGER, puerto_villarroel_municipality___percentage_ VARCHAR, pojo_municipality___percentage_ VARCHAR)",
"question": "Which Pocona Municipality (%) has a Puerto Villarroel Municipality (%) larger than 14.6, and a Pojo Municipality (%) smaller than 88.5?"
} |
### QUESTION
Which Totora Municipality (%) is the highest one that has a Chimoré Municipality (%) of 5.1, and a Pocona Municipality (%) smaller than 0.2?
### CONTEXT
CREATE TABLE table_name_72 (totora_municipality___percentage_ INTEGER, chimoré_municipality___percentage_ VARCHAR, pocona_municipality___percentage_ VARCHAR)
### ANSWER
SELECT MAX(totora_municipality___percentage_) FROM table_name_72 WHERE chimoré_municipality___percentage_ = 5.1 AND pocona_municipality___percentage_ < 0.2</s> | {
"answer": "SELECT MAX(totora_municipality___percentage_) FROM table_name_72 WHERE chimoré_municipality___percentage_ = 5.1 AND pocona_municipality___percentage_ < 0.2",
"context": "CREATE TABLE table_name_72 (totora_municipality___percentage_ INTEGER, chimoré_municipality___percentage_ VARCHAR, pocona_municipality___percentage_ VARCHAR)",
"question": "Which Totora Municipality (%) is the highest one that has a Chimoré Municipality (%) of 5.1, and a Pocona Municipality (%) smaller than 0.2?"
} |
### QUESTION
Which Pos has a Team of roush fenway racing, and a Car # of 99?
### CONTEXT
CREATE TABLE table_name_32 (pos INTEGER, team VARCHAR, car__number VARCHAR)
### ANSWER
SELECT SUM(pos) FROM table_name_32 WHERE team = "roush fenway racing" AND car__number = 99</s> | {
"answer": "SELECT SUM(pos) FROM table_name_32 WHERE team = \"roush fenway racing\" AND car__number = 99",
"context": "CREATE TABLE table_name_32 (pos INTEGER, team VARCHAR, car__number VARCHAR)",
"question": "Which Pos has a Team of roush fenway racing, and a Car # of 99?"
} |
### QUESTION
Which Points is the highest one that has a Nationality of aut, and a Name of thomas morgenstern?
### CONTEXT
CREATE TABLE table_name_32 (points INTEGER, nationality VARCHAR, name VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_32 WHERE nationality = "aut" AND name = "thomas morgenstern"</s> | {
"answer": "SELECT MAX(points) FROM table_name_32 WHERE nationality = \"aut\" AND name = \"thomas morgenstern\"",
"context": "CREATE TABLE table_name_32 (points INTEGER, nationality VARCHAR, name VARCHAR)",
"question": "Which Points is the highest one that has a Nationality of aut, and a Name of thomas morgenstern?"
} |
### QUESTION
What is the sum of the capacities for Carrigh wind warm that has a size of 0.85 MW and more than 3 turbines?
### CONTEXT
CREATE TABLE table_name_31 (capacity__mw_ INTEGER, turbines VARCHAR, size__mw_ VARCHAR, wind_farm VARCHAR)
### ANSWER
SELECT SUM(capacity__mw_) FROM table_name_31 WHERE size__mw_ = "0.85" AND wind_farm = "carrigh" AND turbines > 3</s> | {
"answer": "SELECT SUM(capacity__mw_) FROM table_name_31 WHERE size__mw_ = \"0.85\" AND wind_farm = \"carrigh\" AND turbines > 3",
"context": "CREATE TABLE table_name_31 (capacity__mw_ INTEGER, turbines VARCHAR, size__mw_ VARCHAR, wind_farm VARCHAR)",
"question": "What is the sum of the capacities for Carrigh wind warm that has a size of 0.85 MW and more than 3 turbines?"
} |
### QUESTION
What is the size of the windfarm in wexford that has more than 19 turbines and a vendor of Enercon?
### CONTEXT
CREATE TABLE table_name_87 (size__mw_ VARCHAR, county VARCHAR, turbines VARCHAR, turbine_vendor VARCHAR)
### ANSWER
SELECT size__mw_ FROM table_name_87 WHERE turbines > 19 AND turbine_vendor = "enercon" AND county = "wexford"</s> | {
"answer": "SELECT size__mw_ FROM table_name_87 WHERE turbines > 19 AND turbine_vendor = \"enercon\" AND county = \"wexford\"",
"context": "CREATE TABLE table_name_87 (size__mw_ VARCHAR, county VARCHAR, turbines VARCHAR, turbine_vendor VARCHAR)",
"question": "What is the size of the windfarm in wexford that has more than 19 turbines and a vendor of Enercon?"
} |
### QUESTION
Who is the turbine vendor for Meenadreen in Donegal county with less than 6 turbines with a size of 0.85 MW?
### CONTEXT
CREATE TABLE table_name_85 (turbine_vendor VARCHAR, wind_farm VARCHAR, size__mw_ VARCHAR, turbines VARCHAR, county VARCHAR)
### ANSWER
SELECT turbine_vendor FROM table_name_85 WHERE turbines < 6 AND county = "donegal" AND size__mw_ = "0.85" AND wind_farm = "meenadreen"</s> | {
"answer": "SELECT turbine_vendor FROM table_name_85 WHERE turbines < 6 AND county = \"donegal\" AND size__mw_ = \"0.85\" AND wind_farm = \"meenadreen\"",
"context": "CREATE TABLE table_name_85 (turbine_vendor VARCHAR, wind_farm VARCHAR, size__mw_ VARCHAR, turbines VARCHAR, county VARCHAR)",
"question": "Who is the turbine vendor for Meenadreen in Donegal county with less than 6 turbines with a size of 0.85 MW?"
} |
### QUESTION
What ship has a norway nationality?
### CONTEXT
CREATE TABLE table_name_18 (ship VARCHAR, nationality VARCHAR)
### ANSWER
SELECT ship FROM table_name_18 WHERE nationality = "norway"</s> | {
"answer": "SELECT ship FROM table_name_18 WHERE nationality = \"norway\"",
"context": "CREATE TABLE table_name_18 (ship VARCHAR, nationality VARCHAR)",
"question": "What ship has a norway nationality?"
} |
### QUESTION
What County has a Median Family Income of $79,331?
### CONTEXT
CREATE TABLE table_name_3 (county VARCHAR, median_family_income VARCHAR)
### ANSWER
SELECT county FROM table_name_3 WHERE median_family_income = "$79,331"</s> | {
"answer": "SELECT county FROM table_name_3 WHERE median_family_income = \"$79,331\"",
"context": "CREATE TABLE table_name_3 (county VARCHAR, median_family_income VARCHAR)",
"question": "What County has a Median Family Income of $79,331?"
} |
### QUESTION
What is the Number of Households that have a Per Capita Income of $21,345?
### CONTEXT
CREATE TABLE table_name_59 (number_of_households INTEGER, per_capita_income VARCHAR)
### ANSWER
SELECT AVG(number_of_households) FROM table_name_59 WHERE per_capita_income = "$21,345"</s> | {
"answer": "SELECT AVG(number_of_households) FROM table_name_59 WHERE per_capita_income = \"$21,345\"",
"context": "CREATE TABLE table_name_59 (number_of_households INTEGER, per_capita_income VARCHAR)",
"question": "What is the Number of Households that have a Per Capita Income of $21,345?"
} |
### QUESTION
How many total gold medals did Australia receive?
### CONTEXT
CREATE TABLE table_name_80 (gold VARCHAR, nation VARCHAR)
### ANSWER
SELECT COUNT(gold) FROM table_name_80 WHERE nation = "australia"</s> | {
"answer": "SELECT COUNT(gold) FROM table_name_80 WHERE nation = \"australia\"",
"context": "CREATE TABLE table_name_80 (gold VARCHAR, nation VARCHAR)",
"question": "How many total gold medals did Australia receive?"
} |
### QUESTION
Which Population has a Median family income of $53,946?
### CONTEXT
CREATE TABLE table_name_41 (population INTEGER, median_family_income VARCHAR)
### ANSWER
SELECT MAX(population) FROM table_name_41 WHERE median_family_income = "$53,946"</s> | {
"answer": "SELECT MAX(population) FROM table_name_41 WHERE median_family_income = \"$53,946\"",
"context": "CREATE TABLE table_name_41 (population INTEGER, median_family_income VARCHAR)",
"question": "Which Population has a Median family income of $53,946?"
} |
### QUESTION
Which 1997's accompanying 1991 was a when the tournament was the australian open?
### CONTEXT
CREATE TABLE table_name_57 (tournament VARCHAR)
### ANSWER
SELECT 1997 FROM table_name_57 WHERE 1991 = "a" AND tournament = "australian open"</s> | {
"answer": "SELECT 1997 FROM table_name_57 WHERE 1991 = \"a\" AND tournament = \"australian open\"",
"context": "CREATE TABLE table_name_57 (tournament VARCHAR)",
"question": "Which 1997's accompanying 1991 was a when the tournament was the australian open?"
} |
### QUESTION
Which Whitten has a Stuart of bass, and a Paul McCartney of electric guitar?
### CONTEXT
CREATE TABLE table_name_12 (whitten VARCHAR, stuart VARCHAR, paul_mccartney VARCHAR)
### ANSWER
SELECT whitten FROM table_name_12 WHERE stuart = "bass" AND paul_mccartney = "electric guitar"</s> | {
"answer": "SELECT whitten FROM table_name_12 WHERE stuart = \"bass\" AND paul_mccartney = \"electric guitar\"",
"context": "CREATE TABLE table_name_12 (whitten VARCHAR, stuart VARCHAR, paul_mccartney VARCHAR)",
"question": "Which Whitten has a Stuart of bass, and a Paul McCartney of electric guitar?"
} |
### QUESTION
How many total events have cuts made over 12, more than 2 top-5s, and more than 11 top-10s?
### CONTEXT
CREATE TABLE table_name_66 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_5 VARCHAR)
### ANSWER
SELECT SUM(events) FROM table_name_66 WHERE cuts_made > 12 AND top_5 > 2 AND top_10 > 11</s> | {
"answer": "SELECT SUM(events) FROM table_name_66 WHERE cuts_made > 12 AND top_5 > 2 AND top_10 > 11",
"context": "CREATE TABLE table_name_66 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_5 VARCHAR)",
"question": "How many total events have cuts made over 12, more than 2 top-5s, and more than 11 top-10s?"
} |
### QUESTION
What years did New Zealand win?
### CONTEXT
CREATE TABLE table_name_30 (year_s__won VARCHAR, country VARCHAR)
### ANSWER
SELECT year_s__won FROM table_name_30 WHERE country = "new zealand"</s> | {
"answer": "SELECT year_s__won FROM table_name_30 WHERE country = \"new zealand\"",
"context": "CREATE TABLE table_name_30 (year_s__won VARCHAR, country VARCHAR)",
"question": "What years did New Zealand win?"
} |
### QUESTION
For the game with 26,236 attendance, what was the record?
### CONTEXT
CREATE TABLE table_name_81 (record VARCHAR, attendance VARCHAR)
### ANSWER
SELECT record FROM table_name_81 WHERE attendance = "26,236"</s> | {
"answer": "SELECT record FROM table_name_81 WHERE attendance = \"26,236\"",
"context": "CREATE TABLE table_name_81 (record VARCHAR, attendance VARCHAR)",
"question": "For the game with 26,236 attendance, what was the record?"
} |
### QUESTION
What is the score of the game with 22 points and the capitals as the opponent?
### CONTEXT
CREATE TABLE table_name_37 (score VARCHAR, points VARCHAR, opponent VARCHAR)
### ANSWER
SELECT score FROM table_name_37 WHERE points = 22 AND opponent = "capitals"</s> | {
"answer": "SELECT score FROM table_name_37 WHERE points = 22 AND opponent = \"capitals\"",
"context": "CREATE TABLE table_name_37 (score VARCHAR, points VARCHAR, opponent VARCHAR)",
"question": "What is the score of the game with 22 points and the capitals as the opponent?"
} |
### QUESTION
What Scores by each individual judge has a Total score/week of 51/60, and a Co-contestant (Yaar vs. Pyaar) of tina sachdev?
### CONTEXT
CREATE TABLE table_name_76 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
### ANSWER
SELECT scores_by_each_individual_judge FROM table_name_76 WHERE total_score_week = "51/60" AND co_contestant__yaar_vs_pyaar_ = "tina sachdev"</s> | {
"answer": "SELECT scores_by_each_individual_judge FROM table_name_76 WHERE total_score_week = \"51/60\" AND co_contestant__yaar_vs_pyaar_ = \"tina sachdev\"",
"context": "CREATE TABLE table_name_76 (scores_by_each_individual_judge VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)",
"question": "What Scores by each individual judge has a Total score/week of 51/60, and a Co-contestant (Yaar vs. Pyaar) of tina sachdev?"
} |
### QUESTION
What Date performed has a Scores by each individual judge of 10 + 10 + 10 = 30, and a Main contestant of karanvir bohra?
### CONTEXT
CREATE TABLE table_name_19 (date_performed VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)
### ANSWER
SELECT date_performed FROM table_name_19 WHERE scores_by_each_individual_judge = 10 + 10 + 10 = 30 AND main_contestant = "karanvir bohra"</s> | {
"answer": "SELECT date_performed FROM table_name_19 WHERE scores_by_each_individual_judge = 10 + 10 + 10 = 30 AND main_contestant = \"karanvir bohra\"",
"context": "CREATE TABLE table_name_19 (date_performed VARCHAR, main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR)",
"question": "What Date performed has a Scores by each individual judge of 10 + 10 + 10 = 30, and a Main contestant of karanvir bohra?"
} |
### QUESTION
What Scores by each individual judge has a Status of current, and a Co-contestant (Yaar vs. Pyaar) of krushna abhishek?
### CONTEXT
CREATE TABLE table_name_67 (scores_by_each_individual_judge VARCHAR, status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
### ANSWER
SELECT scores_by_each_individual_judge FROM table_name_67 WHERE status = "current" AND co_contestant__yaar_vs_pyaar_ = "krushna abhishek"</s> | {
"answer": "SELECT scores_by_each_individual_judge FROM table_name_67 WHERE status = \"current\" AND co_contestant__yaar_vs_pyaar_ = \"krushna abhishek\"",
"context": "CREATE TABLE table_name_67 (scores_by_each_individual_judge VARCHAR, status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)",
"question": "What Scores by each individual judge has a Status of current, and a Co-contestant (Yaar vs. Pyaar) of krushna abhishek?"
} |
### QUESTION
Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?
### CONTEXT
CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
### ANSWER
SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = "jhajjar" AND reserved_for___sc___st__none_ = "sc" AND constituency_number < 66</s> | {
"answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = \"jhajjar\" AND reserved_for___sc___st__none_ = \"sc\" AND constituency_number < 66",
"context": "CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)",
"question": "Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?"
} |
### QUESTION
What is the lowest Taijiquan of the athlete who has a Taijijian of 9.7 and a total more than 19.34?
### CONTEXT
CREATE TABLE table_name_90 (taijiquan INTEGER, taijijian VARCHAR, total VARCHAR)
### ANSWER
SELECT MIN(taijiquan) FROM table_name_90 WHERE taijijian = 9.7 AND total > 19.34</s> | {
"answer": "SELECT MIN(taijiquan) FROM table_name_90 WHERE taijijian = 9.7 AND total > 19.34",
"context": "CREATE TABLE table_name_90 (taijiquan INTEGER, taijijian VARCHAR, total VARCHAR)",
"question": "What is the lowest Taijiquan of the athlete who has a Taijijian of 9.7 and a total more than 19.34?"
} |
### QUESTION
What is the Score of the Burnley Home game?
### CONTEXT
CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)
### ANSWER
SELECT score FROM table_name_57 WHERE home_team = "burnley"</s> | {
"answer": "SELECT score FROM table_name_57 WHERE home_team = \"burnley\"",
"context": "CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR)",
"question": "What is the Score of the Burnley Home game?"
} |
### QUESTION
What is the score for Set 2 at 15:21?
### CONTEXT
CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR)
### ANSWER
SELECT score FROM table_name_48 WHERE set_2 = "15:21"</s> | {
"answer": "SELECT score FROM table_name_48 WHERE set_2 = \"15:21\"",
"context": "CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR)",
"question": "What is the score for Set 2 at 15:21?"
} |
### QUESTION
What is the record of game 7?
### CONTEXT
CREATE TABLE table_name_4 (record VARCHAR, game VARCHAR)
### ANSWER
SELECT record FROM table_name_4 WHERE game = 7</s> | {
"answer": "SELECT record FROM table_name_4 WHERE game = 7",
"context": "CREATE TABLE table_name_4 (record VARCHAR, game VARCHAR)",
"question": "What is the record of game 7?"
} |
### QUESTION
How many characteristics does the product named "sesame" have?
### CONTEXT
CREATE TABLE product_characteristics (product_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR)
### ANSWER
SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id WHERE t1.product_name = "sesame"</s> | {
"answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id WHERE t1.product_name = \"sesame\"",
"context": "CREATE TABLE product_characteristics (product_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR)",
"question": "How many characteristics does the product named \"sesame\" have?"
} |
### QUESTION
What score has Leicestershire as the opponent after 1906?
### CONTEXT
CREATE TABLE table_name_58 (score VARCHAR, opposition VARCHAR, year VARCHAR)
### ANSWER
SELECT score FROM table_name_58 WHERE opposition = "leicestershire" AND year > 1906</s> | {
"answer": "SELECT score FROM table_name_58 WHERE opposition = \"leicestershire\" AND year > 1906",
"context": "CREATE TABLE table_name_58 (score VARCHAR, opposition VARCHAR, year VARCHAR)",
"question": "What score has Leicestershire as the opponent after 1906?"
} |
### QUESTION
What is the number of earning for more than 2 wins and less than 25 events?
### CONTEXT
CREATE TABLE table_name_97 (earnings___ INTEGER, wins VARCHAR, events VARCHAR)
### ANSWER
SELECT SUM(earnings___) AS $__ FROM table_name_97 WHERE wins > 2 AND events < 25</s> | {
"answer": "SELECT SUM(earnings___) AS $__ FROM table_name_97 WHERE wins > 2 AND events < 25",
"context": "CREATE TABLE table_name_97 (earnings___ INTEGER, wins VARCHAR, events VARCHAR)",
"question": "What is the number of earning for more than 2 wins and less than 25 events?"
} |
### QUESTION
What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?
### CONTEXT
CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR)
### ANSWER
SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = "nguyen huy thanh ( vie )" AND qiangshu > 9.66</s> | {
"answer": "SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = \"nguyen huy thanh ( vie )\" AND qiangshu > 9.66",
"context": "CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR)",
"question": "What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?"
} |
### QUESTION
Can you tell me the Place that has the Country of australia, and the Player of ian baker-finch?
### CONTEXT
CREATE TABLE table_name_22 (place VARCHAR, country VARCHAR, player VARCHAR)
### ANSWER
SELECT place FROM table_name_22 WHERE country = "australia" AND player = "ian baker-finch"</s> | {
"answer": "SELECT place FROM table_name_22 WHERE country = \"australia\" AND player = \"ian baker-finch\"",
"context": "CREATE TABLE table_name_22 (place VARCHAR, country VARCHAR, player VARCHAR)",
"question": "Can you tell me the Place that has the Country of australia, and the Player of ian baker-finch?"
} |
### QUESTION
What was the result of the Euro '64 qualifying game?
### CONTEXT
CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR)
### ANSWER
SELECT results¹ FROM table_name_65 WHERE type_of_game = "euro '64 qualifying"</s> | {
"answer": "SELECT results¹ FROM table_name_65 WHERE type_of_game = \"euro '64 qualifying\"",
"context": "CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR)",
"question": "What was the result of the Euro '64 qualifying game?"
} |
### QUESTION
What was the role in 2001?
### CONTEXT
CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR)
### ANSWER
SELECT role FROM table_name_91 WHERE year = "2001"</s> | {
"answer": "SELECT role FROM table_name_91 WHERE year = \"2001\"",
"context": "CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR)",
"question": "What was the role in 2001?"
} |
### QUESTION
Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?
### CONTEXT
CREATE TABLE table_name_45 (goals_against INTEGER, losses VARCHAR, wins VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT AVG(goals_against) FROM table_name_45 WHERE wins = 13 AND goals_for > 42 AND losses > 9</s> | {
"answer": "SELECT AVG(goals_against) FROM table_name_45 WHERE wins = 13 AND goals_for > 42 AND losses > 9",
"context": "CREATE TABLE table_name_45 (goals_against INTEGER, losses VARCHAR, wins VARCHAR, goals_for VARCHAR)",
"question": "Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?"
} |
### QUESTION
What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?
### CONTEXT
CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR)
### ANSWER
SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16</s> | {
"answer": "SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16",
"context": "CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR)",
"question": "What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?"
} |
### QUESTION
How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers?
### CONTEXT
CREATE TABLE table_name_79 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(bronze) FROM table_name_79 WHERE gold > "14" AND rank = "14" AND silver > 25</s> | {
"answer": "SELECT COUNT(bronze) FROM table_name_79 WHERE gold > \"14\" AND rank = \"14\" AND silver > 25",
"context": "CREATE TABLE table_name_79 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)",
"question": "How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers?"
} |
### QUESTION
Which role had a closing broadway cast of Adam Grupper?
### CONTEXT
CREATE TABLE table_name_78 (role VARCHAR, closing_broadway_cast VARCHAR)
### ANSWER
SELECT role FROM table_name_78 WHERE closing_broadway_cast = "adam grupper"</s> | {
"answer": "SELECT role FROM table_name_78 WHERE closing_broadway_cast = \"adam grupper\"",
"context": "CREATE TABLE table_name_78 (role VARCHAR, closing_broadway_cast VARCHAR)",
"question": "Which role had a closing broadway cast of Adam Grupper?"
} |
### QUESTION
What is the score when the to par was –5, for Peter Jacobsen?
### CONTEXT
CREATE TABLE table_name_9 (score INTEGER, to_par VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(score) FROM table_name_9 WHERE to_par = "–5" AND player = "peter jacobsen"</s> | {
"answer": "SELECT SUM(score) FROM table_name_9 WHERE to_par = \"–5\" AND player = \"peter jacobsen\"",
"context": "CREATE TABLE table_name_9 (score INTEGER, to_par VARCHAR, player VARCHAR)",
"question": "What is the score when the to par was –5, for Peter Jacobsen?"
} |
### QUESTION
Which Run 4 has a Country of united states, and an Athlete of bree schaaf emily azevedo, and a Run 3 smaller than 58.04?
### CONTEXT
CREATE TABLE table_name_78 (run_4 INTEGER, run_3 VARCHAR, country VARCHAR, athlete VARCHAR)
### ANSWER
SELECT SUM(run_4) FROM table_name_78 WHERE country = "united states" AND athlete = "bree schaaf emily azevedo" AND run_3 < 58.04</s> | {
"answer": "SELECT SUM(run_4) FROM table_name_78 WHERE country = \"united states\" AND athlete = \"bree schaaf emily azevedo\" AND run_3 < 58.04",
"context": "CREATE TABLE table_name_78 (run_4 INTEGER, run_3 VARCHAR, country VARCHAR, athlete VARCHAR)",
"question": "Which Run 4 has a Country of united states, and an Athlete of bree schaaf emily azevedo, and a Run 3 smaller than 58.04?"
} |
### QUESTION
Which Run 4 has a Run 1 of 57.37, and a Run 3 smaller than 57.45?
### CONTEXT
CREATE TABLE table_name_32 (run_4 INTEGER, run_1 VARCHAR, run_3 VARCHAR)
### ANSWER
SELECT SUM(run_4) FROM table_name_32 WHERE run_1 = 57.37 AND run_3 < 57.45</s> | {
"answer": "SELECT SUM(run_4) FROM table_name_32 WHERE run_1 = 57.37 AND run_3 < 57.45",
"context": "CREATE TABLE table_name_32 (run_4 INTEGER, run_1 VARCHAR, run_3 VARCHAR)",
"question": "Which Run 4 has a Run 1 of 57.37, and a Run 3 smaller than 57.45?"
} |
### QUESTION
What is the total for the first exercise and has 18 as the second exercise?
### CONTEXT
CREATE TABLE table_name_2 (first_exercise INTEGER, second_exercise VARCHAR)
### ANSWER
SELECT SUM(first_exercise) FROM table_name_2 WHERE second_exercise = 18</s> | {
"answer": "SELECT SUM(first_exercise) FROM table_name_2 WHERE second_exercise = 18",
"context": "CREATE TABLE table_name_2 (first_exercise INTEGER, second_exercise VARCHAR)",
"question": "What is the total for the first exercise and has 18 as the second exercise?"
} |
### QUESTION
What is the lowest place with more than 26 goals scored, 18 goals conceded, and a draw entry of 6?
### CONTEXT
CREATE TABLE table_name_10 (place INTEGER, goals_scored VARCHAR, draw VARCHAR, goals_conceded VARCHAR)
### ANSWER
SELECT MIN(place) FROM table_name_10 WHERE draw = 6 AND goals_conceded = 18 AND goals_scored > 26</s> | {
"answer": "SELECT MIN(place) FROM table_name_10 WHERE draw = 6 AND goals_conceded = 18 AND goals_scored > 26",
"context": "CREATE TABLE table_name_10 (place INTEGER, goals_scored VARCHAR, draw VARCHAR, goals_conceded VARCHAR)",
"question": "What is the lowest place with more than 26 goals scored, 18 goals conceded, and a draw entry of 6?"
} |
### QUESTION
Name the District that has a Reserved for ( SC / ST /None) of none and a Constituency number of 242?
### CONTEXT
CREATE TABLE table_name_19 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)
### ANSWER
SELECT district FROM table_name_19 WHERE reserved_for___sc___st__none_ = "none" AND constituency_number = "242"</s> | {
"answer": "SELECT district FROM table_name_19 WHERE reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"242\"",
"context": "CREATE TABLE table_name_19 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)",
"question": "Name the District that has a Reserved for ( SC / ST /None) of none and a Constituency number of 242?"
} |
### QUESTION
Name the Number of electorates (2009 which has a Reserved for ( SC / ST /None) of none, and a Name of jahanabad?
### CONTEXT
CREATE TABLE table_name_40 (number_of_electorates__2009_ INTEGER, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
### ANSWER
SELECT MIN(number_of_electorates__2009_) FROM table_name_40 WHERE reserved_for___sc___st__none_ = "none" AND name = "jahanabad"</s> | {
"answer": "SELECT MIN(number_of_electorates__2009_) FROM table_name_40 WHERE reserved_for___sc___st__none_ = \"none\" AND name = \"jahanabad\"",
"context": "CREATE TABLE table_name_40 (number_of_electorates__2009_ INTEGER, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)",
"question": "Name the Number of electorates (2009 which has a Reserved for ( SC / ST /None) of none, and a Name of jahanabad?"
} |
### QUESTION
Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion?
### CONTEXT
CREATE TABLE table_name_65 (international_tourism_expenditure__2012_ VARCHAR, international_tourism_expenditure__2011_ VARCHAR)
### ANSWER
SELECT international_tourism_expenditure__2012_ FROM table_name_65 WHERE international_tourism_expenditure__2011_ = "$33.3 billion"</s> | {
"answer": "SELECT international_tourism_expenditure__2012_ FROM table_name_65 WHERE international_tourism_expenditure__2011_ = \"$33.3 billion\"",
"context": "CREATE TABLE table_name_65 (international_tourism_expenditure__2012_ VARCHAR, international_tourism_expenditure__2011_ VARCHAR)",
"question": "Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion?"
} |
### QUESTION
What Score has a Date of 11 september 2010?
### CONTEXT
CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_25 WHERE date = "11 september 2010"</s> | {
"answer": "SELECT score FROM table_name_25 WHERE date = \"11 september 2010\"",
"context": "CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)",
"question": "What Score has a Date of 11 september 2010?"
} |
### QUESTION
What is China's International tourism expenditure (2011)?
### CONTEXT
CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR)
### ANSWER
SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = "china"</s> | {
"answer": "SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = \"china\"",
"context": "CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR)",
"question": "What is China's International tourism expenditure (2011)?"
} |
### QUESTION
What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?
### CONTEXT
CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)
### ANSWER
SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2</s> | {
"answer": "SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2",
"context": "CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)",
"question": "What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?"
} |
### QUESTION
What is the date for the game with an opponent of the Houston Oilers from before week 3?
### CONTEXT
CREATE TABLE table_name_11 (date VARCHAR, week VARCHAR, opponent VARCHAR)
### ANSWER
SELECT date FROM table_name_11 WHERE week < 3 AND opponent = "houston oilers"</s> | {
"answer": "SELECT date FROM table_name_11 WHERE week < 3 AND opponent = \"houston oilers\"",
"context": "CREATE TABLE table_name_11 (date VARCHAR, week VARCHAR, opponent VARCHAR)",
"question": "What is the date for the game with an opponent of the Houston Oilers from before week 3?"
} |
### QUESTION
What is Home Team, when Date is "6 December 1986", and when Tie No is "4"?
### CONTEXT
CREATE TABLE table_name_49 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)
### ANSWER
SELECT home_team FROM table_name_49 WHERE date = "6 december 1986" AND tie_no = "4"</s> | {
"answer": "SELECT home_team FROM table_name_49 WHERE date = \"6 december 1986\" AND tie_no = \"4\"",
"context": "CREATE TABLE table_name_49 (home_team VARCHAR, date VARCHAR, tie_no VARCHAR)",
"question": "What is Home Team, when Date is \"6 December 1986\", and when Tie No is \"4\"?"
} |
### QUESTION
What is the name on the Republican ticket when the Workers ticket is edward lindgren?
### CONTEXT
CREATE TABLE table_name_63 (republican_ticket VARCHAR, workers_ticket VARCHAR)
### ANSWER
SELECT republican_ticket FROM table_name_63 WHERE workers_ticket = "edward lindgren"</s> | {
"answer": "SELECT republican_ticket FROM table_name_63 WHERE workers_ticket = \"edward lindgren\"",
"context": "CREATE TABLE table_name_63 (republican_ticket VARCHAR, workers_ticket VARCHAR)",
"question": "What is the name on the Republican ticket when the Workers ticket is edward lindgren?"
} |
### QUESTION
Who's the Socialist ticket with a Law Preservation ticket of (none), and a Socialist Labor ticket of belle j. rosen?
### CONTEXT
CREATE TABLE table_name_74 (socialist_ticket VARCHAR, law_preservation_ticket VARCHAR, socialist_labor_ticket VARCHAR)
### ANSWER
SELECT socialist_ticket FROM table_name_74 WHERE law_preservation_ticket = "(none)" AND socialist_labor_ticket = "belle j. rosen"</s> | {
"answer": "SELECT socialist_ticket FROM table_name_74 WHERE law_preservation_ticket = \"(none)\" AND socialist_labor_ticket = \"belle j. rosen\"",
"context": "CREATE TABLE table_name_74 (socialist_ticket VARCHAR, law_preservation_ticket VARCHAR, socialist_labor_ticket VARCHAR)",
"question": "Who's the Socialist ticket with a Law Preservation ticket of (none), and a Socialist Labor ticket of belle j. rosen?"
} |
### QUESTION
In which district is anna university - tiruchirappalli campus, whose website is http://www.annauniv.edu, located?
### CONTEXT
CREATE TABLE table_name_3 (district VARCHAR, weblink VARCHAR, college_or_campus_name VARCHAR)
### ANSWER
SELECT district FROM table_name_3 WHERE weblink = "http://www.annauniv.edu" AND college_or_campus_name = "anna university - tiruchirappalli campus"</s> | {
"answer": "SELECT district FROM table_name_3 WHERE weblink = \"http://www.annauniv.edu\" AND college_or_campus_name = \"anna university - tiruchirappalli campus\"",
"context": "CREATE TABLE table_name_3 (district VARCHAR, weblink VARCHAR, college_or_campus_name VARCHAR)",
"question": "In which district is anna university - tiruchirappalli campus, whose website is http://www.annauniv.edu, located?"
} |
### QUESTION
What is the highest Round, when Draft is greater than 1980, and when Player is "Shane Doan Category:Articles with hCards"?
### CONTEXT
CREATE TABLE table_name_46 (round INTEGER, draft VARCHAR, player VARCHAR)
### ANSWER
SELECT MAX(round) FROM table_name_46 WHERE draft > 1980 AND player = "shane doan category:articles with hcards"</s> | {
"answer": "SELECT MAX(round) FROM table_name_46 WHERE draft > 1980 AND player = \"shane doan category:articles with hcards\"",
"context": "CREATE TABLE table_name_46 (round INTEGER, draft VARCHAR, player VARCHAR)",
"question": "What is the highest Round, when Draft is greater than 1980, and when Player is \"Shane Doan Category:Articles with hCards\"?"
} |
### QUESTION
What is the lowest Lost for são paulo railway, Points more than 21?
### CONTEXT
CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR)
### ANSWER
SELECT MIN(lost) FROM table_name_46 WHERE team = "são paulo railway" AND points > 21</s> | {
"answer": "SELECT MIN(lost) FROM table_name_46 WHERE team = \"são paulo railway\" AND points > 21",
"context": "CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR)",
"question": "What is the lowest Lost for são paulo railway, Points more than 21?"
} |
### QUESTION
What is the lowest Draft, when Nationality is "Canada", when Player is "Shane Doan Category:Articles with hCards", and when Round is less than 1?
### CONTEXT
CREATE TABLE table_name_7 (draft INTEGER, round VARCHAR, nationality VARCHAR, player VARCHAR)
### ANSWER
SELECT MIN(draft) FROM table_name_7 WHERE nationality = "canada" AND player = "shane doan category:articles with hcards" AND round < 1</s> | {
"answer": "SELECT MIN(draft) FROM table_name_7 WHERE nationality = \"canada\" AND player = \"shane doan category:articles with hcards\" AND round < 1",
"context": "CREATE TABLE table_name_7 (draft INTEGER, round VARCHAR, nationality VARCHAR, player VARCHAR)",
"question": "What is the lowest Draft, when Nationality is \"Canada\", when Player is \"Shane Doan Category:Articles with hCards\", and when Round is less than 1?"
} |
### QUESTION
What is the lowest Draft, when Player is "Dave Christian Category:Articles with hCards"?
### CONTEXT
CREATE TABLE table_name_74 (draft INTEGER, player VARCHAR)
### ANSWER
SELECT MIN(draft) FROM table_name_74 WHERE player = "dave christian category:articles with hcards"</s> | {
"answer": "SELECT MIN(draft) FROM table_name_74 WHERE player = \"dave christian category:articles with hcards\"",
"context": "CREATE TABLE table_name_74 (draft INTEGER, player VARCHAR)",
"question": "What is the lowest Draft, when Player is \"Dave Christian Category:Articles with hCards\"?"
} |
### QUESTION
What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?
### CONTEXT
CREATE TABLE table_name_4 (fleet_size INTEGER, iata VARCHAR, commenced_operations VARCHAR)
### ANSWER
SELECT SUM(fleet_size) FROM table_name_4 WHERE iata = "pr" AND commenced_operations < 1941</s> | {
"answer": "SELECT SUM(fleet_size) FROM table_name_4 WHERE iata = \"pr\" AND commenced_operations < 1941",
"context": "CREATE TABLE table_name_4 (fleet_size INTEGER, iata VARCHAR, commenced_operations VARCHAR)",
"question": "What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?"
} |
### QUESTION
Who was the lead envoy of the congratulation mission in 1718 with the Ryūkyūan King shō kei?
### CONTEXT
CREATE TABLE table_name_10 (lead_envoy VARCHAR, year VARCHAR, ryūkyūan_king VARCHAR, mission_type VARCHAR)
### ANSWER
SELECT lead_envoy FROM table_name_10 WHERE ryūkyūan_king = "shō kei" AND mission_type = "congratulation" AND year = 1718</s> | {
"answer": "SELECT lead_envoy FROM table_name_10 WHERE ryūkyūan_king = \"shō kei\" AND mission_type = \"congratulation\" AND year = 1718",
"context": "CREATE TABLE table_name_10 (lead_envoy VARCHAR, year VARCHAR, ryūkyūan_king VARCHAR, mission_type VARCHAR)",
"question": "Who was the lead envoy of the congratulation mission in 1718 with the Ryūkyūan King shō kei?"
} |
### QUESTION
What is Home, when Score is 103-93?
### CONTEXT
CREATE TABLE table_name_95 (home VARCHAR, score VARCHAR)
### ANSWER
SELECT home FROM table_name_95 WHERE score = "103-93"</s> | {
"answer": "SELECT home FROM table_name_95 WHERE score = \"103-93\"",
"context": "CREATE TABLE table_name_95 (home VARCHAR, score VARCHAR)",
"question": "What is Home, when Score is 103-93?"
} |
### QUESTION
What is Martina Wood's Position?
### CONTEXT
CREATE TABLE table_name_46 (position VARCHAR, name VARCHAR)
### ANSWER
SELECT position FROM table_name_46 WHERE name = "martina wood"</s> | {
"answer": "SELECT position FROM table_name_46 WHERE name = \"martina wood\"",
"context": "CREATE TABLE table_name_46 (position VARCHAR, name VARCHAR)",
"question": "What is Martina Wood's Position?"
} |
### QUESTION
How many totals had more than 4 bronze?
### CONTEXT
CREATE TABLE table_name_93 (total INTEGER, bronze INTEGER)
### ANSWER
SELECT SUM(total) FROM table_name_93 WHERE bronze > 4</s> | {
"answer": "SELECT SUM(total) FROM table_name_93 WHERE bronze > 4",
"context": "CREATE TABLE table_name_93 (total INTEGER, bronze INTEGER)",
"question": "How many totals had more than 4 bronze?"
} |
### QUESTION
What is the country of the player whose score is 71-69-70-69=279?
### CONTEXT
CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)
### ANSWER
SELECT country FROM table_name_21 WHERE score = 71 - 69 - 70 - 69 = 279</s> | {
"answer": "SELECT country FROM table_name_21 WHERE score = 71 - 69 - 70 - 69 = 279",
"context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)",
"question": "What is the country of the player whose score is 71-69-70-69=279?"
} |
### QUESTION
How many total No Results occured when the team had less than 46 wins and more than 16 matches?
### CONTEXT
CREATE TABLE table_name_63 (no_result INTEGER, matches VARCHAR, wins VARCHAR)
### ANSWER
SELECT SUM(no_result) FROM table_name_63 WHERE matches > 16 AND wins < 46</s> | {
"answer": "SELECT SUM(no_result) FROM table_name_63 WHERE matches > 16 AND wins < 46",
"context": "CREATE TABLE table_name_63 (no_result INTEGER, matches VARCHAR, wins VARCHAR)",
"question": "How many total No Results occured when the team had less than 46 wins and more than 16 matches?"
} |
### QUESTION
What team placed second during the season where Western Australia placed fifth, South Australia placed sixth, and Tasmania placed fourth?
### CONTEXT
CREATE TABLE table_name_2 (second VARCHAR, fourth VARCHAR, fifth VARCHAR, sixth VARCHAR)
### ANSWER
SELECT second FROM table_name_2 WHERE fifth = "western australia" AND sixth = "south australia" AND fourth = "tasmania"</s> | {
"answer": "SELECT second FROM table_name_2 WHERE fifth = \"western australia\" AND sixth = \"south australia\" AND fourth = \"tasmania\"",
"context": "CREATE TABLE table_name_2 (second VARCHAR, fourth VARCHAR, fifth VARCHAR, sixth VARCHAR)",
"question": "What team placed second during the season where Western Australia placed fifth, South Australia placed sixth, and Tasmania placed fourth?"
} |
### QUESTION
How many points occurred with a difference of 2 for position less than 4?
### CONTEXT
CREATE TABLE table_name_90 (points VARCHAR, difference VARCHAR, position VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_90 WHERE difference = "2" AND position < 4</s> | {
"answer": "SELECT COUNT(points) FROM table_name_90 WHERE difference = \"2\" AND position < 4",
"context": "CREATE TABLE table_name_90 (points VARCHAR, difference VARCHAR, position VARCHAR)",
"question": "How many points occurred with a difference of 2 for position less than 4?"
} |
### QUESTION
Who played against Hapoel tel aviv when they were team #1?
### CONTEXT
CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR)
### ANSWER
SELECT team__number2 FROM table_name_89 WHERE team__number1 = "hapoel tel aviv"</s> | {
"answer": "SELECT team__number2 FROM table_name_89 WHERE team__number1 = \"hapoel tel aviv\"",
"context": "CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR)",
"question": "Who played against Hapoel tel aviv when they were team #1?"
} |
### QUESTION
What region has the date of 2005 and Playground Music Scandinavia as a label?
### CONTEXT
CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR)
### ANSWER
SELECT region FROM table_name_16 WHERE date = "2005" AND label = "playground music scandinavia"</s> | {
"answer": "SELECT region FROM table_name_16 WHERE date = \"2005\" AND label = \"playground music scandinavia\"",
"context": "CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR)",
"question": "What region has the date of 2005 and Playground Music Scandinavia as a label?"
} |
### QUESTION
When did the Texans play BYE?
### CONTEXT
CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
### ANSWER
SELECT date FROM table_name_8 WHERE opponent = "bye"</s> | {
"answer": "SELECT date FROM table_name_8 WHERE opponent = \"bye\"",
"context": "CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)",
"question": "When did the Texans play BYE?"
} |
### QUESTION
What is the venue for the Status of Five Nations and 0 againts?
### CONTEXT
CREATE TABLE table_name_38 (venue VARCHAR, status VARCHAR, against VARCHAR)
### ANSWER
SELECT venue FROM table_name_38 WHERE status = "five nations" AND against = 0</s> | {
"answer": "SELECT venue FROM table_name_38 WHERE status = \"five nations\" AND against = 0",
"context": "CREATE TABLE table_name_38 (venue VARCHAR, status VARCHAR, against VARCHAR)",
"question": "What is the venue for the Status of Five Nations and 0 againts?"
} |
### QUESTION
What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec?
### CONTEXT
CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR)
### ANSWER
SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = "–" AND upper_stage = "sec"</s> | {
"answer": "SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = \"–\" AND upper_stage = \"sec\"",
"context": "CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR)",
"question": "What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec?"
} |
### QUESTION
Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham?
### CONTEXT
CREATE TABLE table_name_10 (years_in_orlando VARCHAR, player VARCHAR, nationality VARCHAR, position VARCHAR)
### ANSWER
SELECT years_in_orlando FROM table_name_10 WHERE nationality = "united states" AND position = "center" AND player = "jawann oldham"</s> | {
"answer": "SELECT years_in_orlando FROM table_name_10 WHERE nationality = \"united states\" AND position = \"center\" AND player = \"jawann oldham\"",
"context": "CREATE TABLE table_name_10 (years_in_orlando VARCHAR, player VARCHAR, nationality VARCHAR, position VARCHAR)",
"question": "Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham?"
} |
### QUESTION
What is the simplified Chinese with a standard order over 4, and the transcription of Bei Hui Feng?
### CONTEXT
CREATE TABLE table_name_43 (simplified_chinese VARCHAR, standard_order VARCHAR, transcription__based_on_pinyin_ VARCHAR)
### ANSWER
SELECT simplified_chinese FROM table_name_43 WHERE standard_order > 4 AND transcription__based_on_pinyin_ = "bei hui feng"</s> | {
"answer": "SELECT simplified_chinese FROM table_name_43 WHERE standard_order > 4 AND transcription__based_on_pinyin_ = \"bei hui feng\"",
"context": "CREATE TABLE table_name_43 (simplified_chinese VARCHAR, standard_order VARCHAR, transcription__based_on_pinyin_ VARCHAR)",
"question": "What is the simplified Chinese with a standard order over 4, and the transcription of Bei Hui Feng?"
} |
### QUESTION
Which Works number has a Builder of avonside engine company, and a Type of 4-6-0, and a Number smaller than 12, and a Date of december 1871?
### CONTEXT
CREATE TABLE table_name_76 (works_number VARCHAR, date VARCHAR, number VARCHAR, builder VARCHAR, type VARCHAR)
### ANSWER
SELECT works_number FROM table_name_76 WHERE builder = "avonside engine company" AND type = "4-6-0" AND number < 12 AND date = "december 1871"</s> | {
"answer": "SELECT works_number FROM table_name_76 WHERE builder = \"avonside engine company\" AND type = \"4-6-0\" AND number < 12 AND date = \"december 1871\"",
"context": "CREATE TABLE table_name_76 (works_number VARCHAR, date VARCHAR, number VARCHAR, builder VARCHAR, type VARCHAR)",
"question": "Which Works number has a Builder of avonside engine company, and a Type of 4-6-0, and a Number smaller than 12, and a Date of december 1871?"
} |
### QUESTION
What is the acquis chapter open/closed dates with a membership application in 2009-04-28?
### CONTEXT
CREATE TABLE table_name_44 (acquis_chapters_open_closed VARCHAR, membership_application VARCHAR)
### ANSWER
SELECT acquis_chapters_open_closed FROM table_name_44 WHERE membership_application = "2009-04-28"</s> | {
"answer": "SELECT acquis_chapters_open_closed FROM table_name_44 WHERE membership_application = \"2009-04-28\"",
"context": "CREATE TABLE table_name_44 (acquis_chapters_open_closed VARCHAR, membership_application VARCHAR)",
"question": "What is the acquis chapter open/closed dates with a membership application in 2009-04-28?"
} |
### QUESTION
What is the association agreement for bosnia and herzegovina?
### CONTEXT
CREATE TABLE table_name_69 (association_agreement VARCHAR, state VARCHAR)
### ANSWER
SELECT association_agreement FROM table_name_69 WHERE state = "bosnia and herzegovina"</s> | {
"answer": "SELECT association_agreement FROM table_name_69 WHERE state = \"bosnia and herzegovina\"",
"context": "CREATE TABLE table_name_69 (association_agreement VARCHAR, state VARCHAR)",
"question": "What is the association agreement for bosnia and herzegovina?"
} |
### QUESTION
What was the highest attendance on December 23?
### CONTEXT
CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)
### ANSWER
SELECT MAX(attendance) FROM table_name_91 WHERE date = "december 23"</s> | {
"answer": "SELECT MAX(attendance) FROM table_name_91 WHERE date = \"december 23\"",
"context": "CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR)",
"question": "What was the highest attendance on December 23?"
} |
### QUESTION
What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59?
### CONTEXT
CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
### ANSWER
SELECT name FROM table_name_56 WHERE district = "nagpur" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "59"</s> | {
"answer": "SELECT name FROM table_name_56 WHERE district = \"nagpur\" AND reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"59\"",
"context": "CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)",
"question": "What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59?"
} |
### QUESTION
What is the nickname of the team that has the colors blue and gold?
### CONTEXT
CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR)
### ANSWER
SELECT nickname FROM table_name_42 WHERE colors = "blue and gold"</s> | {
"answer": "SELECT nickname FROM table_name_42 WHERE colors = \"blue and gold\"",
"context": "CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR)",
"question": "What is the nickname of the team that has the colors blue and gold?"
} |
### QUESTION
What is the channel when the analogue terrestrial channel shows n/a, and the internet is itv.com, with a position larger than 6, and digital terrestrial channel is 6 27 (+1)?
### CONTEXT
CREATE TABLE table_name_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR, position VARCHAR, analogue_terrestrial_channel VARCHAR, internet VARCHAR)
### ANSWER
SELECT channel FROM table_name_10 WHERE analogue_terrestrial_channel = "n/a" AND internet = "itv.com" AND position > 6 AND digital_terrestrial_channel = "6 27 (+1)"</s> | {
"answer": "SELECT channel FROM table_name_10 WHERE analogue_terrestrial_channel = \"n/a\" AND internet = \"itv.com\" AND position > 6 AND digital_terrestrial_channel = \"6 27 (+1)\"",
"context": "CREATE TABLE table_name_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR, position VARCHAR, analogue_terrestrial_channel VARCHAR, internet VARCHAR)",
"question": "What is the channel when the analogue terrestrial channel shows n/a, and the internet is itv.com, with a position larger than 6, and digital terrestrial channel is 6 27 (+1)?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.