text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?
### CONTEXT
CREATE TABLE table_name_75 (net_profit__ INTEGER, earnings_per_share__p_ VARCHAR, profit__loss__before_tax__£m_ VARCHAR)
### ANSWER
SELECT SUM(net_profit__) AS £m_ FROM table_name_75 WHERE earnings_per_share__p_ = 27.4 AND profit__loss__before_tax__£m_ < 194.6 | {
"answer": "SELECT SUM(net_profit__) AS £m_ FROM table_name_75 WHERE earnings_per_share__p_ = 27.4 AND profit__loss__before_tax__£m_ < 194.6",
"context": "CREATE TABLE table_name_75 (net_profit__ INTEGER, earnings_per_share__p_ VARCHAR, profit__loss__before_tax__£m_ VARCHAR)",
"question": "What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?"
} |
### QUESTION
Which country in the 2008 summer olympics is vadim devyatovskiy from?
### CONTEXT
CREATE TABLE table_name_16 (country VARCHAR, olympics VARCHAR, name VARCHAR)
### ANSWER
SELECT country FROM table_name_16 WHERE olympics = "2008 summer olympics" AND name = "vadim devyatovskiy" | {
"answer": "SELECT country FROM table_name_16 WHERE olympics = \"2008 summer olympics\" AND name = \"vadim devyatovskiy\"",
"context": "CREATE TABLE table_name_16 (country VARCHAR, olympics VARCHAR, name VARCHAR)",
"question": "Which country in the 2008 summer olympics is vadim devyatovskiy from?"
} |
### QUESTION
What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?
### CONTEXT
CREATE TABLE table_name_84 (december INTEGER, record VARCHAR, game VARCHAR)
### ANSWER
SELECT AVG(december) FROM table_name_84 WHERE record = "16-3-4" AND game < 23 | {
"answer": "SELECT AVG(december) FROM table_name_84 WHERE record = \"16-3-4\" AND game < 23",
"context": "CREATE TABLE table_name_84 (december INTEGER, record VARCHAR, game VARCHAR)",
"question": "What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?"
} |
### QUESTION
what is the play when the company is national theatre of greece?
### CONTEXT
CREATE TABLE table_name_11 (play VARCHAR, company VARCHAR)
### ANSWER
SELECT play FROM table_name_11 WHERE company = "national theatre of greece" | {
"answer": "SELECT play FROM table_name_11 WHERE company = \"national theatre of greece\"",
"context": "CREATE TABLE table_name_11 (play VARCHAR, company VARCHAR)",
"question": "what is the play when the company is national theatre of greece?"
} |
### QUESTION
what is the company when the country is greece and the author is aeschylus?
### CONTEXT
CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR)
### ANSWER
SELECT company FROM table_name_28 WHERE country = "greece" AND author = "aeschylus" | {
"answer": "SELECT company FROM table_name_28 WHERE country = \"greece\" AND author = \"aeschylus\"",
"context": "CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR)",
"question": "what is the company when the country is greece and the author is aeschylus?"
} |
### QUESTION
What was the highest rank for rowers who represented Denmark?
### CONTEXT
CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR)
### ANSWER
SELECT MAX(rank) FROM table_name_94 WHERE country = "denmark" | {
"answer": "SELECT MAX(rank) FROM table_name_94 WHERE country = \"denmark\"",
"context": "CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR)",
"question": "What was the highest rank for rowers who represented Denmark?"
} |
### QUESTION
What is the Purpose of the Callsign with a Freq currently of 4rph?
### CONTEXT
CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR)
### ANSWER
SELECT purpose FROM table_name_43 WHERE freq_currently = "4rph" | {
"answer": "SELECT purpose FROM table_name_43 WHERE freq_currently = \"4rph\"",
"context": "CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR)",
"question": "What is the Purpose of the Callsign with a Freq currently of 4rph?"
} |
### QUESTION
Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3–3)?
### CONTEXT
CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR)
### ANSWER
SELECT MAX(attendance) FROM table_name_74 WHERE arena = "arrowhead pond of anaheim" AND loss = "giguere (3–3)" | {
"answer": "SELECT MAX(attendance) FROM table_name_74 WHERE arena = \"arrowhead pond of anaheim\" AND loss = \"giguere (3–3)\"",
"context": "CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR)",
"question": "Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3–3)?"
} |
### QUESTION
What was the press like in Paris for Roger Francois, and Carlo Galimberti?
### CONTEXT
CREATE TABLE table_name_67 (paris___fra__ VARCHAR, roger_françois VARCHAR)
### ANSWER
SELECT paris___fra__ FROM table_name_67 WHERE "press" = "press" AND roger_françois = "carlo galimberti" | {
"answer": "SELECT paris___fra__ FROM table_name_67 WHERE \"press\" = \"press\" AND roger_françois = \"carlo galimberti\"",
"context": "CREATE TABLE table_name_67 (paris___fra__ VARCHAR, roger_françois VARCHAR)",
"question": "What was the press like in Paris for Roger Francois, and Carlo Galimberti?"
} |
### QUESTION
which player played on Team Hamilton?
### CONTEXT
CREATE TABLE table_name_33 (player VARCHAR, cfl_team VARCHAR)
### ANSWER
SELECT player FROM table_name_33 WHERE cfl_team = "hamilton" | {
"answer": "SELECT player FROM table_name_33 WHERE cfl_team = \"hamilton\"",
"context": "CREATE TABLE table_name_33 (player VARCHAR, cfl_team VARCHAR)",
"question": "which player played on Team Hamilton?"
} |
### QUESTION
The EVA that started on 8 July 12:38 went for how long?
### CONTEXT
CREATE TABLE table_name_83 (duration VARCHAR, start_date_time VARCHAR)
### ANSWER
SELECT duration FROM table_name_83 WHERE start_date_time = "8 july 12:38" | {
"answer": "SELECT duration FROM table_name_83 WHERE start_date_time = \"8 july 12:38\"",
"context": "CREATE TABLE table_name_83 (duration VARCHAR, start_date_time VARCHAR)",
"question": "The EVA that started on 8 July 12:38 went for how long?"
} |
### QUESTION
The EVA that started 8 July 12:38 was from what spacecraft?
### CONTEXT
CREATE TABLE table_name_96 (spacecraft VARCHAR, start_date_time VARCHAR)
### ANSWER
SELECT spacecraft FROM table_name_96 WHERE start_date_time = "8 july 12:38" | {
"answer": "SELECT spacecraft FROM table_name_96 WHERE start_date_time = \"8 july 12:38\"",
"context": "CREATE TABLE table_name_96 (spacecraft VARCHAR, start_date_time VARCHAR)",
"question": "The EVA that started 8 July 12:38 was from what spacecraft?"
} |
### QUESTION
How many assists were in the k-league competition, which has more than 20 total Gs, the pohang steelers team, and chunnam dragons as the opponent?
### CONTEXT
CREATE TABLE table_name_90 (assists VARCHAR, opponent VARCHAR, team VARCHAR, competition VARCHAR, total_gs VARCHAR)
### ANSWER
SELECT assists FROM table_name_90 WHERE competition = "k-league" AND total_gs > 20 AND team = "pohang steelers" AND opponent = "chunnam dragons" | {
"answer": "SELECT assists FROM table_name_90 WHERE competition = \"k-league\" AND total_gs > 20 AND team = \"pohang steelers\" AND opponent = \"chunnam dragons\"",
"context": "CREATE TABLE table_name_90 (assists VARCHAR, opponent VARCHAR, team VARCHAR, competition VARCHAR, total_gs VARCHAR)",
"question": "How many assists were in the k-league competition, which has more than 20 total Gs, the pohang steelers team, and chunnam dragons as the opponent?"
} |
### QUESTION
What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?
### CONTEXT
CREATE TABLE table_name_65 (goals INTEGER, total_gs VARCHAR, name VARCHAR, competition VARCHAR, team VARCHAR)
### ANSWER
SELECT AVG(goals) FROM table_name_65 WHERE competition = "k-league" AND team = "pohang steelers" AND name = "park sung-ho" AND total_gs < 46 | {
"answer": "SELECT AVG(goals) FROM table_name_65 WHERE competition = \"k-league\" AND team = \"pohang steelers\" AND name = \"park sung-ho\" AND total_gs < 46",
"context": "CREATE TABLE table_name_65 (goals INTEGER, total_gs VARCHAR, name VARCHAR, competition VARCHAR, team VARCHAR)",
"question": "What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?"
} |
### QUESTION
Who was the home team that played against Manchester United?
### CONTEXT
CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team FROM table_name_86 WHERE away_team = "manchester united" | {
"answer": "SELECT home_team FROM table_name_86 WHERE away_team = \"manchester united\"",
"context": "CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR)",
"question": "Who was the home team that played against Manchester United?"
} |
### QUESTION
What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?
### CONTEXT
CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, venue VARCHAR, goals VARCHAR)
### ANSWER
SELECT date FROM table_name_93 WHERE venue = "jeonju" AND goals < 28 AND competition = "k-league cup" | {
"answer": "SELECT date FROM table_name_93 WHERE venue = \"jeonju\" AND goals < 28 AND competition = \"k-league cup\"",
"context": "CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, venue VARCHAR, goals VARCHAR)",
"question": "What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?"
} |
### QUESTION
What is the most total goals for a player having 0 FA Cup goals and 41 League appearances?
### CONTEXT
CREATE TABLE table_name_98 (total_goals INTEGER, fa_cup_goals VARCHAR, league_apps VARCHAR)
### ANSWER
SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals = 0 AND league_apps = "41" | {
"answer": "SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals = 0 AND league_apps = \"41\"",
"context": "CREATE TABLE table_name_98 (total_goals INTEGER, fa_cup_goals VARCHAR, league_apps VARCHAR)",
"question": "What is the most total goals for a player having 0 FA Cup goals and 41 League appearances?"
} |
### QUESTION
What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009?
### CONTEXT
CREATE TABLE table_name_32 (Id VARCHAR)
### ANSWER
SELECT 2004 FROM table_name_32 WHERE 2005 = "a" AND 2009 = "q1" | {
"answer": "SELECT 2004 FROM table_name_32 WHERE 2005 = \"a\" AND 2009 = \"q1\"",
"context": "CREATE TABLE table_name_32 (Id VARCHAR)",
"question": "What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009?"
} |
### QUESTION
What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0?
### CONTEXT
CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
### ANSWER
SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0 | {
"answer": "SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0",
"context": "CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)",
"question": "What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0?"
} |
### QUESTION
In what Round was OL Player Richard Zulys picked?
### CONTEXT
CREATE TABLE table_name_92 (round INTEGER, position VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(round) FROM table_name_92 WHERE position = "ol" AND player = "richard zulys" | {
"answer": "SELECT SUM(round) FROM table_name_92 WHERE position = \"ol\" AND player = \"richard zulys\"",
"context": "CREATE TABLE table_name_92 (round INTEGER, position VARCHAR, player VARCHAR)",
"question": "In what Round was OL Player Richard Zulys picked?"
} |
### QUESTION
Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)?
### CONTEXT
CREATE TABLE table_name_2 (gold VARCHAR, event VARCHAR, silver VARCHAR)
### ANSWER
SELECT gold FROM table_name_2 WHERE event = "time trial details" AND silver = "simon richardson great britain (gbr)" | {
"answer": "SELECT gold FROM table_name_2 WHERE event = \"time trial details\" AND silver = \"simon richardson great britain (gbr)\"",
"context": "CREATE TABLE table_name_2 (gold VARCHAR, event VARCHAR, silver VARCHAR)",
"question": "Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)?"
} |
### QUESTION
what is the event when gold is darren kenny great britain (gbr)?
### CONTEXT
CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR)
### ANSWER
SELECT event FROM table_name_1 WHERE gold = "darren kenny great britain (gbr)" | {
"answer": "SELECT event FROM table_name_1 WHERE gold = \"darren kenny great britain (gbr)\"",
"context": "CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR)",
"question": "what is the event when gold is darren kenny great britain (gbr)?"
} |
### QUESTION
Who directed Bunker Hill Bunny?
### CONTEXT
CREATE TABLE table_name_77 (director VARCHAR, title VARCHAR)
### ANSWER
SELECT director FROM table_name_77 WHERE title = "bunker hill bunny" | {
"answer": "SELECT director FROM table_name_77 WHERE title = \"bunker hill bunny\"",
"context": "CREATE TABLE table_name_77 (director VARCHAR, title VARCHAR)",
"question": "Who directed Bunker Hill Bunny?"
} |
### QUESTION
WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?
### CONTEXT
CREATE TABLE table_name_74 (ast_avg INTEGER, total_assists VARCHAR, games VARCHAR, rank VARCHAR)
### ANSWER
SELECT AVG(ast_avg) FROM table_name_74 WHERE games > 101 AND rank = 5 AND total_assists < 331 | {
"answer": "SELECT AVG(ast_avg) FROM table_name_74 WHERE games > 101 AND rank = 5 AND total_assists < 331",
"context": "CREATE TABLE table_name_74 (ast_avg INTEGER, total_assists VARCHAR, games VARCHAR, rank VARCHAR)",
"question": "WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?"
} |
### QUESTION
Which Round has a College of appalachian state, and an Overall smaller than 156?
### CONTEXT
CREATE TABLE table_name_64 (round VARCHAR, college VARCHAR, overall VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_name_64 WHERE college = "appalachian state" AND overall < 156 | {
"answer": "SELECT COUNT(round) FROM table_name_64 WHERE college = \"appalachian state\" AND overall < 156",
"context": "CREATE TABLE table_name_64 (round VARCHAR, college VARCHAR, overall VARCHAR)",
"question": "Which Round has a College of appalachian state, and an Overall smaller than 156?"
} |
### QUESTION
What is the average pick of player jim h. mitchell?
### CONTEXT
CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR)
### ANSWER
SELECT AVG(pick) FROM table_name_3 WHERE player = "jim h. mitchell" | {
"answer": "SELECT AVG(pick) FROM table_name_3 WHERE player = \"jim h. mitchell\"",
"context": "CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR)",
"question": "What is the average pick of player jim h. mitchell?"
} |
### QUESTION
What's the sum of Gold with a Bronze that's larger than 15, Silver that's smaller than 197, the Nation of Saint Lucia, and has a Total that is larger than 50?
### CONTEXT
CREATE TABLE table_name_89 (gold INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)
### ANSWER
SELECT SUM(gold) FROM table_name_89 WHERE bronze > 15 AND silver < 197 AND nation = "saint lucia" AND total > 50 | {
"answer": "SELECT SUM(gold) FROM table_name_89 WHERE bronze > 15 AND silver < 197 AND nation = \"saint lucia\" AND total > 50",
"context": "CREATE TABLE table_name_89 (gold INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)",
"question": "What's the sum of Gold with a Bronze that's larger than 15, Silver that's smaller than 197, the Nation of Saint Lucia, and has a Total that is larger than 50?"
} |
### QUESTION
What's the total number of Silver that has Gold that's larger than 0, Bronze that's smaller than 23, a Total that's larger than 22, and has the Nation of Saint Kitts and Nevis?
### CONTEXT
CREATE TABLE table_name_96 (silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)
### ANSWER
SELECT COUNT(silver) FROM table_name_96 WHERE gold > 0 AND bronze < 23 AND total > 22 AND nation = "saint kitts and nevis" | {
"answer": "SELECT COUNT(silver) FROM table_name_96 WHERE gold > 0 AND bronze < 23 AND total > 22 AND nation = \"saint kitts and nevis\"",
"context": "CREATE TABLE table_name_96 (silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)",
"question": "What's the total number of Silver that has Gold that's larger than 0, Bronze that's smaller than 23, a Total that's larger than 22, and has the Nation of Saint Kitts and Nevis?"
} |
### QUESTION
WHAT IS THE RANK WITH A GROSS OF $96,773,200?
### CONTEXT
CREATE TABLE table_name_59 (rank VARCHAR, gross VARCHAR)
### ANSWER
SELECT COUNT(rank) FROM table_name_59 WHERE gross = "$96,773,200" | {
"answer": "SELECT COUNT(rank) FROM table_name_59 WHERE gross = \"$96,773,200\"",
"context": "CREATE TABLE table_name_59 (rank VARCHAR, gross VARCHAR)",
"question": "WHAT IS THE RANK WITH A GROSS OF $96,773,200?"
} |
### QUESTION
What is listed under points 1 when the position was greater than 4, there were 54 goals for and more than 11 losses?
### CONTEXT
CREATE TABLE table_name_75 (points_1 VARCHAR, lost VARCHAR, position VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT points_1 FROM table_name_75 WHERE position > 4 AND goals_for = 54 AND lost > 11 | {
"answer": "SELECT points_1 FROM table_name_75 WHERE position > 4 AND goals_for = 54 AND lost > 11",
"context": "CREATE TABLE table_name_75 (points_1 VARCHAR, lost VARCHAR, position VARCHAR, goals_for VARCHAR)",
"question": "What is listed under points 1 when the position was greater than 4, there were 54 goals for and more than 11 losses?"
} |
### QUESTION
How many years is ur sulcus listed with a diameter less than 1,145.0?
### CONTEXT
CREATE TABLE table_name_68 (year_named VARCHAR, name VARCHAR, diameter VARCHAR)
### ANSWER
SELECT COUNT(year_named) FROM table_name_68 WHERE name = "ur sulcus" AND diameter < 1 OFFSET 145.0 | {
"answer": "SELECT COUNT(year_named) FROM table_name_68 WHERE name = \"ur sulcus\" AND diameter < 1 OFFSET 145.0",
"context": "CREATE TABLE table_name_68 (year_named VARCHAR, name VARCHAR, diameter VARCHAR)",
"question": "How many years is ur sulcus listed with a diameter less than 1,145.0?"
} |
### QUESTION
When Platense was the away team on 16 August 2008 how many people attended the game?
### CONTEXT
CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR)
### ANSWER
SELECT attendance FROM table_name_29 WHERE date = "16 august 2008" AND away = "platense" | {
"answer": "SELECT attendance FROM table_name_29 WHERE date = \"16 august 2008\" AND away = \"platense\"",
"context": "CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR)",
"question": "When Platense was the away team on 16 August 2008 how many people attended the game?"
} |
### QUESTION
What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?
### CONTEXT
CREATE TABLE table_name_81 (Id VARCHAR)
### ANSWER
SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500 | {
"answer": "SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500",
"context": "CREATE TABLE table_name_81 (Id VARCHAR)",
"question": "What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?"
} |
### QUESTION
What is the firefox value with a 22.0% internet explorer?
### CONTEXT
CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR)
### ANSWER
SELECT firefox FROM table_name_56 WHERE internet_explorer = "22.0%" | {
"answer": "SELECT firefox FROM table_name_56 WHERE internet_explorer = \"22.0%\"",
"context": "CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR)",
"question": "What is the firefox value with a 22.0% internet explorer?"
} |
### QUESTION
Who was in third place when Guy Sebastian was the winning mentor and Andrew Wishart was the runner-up?
### CONTEXT
CREATE TABLE table_name_59 (third_place VARCHAR, winning_mentor VARCHAR, runner_up VARCHAR)
### ANSWER
SELECT third_place FROM table_name_59 WHERE winning_mentor = "guy sebastian" AND runner_up = "andrew wishart" | {
"answer": "SELECT third_place FROM table_name_59 WHERE winning_mentor = \"guy sebastian\" AND runner_up = \"andrew wishart\"",
"context": "CREATE TABLE table_name_59 (third_place VARCHAR, winning_mentor VARCHAR, runner_up VARCHAR)",
"question": "Who was in third place when Guy Sebastian was the winning mentor and Andrew Wishart was the runner-up?"
} |
### QUESTION
In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?
### CONTEXT
CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR)
### ANSWER
SELECT SUM(election) FROM table_name_64 WHERE mayor = "adalberto mosaner" AND inhabitants < 16 OFFSET 170 | {
"answer": "SELECT SUM(election) FROM table_name_64 WHERE mayor = \"adalberto mosaner\" AND inhabitants < 16 OFFSET 170",
"context": "CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR)",
"question": "In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?"
} |
### QUESTION
What is the Mayor of Riva del Garda in 2010?
### CONTEXT
CREATE TABLE table_name_37 (mayor VARCHAR, election VARCHAR, municipality VARCHAR)
### ANSWER
SELECT mayor FROM table_name_37 WHERE election = 2010 AND municipality = "riva del garda" | {
"answer": "SELECT mayor FROM table_name_37 WHERE election = 2010 AND municipality = \"riva del garda\"",
"context": "CREATE TABLE table_name_37 (mayor VARCHAR, election VARCHAR, municipality VARCHAR)",
"question": "What is the Mayor of Riva del Garda in 2010?"
} |
### QUESTION
What is the lowest weight class (kg) that has sofia, bulgaria as the venue?
### CONTEXT
CREATE TABLE table_name_73 (weight_class__kg_ INTEGER, venue VARCHAR)
### ANSWER
SELECT MIN(weight_class__kg_) FROM table_name_73 WHERE venue = "sofia, bulgaria" | {
"answer": "SELECT MIN(weight_class__kg_) FROM table_name_73 WHERE venue = \"sofia, bulgaria\"",
"context": "CREATE TABLE table_name_73 (weight_class__kg_ INTEGER, venue VARCHAR)",
"question": "What is the lowest weight class (kg) that has sofia, bulgaria as the venue?"
} |
### QUESTION
What is the highest year that has fila world championships as the event, with toledo, united states as the venue, and a weight class (kg) less than 97?
### CONTEXT
CREATE TABLE table_name_37 (year INTEGER, weight_class__kg_ VARCHAR, event VARCHAR, venue VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_37 WHERE event = "fila world championships" AND venue = "toledo, united states" AND weight_class__kg_ < 97 | {
"answer": "SELECT MAX(year) FROM table_name_37 WHERE event = \"fila world championships\" AND venue = \"toledo, united states\" AND weight_class__kg_ < 97",
"context": "CREATE TABLE table_name_37 (year INTEGER, weight_class__kg_ VARCHAR, event VARCHAR, venue VARCHAR)",
"question": "What is the highest year that has fila world championships as the event, with toledo, united states as the venue, and a weight class (kg) less than 97?"
} |
### QUESTION
What is the Airport with the ICAO fo KSEA?
### CONTEXT
CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR)
### ANSWER
SELECT airport FROM table_name_10 WHERE icao = "ksea" | {
"answer": "SELECT airport FROM table_name_10 WHERE icao = \"ksea\"",
"context": "CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR)",
"question": "What is the Airport with the ICAO fo KSEA?"
} |
### QUESTION
What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?
### CONTEXT
CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR)
### ANSWER
SELECT MIN(enrollment) FROM table_name_19 WHERE founded = "1992" AND joined_conference < 1998 | {
"answer": "SELECT MIN(enrollment) FROM table_name_19 WHERE founded = \"1992\" AND joined_conference < 1998",
"context": "CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR)",
"question": "What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?"
} |
### QUESTION
How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?
### CONTEXT
CREATE TABLE table_name_7 (inhabitants INTEGER, party VARCHAR, election VARCHAR)
### ANSWER
SELECT AVG(inhabitants) FROM table_name_7 WHERE party = "union for trentino" AND election > 2009 | {
"answer": "SELECT AVG(inhabitants) FROM table_name_7 WHERE party = \"union for trentino\" AND election > 2009",
"context": "CREATE TABLE table_name_7 (inhabitants INTEGER, party VARCHAR, election VARCHAR)",
"question": "How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?"
} |
### QUESTION
What Airport's IATA is SEA?
### CONTEXT
CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)
### ANSWER
SELECT airport FROM table_name_56 WHERE iata = "sea" | {
"answer": "SELECT airport FROM table_name_56 WHERE iata = \"sea\"",
"context": "CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)",
"question": "What Airport's IATA is SEA?"
} |
### QUESTION
How tall is the Mountain of jbel ghat?
### CONTEXT
CREATE TABLE table_name_11 (height__m_ VARCHAR, mountain VARCHAR)
### ANSWER
SELECT COUNT(height__m_) FROM table_name_11 WHERE mountain = "jbel ghat" | {
"answer": "SELECT COUNT(height__m_) FROM table_name_11 WHERE mountain = \"jbel ghat\"",
"context": "CREATE TABLE table_name_11 (height__m_ VARCHAR, mountain VARCHAR)",
"question": "How tall is the Mountain of jbel ghat?"
} |
### QUESTION
Which Country has a Prominence (m) smaller than 1540, and a Height (m) smaller than 3530, and a Range of virunga mountains, and a Mountain of nyiragongo?
### CONTEXT
CREATE TABLE table_name_12 (country VARCHAR, mountain VARCHAR, range VARCHAR, prominence__m_ VARCHAR, height__m_ VARCHAR)
### ANSWER
SELECT country FROM table_name_12 WHERE prominence__m_ < 1540 AND height__m_ < 3530 AND range = "virunga mountains" AND mountain = "nyiragongo" | {
"answer": "SELECT country FROM table_name_12 WHERE prominence__m_ < 1540 AND height__m_ < 3530 AND range = \"virunga mountains\" AND mountain = \"nyiragongo\"",
"context": "CREATE TABLE table_name_12 (country VARCHAR, mountain VARCHAR, range VARCHAR, prominence__m_ VARCHAR, height__m_ VARCHAR)",
"question": "Which Country has a Prominence (m) smaller than 1540, and a Height (m) smaller than 3530, and a Range of virunga mountains, and a Mountain of nyiragongo?"
} |
### QUESTION
How many votes did Lee Teng-Hui receive when he was elected?
### CONTEXT
CREATE TABLE table_name_7 (total_votes INTEGER, outcome VARCHAR, candidate VARCHAR)
### ANSWER
SELECT MAX(total_votes) FROM table_name_7 WHERE outcome = "elected" AND candidate = "lee teng-hui" | {
"answer": "SELECT MAX(total_votes) FROM table_name_7 WHERE outcome = \"elected\" AND candidate = \"lee teng-hui\"",
"context": "CREATE TABLE table_name_7 (total_votes INTEGER, outcome VARCHAR, candidate VARCHAR)",
"question": "How many votes did Lee Teng-Hui receive when he was elected?"
} |
### QUESTION
Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage?
### CONTEXT
CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR)
### ANSWER
SELECT result FROM table_name_63 WHERE lineup = "start" AND assist_pass = "carli lloyd" AND competition = "2011 fifa women’s world cup – group stage" | {
"answer": "SELECT result FROM table_name_63 WHERE lineup = \"start\" AND assist_pass = \"carli lloyd\" AND competition = \"2011 fifa women’s world cup – group stage\"",
"context": "CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR)",
"question": "Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage?"
} |
### QUESTION
Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying – group stage?
### CONTEXT
CREATE TABLE table_name_43 (lineup VARCHAR, assist_pass VARCHAR, competition VARCHAR)
### ANSWER
SELECT lineup FROM table_name_43 WHERE assist_pass = "carli lloyd" AND competition = "2010 concacaf world cup qualifying – group stage" | {
"answer": "SELECT lineup FROM table_name_43 WHERE assist_pass = \"carli lloyd\" AND competition = \"2010 concacaf world cup qualifying – group stage\"",
"context": "CREATE TABLE table_name_43 (lineup VARCHAR, assist_pass VARCHAR, competition VARCHAR)",
"question": "Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying – group stage?"
} |
### QUESTION
Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage?
### CONTEXT
CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR)
### ANSWER
SELECT assist_pass FROM table_name_14 WHERE score = "1-0" AND competition = "2010 concacaf world cup qualifying – group stage" | {
"answer": "SELECT assist_pass FROM table_name_14 WHERE score = \"1-0\" AND competition = \"2010 concacaf world cup qualifying – group stage\"",
"context": "CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR)",
"question": "Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage?"
} |
### QUESTION
What is the sum of Points, when Equipment was "Zabel-BSU", and when Position was 42?
### CONTEXT
CREATE TABLE table_name_39 (points INTEGER, equipment VARCHAR, position VARCHAR)
### ANSWER
SELECT SUM(points) FROM table_name_39 WHERE equipment = "zabel-bsu" AND position = 42 | {
"answer": "SELECT SUM(points) FROM table_name_39 WHERE equipment = \"zabel-bsu\" AND position = 42",
"context": "CREATE TABLE table_name_39 (points INTEGER, equipment VARCHAR, position VARCHAR)",
"question": "What is the sum of Points, when Equipment was \"Zabel-BSU\", and when Position was 42?"
} |
### QUESTION
What was the score for the tie that had Shrewsbury Town as home team?
### CONTEXT
CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR)
### ANSWER
SELECT score FROM table_name_87 WHERE home_team = "shrewsbury town" | {
"answer": "SELECT score FROM table_name_87 WHERE home_team = \"shrewsbury town\"",
"context": "CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR)",
"question": "What was the score for the tie that had Shrewsbury Town as home team?"
} |
### QUESTION
On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7?
### CONTEXT
CREATE TABLE table_name_68 (apparatus VARCHAR, score_final VARCHAR, score_qualifying VARCHAR)
### ANSWER
SELECT apparatus FROM table_name_68 WHERE score_final < 75.5 AND score_qualifying < 18.7 | {
"answer": "SELECT apparatus FROM table_name_68 WHERE score_final < 75.5 AND score_qualifying < 18.7",
"context": "CREATE TABLE table_name_68 (apparatus VARCHAR, score_final VARCHAR, score_qualifying VARCHAR)",
"question": "On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7?"
} |
### QUESTION
Who is the player from the United States with a 4 to par and a 74-73-72-69=288 score?
### CONTEXT
CREATE TABLE table_name_20 (player VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_20 WHERE country = "united states" AND to_par = 4 AND score = 74 - 73 - 72 - 69 = 288 | {
"answer": "SELECT player FROM table_name_20 WHERE country = \"united states\" AND to_par = 4 AND score = 74 - 73 - 72 - 69 = 288",
"context": "CREATE TABLE table_name_20 (player VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)",
"question": "Who is the player from the United States with a 4 to par and a 74-73-72-69=288 score?"
} |
### QUESTION
What are the notes for the athlete from Spain?
### CONTEXT
CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)
### ANSWER
SELECT notes FROM table_name_29 WHERE country = "spain" | {
"answer": "SELECT notes FROM table_name_29 WHERE country = \"spain\"",
"context": "CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR)",
"question": "What are the notes for the athlete from Spain?"
} |
### QUESTION
What instrumental has tkven-i as the genitive?
### CONTEXT
CREATE TABLE table_name_42 (instrumental VARCHAR, genitive VARCHAR)
### ANSWER
SELECT instrumental FROM table_name_42 WHERE genitive = "tkven-i" | {
"answer": "SELECT instrumental FROM table_name_42 WHERE genitive = \"tkven-i\"",
"context": "CREATE TABLE table_name_42 (instrumental VARCHAR, genitive VARCHAR)",
"question": "What instrumental has tkven-i as the genitive?"
} |
### QUESTION
What instrumental has chven-s as the adverbial?
### CONTEXT
CREATE TABLE table_name_87 (instrumental VARCHAR, adverbial VARCHAR)
### ANSWER
SELECT instrumental FROM table_name_87 WHERE adverbial = "chven-s" | {
"answer": "SELECT instrumental FROM table_name_87 WHERE adverbial = \"chven-s\"",
"context": "CREATE TABLE table_name_87 (instrumental VARCHAR, adverbial VARCHAR)",
"question": "What instrumental has chven-s as the adverbial?"
} |
### QUESTION
Which Genre has a Game of donkey kong country?
### CONTEXT
CREATE TABLE table_name_81 (genre VARCHAR, game VARCHAR)
### ANSWER
SELECT genre FROM table_name_81 WHERE game = "donkey kong country" | {
"answer": "SELECT genre FROM table_name_81 WHERE game = \"donkey kong country\"",
"context": "CREATE TABLE table_name_81 (genre VARCHAR, game VARCHAR)",
"question": "Which Genre has a Game of donkey kong country?"
} |
### QUESTION
what was the week for the match on a hard surface at Indian Wells tournament?
### CONTEXT
CREATE TABLE table_name_88 (week VARCHAR, surface VARCHAR, tournament VARCHAR)
### ANSWER
SELECT week FROM table_name_88 WHERE surface = "hard" AND tournament = "indian wells" | {
"answer": "SELECT week FROM table_name_88 WHERE surface = \"hard\" AND tournament = \"indian wells\"",
"context": "CREATE TABLE table_name_88 (week VARCHAR, surface VARCHAR, tournament VARCHAR)",
"question": "what was the week for the match on a hard surface at Indian Wells tournament?"
} |
### QUESTION
What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population?
### CONTEXT
CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR)
### ANSWER
SELECT MIN(total_population__2010_) FROM table_name_88 WHERE _percentage_asian_american = 5.7 AND asian_american_population__2010_ < 126 OFFSET 965 | {
"answer": "SELECT MIN(total_population__2010_) FROM table_name_88 WHERE _percentage_asian_american = 5.7 AND asian_american_population__2010_ < 126 OFFSET 965",
"context": "CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR)",
"question": "What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population?"
} |
### QUESTION
When is the winner panathinaikos, the runner-up olympiacos and the venue nikos goumas stadium?
### CONTEXT
CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR, winner VARCHAR, runner_up VARCHAR)
### ANSWER
SELECT year FROM table_name_65 WHERE winner = "panathinaikos" AND runner_up = "olympiacos" AND venue = "nikos goumas stadium" | {
"answer": "SELECT year FROM table_name_65 WHERE winner = \"panathinaikos\" AND runner_up = \"olympiacos\" AND venue = \"nikos goumas stadium\"",
"context": "CREATE TABLE table_name_65 (year VARCHAR, venue VARCHAR, winner VARCHAR, runner_up VARCHAR)",
"question": "When is the winner panathinaikos, the runner-up olympiacos and the venue nikos goumas stadium?"
} |
### QUESTION
When is the winner olympiacos, the venue is georgios karaiskakis stadium and the runner-up is iraklis?
### CONTEXT
CREATE TABLE table_name_12 (year VARCHAR, runner_up VARCHAR, winner VARCHAR, venue VARCHAR)
### ANSWER
SELECT year FROM table_name_12 WHERE winner = "olympiacos" AND venue = "georgios karaiskakis stadium" AND runner_up = "iraklis" | {
"answer": "SELECT year FROM table_name_12 WHERE winner = \"olympiacos\" AND venue = \"georgios karaiskakis stadium\" AND runner_up = \"iraklis\"",
"context": "CREATE TABLE table_name_12 (year VARCHAR, runner_up VARCHAR, winner VARCHAR, venue VARCHAR)",
"question": "When is the winner olympiacos, the venue is georgios karaiskakis stadium and the runner-up is iraklis?"
} |
### QUESTION
What year was the b n2t axle arrangement, which has a quantity of 31, manufactured?
### CONTEXT
CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR)
### ANSWER
SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrangement___uic__ = "b n2t" | {
"answer": "SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrangement___uic__ = \"b n2t\"",
"context": "CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR)",
"question": "What year was the b n2t axle arrangement, which has a quantity of 31, manufactured?"
} |
### QUESTION
What is the time in a heat smaller than 5, in Lane 5, for Vietnam?
### CONTEXT
CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)
### ANSWER
SELECT time FROM table_name_88 WHERE heat < 5 AND lane = 5 AND nationality = "vietnam" | {
"answer": "SELECT time FROM table_name_88 WHERE heat < 5 AND lane = 5 AND nationality = \"vietnam\"",
"context": "CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)",
"question": "What is the time in a heat smaller than 5, in Lane 5, for Vietnam?"
} |
### QUESTION
Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)?
### CONTEXT
CREATE TABLE table_name_78 (second VARCHAR, lead VARCHAR)
### ANSWER
SELECT second FROM table_name_78 WHERE lead = "sarah macintyre (jr) anne laird (w)" | {
"answer": "SELECT second FROM table_name_78 WHERE lead = \"sarah macintyre (jr) anne laird (w)\"",
"context": "CREATE TABLE table_name_78 (second VARCHAR, lead VARCHAR)",
"question": "Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)?"
} |
### QUESTION
Who is the second where the third of Kelly Wood (e) Anna Sloan (Jr)?
### CONTEXT
CREATE TABLE table_name_80 (second VARCHAR, third VARCHAR)
### ANSWER
SELECT second FROM table_name_80 WHERE third = "kelly wood (e) anna sloan (jr)" | {
"answer": "SELECT second FROM table_name_80 WHERE third = \"kelly wood (e) anna sloan (jr)\"",
"context": "CREATE TABLE table_name_80 (second VARCHAR, third VARCHAR)",
"question": "Who is the second where the third of Kelly Wood (e) Anna Sloan (Jr)?"
} |
### QUESTION
What is the total number for a total when the nation is netherlands and silver is larger than 0?
### CONTEXT
CREATE TABLE table_name_12 (total VARCHAR, nation VARCHAR, silver VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_12 WHERE nation = "netherlands" AND silver > 0 | {
"answer": "SELECT COUNT(total) FROM table_name_12 WHERE nation = \"netherlands\" AND silver > 0",
"context": "CREATE TABLE table_name_12 (total VARCHAR, nation VARCHAR, silver VARCHAR)",
"question": "What is the total number for a total when the nation is netherlands and silver is larger than 0?"
} |
### QUESTION
What was the overall draft pick of the player who was a db and attended college in iowa?
### CONTEXT
CREATE TABLE table_name_82 (overall VARCHAR, college VARCHAR, position VARCHAR)
### ANSWER
SELECT overall FROM table_name_82 WHERE college = "iowa" AND position = "db" | {
"answer": "SELECT overall FROM table_name_82 WHERE college = \"iowa\" AND position = \"db\"",
"context": "CREATE TABLE table_name_82 (overall VARCHAR, college VARCHAR, position VARCHAR)",
"question": "What was the overall draft pick of the player who was a db and attended college in iowa?"
} |
### QUESTION
What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7?
### CONTEXT
CREATE TABLE table_name_72 (total INTEGER, data_processing_and_exploitation VARCHAR, management_and_support VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_72 WHERE data_processing_and_exploitation = "00 0,228" AND management_and_support > 1 OFFSET 7 | {
"answer": "SELECT MIN(total) FROM table_name_72 WHERE data_processing_and_exploitation = \"00 0,228\" AND management_and_support > 1 OFFSET 7",
"context": "CREATE TABLE table_name_72 (total INTEGER, data_processing_and_exploitation VARCHAR, management_and_support VARCHAR)",
"question": "What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7?"
} |
### QUESTION
Which player debuted before 1943, played for the club in 1942, played less than 12 games, and scored less than 11 goals?
### CONTEXT
CREATE TABLE table_name_27 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR, games VARCHAR)
### ANSWER
SELECT player FROM table_name_27 WHERE debut_year < 1943 AND games < 12 AND goals < 11 AND years_at_club = "1942" | {
"answer": "SELECT player FROM table_name_27 WHERE debut_year < 1943 AND games < 12 AND goals < 11 AND years_at_club = \"1942\"",
"context": "CREATE TABLE table_name_27 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR, games VARCHAR)",
"question": "Which player debuted before 1943, played for the club in 1942, played less than 12 games, and scored less than 11 goals?"
} |
### QUESTION
what is the quantity made when the wheel arrangement is 2-6-0 and the class is k?
### CONTEXT
CREATE TABLE table_name_78 (quantity_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)
### ANSWER
SELECT quantity_made FROM table_name_78 WHERE wheel_arrangement = "2-6-0" AND class = "k" | {
"answer": "SELECT quantity_made FROM table_name_78 WHERE wheel_arrangement = \"2-6-0\" AND class = \"k\"",
"context": "CREATE TABLE table_name_78 (quantity_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)",
"question": "what is the quantity made when the wheel arrangement is 2-6-0 and the class is k?"
} |
### QUESTION
Which match did FCR 2001 Duisburg participate as the opponent?
### CONTEXT
CREATE TABLE table_name_39 (match INTEGER, opponent VARCHAR)
### ANSWER
SELECT SUM(match) FROM table_name_39 WHERE opponent = "fcr 2001 duisburg" | {
"answer": "SELECT SUM(match) FROM table_name_39 WHERE opponent = \"fcr 2001 duisburg\"",
"context": "CREATE TABLE table_name_39 (match INTEGER, opponent VARCHAR)",
"question": "Which match did FCR 2001 Duisburg participate as the opponent?"
} |
### QUESTION
What is the surface of the match on July 5, 2009?
### CONTEXT
CREATE TABLE table_name_95 (surface VARCHAR, date VARCHAR)
### ANSWER
SELECT surface FROM table_name_95 WHERE date = "july 5, 2009" | {
"answer": "SELECT surface FROM table_name_95 WHERE date = \"july 5, 2009\"",
"context": "CREATE TABLE table_name_95 (surface VARCHAR, date VARCHAR)",
"question": "What is the surface of the match on July 5, 2009?"
} |
### QUESTION
What is Score In The Final, when Date is "22 October 1990"?
### CONTEXT
CREATE TABLE table_name_94 (score_in_the_final VARCHAR, date VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_94 WHERE date = "22 october 1990" | {
"answer": "SELECT score_in_the_final FROM table_name_94 WHERE date = \"22 october 1990\"",
"context": "CREATE TABLE table_name_94 (score_in_the_final VARCHAR, date VARCHAR)",
"question": "What is Score In The Final, when Date is \"22 October 1990\"?"
} |
### QUESTION
What is the Team of Winner Mark Skaife in ATCC Round 7?
### CONTEXT
CREATE TABLE table_name_82 (team VARCHAR, winner VARCHAR, series VARCHAR)
### ANSWER
SELECT team FROM table_name_82 WHERE winner = "mark skaife" AND series = "atcc round 7" | {
"answer": "SELECT team FROM table_name_82 WHERE winner = \"mark skaife\" AND series = \"atcc round 7\"",
"context": "CREATE TABLE table_name_82 (team VARCHAR, winner VARCHAR, series VARCHAR)",
"question": "What is the Team of Winner Mark Skaife in ATCC Round 7?"
} |
### QUESTION
What is the IHSAA class for the team located in Middlebury, IN?
### CONTEXT
CREATE TABLE table_name_95 (ihsaa_class VARCHAR, location VARCHAR)
### ANSWER
SELECT ihsaa_class FROM table_name_95 WHERE location = "middlebury, in" | {
"answer": "SELECT ihsaa_class FROM table_name_95 WHERE location = \"middlebury, in\"",
"context": "CREATE TABLE table_name_95 (ihsaa_class VARCHAR, location VARCHAR)",
"question": "What is the IHSAA class for the team located in Middlebury, IN?"
} |
### QUESTION
what is the since beginning of big 12 when last 10 meetings is ou, 7-3, neutral site is ou, 2-1, and last 5 meetings is bu, 3-2?
### CONTEXT
CREATE TABLE table_name_28 (since_beginning_of_big_12 VARCHAR, last_5_meetings VARCHAR, last_10_meetings VARCHAR, at_neutral_site VARCHAR)
### ANSWER
SELECT since_beginning_of_big_12 FROM table_name_28 WHERE last_10_meetings = "ou, 7-3" AND at_neutral_site = "ou, 2-1" AND last_5_meetings = "bu, 3-2" | {
"answer": "SELECT since_beginning_of_big_12 FROM table_name_28 WHERE last_10_meetings = \"ou, 7-3\" AND at_neutral_site = \"ou, 2-1\" AND last_5_meetings = \"bu, 3-2\"",
"context": "CREATE TABLE table_name_28 (since_beginning_of_big_12 VARCHAR, last_5_meetings VARCHAR, last_10_meetings VARCHAR, at_neutral_site VARCHAR)",
"question": "what is the since beginning of big 12 when last 10 meetings is ou, 7-3, neutral site is ou, 2-1, and last 5 meetings is bu, 3-2?"
} |
### QUESTION
What is the total frequency mhz of the kgrj call sign, which has an erp w greater than 21,500?
### CONTEXT
CREATE TABLE table_name_19 (frequency_mhz VARCHAR, call_sign VARCHAR, erp_w VARCHAR)
### ANSWER
SELECT COUNT(frequency_mhz) FROM table_name_19 WHERE call_sign = "kgrj" AND erp_w > 21 OFFSET 500 | {
"answer": "SELECT COUNT(frequency_mhz) FROM table_name_19 WHERE call_sign = \"kgrj\" AND erp_w > 21 OFFSET 500",
"context": "CREATE TABLE table_name_19 (frequency_mhz VARCHAR, call_sign VARCHAR, erp_w VARCHAR)",
"question": "What is the total frequency mhz of the kgrj call sign, which has an erp w greater than 21,500?"
} |
### QUESTION
Which Year is the lowest one that has an Athlete of markus thalmann, and a Time of 23:28:24?
### CONTEXT
CREATE TABLE table_name_76 (year INTEGER, athlete VARCHAR, time VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_76 WHERE athlete = "markus thalmann" AND time = "23:28:24" | {
"answer": "SELECT MIN(year) FROM table_name_76 WHERE athlete = \"markus thalmann\" AND time = \"23:28:24\"",
"context": "CREATE TABLE table_name_76 (year INTEGER, athlete VARCHAR, time VARCHAR)",
"question": "Which Year is the lowest one that has an Athlete of markus thalmann, and a Time of 23:28:24?"
} |
### QUESTION
What is the average frequency mhz of the loomis, south dakota city license?
### CONTEXT
CREATE TABLE table_name_83 (frequency_mhz INTEGER, city_of_license VARCHAR)
### ANSWER
SELECT AVG(frequency_mhz) FROM table_name_83 WHERE city_of_license = "loomis, south dakota" | {
"answer": "SELECT AVG(frequency_mhz) FROM table_name_83 WHERE city_of_license = \"loomis, south dakota\"",
"context": "CREATE TABLE table_name_83 (frequency_mhz INTEGER, city_of_license VARCHAR)",
"question": "What is the average frequency mhz of the loomis, south dakota city license?"
} |
### QUESTION
Which Time has a Year larger than 1985, and a Place smaller than 2, and an Athlete of riochy sekiya?
### CONTEXT
CREATE TABLE table_name_60 (time VARCHAR, athlete VARCHAR, year VARCHAR, place VARCHAR)
### ANSWER
SELECT time FROM table_name_60 WHERE year > 1985 AND place < 2 AND athlete = "riochy sekiya" | {
"answer": "SELECT time FROM table_name_60 WHERE year > 1985 AND place < 2 AND athlete = \"riochy sekiya\"",
"context": "CREATE TABLE table_name_60 (time VARCHAR, athlete VARCHAR, year VARCHAR, place VARCHAR)",
"question": "Which Time has a Year larger than 1985, and a Place smaller than 2, and an Athlete of riochy sekiya?"
} |
### QUESTION
What is the total number of ends after 2006 with a nationality of ita and 0 goals?
### CONTEXT
CREATE TABLE table_name_39 (ends VARCHAR, goals VARCHAR, since VARCHAR, nat VARCHAR)
### ANSWER
SELECT COUNT(ends) FROM table_name_39 WHERE since > 2006 AND nat = "ita" AND goals < 0 | {
"answer": "SELECT COUNT(ends) FROM table_name_39 WHERE since > 2006 AND nat = \"ita\" AND goals < 0",
"context": "CREATE TABLE table_name_39 (ends VARCHAR, goals VARCHAR, since VARCHAR, nat VARCHAR)",
"question": "What is the total number of ends after 2006 with a nationality of ita and 0 goals?"
} |
### QUESTION
What is the score of the tournament with a carpet surface and tim henman as the partnering?
### CONTEXT
CREATE TABLE table_name_88 (score VARCHAR, surface VARCHAR, partnering VARCHAR)
### ANSWER
SELECT score FROM table_name_88 WHERE surface = "carpet" AND partnering = "tim henman" | {
"answer": "SELECT score FROM table_name_88 WHERE surface = \"carpet\" AND partnering = \"tim henman\"",
"context": "CREATE TABLE table_name_88 (score VARCHAR, surface VARCHAR, partnering VARCHAR)",
"question": "What is the score of the tournament with a carpet surface and tim henman as the partnering?"
} |
### QUESTION
How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party?
### CONTEXT
CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_fáil VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_fáil = 3 AND total > 9 AND green_party > 2 | {
"answer": "SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_fáil = 3 AND total > 9 AND green_party > 2",
"context": "CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_fáil VARCHAR, total VARCHAR)",
"question": "How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party?"
} |
### QUESTION
How many are in the Green Party with a Fine Gael of less than 4 and a Fianna Fail of less than 2 in Athy?
### CONTEXT
CREATE TABLE table_name_41 (green_party INTEGER, town VARCHAR, fine_gael VARCHAR, fianna_fáil VARCHAR)
### ANSWER
SELECT SUM(green_party) FROM table_name_41 WHERE fine_gael < 4 AND fianna_fáil < 2 AND town = "athy" | {
"answer": "SELECT SUM(green_party) FROM table_name_41 WHERE fine_gael < 4 AND fianna_fáil < 2 AND town = \"athy\"",
"context": "CREATE TABLE table_name_41 (green_party INTEGER, town VARCHAR, fine_gael VARCHAR, fianna_fáil VARCHAR)",
"question": "How many are in the Green Party with a Fine Gael of less than 4 and a Fianna Fail of less than 2 in Athy?"
} |
### QUESTION
What nation has 0 as the silver, 1 as the bronze, with 18 as the rank?
### CONTEXT
CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT nation FROM table_name_84 WHERE silver = 0 AND bronze = 1 AND rank = "18" | {
"answer": "SELECT nation FROM table_name_84 WHERE silver = 0 AND bronze = 1 AND rank = \"18\"",
"context": "CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)",
"question": "What nation has 0 as the silver, 1 as the bronze, with 18 as the rank?"
} |
### QUESTION
What's the total number of bronze medals for Sweden (SWE) having less than 1 gold and silver?
### CONTEXT
CREATE TABLE table_name_90 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, nation VARCHAR)
### ANSWER
SELECT COUNT(bronze) FROM table_name_90 WHERE gold < 1 AND nation = "sweden (swe)" AND silver < 1 | {
"answer": "SELECT COUNT(bronze) FROM table_name_90 WHERE gold < 1 AND nation = \"sweden (swe)\" AND silver < 1",
"context": "CREATE TABLE table_name_90 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, nation VARCHAR)",
"question": "What's the total number of bronze medals for Sweden (SWE) having less than 1 gold and silver?"
} |
### QUESTION
What's the total of rank 8 when Silver medals are 0 and gold is more than 1?
### CONTEXT
CREATE TABLE table_name_2 (total VARCHAR, gold VARCHAR, silver VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_2 WHERE silver = 0 AND rank = 8 AND gold > 1 | {
"answer": "SELECT COUNT(total) FROM table_name_2 WHERE silver = 0 AND rank = 8 AND gold > 1",
"context": "CREATE TABLE table_name_2 (total VARCHAR, gold VARCHAR, silver VARCHAR, rank VARCHAR)",
"question": "What's the total of rank 8 when Silver medals are 0 and gold is more than 1?"
} |
### QUESTION
What is the score from September 15 that has the Indians as the opponent?
### CONTEXT
CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_35 WHERE opponent = "indians" AND date = "september 15" | {
"answer": "SELECT score FROM table_name_35 WHERE opponent = \"indians\" AND date = \"september 15\"",
"context": "CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, date VARCHAR)",
"question": "What is the score from September 15 that has the Indians as the opponent?"
} |
### QUESTION
What is josé maría olazábal's country?
### CONTEXT
CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)
### ANSWER
SELECT country FROM table_name_39 WHERE player = "josé maría olazábal" | {
"answer": "SELECT country FROM table_name_39 WHERE player = \"josé maría olazábal\"",
"context": "CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)",
"question": "What is josé maría olazábal's country?"
} |
### QUESTION
Which Player has a Score of 74-67-74-71=286?
### CONTEXT
CREATE TABLE table_name_86 (player VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_86 WHERE score = 74 - 67 - 74 - 71 = 286 | {
"answer": "SELECT player FROM table_name_86 WHERE score = 74 - 67 - 74 - 71 = 286",
"context": "CREATE TABLE table_name_86 (player VARCHAR, score VARCHAR)",
"question": "Which Player has a Score of 74-67-74-71=286?"
} |
### QUESTION
on august 16, 1963, what is the velocity?
### CONTEXT
CREATE TABLE table_name_56 (velocity__km_h_ INTEGER, date VARCHAR)
### ANSWER
SELECT SUM(velocity__km_h_) FROM table_name_56 WHERE date = "august 16, 1963" | {
"answer": "SELECT SUM(velocity__km_h_) FROM table_name_56 WHERE date = \"august 16, 1963\"",
"context": "CREATE TABLE table_name_56 (velocity__km_h_ INTEGER, date VARCHAR)",
"question": "on august 16, 1963, what is the velocity?"
} |
### QUESTION
What is Nationality, and when College is Illinois State?
### CONTEXT
CREATE TABLE table_name_2 (nationality VARCHAR, college VARCHAR)
### ANSWER
SELECT nationality FROM table_name_2 WHERE college = "illinois state" | {
"answer": "SELECT nationality FROM table_name_2 WHERE college = \"illinois state\"",
"context": "CREATE TABLE table_name_2 (nationality VARCHAR, college VARCHAR)",
"question": "What is Nationality, and when College is Illinois State?"
} |
### QUESTION
Name the highest 3rd place for nation of perak fa
### CONTEXT
### ANSWER
SELECT MAX(*) FROM table_name_65 WHERE nation = "perak fa" AND place = 3 | {
"answer": "SELECT MAX(*) FROM table_name_65 WHERE nation = \"perak fa\" AND place = 3",
"context": "",
"question": "Name the highest 3rd place for nation of perak fa"
} |
### QUESTION
Name the sum of top-25 for pga championship and top-5 less than 1
### CONTEXT
CREATE TABLE table_name_21 (top_25 INTEGER, tournament VARCHAR, top_5 VARCHAR)
### ANSWER
SELECT SUM(top_25) FROM table_name_21 WHERE tournament = "pga championship" AND top_5 < 1 | {
"answer": "SELECT SUM(top_25) FROM table_name_21 WHERE tournament = \"pga championship\" AND top_5 < 1",
"context": "CREATE TABLE table_name_21 (top_25 INTEGER, tournament VARCHAR, top_5 VARCHAR)",
"question": "Name the sum of top-25 for pga championship and top-5 less than 1"
} |
### QUESTION
An artist of the Beatles with an issue date(s) of 19 September has what as the listed weeks on top?
### CONTEXT
CREATE TABLE table_name_26 (weeks_on_top VARCHAR, artist VARCHAR, issue_date_s_ VARCHAR)
### ANSWER
SELECT weeks_on_top FROM table_name_26 WHERE artist = "the beatles" AND issue_date_s_ = "19 september" | {
"answer": "SELECT weeks_on_top FROM table_name_26 WHERE artist = \"the beatles\" AND issue_date_s_ = \"19 september\"",
"context": "CREATE TABLE table_name_26 (weeks_on_top VARCHAR, artist VARCHAR, issue_date_s_ VARCHAR)",
"question": "An artist of the Beatles with an issue date(s) of 19 September has what as the listed weeks on top?"
} |
### QUESTION
What year is the date when the boiler type is forward topfeed, the built at is Crewe, and lot number is less than 187?
### CONTEXT
CREATE TABLE table_name_94 (date VARCHAR, lot_no VARCHAR, boiler_type VARCHAR, built_at VARCHAR)
### ANSWER
SELECT COUNT(date) FROM table_name_94 WHERE boiler_type = "forward topfeed" AND built_at = "crewe" AND lot_no < 187 | {
"answer": "SELECT COUNT(date) FROM table_name_94 WHERE boiler_type = \"forward topfeed\" AND built_at = \"crewe\" AND lot_no < 187",
"context": "CREATE TABLE table_name_94 (date VARCHAR, lot_no VARCHAR, boiler_type VARCHAR, built_at VARCHAR)",
"question": "What year is the date when the boiler type is forward topfeed, the built at is Crewe, and lot number is less than 187?"
} |
### QUESTION
Name the city of license with resolution of sd 480i and official website of telemundo.com
### CONTEXT
CREATE TABLE table_name_34 (city_of_license VARCHAR, resolution VARCHAR, official_website VARCHAR)
### ANSWER
SELECT city_of_license FROM table_name_34 WHERE resolution = "sd 480i" AND official_website = "telemundo.com" | {
"answer": "SELECT city_of_license FROM table_name_34 WHERE resolution = \"sd 480i\" AND official_website = \"telemundo.com\"",
"context": "CREATE TABLE table_name_34 (city_of_license VARCHAR, resolution VARCHAR, official_website VARCHAR)",
"question": "Name the city of license with resolution of sd 480i and official website of telemundo.com"
} |
### QUESTION
What is Record, when Location Attendance is "Izod Center 16,911"?
### CONTEXT
CREATE TABLE table_name_4 (record VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT record FROM table_name_4 WHERE location_attendance = "izod center 16,911" | {
"answer": "SELECT record FROM table_name_4 WHERE location_attendance = \"izod center 16,911\"",
"context": "CREATE TABLE table_name_4 (record VARCHAR, location_attendance VARCHAR)",
"question": "What is Record, when Location Attendance is \"Izod Center 16,911\"?"
} |
### QUESTION
What is High Rebounds, when High Assists is "Delonte West (10)"?
### CONTEXT
CREATE TABLE table_name_86 (high_rebounds VARCHAR, high_assists VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_name_86 WHERE high_assists = "delonte west (10)" | {
"answer": "SELECT high_rebounds FROM table_name_86 WHERE high_assists = \"delonte west (10)\"",
"context": "CREATE TABLE table_name_86 (high_rebounds VARCHAR, high_assists VARCHAR)",
"question": "What is High Rebounds, when High Assists is \"Delonte West (10)\"?"
} |
### QUESTION
Name the resolution for ketftv.com and callsign of kldo-dt2
### CONTEXT
CREATE TABLE table_name_87 (resolution VARCHAR, official_website VARCHAR, callsign VARCHAR)
### ANSWER
SELECT resolution FROM table_name_87 WHERE official_website = "ketftv.com" AND callsign = "kldo-dt2" | {
"answer": "SELECT resolution FROM table_name_87 WHERE official_website = \"ketftv.com\" AND callsign = \"kldo-dt2\"",
"context": "CREATE TABLE table_name_87 (resolution VARCHAR, official_website VARCHAR, callsign VARCHAR)",
"question": "Name the resolution for ketftv.com and callsign of kldo-dt2"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.