text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
WHAT IS THE LOWEST DIAMETER FOR A LATITIDE OF 52.0S?
### CONTEXT
CREATE TABLE table_name_78 (diameter__km_ INTEGER, latitude VARCHAR)
### ANSWER
SELECT MIN(diameter__km_) FROM table_name_78 WHERE latitude = "52.0s"</s> | {
"answer": "SELECT MIN(diameter__km_) FROM table_name_78 WHERE latitude = \"52.0s\"",
"context": "CREATE TABLE table_name_78 (diameter__km_ INTEGER, latitude VARCHAR)",
"question": "WHAT IS THE LOWEST DIAMETER FOR A LATITIDE OF 52.0S?"
} |
### QUESTION
what city has a game of friendly and an opponent of tunisia?
### CONTEXT
CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
### ANSWER
SELECT city FROM table_name_42 WHERE type_of_game = "friendly" AND opponent = "tunisia"</s> | {
"answer": "SELECT city FROM table_name_42 WHERE type_of_game = \"friendly\" AND opponent = \"tunisia\"",
"context": "CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)",
"question": "what city has a game of friendly and an opponent of tunisia?"
} |
### QUESTION
When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA?
### CONTEXT
CREATE TABLE table_name_66 (date VARCHAR, location VARCHAR, casualties VARCHAR, circumstances VARCHAR)
### ANSWER
SELECT date FROM table_name_66 WHERE casualties = "1 wia" AND circumstances = "ied" AND location = "15km nw of pol-e khomri"</s> | {
"answer": "SELECT date FROM table_name_66 WHERE casualties = \"1 wia\" AND circumstances = \"ied\" AND location = \"15km nw of pol-e khomri\"",
"context": "CREATE TABLE table_name_66 (date VARCHAR, location VARCHAR, casualties VARCHAR, circumstances VARCHAR)",
"question": "When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA?"
} |
### QUESTION
Which MWEHL team has player Ben Johnson?
### CONTEXT
CREATE TABLE table_name_29 (mwehl_team VARCHAR, player VARCHAR)
### ANSWER
SELECT mwehl_team FROM table_name_29 WHERE player = "ben johnson"</s> | {
"answer": "SELECT mwehl_team FROM table_name_29 WHERE player = \"ben johnson\"",
"context": "CREATE TABLE table_name_29 (mwehl_team VARCHAR, player VARCHAR)",
"question": "Which MWEHL team has player Ben Johnson?"
} |
### QUESTION
What is the result when the competition was the 2006 fifa world cup qualifier, and a Venue of warner park sporting complex, bassaterre?
### CONTEXT
CREATE TABLE table_name_32 (result VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT result FROM table_name_32 WHERE competition = "2006 fifa world cup qualifier" AND venue = "warner park sporting complex, bassaterre"</s> | {
"answer": "SELECT result FROM table_name_32 WHERE competition = \"2006 fifa world cup qualifier\" AND venue = \"warner park sporting complex, bassaterre\"",
"context": "CREATE TABLE table_name_32 (result VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "What is the result when the competition was the 2006 fifa world cup qualifier, and a Venue of warner park sporting complex, bassaterre?"
} |
### QUESTION
What is the name of the venue when the score was 5–0, and a Competition of 2007 caribbean cup qualifier?
### CONTEXT
CREATE TABLE table_name_21 (venue VARCHAR, score VARCHAR, competition VARCHAR)
### ANSWER
SELECT venue FROM table_name_21 WHERE score = "5–0" AND competition = "2007 caribbean cup qualifier"</s> | {
"answer": "SELECT venue FROM table_name_21 WHERE score = \"5–0\" AND competition = \"2007 caribbean cup qualifier\"",
"context": "CREATE TABLE table_name_21 (venue VARCHAR, score VARCHAR, competition VARCHAR)",
"question": "What is the name of the venue when the score was 5–0, and a Competition of 2007 caribbean cup qualifier?"
} |
### QUESTION
What are the average points of Scuderia Scribante with a Brabham bt11 chassis before 1968?
### CONTEXT
CREATE TABLE table_name_16 (points INTEGER, year VARCHAR, entrant VARCHAR, chassis VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_16 WHERE entrant = "scuderia scribante" AND chassis = "brabham bt11" AND year < 1968</s> | {
"answer": "SELECT AVG(points) FROM table_name_16 WHERE entrant = \"scuderia scribante\" AND chassis = \"brabham bt11\" AND year < 1968",
"context": "CREATE TABLE table_name_16 (points INTEGER, year VARCHAR, entrant VARCHAR, chassis VARCHAR)",
"question": "What are the average points of Scuderia Scribante with a Brabham bt11 chassis before 1968?"
} |
### QUESTION
How many points are there for a Mclaren m23 chassis later than 1972?
### CONTEXT
CREATE TABLE table_name_20 (points VARCHAR, year VARCHAR, chassis VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_20 WHERE year > 1972 AND chassis = "mclaren m23"</s> | {
"answer": "SELECT COUNT(points) FROM table_name_20 WHERE year > 1972 AND chassis = \"mclaren m23\"",
"context": "CREATE TABLE table_name_20 (points VARCHAR, year VARCHAR, chassis VARCHAR)",
"question": "How many points are there for a Mclaren m23 chassis later than 1972?"
} |
### QUESTION
What was France's highest score when the venue was Bokskogens?
### CONTEXT
CREATE TABLE table_name_1 (score INTEGER, country VARCHAR, venue VARCHAR)
### ANSWER
SELECT MAX(score) FROM table_name_1 WHERE country = "france" AND venue = "bokskogens"</s> | {
"answer": "SELECT MAX(score) FROM table_name_1 WHERE country = \"france\" AND venue = \"bokskogens\"",
"context": "CREATE TABLE table_name_1 (score INTEGER, country VARCHAR, venue VARCHAR)",
"question": "What was France's highest score when the venue was Bokskogens?"
} |
### QUESTION
Name the averae top 25 with events less than 0
### CONTEXT
CREATE TABLE table_name_31 (top_25 INTEGER, events INTEGER)
### ANSWER
SELECT AVG(top_25) FROM table_name_31 WHERE events < 0</s> | {
"answer": "SELECT AVG(top_25) FROM table_name_31 WHERE events < 0",
"context": "CREATE TABLE table_name_31 (top_25 INTEGER, events INTEGER)",
"question": "Name the averae top 25 with events less than 0"
} |
### QUESTION
What was the average Value ($M) when the Country was England, the Operating income($m) was greater than -5, and the Revenue ($M) was smaller than 103?
### CONTEXT
CREATE TABLE table_name_95 (value__ INTEGER, revenue__$m_ VARCHAR, country VARCHAR, operating_income_$m_ VARCHAR)
### ANSWER
SELECT AVG(value__) AS $m_ FROM table_name_95 WHERE country = "england" AND operating_income_$m_ > -5 AND revenue__$m_ < 103</s> | {
"answer": "SELECT AVG(value__) AS $m_ FROM table_name_95 WHERE country = \"england\" AND operating_income_$m_ > -5 AND revenue__$m_ < 103",
"context": "CREATE TABLE table_name_95 (value__ INTEGER, revenue__$m_ VARCHAR, country VARCHAR, operating_income_$m_ VARCHAR)",
"question": "What was the average Value ($M) when the Country was England, the Operating income($m) was greater than -5, and the Revenue ($M) was smaller than 103?"
} |
### QUESTION
What was the total amount of Value ($M), when the Country was Spain, the Rank was 19, and the Debt as % of value was larger than 159?
### CONTEXT
CREATE TABLE table_name_54 (value__ VARCHAR, debt_as__percentageof_value VARCHAR, country VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(value__) AS $m_ FROM table_name_54 WHERE country = "spain" AND rank = 19 AND debt_as__percentageof_value > 159</s> | {
"answer": "SELECT COUNT(value__) AS $m_ FROM table_name_54 WHERE country = \"spain\" AND rank = 19 AND debt_as__percentageof_value > 159",
"context": "CREATE TABLE table_name_54 (value__ VARCHAR, debt_as__percentageof_value VARCHAR, country VARCHAR, rank VARCHAR)",
"question": "What was the total amount of Value ($M), when the Country was Spain, the Rank was 19, and the Debt as % of value was larger than 159?"
} |
### QUESTION
What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77?
### CONTEXT
CREATE TABLE table_name_35 (revenue__ INTEGER, debt_as__percentageof_value VARCHAR, operating_income_$m_ VARCHAR)
### ANSWER
SELECT SUM(revenue__) AS $m_ FROM table_name_35 WHERE debt_as__percentageof_value > 27 AND operating_income_$m_ = 77</s> | {
"answer": "SELECT SUM(revenue__) AS $m_ FROM table_name_35 WHERE debt_as__percentageof_value > 27 AND operating_income_$m_ = 77",
"context": "CREATE TABLE table_name_35 (revenue__ INTEGER, debt_as__percentageof_value VARCHAR, operating_income_$m_ VARCHAR)",
"question": "What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77?"
} |
### QUESTION
What position did team scandia finish when their engine was cosworth?
### CONTEXT
CREATE TABLE table_name_72 (finish VARCHAR, engine VARCHAR, team VARCHAR)
### ANSWER
SELECT finish FROM table_name_72 WHERE engine = "cosworth" AND team = "team scandia"</s> | {
"answer": "SELECT finish FROM table_name_72 WHERE engine = \"cosworth\" AND team = \"team scandia\"",
"context": "CREATE TABLE table_name_72 (finish VARCHAR, engine VARCHAR, team VARCHAR)",
"question": "What position did team scandia finish when their engine was cosworth?"
} |
### QUESTION
When was the most recent game that he partnered with nicklas kulti and they scored 3–6, 7–6, 6–4?
### CONTEXT
CREATE TABLE table_name_19 (date INTEGER, partner VARCHAR, score VARCHAR)
### ANSWER
SELECT MAX(date) FROM table_name_19 WHERE partner = "nicklas kulti" AND score = "3–6, 7–6, 6–4"</s> | {
"answer": "SELECT MAX(date) FROM table_name_19 WHERE partner = \"nicklas kulti\" AND score = \"3–6, 7–6, 6–4\"",
"context": "CREATE TABLE table_name_19 (date INTEGER, partner VARCHAR, score VARCHAR)",
"question": "When was the most recent game that he partnered with nicklas kulti and they scored 3–6, 7–6, 6–4?"
} |
### QUESTION
What Call sign has a City of license of higgston, ga?
### CONTEXT
CREATE TABLE table_name_95 (call_sign VARCHAR, city_of_license VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_95 WHERE city_of_license = "higgston, ga"</s> | {
"answer": "SELECT call_sign FROM table_name_95 WHERE city_of_license = \"higgston, ga\"",
"context": "CREATE TABLE table_name_95 (call_sign VARCHAR, city_of_license VARCHAR)",
"question": "What Call sign has a City of license of higgston, ga?"
} |
### QUESTION
Who was the recipient when the show was nominated for Most Popular Drama after 2004?
### CONTEXT
CREATE TABLE table_name_5 (recipient_s_ VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)
### ANSWER
SELECT recipient_s_ FROM table_name_5 WHERE result = "nominated" AND category = "most popular drama" AND year > 2004</s> | {
"answer": "SELECT recipient_s_ FROM table_name_5 WHERE result = \"nominated\" AND category = \"most popular drama\" AND year > 2004",
"context": "CREATE TABLE table_name_5 (recipient_s_ VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)",
"question": "Who was the recipient when the show was nominated for Most Popular Drama after 2004?"
} |
### QUESTION
Who was the opponent at the Football League Trophy competition?
### CONTEXT
CREATE TABLE table_name_84 (opponents VARCHAR, competition VARCHAR)
### ANSWER
SELECT opponents FROM table_name_84 WHERE competition = "football league trophy"</s> | {
"answer": "SELECT opponents FROM table_name_84 WHERE competition = \"football league trophy\"",
"context": "CREATE TABLE table_name_84 (opponents VARCHAR, competition VARCHAR)",
"question": "Who was the opponent at the Football League Trophy competition?"
} |
### QUESTION
What is the Player that has a Place of t2, and a Score of 74-70-68=212?
### CONTEXT
CREATE TABLE table_name_64 (player VARCHAR, place VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_64 WHERE place = "t2" AND score = 74 - 70 - 68 = 212</s> | {
"answer": "SELECT player FROM table_name_64 WHERE place = \"t2\" AND score = 74 - 70 - 68 = 212",
"context": "CREATE TABLE table_name_64 (player VARCHAR, place VARCHAR, score VARCHAR)",
"question": "What is the Player that has a Place of t2, and a Score of 74-70-68=212?"
} |
### QUESTION
Name the general classification with roman kreuziger and points classification of fabian cancellara
### CONTEXT
CREATE TABLE table_name_97 (general_classification VARCHAR, young_rider_classification VARCHAR, points_classification VARCHAR)
### ANSWER
SELECT general_classification FROM table_name_97 WHERE young_rider_classification = "roman kreuziger" AND points_classification = "fabian cancellara"</s> | {
"answer": "SELECT general_classification FROM table_name_97 WHERE young_rider_classification = \"roman kreuziger\" AND points_classification = \"fabian cancellara\"",
"context": "CREATE TABLE table_name_97 (general_classification VARCHAR, young_rider_classification VARCHAR, points_classification VARCHAR)",
"question": "Name the general classification with roman kreuziger and points classification of fabian cancellara"
} |
### QUESTION
what is the date when the nationality is united kingdom, the type is freighter and the displacement is 5,145 t?
### CONTEXT
CREATE TABLE table_name_14 (date VARCHAR, displacement VARCHAR, nationality VARCHAR, type VARCHAR)
### ANSWER
SELECT date FROM table_name_14 WHERE nationality = "united kingdom" AND type = "freighter" AND displacement = "5,145 t"</s> | {
"answer": "SELECT date FROM table_name_14 WHERE nationality = \"united kingdom\" AND type = \"freighter\" AND displacement = \"5,145 t\"",
"context": "CREATE TABLE table_name_14 (date VARCHAR, displacement VARCHAR, nationality VARCHAR, type VARCHAR)",
"question": "what is the date when the nationality is united kingdom, the type is freighter and the displacement is 5,145 t?"
} |
### QUESTION
What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29?
### CONTEXT
### ANSWER
SELECT SUM(*) FROM table_name_51 WHERE air_date = "june 25, 2009" AND order > 29</s> | {
"answer": "SELECT SUM(*) FROM table_name_51 WHERE air_date = \"june 25, 2009\" AND order > 29",
"context": "",
"question": "What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29?"
} |
### QUESTION
Who was appointed with the title of envoy extraordinary and minister plenipotentiary, and a termination of mission of march 16, 1905?
### CONTEXT
CREATE TABLE table_name_15 (appointed_by VARCHAR, title VARCHAR, termination_of_mission VARCHAR)
### ANSWER
SELECT appointed_by FROM table_name_15 WHERE title = "envoy extraordinary and minister plenipotentiary" AND termination_of_mission = "march 16, 1905"</s> | {
"answer": "SELECT appointed_by FROM table_name_15 WHERE title = \"envoy extraordinary and minister plenipotentiary\" AND termination_of_mission = \"march 16, 1905\"",
"context": "CREATE TABLE table_name_15 (appointed_by VARCHAR, title VARCHAR, termination_of_mission VARCHAR)",
"question": "Who was appointed with the title of envoy extraordinary and minister plenipotentiary, and a termination of mission of march 16, 1905?"
} |
### QUESTION
What is the GDP (billion US$) of the country that has a GDP per capita (US$) of 8,861?
### CONTEXT
CREATE TABLE table_name_29 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)
### ANSWER
SELECT gdp__billion_us$_ FROM table_name_29 WHERE gdp_per_capita__us$_ = "8,861"</s> | {
"answer": "SELECT gdp__billion_us$_ FROM table_name_29 WHERE gdp_per_capita__us$_ = \"8,861\"",
"context": "CREATE TABLE table_name_29 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)",
"question": "What is the GDP (billion US$) of the country that has a GDP per capita (US$) of 8,861?"
} |
### QUESTION
What is the total of Final year that has a Notes of replaced by i-96?
### CONTEXT
CREATE TABLE table_name_15 (final_year INTEGER, notes VARCHAR)
### ANSWER
SELECT SUM(final_year) FROM table_name_15 WHERE notes = "replaced by i-96"</s> | {
"answer": "SELECT SUM(final_year) FROM table_name_15 WHERE notes = \"replaced by i-96\"",
"context": "CREATE TABLE table_name_15 (final_year INTEGER, notes VARCHAR)",
"question": "What is the total of Final year that has a Notes of replaced by i-96?"
} |
### QUESTION
What was the Winning Score on May 29, 1977?
### CONTEXT
CREATE TABLE table_name_2 (winning_score VARCHAR, date VARCHAR)
### ANSWER
SELECT winning_score FROM table_name_2 WHERE date = "may 29, 1977"</s> | {
"answer": "SELECT winning_score FROM table_name_2 WHERE date = \"may 29, 1977\"",
"context": "CREATE TABLE table_name_2 (winning_score VARCHAR, date VARCHAR)",
"question": "What was the Winning Score on May 29, 1977?"
} |
### QUESTION
On what Date was Patty Sheehan Runner(s)-up?
### CONTEXT
CREATE TABLE table_name_62 (date VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT date FROM table_name_62 WHERE runner_s__up = "patty sheehan"</s> | {
"answer": "SELECT date FROM table_name_62 WHERE runner_s__up = \"patty sheehan\"",
"context": "CREATE TABLE table_name_62 (date VARCHAR, runner_s__up VARCHAR)",
"question": "On what Date was Patty Sheehan Runner(s)-up?"
} |
### QUESTION
What is the number of the votes of the election before 2004 with edward mahama as the candidate with 3.0% share of votes?
### CONTEXT
CREATE TABLE table_name_74 (number_of_votes VARCHAR, share_of_votes VARCHAR, candidate VARCHAR, election VARCHAR)
### ANSWER
SELECT number_of_votes FROM table_name_74 WHERE candidate = "edward mahama" AND election < 2004 AND share_of_votes = "3.0%"</s> | {
"answer": "SELECT number_of_votes FROM table_name_74 WHERE candidate = \"edward mahama\" AND election < 2004 AND share_of_votes = \"3.0%\"",
"context": "CREATE TABLE table_name_74 (number_of_votes VARCHAR, share_of_votes VARCHAR, candidate VARCHAR, election VARCHAR)",
"question": "What is the number of the votes of the election before 2004 with edward mahama as the candidate with 3.0% share of votes?"
} |
### QUESTION
What is the total number of First Elected that has counties represented of Anne Arundel, District of 30, and a Ways and Means Committee?
### CONTEXT
CREATE TABLE table_name_22 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR)
### ANSWER
SELECT COUNT(first_elected) FROM table_name_22 WHERE counties_represented = "anne arundel" AND district = "30" AND committee = "ways and means"</s> | {
"answer": "SELECT COUNT(first_elected) FROM table_name_22 WHERE counties_represented = \"anne arundel\" AND district = \"30\" AND committee = \"ways and means\"",
"context": "CREATE TABLE table_name_22 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR)",
"question": "What is the total number of First Elected that has counties represented of Anne Arundel, District of 30, and a Ways and Means Committee?"
} |
### QUESTION
What is the note section for the role with a language of hindi and a title of miley naa miley hum?
### CONTEXT
CREATE TABLE table_name_30 (notes VARCHAR, language VARCHAR, title VARCHAR)
### ANSWER
SELECT notes FROM table_name_30 WHERE language = "hindi" AND title = "miley naa miley hum"</s> | {
"answer": "SELECT notes FROM table_name_30 WHERE language = \"hindi\" AND title = \"miley naa miley hum\"",
"context": "CREATE TABLE table_name_30 (notes VARCHAR, language VARCHAR, title VARCHAR)",
"question": "What is the note section for the role with a language of hindi and a title of miley naa miley hum?"
} |
### QUESTION
How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia?
### CONTEXT
CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR)
### ANSWER
SELECT attendance FROM table_name_31 WHERE away_team = "dynamo kyiv" AND home_team = "torpedo zaporizhia"</s> | {
"answer": "SELECT attendance FROM table_name_31 WHERE away_team = \"dynamo kyiv\" AND home_team = \"torpedo zaporizhia\"",
"context": "CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR)",
"question": "How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia?"
} |
### QUESTION
What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000?
### CONTEXT
CREATE TABLE table_name_80 (white VARCHAR, opening VARCHAR, year VARCHAR, moves VARCHAR, black VARCHAR)
### ANSWER
SELECT white FROM table_name_80 WHERE moves > 19 AND black = "kasparov" AND year < 2000 AND opening = "e93 king's indian defence"</s> | {
"answer": "SELECT white FROM table_name_80 WHERE moves > 19 AND black = \"kasparov\" AND year < 2000 AND opening = \"e93 king's indian defence\"",
"context": "CREATE TABLE table_name_80 (white VARCHAR, opening VARCHAR, year VARCHAR, moves VARCHAR, black VARCHAR)",
"question": "What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000?"
} |
### QUESTION
What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?
### CONTEXT
CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)
### ANSWER
SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = "state" AND area = "macraes flat"</s> | {
"answer": "SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = \"state\" AND area = \"macraes flat\"",
"context": "CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)",
"question": "What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?"
} |
### QUESTION
What's the United States team that played for the Grizzlies in 1995-1996?
### CONTEXT
CREATE TABLE table_name_51 (school_club_team VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)
### ANSWER
SELECT school_club_team FROM table_name_51 WHERE nationality = "united states" AND years_for_grizzlies = "1995-1996"</s> | {
"answer": "SELECT school_club_team FROM table_name_51 WHERE nationality = \"united states\" AND years_for_grizzlies = \"1995-1996\"",
"context": "CREATE TABLE table_name_51 (school_club_team VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)",
"question": "What's the United States team that played for the Grizzlies in 1995-1996?"
} |
### QUESTION
Name the points against when tries against is 51 and points is 52 with played of 22
### CONTEXT
CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)
### ANSWER
SELECT points_against FROM table_name_91 WHERE played = "22" AND points = "52" AND tries_against = "51"</s> | {
"answer": "SELECT points_against FROM table_name_91 WHERE played = \"22\" AND points = \"52\" AND tries_against = \"51\"",
"context": "CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)",
"question": "Name the points against when tries against is 51 and points is 52 with played of 22"
} |
### QUESTION
Name the points against for cwmllynfell rfc
### CONTEXT
CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR)
### ANSWER
SELECT points_against FROM table_name_27 WHERE club = "cwmllynfell rfc"</s> | {
"answer": "SELECT points_against FROM table_name_27 WHERE club = \"cwmllynfell rfc\"",
"context": "CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR)",
"question": "Name the points against for cwmllynfell rfc"
} |
### QUESTION
What is lead for the Election Results polling firm and has a PSOE of 39.6% 175?
### CONTEXT
CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR)
### ANSWER
SELECT lead FROM table_name_8 WHERE polling_firm = "election results" AND psoe = "39.6% 175"</s> | {
"answer": "SELECT lead FROM table_name_8 WHERE polling_firm = \"election results\" AND psoe = \"39.6% 175\"",
"context": "CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR)",
"question": "What is lead for the Election Results polling firm and has a PSOE of 39.6% 175?"
} |
### QUESTION
Which was the position for overall less than 254, round less than 5 and pick number less than 13?
### CONTEXT
CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR)
### ANSWER
SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13</s> | {
"answer": "SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13",
"context": "CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR)",
"question": "Which was the position for overall less than 254, round less than 5 and pick number less than 13?"
} |
### QUESTION
Who had the lowest field goals but had 10 points and more than 2 touchdowns?
### CONTEXT
CREATE TABLE table_name_68 (field_goals INTEGER, points VARCHAR, touchdowns VARCHAR)
### ANSWER
SELECT MIN(field_goals) FROM table_name_68 WHERE points = 10 AND touchdowns > 2</s> | {
"answer": "SELECT MIN(field_goals) FROM table_name_68 WHERE points = 10 AND touchdowns > 2",
"context": "CREATE TABLE table_name_68 (field_goals INTEGER, points VARCHAR, touchdowns VARCHAR)",
"question": "Who had the lowest field goals but had 10 points and more than 2 touchdowns?"
} |
### QUESTION
Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11?
### CONTEXT
CREATE TABLE table_name_71 (top_25 INTEGER, top_5 VARCHAR, wins VARCHAR)
### ANSWER
SELECT SUM(top_25) FROM table_name_71 WHERE top_5 > 9 AND wins < 11</s> | {
"answer": "SELECT SUM(top_25) FROM table_name_71 WHERE top_5 > 9 AND wins < 11",
"context": "CREATE TABLE table_name_71 (top_25 INTEGER, top_5 VARCHAR, wins VARCHAR)",
"question": "Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11?"
} |
### QUESTION
What is the opponent with the outcome of runner-up with a date of 19 september 1994?
### CONTEXT
CREATE TABLE table_name_25 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent FROM table_name_25 WHERE outcome = "runner-up" AND date = "19 september 1994"</s> | {
"answer": "SELECT opponent FROM table_name_25 WHERE outcome = \"runner-up\" AND date = \"19 september 1994\"",
"context": "CREATE TABLE table_name_25 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)",
"question": "What is the opponent with the outcome of runner-up with a date of 19 september 1994?"
} |
### QUESTION
What was the average total medals received by Roland Hayes School when there were 0 gold medals?
### CONTEXT
CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)
### ANSWER
SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = "roland hayes school"</s> | {
"answer": "SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = \"roland hayes school\"",
"context": "CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)",
"question": "What was the average total medals received by Roland Hayes School when there were 0 gold medals?"
} |
### QUESTION
How many games did team iurbentia bilbao have with rebounds higher than 212?
### CONTEXT
CREATE TABLE table_name_27 (games INTEGER, team VARCHAR, rebounds VARCHAR)
### ANSWER
SELECT SUM(games) FROM table_name_27 WHERE team = "iurbentia bilbao" AND rebounds > 212</s> | {
"answer": "SELECT SUM(games) FROM table_name_27 WHERE team = \"iurbentia bilbao\" AND rebounds > 212",
"context": "CREATE TABLE table_name_27 (games INTEGER, team VARCHAR, rebounds VARCHAR)",
"question": "How many games did team iurbentia bilbao have with rebounds higher than 212?"
} |
### QUESTION
Which Home team has a Score of 1–1, and an Away team of tottenham hotspur?
### CONTEXT
CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team FROM table_name_68 WHERE score = "1–1" AND away_team = "tottenham hotspur"</s> | {
"answer": "SELECT home_team FROM table_name_68 WHERE score = \"1–1\" AND away_team = \"tottenham hotspur\"",
"context": "CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)",
"question": "Which Home team has a Score of 1–1, and an Away team of tottenham hotspur?"
} |
### QUESTION
what is the year when the notes is 5000 m and the competition is world junior championships in athletics?
### CONTEXT
CREATE TABLE table_name_36 (year VARCHAR, notes VARCHAR, competition VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_36 WHERE notes = "5000 m" AND competition = "world junior championships in athletics"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_36 WHERE notes = \"5000 m\" AND competition = \"world junior championships in athletics\"",
"context": "CREATE TABLE table_name_36 (year VARCHAR, notes VARCHAR, competition VARCHAR)",
"question": "what is the year when the notes is 5000 m and the competition is world junior championships in athletics?"
} |
### QUESTION
In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/
### CONTEXT
CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR)
### ANSWER
SELECT authority FROM table_name_93 WHERE gender = "coed" AND area = "kelvin grove" AND name = "tkkm o manawatu"</s> | {
"answer": "SELECT authority FROM table_name_93 WHERE gender = \"coed\" AND area = \"kelvin grove\" AND name = \"tkkm o manawatu\"",
"context": "CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR)",
"question": "In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/"
} |
### QUESTION
which Authority has a coed school with a decile greater than 4, with a 150 roll?
### CONTEXT
CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)
### ANSWER
SELECT authority FROM table_name_49 WHERE gender = "coed" AND decile > 4 AND roll = "150"</s> | {
"answer": "SELECT authority FROM table_name_49 WHERE gender = \"coed\" AND decile > 4 AND roll = \"150\"",
"context": "CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)",
"question": "which Authority has a coed school with a decile greater than 4, with a 150 roll?"
} |
### QUESTION
What is the release date for Ben 10: Alien Force Volume 9 on DVD?
### CONTEXT
CREATE TABLE table_name_22 (release_date VARCHAR, dvd_title VARCHAR)
### ANSWER
SELECT release_date FROM table_name_22 WHERE dvd_title = "ben 10: alien force volume 9"</s> | {
"answer": "SELECT release_date FROM table_name_22 WHERE dvd_title = \"ben 10: alien force volume 9\"",
"context": "CREATE TABLE table_name_22 (release_date VARCHAR, dvd_title VARCHAR)",
"question": "What is the release date for Ben 10: Alien Force Volume 9 on DVD?"
} |
### QUESTION
What the episode count for Ben 10: Alien Force Volume 8 on DVD?
### CONTEXT
CREATE TABLE table_name_90 (episode_count VARCHAR, dvd_title VARCHAR)
### ANSWER
SELECT episode_count FROM table_name_90 WHERE dvd_title = "ben 10: alien force volume 8"</s> | {
"answer": "SELECT episode_count FROM table_name_90 WHERE dvd_title = \"ben 10: alien force volume 8\"",
"context": "CREATE TABLE table_name_90 (episode_count VARCHAR, dvd_title VARCHAR)",
"question": "What the episode count for Ben 10: Alien Force Volume 8 on DVD?"
} |
### QUESTION
What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?
### CONTEXT
CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0</s> | {
"answer": "SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0",
"context": "CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR)",
"question": "What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?"
} |
### QUESTION
When John Harkes was the color commentator, and Alexi Lalas and Steve McManaman were the pregame analysts, who were the sideline reporters?
### CONTEXT
CREATE TABLE table_name_84 (sideline_reporters VARCHAR, color_commentator VARCHAR, pregame_analysts VARCHAR)
### ANSWER
SELECT sideline_reporters FROM table_name_84 WHERE color_commentator = "john harkes" AND pregame_analysts = "alexi lalas and steve mcmanaman"</s> | {
"answer": "SELECT sideline_reporters FROM table_name_84 WHERE color_commentator = \"john harkes\" AND pregame_analysts = \"alexi lalas and steve mcmanaman\"",
"context": "CREATE TABLE table_name_84 (sideline_reporters VARCHAR, color_commentator VARCHAR, pregame_analysts VARCHAR)",
"question": "When John Harkes was the color commentator, and Alexi Lalas and Steve McManaman were the pregame analysts, who were the sideline reporters?"
} |
### QUESTION
Who does pregame analysts for TSN2 network when Taylor Twellman is the color commentator?
### CONTEXT
CREATE TABLE table_name_74 (pregame_analysts VARCHAR, color_commentator VARCHAR, network VARCHAR)
### ANSWER
SELECT pregame_analysts FROM table_name_74 WHERE color_commentator = "taylor twellman" AND network = "tsn2"</s> | {
"answer": "SELECT pregame_analysts FROM table_name_74 WHERE color_commentator = \"taylor twellman\" AND network = \"tsn2\"",
"context": "CREATE TABLE table_name_74 (pregame_analysts VARCHAR, color_commentator VARCHAR, network VARCHAR)",
"question": "Who does pregame analysts for TSN2 network when Taylor Twellman is the color commentator?"
} |
### QUESTION
which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?
### CONTEXT
CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)
### ANSWER
SELECT order FROM table_name_26 WHERE family = "vespertilionidae" AND name = "northern long-eared myotis"</s> | {
"answer": "SELECT order FROM table_name_26 WHERE family = \"vespertilionidae\" AND name = \"northern long-eared myotis\"",
"context": "CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)",
"question": "which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?"
} |
### QUESTION
How many points did Newport RFC get?
### CONTEXT
CREATE TABLE table_name_58 (points VARCHAR, club VARCHAR)
### ANSWER
SELECT points FROM table_name_58 WHERE club = "newport rfc"</s> | {
"answer": "SELECT points FROM table_name_58 WHERE club = \"newport rfc\"",
"context": "CREATE TABLE table_name_58 (points VARCHAR, club VARCHAR)",
"question": "How many points did Newport RFC get?"
} |
### QUESTION
Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?
### CONTEXT
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "alabama" AND pick > 43</s> | {
"answer": "SELECT MIN(round) FROM table_name_87 WHERE school_club_team = \"alabama\" AND pick > 43",
"context": "CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)",
"question": "Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?"
} |
### QUESTION
\What is the class of the station with the call sign w254ah?
### CONTEXT
CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR)
### ANSWER
SELECT class FROM table_name_35 WHERE call_sign = "w254ah"</s> | {
"answer": "SELECT class FROM table_name_35 WHERE call_sign = \"w254ah\"",
"context": "CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR)",
"question": "\\What is the class of the station with the call sign w254ah?"
} |
### QUESTION
What is the position of club Melilla CF, with a goal difference smaller than -10?
### CONTEXT
CREATE TABLE table_name_63 (position INTEGER, club VARCHAR, goal_difference VARCHAR)
### ANSWER
SELECT SUM(position) FROM table_name_63 WHERE club = "melilla cf" AND goal_difference < -10</s> | {
"answer": "SELECT SUM(position) FROM table_name_63 WHERE club = \"melilla cf\" AND goal_difference < -10",
"context": "CREATE TABLE table_name_63 (position INTEGER, club VARCHAR, goal_difference VARCHAR)",
"question": "What is the position of club Melilla CF, with a goal difference smaller than -10?"
} |
### QUESTION
What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?
### CONTEXT
CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR)
### ANSWER
SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25°__seconds_ = "10.1" AND shell__lb_ < 12.5</s> | {
"answer": "SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25°__seconds_ = \"10.1\" AND shell__lb_ < 12.5",
"context": "CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR)",
"question": "What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?"
} |
### QUESTION
What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY?
### CONTEXT
CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR)
### ANSWER
SELECT state FROM table_name_63 WHERE talent = "classical piano" AND hometown = "lancaster, ny"</s> | {
"answer": "SELECT state FROM table_name_63 WHERE talent = \"classical piano\" AND hometown = \"lancaster, ny\"",
"context": "CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR)",
"question": "What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY?"
} |
### QUESTION
What was the school type for Los Angeles, California?
### CONTEXT
CREATE TABLE table_name_51 (type VARCHAR, location VARCHAR)
### ANSWER
SELECT type FROM table_name_51 WHERE location = "los angeles, california"</s> | {
"answer": "SELECT type FROM table_name_51 WHERE location = \"los angeles, california\"",
"context": "CREATE TABLE table_name_51 (type VARCHAR, location VARCHAR)",
"question": "What was the school type for Los Angeles, California?"
} |
### QUESTION
What was the earliest year that Yvette Alexander took office and was up for reelection after 2016?
### CONTEXT
CREATE TABLE table_name_70 (took_office INTEGER, name VARCHAR, up_for_reelection VARCHAR)
### ANSWER
SELECT MIN(took_office) FROM table_name_70 WHERE name = "yvette alexander" AND up_for_reelection > 2016</s> | {
"answer": "SELECT MIN(took_office) FROM table_name_70 WHERE name = \"yvette alexander\" AND up_for_reelection > 2016",
"context": "CREATE TABLE table_name_70 (took_office INTEGER, name VARCHAR, up_for_reelection VARCHAR)",
"question": "What was the earliest year that Yvette Alexander took office and was up for reelection after 2016?"
} |
### QUESTION
What is the location and attendance of the game with a game number greater than 7 and a record of 5-2-1?
### CONTEXT
CREATE TABLE table_name_90 (location_attendance VARCHAR, game VARCHAR, record VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_90 WHERE game > 7 AND record = "5-2-1"</s> | {
"answer": "SELECT location_attendance FROM table_name_90 WHERE game > 7 AND record = \"5-2-1\"",
"context": "CREATE TABLE table_name_90 (location_attendance VARCHAR, game VARCHAR, record VARCHAR)",
"question": "What is the location and attendance of the game with a game number greater than 7 and a record of 5-2-1?"
} |
### QUESTION
What is the location of the tallahassee open, with a Score of 269 (–19)?
### CONTEXT
CREATE TABLE table_name_83 (location VARCHAR, score VARCHAR, tournament VARCHAR)
### ANSWER
SELECT location FROM table_name_83 WHERE score = "269 (–19)" AND tournament = "tallahassee open"</s> | {
"answer": "SELECT location FROM table_name_83 WHERE score = \"269 (–19)\" AND tournament = \"tallahassee open\"",
"context": "CREATE TABLE table_name_83 (location VARCHAR, score VARCHAR, tournament VARCHAR)",
"question": "What is the location of the tallahassee open, with a Score of 269 (–19)?"
} |
### QUESTION
What Frequency's Branding is Your Cure for Corporate Radio?
### CONTEXT
CREATE TABLE table_name_23 (frequency VARCHAR, branding VARCHAR)
### ANSWER
SELECT frequency FROM table_name_23 WHERE branding = "your cure for corporate radio"</s> | {
"answer": "SELECT frequency FROM table_name_23 WHERE branding = \"your cure for corporate radio\"",
"context": "CREATE TABLE table_name_23 (frequency VARCHAR, branding VARCHAR)",
"question": "What Frequency's Branding is Your Cure for Corporate Radio?"
} |
### QUESTION
What is the Call sign of the Frequency 106.9 the X?
### CONTEXT
CREATE TABLE table_name_19 (call_sign VARCHAR, branding VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_19 WHERE branding = "106.9 the x"</s> | {
"answer": "SELECT call_sign FROM table_name_19 WHERE branding = \"106.9 the x\"",
"context": "CREATE TABLE table_name_19 (call_sign VARCHAR, branding VARCHAR)",
"question": "What is the Call sign of the Frequency 106.9 the X?"
} |
### QUESTION
Which Intra-molecular structure has a Comparative of no, and a Name of mitarget?
### CONTEXT
CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR)
### ANSWER
SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = "no" AND name = "mitarget"</s> | {
"answer": "SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = \"no\" AND name = \"mitarget\"",
"context": "CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR)",
"question": "Which Intra-molecular structure has a Comparative of no, and a Name of mitarget?"
} |
### QUESTION
What time is CDT when EDT is 4:55 a.m.?
### CONTEXT
CREATE TABLE table_name_71 (cdt___5_utc_ VARCHAR, edt___4_utc_ VARCHAR)
### ANSWER
SELECT cdt___5_utc_ FROM table_name_71 WHERE edt___4_utc_ = "4:55 a.m."</s> | {
"answer": "SELECT cdt___5_utc_ FROM table_name_71 WHERE edt___4_utc_ = \"4:55 a.m.\"",
"context": "CREATE TABLE table_name_71 (cdt___5_utc_ VARCHAR, edt___4_utc_ VARCHAR)",
"question": "What time is CDT when EDT is 4:55 a.m.?"
} |
### QUESTION
How many clubs does the student named "Eric Tai" belong to?
### CONTEXT
CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)
### ANSWER
SELECT COUNT(DISTINCT t1.clubname) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Eric" AND t3.lname = "Tai"</s> | {
"answer": "SELECT COUNT(DISTINCT t1.clubname) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Eric\" AND t3.lname = \"Tai\"",
"context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)",
"question": "How many clubs does the student named \"Eric Tai\" belong to?"
} |
### QUESTION
What is the area of the nation with GDP per capita (US$) of 11,929?
### CONTEXT
CREATE TABLE table_name_11 (area__km²_ VARCHAR, gdp_per_capita__us$_ VARCHAR)
### ANSWER
SELECT area__km²_ FROM table_name_11 WHERE gdp_per_capita__us$_ = "11,929"</s> | {
"answer": "SELECT area__km²_ FROM table_name_11 WHERE gdp_per_capita__us$_ = \"11,929\"",
"context": "CREATE TABLE table_name_11 (area__km²_ VARCHAR, gdp_per_capita__us$_ VARCHAR)",
"question": "What is the area of the nation with GDP per capita (US$) of 11,929?"
} |
### QUESTION
What time is MDT when EDT is set and PDT is 6:00 a.m.?
### CONTEXT
CREATE TABLE table_name_58 (mdt___6_utc_ VARCHAR, edt___4_utc_ VARCHAR, pdt___7_utc_ VARCHAR)
### ANSWER
SELECT mdt___6_utc_ FROM table_name_58 WHERE edt___4_utc_ = "set" AND pdt___7_utc_ = "6:00 a.m."</s> | {
"answer": "SELECT mdt___6_utc_ FROM table_name_58 WHERE edt___4_utc_ = \"set\" AND pdt___7_utc_ = \"6:00 a.m.\"",
"context": "CREATE TABLE table_name_58 (mdt___6_utc_ VARCHAR, edt___4_utc_ VARCHAR, pdt___7_utc_ VARCHAR)",
"question": "What time is MDT when EDT is set and PDT is 6:00 a.m.?"
} |
### QUESTION
What is the sum of the number of districts (kecamatan) in the geographical unit of java with more than 4 recencies (kabupaten) and less than 8,577 villages?
### CONTEXT
CREATE TABLE table_name_4 (number_of_districts__kecamatan_ INTEGER, villages VARCHAR, geographical_unit VARCHAR, number_of_regencies__kabupaten_ VARCHAR)
### ANSWER
SELECT SUM(number_of_districts__kecamatan_) FROM table_name_4 WHERE geographical_unit = "java" AND number_of_regencies__kabupaten_ > 4 AND villages < 8 OFFSET 577</s> | {
"answer": "SELECT SUM(number_of_districts__kecamatan_) FROM table_name_4 WHERE geographical_unit = \"java\" AND number_of_regencies__kabupaten_ > 4 AND villages < 8 OFFSET 577",
"context": "CREATE TABLE table_name_4 (number_of_districts__kecamatan_ INTEGER, villages VARCHAR, geographical_unit VARCHAR, number_of_regencies__kabupaten_ VARCHAR)",
"question": "What is the sum of the number of districts (kecamatan) in the geographical unit of java with more than 4 recencies (kabupaten) and less than 8,577 villages?"
} |
### QUESTION
Who is the Driver on Bob Keselowski's team?
### CONTEXT
CREATE TABLE table_name_57 (driver_s_ VARCHAR, owner_s_ VARCHAR)
### ANSWER
SELECT driver_s_ FROM table_name_57 WHERE owner_s_ = "bob keselowski"</s> | {
"answer": "SELECT driver_s_ FROM table_name_57 WHERE owner_s_ = \"bob keselowski\"",
"context": "CREATE TABLE table_name_57 (driver_s_ VARCHAR, owner_s_ VARCHAR)",
"question": "Who is the Driver on Bob Keselowski's team?"
} |
### QUESTION
What is south africa's margin of victory?
### CONTEXT
CREATE TABLE table_name_29 (margin_of_victory VARCHAR, country VARCHAR)
### ANSWER
SELECT margin_of_victory FROM table_name_29 WHERE country = "south africa"</s> | {
"answer": "SELECT margin_of_victory FROM table_name_29 WHERE country = \"south africa\"",
"context": "CREATE TABLE table_name_29 (margin_of_victory VARCHAR, country VARCHAR)",
"question": "What is south africa's margin of victory?"
} |
### QUESTION
What was the value in 2009 when 2005 was A for the Australian Open?
### CONTEXT
CREATE TABLE table_name_5 (tournament VARCHAR)
### ANSWER
SELECT 2009 FROM table_name_5 WHERE 2005 = "a" AND tournament = "australian open"</s> | {
"answer": "SELECT 2009 FROM table_name_5 WHERE 2005 = \"a\" AND tournament = \"australian open\"",
"context": "CREATE TABLE table_name_5 (tournament VARCHAR)",
"question": "What was the value in 2009 when 2005 was A for the Australian Open?"
} |
### QUESTION
Which Score has a Home of quebec nordiques on april 16?
### CONTEXT
CREATE TABLE table_name_83 (score VARCHAR, home VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_83 WHERE home = "quebec nordiques" AND date = "april 16"</s> | {
"answer": "SELECT score FROM table_name_83 WHERE home = \"quebec nordiques\" AND date = \"april 16\"",
"context": "CREATE TABLE table_name_83 (score VARCHAR, home VARCHAR, date VARCHAR)",
"question": "Which Score has a Home of quebec nordiques on april 16?"
} |
### QUESTION
What is the total number of To Par, when Money ( $ ) is less than 387, and when Player is "Al Brosch"?
### CONTEXT
CREATE TABLE table_name_33 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(to_par) FROM table_name_33 WHERE money___$__ < 387 AND player = "al brosch"</s> | {
"answer": "SELECT COUNT(to_par) FROM table_name_33 WHERE money___$__ < 387 AND player = \"al brosch\"",
"context": "CREATE TABLE table_name_33 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)",
"question": "What is the total number of To Par, when Money ( $ ) is less than 387, and when Player is \"Al Brosch\"?"
} |
### QUESTION
What is the Score, when the Location is Clemson, SC, when the Winner is Clemson, and when the Date is November 11, 2006?
### CONTEXT
CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)
### ANSWER
SELECT score FROM table_name_67 WHERE location = "clemson, sc" AND winner = "clemson" AND date = "november 11, 2006"</s> | {
"answer": "SELECT score FROM table_name_67 WHERE location = \"clemson, sc\" AND winner = \"clemson\" AND date = \"november 11, 2006\"",
"context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)",
"question": "What is the Score, when the Location is Clemson, SC, when the Winner is Clemson, and when the Date is November 11, 2006?"
} |
### QUESTION
What was the game result on November 16, 1969?
### CONTEXT
CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_83 WHERE date = "november 16, 1969"</s> | {
"answer": "SELECT result FROM table_name_83 WHERE date = \"november 16, 1969\"",
"context": "CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)",
"question": "What was the game result on November 16, 1969?"
} |
### QUESTION
How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have?
### CONTEXT
CREATE TABLE table_name_55 (points_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)
### ANSWER
SELECT points_classification FROM table_name_55 WHERE young_rider_classification = "lech piasecki" AND general_classification = "stephen roche" AND winner = "carrera jeans-vagabond"</s> | {
"answer": "SELECT points_classification FROM table_name_55 WHERE young_rider_classification = \"lech piasecki\" AND general_classification = \"stephen roche\" AND winner = \"carrera jeans-vagabond\"",
"context": "CREATE TABLE table_name_55 (points_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)",
"question": "How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have?"
} |
### QUESTION
Which Payment has a Type of 2d, and a Release date of january 2003?
### CONTEXT
CREATE TABLE table_name_31 (payment VARCHAR, type VARCHAR, release_date VARCHAR)
### ANSWER
SELECT payment FROM table_name_31 WHERE type = "2d" AND release_date = "january 2003"</s> | {
"answer": "SELECT payment FROM table_name_31 WHERE type = \"2d\" AND release_date = \"january 2003\"",
"context": "CREATE TABLE table_name_31 (payment VARCHAR, type VARCHAR, release_date VARCHAR)",
"question": "Which Payment has a Type of 2d, and a Release date of january 2003?"
} |
### QUESTION
What is the D43 associated with a D41 of r 16?
### CONTEXT
CREATE TABLE table_name_92 (d_43 VARCHAR, d_41 VARCHAR)
### ANSWER
SELECT d_43 FROM table_name_92 WHERE d_41 = "r 16"</s> | {
"answer": "SELECT d_43 FROM table_name_92 WHERE d_41 = \"r 16\"",
"context": "CREATE TABLE table_name_92 (d_43 VARCHAR, d_41 VARCHAR)",
"question": "What is the D43 associated with a D41 of r 16?"
} |
### QUESTION
what is the place when the event is 4000 m individual pursuit?
### CONTEXT
CREATE TABLE table_name_2 (place VARCHAR, event VARCHAR)
### ANSWER
SELECT place FROM table_name_2 WHERE event = "4000 m individual pursuit"</s> | {
"answer": "SELECT place FROM table_name_2 WHERE event = \"4000 m individual pursuit\"",
"context": "CREATE TABLE table_name_2 (place VARCHAR, event VARCHAR)",
"question": "what is the place when the event is 4000 m individual pursuit?"
} |
### QUESTION
After week 11, what was the Result on December 13, 1964?
### CONTEXT
CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_49 WHERE week > 11 AND date = "december 13, 1964"</s> | {
"answer": "SELECT result FROM table_name_49 WHERE week > 11 AND date = \"december 13, 1964\"",
"context": "CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR, date VARCHAR)",
"question": "After week 11, what was the Result on December 13, 1964?"
} |
### QUESTION
What is the Place 2 Player?
### CONTEXT
CREATE TABLE table_name_1 (player VARCHAR, place VARCHAR)
### ANSWER
SELECT player FROM table_name_1 WHERE place = "2"</s> | {
"answer": "SELECT player FROM table_name_1 WHERE place = \"2\"",
"context": "CREATE TABLE table_name_1 (player VARCHAR, place VARCHAR)",
"question": "What is the Place 2 Player?"
} |
### QUESTION
what was the opponent on 26 october 1889?
### CONTEXT
CREATE TABLE table_name_51 (opponents VARCHAR, date VARCHAR)
### ANSWER
SELECT opponents FROM table_name_51 WHERE date = "26 october 1889"</s> | {
"answer": "SELECT opponents FROM table_name_51 WHERE date = \"26 october 1889\"",
"context": "CREATE TABLE table_name_51 (opponents VARCHAR, date VARCHAR)",
"question": "what was the opponent on 26 october 1889?"
} |
### QUESTION
1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]?
### CONTEXT
CREATE TABLE table_name_80 (Id VARCHAR)
### ANSWER
SELECT MIN(1996)[2] FROM table_name_80 WHERE 1950 > 80 AND 1960 = 196 AND 1990 > 131</s> | {
"answer": "SELECT MIN(1996)[2] FROM table_name_80 WHERE 1950 > 80 AND 1960 = 196 AND 1990 > 131",
"context": "CREATE TABLE table_name_80 (Id VARCHAR)",
"question": "1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]?"
} |
### QUESTION
What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?
### CONTEXT
CREATE TABLE table_name_25 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, order VARCHAR)
### ANSWER
SELECT elevator FROM table_name_25 WHERE elevated = "1378, september 18" AND order = "cardinal-priest" AND elector = "poncello orsini"</s> | {
"answer": "SELECT elevator FROM table_name_25 WHERE elevated = \"1378, september 18\" AND order = \"cardinal-priest\" AND elector = \"poncello orsini\"",
"context": "CREATE TABLE table_name_25 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, order VARCHAR)",
"question": "What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?"
} |
### QUESTION
What is Championship, when Outcome is "runner-up", and when Opponents In Final is "Gigi Fernández Natalia Zvereva"?
### CONTEXT
CREATE TABLE table_name_55 (championship VARCHAR, outcome VARCHAR, opponents_in_final VARCHAR)
### ANSWER
SELECT championship FROM table_name_55 WHERE outcome = "runner-up" AND opponents_in_final = "gigi fernández natalia zvereva"</s> | {
"answer": "SELECT championship FROM table_name_55 WHERE outcome = \"runner-up\" AND opponents_in_final = \"gigi fernández natalia zvereva\"",
"context": "CREATE TABLE table_name_55 (championship VARCHAR, outcome VARCHAR, opponents_in_final VARCHAR)",
"question": "What is Championship, when Outcome is \"runner-up\", and when Opponents In Final is \"Gigi Fernández Natalia Zvereva\"?"
} |
### QUESTION
How many games have more than 10 points and more than 2 draws?
### CONTEXT
CREATE TABLE table_name_13 (games VARCHAR, points VARCHAR, drawn VARCHAR)
### ANSWER
SELECT COUNT(games) FROM table_name_13 WHERE points = 10 AND drawn > 2</s> | {
"answer": "SELECT COUNT(games) FROM table_name_13 WHERE points = 10 AND drawn > 2",
"context": "CREATE TABLE table_name_13 (games VARCHAR, points VARCHAR, drawn VARCHAR)",
"question": "How many games have more than 10 points and more than 2 draws?"
} |
### QUESTION
What is the range (varies by payload weight) for Shahab-4?
### CONTEXT
CREATE TABLE table_name_71 (range__varies_with_payload_weight_ VARCHAR, name_designation VARCHAR)
### ANSWER
SELECT range__varies_with_payload_weight_ FROM table_name_71 WHERE name_designation = "shahab-4"</s> | {
"answer": "SELECT range__varies_with_payload_weight_ FROM table_name_71 WHERE name_designation = \"shahab-4\"",
"context": "CREATE TABLE table_name_71 (range__varies_with_payload_weight_ VARCHAR, name_designation VARCHAR)",
"question": "What is the range (varies by payload weight) for Shahab-4?"
} |
### QUESTION
What is the range (varies by payload weight) for the unknown player?
### CONTEXT
CREATE TABLE table_name_34 (range__varies_with_payload_weight_ VARCHAR, payload VARCHAR)
### ANSWER
SELECT range__varies_with_payload_weight_ FROM table_name_34 WHERE payload = "unknown"</s> | {
"answer": "SELECT range__varies_with_payload_weight_ FROM table_name_34 WHERE payload = \"unknown\"",
"context": "CREATE TABLE table_name_34 (range__varies_with_payload_weight_ VARCHAR, payload VARCHAR)",
"question": "What is the range (varies by payload weight) for the unknown player?"
} |
### QUESTION
What is the payload for Class MRBM, and a range of 1,930km?
### CONTEXT
CREATE TABLE table_name_12 (payload VARCHAR, class VARCHAR, range__varies_with_payload_weight_ VARCHAR)
### ANSWER
SELECT payload FROM table_name_12 WHERE class = "mrbm" AND range__varies_with_payload_weight_ = "1,930km"</s> | {
"answer": "SELECT payload FROM table_name_12 WHERE class = \"mrbm\" AND range__varies_with_payload_weight_ = \"1,930km\"",
"context": "CREATE TABLE table_name_12 (payload VARCHAR, class VARCHAR, range__varies_with_payload_weight_ VARCHAR)",
"question": "What is the payload for Class MRBM, and a range of 1,930km?"
} |
### QUESTION
How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?
### CONTEXT
CREATE TABLE table_name_93 (votes INTEGER, draw VARCHAR, artist VARCHAR)
### ANSWER
SELECT SUM(votes) FROM table_name_93 WHERE draw < 4 AND artist = "yvetta kadakas & ivo linna"</s> | {
"answer": "SELECT SUM(votes) FROM table_name_93 WHERE draw < 4 AND artist = \"yvetta kadakas & ivo linna\"",
"context": "CREATE TABLE table_name_93 (votes INTEGER, draw VARCHAR, artist VARCHAR)",
"question": "How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?"
} |
### QUESTION
What's the February for the game against the Montreal Canadiens?
### CONTEXT
CREATE TABLE table_name_88 (february INTEGER, opponent VARCHAR)
### ANSWER
SELECT SUM(february) FROM table_name_88 WHERE opponent = "montreal canadiens"</s> | {
"answer": "SELECT SUM(february) FROM table_name_88 WHERE opponent = \"montreal canadiens\"",
"context": "CREATE TABLE table_name_88 (february INTEGER, opponent VARCHAR)",
"question": "What's the February for the game against the Montreal Canadiens?"
} |
### QUESTION
Which Venue has an Event of marathon, and a Year larger than 1995, and a Position of 4th?
### CONTEXT
CREATE TABLE table_name_94 (venue VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)
### ANSWER
SELECT venue FROM table_name_94 WHERE event = "marathon" AND year > 1995 AND position = "4th"</s> | {
"answer": "SELECT venue FROM table_name_94 WHERE event = \"marathon\" AND year > 1995 AND position = \"4th\"",
"context": "CREATE TABLE table_name_94 (venue VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)",
"question": "Which Venue has an Event of marathon, and a Year larger than 1995, and a Position of 4th?"
} |
### QUESTION
Which Position has an Event of 10,000 m, and a Competition of world championships, and a Year larger than 1993?
### CONTEXT
CREATE TABLE table_name_8 (position VARCHAR, year VARCHAR, event VARCHAR, competition VARCHAR)
### ANSWER
SELECT position FROM table_name_8 WHERE event = "10,000 m" AND competition = "world championships" AND year > 1993</s> | {
"answer": "SELECT position FROM table_name_8 WHERE event = \"10,000 m\" AND competition = \"world championships\" AND year > 1993",
"context": "CREATE TABLE table_name_8 (position VARCHAR, year VARCHAR, event VARCHAR, competition VARCHAR)",
"question": "Which Position has an Event of 10,000 m, and a Competition of world championships, and a Year larger than 1993?"
} |
### QUESTION
Which Winner has a Score of 1 – 0, and a Season of 2011–12?
### CONTEXT
CREATE TABLE table_name_30 (winner VARCHAR, score VARCHAR, season VARCHAR)
### ANSWER
SELECT winner FROM table_name_30 WHERE score = "1 – 0" AND season = "2011–12"</s> | {
"answer": "SELECT winner FROM table_name_30 WHERE score = \"1 – 0\" AND season = \"2011–12\"",
"context": "CREATE TABLE table_name_30 (winner VARCHAR, score VARCHAR, season VARCHAR)",
"question": "Which Winner has a Score of 1 – 0, and a Season of 2011–12?"
} |
### QUESTION
4tab of commercial broadcaster Radio Tab broadcasts at what frequency?
### CONTEXT
CREATE TABLE table_name_75 (frequency VARCHAR, callsign VARCHAR, purpose VARCHAR, on_air_id VARCHAR)
### ANSWER
SELECT frequency FROM table_name_75 WHERE purpose = "commercial" AND on_air_id = "radio tab" AND callsign = "4tab"</s> | {
"answer": "SELECT frequency FROM table_name_75 WHERE purpose = \"commercial\" AND on_air_id = \"radio tab\" AND callsign = \"4tab\"",
"context": "CREATE TABLE table_name_75 (frequency VARCHAR, callsign VARCHAR, purpose VARCHAR, on_air_id VARCHAR)",
"question": "4tab of commercial broadcaster Radio Tab broadcasts at what frequency?"
} |
### QUESTION
What company has an unknown date and is an energy business?
### CONTEXT
CREATE TABLE table_name_20 (company VARCHAR, business VARCHAR, date VARCHAR)
### ANSWER
SELECT company FROM table_name_20 WHERE business = "energy" AND date = "unknown"</s> | {
"answer": "SELECT company FROM table_name_20 WHERE business = \"energy\" AND date = \"unknown\"",
"context": "CREATE TABLE table_name_20 (company VARCHAR, business VARCHAR, date VARCHAR)",
"question": "What company has an unknown date and is an energy business?"
} |
### QUESTION
For the United Kingdom, what's the date?
### CONTEXT
CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR)
### ANSWER
SELECT date FROM table_name_88 WHERE country = "united kingdom"</s> | {
"answer": "SELECT date FROM table_name_88 WHERE country = \"united kingdom\"",
"context": "CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR)",
"question": "For the United Kingdom, what's the date?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.