text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
What is the Venue with a Result of 3–0, and a Competition with 2006 fifa world cup qualifier, and with a Score of 3–0?
### CONTEXT
CREATE TABLE table_name_22 (venue VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)
### ANSWER
SELECT venue FROM table_name_22 WHERE result = "3–0" AND competition = "2006 fifa world cup qualifier" AND score = "3–0" | {
"answer": "SELECT venue FROM table_name_22 WHERE result = \"3–0\" AND competition = \"2006 fifa world cup qualifier\" AND score = \"3–0\"",
"context": "CREATE TABLE table_name_22 (venue VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)",
"question": "What is the Venue with a Result of 3–0, and a Competition with 2006 fifa world cup qualifier, and with a Score of 3–0?"
} |
### QUESTION
Which Date has a Winning score of –14 (66-64-68-68=266)?
### CONTEXT
CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR)
### ANSWER
SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266) | {
"answer": "SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266)",
"context": "CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR)",
"question": "Which Date has a Winning score of –14 (66-64-68-68=266)?"
} |
### QUESTION
Which country has less than 4 votes?
### CONTEXT
CREATE TABLE table_name_99 (state VARCHAR, council_votes INTEGER)
### ANSWER
SELECT state FROM table_name_99 WHERE council_votes < 4 | {
"answer": "SELECT state FROM table_name_99 WHERE council_votes < 4",
"context": "CREATE TABLE table_name_99 (state VARCHAR, council_votes INTEGER)",
"question": "Which country has less than 4 votes?"
} |
### QUESTION
what was the engine used before 1996 with 5 points?
### CONTEXT
CREATE TABLE table_name_68 (engine VARCHAR, year VARCHAR, points VARCHAR)
### ANSWER
SELECT engine FROM table_name_68 WHERE year < 1996 AND points = 5 | {
"answer": "SELECT engine FROM table_name_68 WHERE year < 1996 AND points = 5",
"context": "CREATE TABLE table_name_68 (engine VARCHAR, year VARCHAR, points VARCHAR)",
"question": "what was the engine used before 1996 with 5 points?"
} |
### QUESTION
What number of years did the red bull sauber petronas have greater than 6 points?
### CONTEXT
CREATE TABLE table_name_90 (year VARCHAR, entrant VARCHAR, points VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_90 WHERE entrant = "red bull sauber petronas" AND points > 6 | {
"answer": "SELECT COUNT(year) FROM table_name_90 WHERE entrant = \"red bull sauber petronas\" AND points > 6",
"context": "CREATE TABLE table_name_90 (year VARCHAR, entrant VARCHAR, points VARCHAR)",
"question": "What number of years did the red bull sauber petronas have greater than 6 points?"
} |
### QUESTION
What is the area located in Rhode Island with more than 38 sq mi area?
### CONTEXT
CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR)
### ANSWER
SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = "rhode island" AND area__sq_mi_ > 38 | {
"answer": "SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = \"rhode island\" AND area__sq_mi_ > 38",
"context": "CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR)",
"question": "What is the area located in Rhode Island with more than 38 sq mi area?"
} |
### QUESTION
Which team had a final stage when Claudio Chiappucci had the points?
### CONTEXT
CREATE TABLE table_name_23 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR)
### ANSWER
SELECT trofeo_fast_team FROM table_name_23 WHERE points_classification = "claudio chiappucci" AND stage = "final" | {
"answer": "SELECT trofeo_fast_team FROM table_name_23 WHERE points_classification = \"claudio chiappucci\" AND stage = \"final\"",
"context": "CREATE TABLE table_name_23 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR)",
"question": "Which team had a final stage when Claudio Chiappucci had the points?"
} |
### QUESTION
What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?
### CONTEXT
CREATE TABLE table_name_78 (stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR, winner VARCHAR)
### ANSWER
SELECT stage FROM table_name_78 WHERE trofeo_fast_team = "carrera jeans-tassoni" AND winner = "mario cipollini" AND points_classification = "claudio chiappucci" | {
"answer": "SELECT stage FROM table_name_78 WHERE trofeo_fast_team = \"carrera jeans-tassoni\" AND winner = \"mario cipollini\" AND points_classification = \"claudio chiappucci\"",
"context": "CREATE TABLE table_name_78 (stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR, winner VARCHAR)",
"question": "What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?"
} |
### QUESTION
Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?
### CONTEXT
CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR)
### ANSWER
SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9 | {
"answer": "SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9",
"context": "CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR)",
"question": "Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?"
} |
### QUESTION
how many population estimate 2005 are for majene?
### CONTEXT
CREATE TABLE table_name_86 (population_estimate_2005 VARCHAR, capital VARCHAR)
### ANSWER
SELECT COUNT(population_estimate_2005) FROM table_name_86 WHERE capital = "majene" | {
"answer": "SELECT COUNT(population_estimate_2005) FROM table_name_86 WHERE capital = \"majene\"",
"context": "CREATE TABLE table_name_86 (population_estimate_2005 VARCHAR, capital VARCHAR)",
"question": "how many population estimate 2005 are for majene?"
} |
### QUESTION
what is the population estimate 2005 for the with the area (km2) 3,034.08?
### CONTEXT
CREATE TABLE table_name_89 (population_estimate_2005 INTEGER, area__km_2__ VARCHAR)
### ANSWER
SELECT AVG(population_estimate_2005) FROM table_name_89 WHERE area__km_2__ = 3 OFFSET 034.08 | {
"answer": "SELECT AVG(population_estimate_2005) FROM table_name_89 WHERE area__km_2__ = 3 OFFSET 034.08",
"context": "CREATE TABLE table_name_89 (population_estimate_2005 INTEGER, area__km_2__ VARCHAR)",
"question": "what is the population estimate 2005 for the with the area (km2) 3,034.08?"
} |
### QUESTION
how many times was the population estimate 2005 have an area (km2) more than 8,023.74?
### CONTEXT
CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER)
### ANSWER
SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74 | {
"answer": "SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74",
"context": "CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER)",
"question": "how many times was the population estimate 2005 have an area (km2) more than 8,023.74?"
} |
### QUESTION
Name the score for pacers visitor on 14 april 2008
### CONTEXT
CREATE TABLE table_name_16 (score VARCHAR, visitor VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_16 WHERE visitor = "pacers" AND date = "14 april 2008" | {
"answer": "SELECT score FROM table_name_16 WHERE visitor = \"pacers\" AND date = \"14 april 2008\"",
"context": "CREATE TABLE table_name_16 (score VARCHAR, visitor VARCHAR, date VARCHAR)",
"question": "Name the score for pacers visitor on 14 april 2008"
} |
### QUESTION
What's the address of the union bank of California tower?
### CONTEXT
CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR)
### ANSWER
SELECT street_address FROM table_name_27 WHERE name = "union bank of california tower" | {
"answer": "SELECT street_address FROM table_name_27 WHERE name = \"union bank of california tower\"",
"context": "CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR)",
"question": "What's the address of the union bank of California tower?"
} |
### QUESTION
What genre has over 20 episodes, with an English title (Chinese title) of wong fei hung - master of kung fu 我師傅係黃飛鴻?
### CONTEXT
CREATE TABLE table_name_95 (genre VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)
### ANSWER
SELECT genre FROM table_name_95 WHERE number_of_episodes > 20 AND english_title__chinese_title_ = "wong fei hung - master of kung fu 我師傅係黃飛鴻" | {
"answer": "SELECT genre FROM table_name_95 WHERE number_of_episodes > 20 AND english_title__chinese_title_ = \"wong fei hung - master of kung fu 我師傅係黃飛鴻\"",
"context": "CREATE TABLE table_name_95 (genre VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)",
"question": "What genre has over 20 episodes, with an English title (Chinese title) of wong fei hung - master of kung fu 我師傅係黃飛鴻?"
} |
### QUESTION
Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?
### CONTEXT
CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)
### ANSWER
SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap" | {
"answer": "SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = \"k230ap\"",
"context": "CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)",
"question": "Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?"
} |
### QUESTION
what is -kah (atau tidak when basikal is basikal and language dialect is malay language (informal)?
### CONTEXT
CREATE TABLE table_name_98 (_kah__atau_tidak_ VARCHAR, language_dialect VARCHAR)
### ANSWER
SELECT _kah__atau_tidak_ FROM table_name_98 WHERE "basikal" = "basikal" AND language_dialect = "malay language (informal)" | {
"answer": "SELECT _kah__atau_tidak_ FROM table_name_98 WHERE \"basikal\" = \"basikal\" AND language_dialect = \"malay language (informal)\"",
"context": "CREATE TABLE table_name_98 (_kah__atau_tidak_ VARCHAR, language_dialect VARCHAR)",
"question": "what is -kah (atau tidak when basikal is basikal and language dialect is malay language (informal)?"
} |
### QUESTION
What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?
### CONTEXT
CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)
### ANSWER
SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74 | {
"answer": "SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74",
"context": "CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)",
"question": "What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?"
} |
### QUESTION
Name the runner-up for janice yan (閻奕格)
### CONTEXT
CREATE TABLE table_name_35 (runner_up VARCHAR, winner VARCHAR)
### ANSWER
SELECT runner_up FROM table_name_35 WHERE winner = "janice yan (閻奕格)" | {
"answer": "SELECT runner_up FROM table_name_35 WHERE winner = \"janice yan (閻奕格)\"",
"context": "CREATE TABLE table_name_35 (runner_up VARCHAR, winner VARCHAR)",
"question": "Name the runner-up for janice yan (閻奕格)"
} |
### QUESTION
Which average games played number has the Ottawa Hockey Club as a team and a number of wins bigger than 5?
### CONTEXT
CREATE TABLE table_name_57 (games_played INTEGER, team VARCHAR, wins VARCHAR)
### ANSWER
SELECT AVG(games_played) FROM table_name_57 WHERE team = "ottawa hockey club" AND wins > 5 | {
"answer": "SELECT AVG(games_played) FROM table_name_57 WHERE team = \"ottawa hockey club\" AND wins > 5",
"context": "CREATE TABLE table_name_57 (games_played INTEGER, team VARCHAR, wins VARCHAR)",
"question": "Which average games played number has the Ottawa Hockey Club as a team and a number of wins bigger than 5?"
} |
### QUESTION
Which Team has a round 1 CONMEBOL 1995?
### CONTEXT
CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)
### ANSWER
SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1" | {
"answer": "SELECT team FROM table_name_28 WHERE conmebol_1995 = \"round 1\"",
"context": "CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)",
"question": "Which Team has a round 1 CONMEBOL 1995?"
} |
### QUESTION
What is the sum of wins when the goals for number was bigger than 35, the team was the Montreal Hockey Club, and the number of losses was less than 2?
### CONTEXT
CREATE TABLE table_name_4 (wins VARCHAR, losses VARCHAR, goals_for VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(wins) FROM table_name_4 WHERE goals_for > 35 AND team = "montreal hockey club" AND losses < 2 | {
"answer": "SELECT COUNT(wins) FROM table_name_4 WHERE goals_for > 35 AND team = \"montreal hockey club\" AND losses < 2",
"context": "CREATE TABLE table_name_4 (wins VARCHAR, losses VARCHAR, goals_for VARCHAR, team VARCHAR)",
"question": "What is the sum of wins when the goals for number was bigger than 35, the team was the Montreal Hockey Club, and the number of losses was less than 2?"
} |
### QUESTION
Which Game Site has a Date of october 17, 1999?
### CONTEXT
CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)
### ANSWER
SELECT game_site FROM table_name_1 WHERE date = "october 17, 1999" | {
"answer": "SELECT game_site FROM table_name_1 WHERE date = \"october 17, 1999\"",
"context": "CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)",
"question": "Which Game Site has a Date of october 17, 1999?"
} |
### QUESTION
There are communities listed that a percentage larger than 7.6 in 2001, but none of them has 2 seats listed in 2006.
### CONTEXT
CREATE TABLE table_name_7 (seats_2001 INTEGER, seats_2006 VARCHAR, _percentage_2001 VARCHAR)
### ANSWER
SELECT SUM(seats_2001) FROM table_name_7 WHERE seats_2006 = 2 AND _percentage_2001 > 7.6 | {
"answer": "SELECT SUM(seats_2001) FROM table_name_7 WHERE seats_2006 = 2 AND _percentage_2001 > 7.6",
"context": "CREATE TABLE table_name_7 (seats_2001 INTEGER, seats_2006 VARCHAR, _percentage_2001 VARCHAR)",
"question": "There are communities listed that a percentage larger than 7.6 in 2001, but none of them has 2 seats listed in 2006."
} |
### QUESTION
Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?
### CONTEXT
CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, points VARCHAR, goals VARCHAR, tries VARCHAR)
### ANSWER
SELECT player FROM table_name_19 WHERE goals = 0 AND tries = 1 AND points = 4 AND position = "prop" | {
"answer": "SELECT player FROM table_name_19 WHERE goals = 0 AND tries = 1 AND points = 4 AND position = \"prop\"",
"context": "CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, points VARCHAR, goals VARCHAR, tries VARCHAR)",
"question": "Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?"
} |
### QUESTION
What is surfside beach, SC frequency?
### CONTEXT
CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR)
### ANSWER
SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = "surfside beach, sc" | {
"answer": "SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = \"surfside beach, sc\"",
"context": "CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR)",
"question": "What is surfside beach, SC frequency?"
} |
### QUESTION
Name the typ for project of igmdp and weight of 16,000
### CONTEXT
CREATE TABLE table_name_65 (type VARCHAR, project VARCHAR, weight__kg_ VARCHAR)
### ANSWER
SELECT type FROM table_name_65 WHERE project = "igmdp" AND weight__kg_ = "16,000" | {
"answer": "SELECT type FROM table_name_65 WHERE project = \"igmdp\" AND weight__kg_ = \"16,000\"",
"context": "CREATE TABLE table_name_65 (type VARCHAR, project VARCHAR, weight__kg_ VARCHAR)",
"question": "Name the typ for project of igmdp and weight of 16,000"
} |
### QUESTION
What group of juventus had an attendance larger than 47,786?
### CONTEXT
CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR)
### ANSWER
SELECT group_position FROM table_name_2 WHERE opponents = "juventus" AND attendance > 47 OFFSET 786 | {
"answer": "SELECT group_position FROM table_name_2 WHERE opponents = \"juventus\" AND attendance > 47 OFFSET 786",
"context": "CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR)",
"question": "What group of juventus had an attendance larger than 47,786?"
} |
### QUESTION
What are the most wins in 1971 in 250cc class?
### CONTEXT
CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year VARCHAR)
### ANSWER
SELECT MAX(wins) FROM table_name_11 WHERE class = "250cc" AND year = 1971 | {
"answer": "SELECT MAX(wins) FROM table_name_11 WHERE class = \"250cc\" AND year = 1971",
"context": "CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year VARCHAR)",
"question": "What are the most wins in 1971 in 250cc class?"
} |
### QUESTION
What is the earliest year with less than 45 points for Yamaha team in 21st rank?
### CONTEXT
CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_49 WHERE points < 45 AND team = "yamaha" AND rank = "21st" | {
"answer": "SELECT MIN(year) FROM table_name_49 WHERE points < 45 AND team = \"yamaha\" AND rank = \"21st\"",
"context": "CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)",
"question": "What is the earliest year with less than 45 points for Yamaha team in 21st rank?"
} |
### QUESTION
Who built the car that has a Time/Retired of 1:34:12.912?
### CONTEXT
CREATE TABLE table_name_88 (constructor VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT constructor FROM table_name_88 WHERE time_retired = "1:34:12.912" | {
"answer": "SELECT constructor FROM table_name_88 WHERE time_retired = \"1:34:12.912\"",
"context": "CREATE TABLE table_name_88 (constructor VARCHAR, time_retired VARCHAR)",
"question": "Who built the car that has a Time/Retired of 1:34:12.912?"
} |
### QUESTION
What is the current status for GM Advanced Design with more than 41 seats?
### CONTEXT
CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats VARCHAR)
### ANSWER
SELECT current_status FROM table_name_64 WHERE make = "gm advanced design" AND number_of_seats > 41 | {
"answer": "SELECT current_status FROM table_name_64 WHERE make = \"gm advanced design\" AND number_of_seats > 41",
"context": "CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats VARCHAR)",
"question": "What is the current status for GM Advanced Design with more than 41 seats?"
} |
### QUESTION
Tell me the constellation which has a right ascension of 18h17m41.1s
### CONTEXT
CREATE TABLE table_name_54 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)
### ANSWER
SELECT constellation FROM table_name_54 WHERE right_ascension___j2000__ = "18h17m41.1s" | {
"answer": "SELECT constellation FROM table_name_54 WHERE right_ascension___j2000__ = \"18h17m41.1s\"",
"context": "CREATE TABLE table_name_54 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)",
"question": "Tell me the constellation which has a right ascension of 18h17m41.1s"
} |
### QUESTION
What is the total number of Since with a Goals larger than 6, and a Name with deco?
### CONTEXT
CREATE TABLE table_name_57 (since VARCHAR, goals VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(since) FROM table_name_57 WHERE goals > 6 AND name = "deco" | {
"answer": "SELECT COUNT(since) FROM table_name_57 WHERE goals > 6 AND name = \"deco\"",
"context": "CREATE TABLE table_name_57 (since VARCHAR, goals VARCHAR, name VARCHAR)",
"question": "What is the total number of Since with a Goals larger than 6, and a Name with deco?"
} |
### QUESTION
What is the overall of the running back player?
### CONTEXT
CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)
### ANSWER
SELECT overall FROM table_name_91 WHERE position = "running back" | {
"answer": "SELECT overall FROM table_name_91 WHERE position = \"running back\"",
"context": "CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)",
"question": "What is the overall of the running back player?"
} |
### QUESTION
Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25?
### CONTEXT
CREATE TABLE table_name_2 (constructor VARCHAR, rank VARCHAR, grid VARCHAR, laps VARCHAR)
### ANSWER
SELECT constructor FROM table_name_2 WHERE grid > 14 AND laps > 93 AND rank > 25 | {
"answer": "SELECT constructor FROM table_name_2 WHERE grid > 14 AND laps > 93 AND rank > 25",
"context": "CREATE TABLE table_name_2 (constructor VARCHAR, rank VARCHAR, grid VARCHAR, laps VARCHAR)",
"question": "Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25?"
} |
### QUESTION
For the category of most popular star with a result of won for 2007, what was the award?
### CONTEXT
CREATE TABLE table_name_27 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)
### ANSWER
SELECT award FROM table_name_27 WHERE result = "won" AND category = "most popular star" AND year = 2007 | {
"answer": "SELECT award FROM table_name_27 WHERE result = \"won\" AND category = \"most popular star\" AND year = 2007",
"context": "CREATE TABLE table_name_27 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)",
"question": "For the category of most popular star with a result of won for 2007, what was the award?"
} |
### QUESTION
What is the main color(s) for marlboro?
### CONTEXT
CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR)
### ANSWER
SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = "marlboro" | {
"answer": "SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = \"marlboro\"",
"context": "CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR)",
"question": "What is the main color(s) for marlboro?"
} |
### QUESTION
What was the average attendance on October 30, 1938?
### CONTEXT
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_33 WHERE date = "october 30, 1938" | {
"answer": "SELECT AVG(attendance) FROM table_name_33 WHERE date = \"october 30, 1938\"",
"context": "CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)",
"question": "What was the average attendance on October 30, 1938?"
} |
### QUESTION
What engines have the year 1992?
### CONTEXT
CREATE TABLE table_name_7 (engine_s_ VARCHAR, year VARCHAR)
### ANSWER
SELECT engine_s_ FROM table_name_7 WHERE year = 1992 | {
"answer": "SELECT engine_s_ FROM table_name_7 WHERE year = 1992",
"context": "CREATE TABLE table_name_7 (engine_s_ VARCHAR, year VARCHAR)",
"question": "What engines have the year 1992?"
} |
### QUESTION
Who did Yugoslavia play against that led to a result of 2:3?
### CONTEXT
CREATE TABLE table_name_90 (opponent VARCHAR, results¹ VARCHAR)
### ANSWER
SELECT opponent FROM table_name_90 WHERE results¹ = "2:3" | {
"answer": "SELECT opponent FROM table_name_90 WHERE results¹ = \"2:3\"",
"context": "CREATE TABLE table_name_90 (opponent VARCHAR, results¹ VARCHAR)",
"question": "Who did Yugoslavia play against that led to a result of 2:3?"
} |
### QUESTION
What is the final score of the runner-up on 9 February 1992?
### CONTEXT
CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)
### ANSWER
SELECT score_in_final FROM table_name_75 WHERE outcome = "runner-up" AND date = "9 february 1992" | {
"answer": "SELECT score_in_final FROM table_name_75 WHERE outcome = \"runner-up\" AND date = \"9 february 1992\"",
"context": "CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)",
"question": "What is the final score of the runner-up on 9 February 1992?"
} |
### QUESTION
what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21?
### CONTEXT
CREATE TABLE table_name_39 (attendance INTEGER, time VARCHAR, location VARCHAR, game VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_39 WHERE location = "veterans stadium" AND game > 3 AND time = "2:21" | {
"answer": "SELECT AVG(attendance) FROM table_name_39 WHERE location = \"veterans stadium\" AND game > 3 AND time = \"2:21\"",
"context": "CREATE TABLE table_name_39 (attendance INTEGER, time VARCHAR, location VARCHAR, game VARCHAR)",
"question": "what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21?"
} |
### QUESTION
how many games have a location of memorial stadium and a time of 2:27?
### CONTEXT
CREATE TABLE table_name_95 (game VARCHAR, location VARCHAR, time VARCHAR)
### ANSWER
SELECT COUNT(game) FROM table_name_95 WHERE location = "memorial stadium" AND time = "2:27" | {
"answer": "SELECT COUNT(game) FROM table_name_95 WHERE location = \"memorial stadium\" AND time = \"2:27\"",
"context": "CREATE TABLE table_name_95 (game VARCHAR, location VARCHAR, time VARCHAR)",
"question": "how many games have a location of memorial stadium and a time of 2:27?"
} |
### QUESTION
What is the time when the opponent is stephanie palmer?
### CONTEXT
CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)
### ANSWER
SELECT time FROM table_name_27 WHERE opponent = "stephanie palmer" | {
"answer": "SELECT time FROM table_name_27 WHERE opponent = \"stephanie palmer\"",
"context": "CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)",
"question": "What is the time when the opponent is stephanie palmer?"
} |
### QUESTION
What date is the zürich, switzerland tournament?
### CONTEXT
CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR)
### ANSWER
SELECT date FROM table_name_36 WHERE tournament = "zürich, switzerland" | {
"answer": "SELECT date FROM table_name_36 WHERE tournament = \"zürich, switzerland\"",
"context": "CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR)",
"question": "What date is the zürich, switzerland tournament?"
} |
### QUESTION
Which Venue has a Result of 5-1, and a Score of 1-0?
### CONTEXT
CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR)
### ANSWER
SELECT venue FROM table_name_72 WHERE result = "5-1" AND score = "1-0" | {
"answer": "SELECT venue FROM table_name_72 WHERE result = \"5-1\" AND score = \"1-0\"",
"context": "CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR)",
"question": "Which Venue has a Result of 5-1, and a Score of 1-0?"
} |
### QUESTION
What is the total work number of Gowrie with a 0-6-4t type after 1908?
### CONTEXT
CREATE TABLE table_name_51 (works_number VARCHAR, date VARCHAR, type VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(works_number) FROM table_name_51 WHERE type = "0-6-4t" AND name = "gowrie" AND date > 1908 | {
"answer": "SELECT COUNT(works_number) FROM table_name_51 WHERE type = \"0-6-4t\" AND name = \"gowrie\" AND date > 1908",
"context": "CREATE TABLE table_name_51 (works_number VARCHAR, date VARCHAR, type VARCHAR, name VARCHAR)",
"question": "What is the total work number of Gowrie with a 0-6-4t type after 1908?"
} |
### QUESTION
Which network has model nForce Professional 3400 MCP?
### CONTEXT
CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)
### ANSWER
SELECT network FROM table_name_29 WHERE model = "nforce professional 3400 mcp" | {
"answer": "SELECT network FROM table_name_29 WHERE model = \"nforce professional 3400 mcp\"",
"context": "CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)",
"question": "Which network has model nForce Professional 3400 MCP?"
} |
### QUESTION
Which Score has a Couple of cristián & cheryl, and a Style of cha-cha-cha?
### CONTEXT
CREATE TABLE table_name_7 (score VARCHAR, couple VARCHAR, style VARCHAR)
### ANSWER
SELECT score FROM table_name_7 WHERE couple = "cristián & cheryl" AND style = "cha-cha-cha" | {
"answer": "SELECT score FROM table_name_7 WHERE couple = \"cristián & cheryl\" AND style = \"cha-cha-cha\"",
"context": "CREATE TABLE table_name_7 (score VARCHAR, couple VARCHAR, style VARCHAR)",
"question": "Which Score has a Couple of cristián & cheryl, and a Style of cha-cha-cha?"
} |
### QUESTION
What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?
### CONTEXT
CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by… VARCHAR, date VARCHAR, nationality VARCHAR)
### ANSWER
SELECT name FROM table_name_23 WHERE date = "5 may 1943" AND nationality = "united kingdom" AND sunk_by… = "u-266" AND casualties = "0" | {
"answer": "SELECT name FROM table_name_23 WHERE date = \"5 may 1943\" AND nationality = \"united kingdom\" AND sunk_by… = \"u-266\" AND casualties = \"0\"",
"context": "CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by… VARCHAR, date VARCHAR, nationality VARCHAR)",
"question": "What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?"
} |
### QUESTION
What is the Right Ascension with a Diffuse Nebula Object Type has a °42′30″ Declination and a NGC less than 6995?
### CONTEXT
CREATE TABLE table_name_14 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR)
### ANSWER
SELECT right_ascension___j2000__ FROM table_name_14 WHERE ngc_number < 6995 AND object_type = "diffuse nebula" AND declination___j2000__ = "°42′30″" | {
"answer": "SELECT right_ascension___j2000__ FROM table_name_14 WHERE ngc_number < 6995 AND object_type = \"diffuse nebula\" AND declination___j2000__ = \"°42′30″\"",
"context": "CREATE TABLE table_name_14 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR)",
"question": "What is the Right Ascension with a Diffuse Nebula Object Type has a °42′30″ Declination and a NGC less than 6995?"
} |
### QUESTION
What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?
### CONTEXT
CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)
### ANSWER
SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = "21h01m37.7s" | {
"answer": "SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = \"21h01m37.7s\"",
"context": "CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)",
"question": "What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?"
} |
### QUESTION
What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?
### CONTEXT
CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)
### ANSWER
SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = "papillon" | {
"answer": "SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = \"papillon\"",
"context": "CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)",
"question": "What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?"
} |
### QUESTION
What is the date of the game at the Pro Player Stadium that had a score of 4-1?
### CONTEXT
CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_43 WHERE venue = "pro player stadium" AND score = "4-1" | {
"answer": "SELECT date FROM table_name_43 WHERE venue = \"pro player stadium\" AND score = \"4-1\"",
"context": "CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR)",
"question": "What is the date of the game at the Pro Player Stadium that had a score of 4-1?"
} |
### QUESTION
What is donovan's surname?
### CONTEXT
CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR)
### ANSWER
SELECT surname FROM table_name_12 WHERE first = "donovan" | {
"answer": "SELECT surname FROM table_name_12 WHERE first = \"donovan\"",
"context": "CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR)",
"question": "What is donovan's surname?"
} |
### QUESTION
In what League is Left Wing Yanick Dupre?
### CONTEXT
CREATE TABLE table_name_94 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT college_junior_club_team__league_ FROM table_name_94 WHERE position = "left wing" AND player = "yanick dupre" | {
"answer": "SELECT college_junior_club_team__league_ FROM table_name_94 WHERE position = \"left wing\" AND player = \"yanick dupre\"",
"context": "CREATE TABLE table_name_94 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)",
"question": "In what League is Left Wing Yanick Dupre?"
} |
### QUESTION
In what League in Round 6 is the Position Right Wing?
### CONTEXT
CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)
### ANSWER
SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = "right wing" AND round = "6" | {
"answer": "SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = \"right wing\" AND round = \"6\"",
"context": "CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)",
"question": "In what League in Round 6 is the Position Right Wing?"
} |
### QUESTION
When Richmond is the Away team, what did they score?
### CONTEXT
CREATE TABLE table_name_2 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_2 WHERE away_team = "richmond" | {
"answer": "SELECT away_team AS score FROM table_name_2 WHERE away_team = \"richmond\"",
"context": "CREATE TABLE table_name_2 (away_team VARCHAR)",
"question": "When Richmond is the Away team, what did they score?"
} |
### QUESTION
What was the time of the car having a constructor of Renault, which went 40 laps?
### CONTEXT
CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)
### ANSWER
SELECT time_retired FROM table_name_96 WHERE constructor = "renault" AND laps = "40" | {
"answer": "SELECT time_retired FROM table_name_96 WHERE constructor = \"renault\" AND laps = \"40\"",
"context": "CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)",
"question": "What was the time of the car having a constructor of Renault, which went 40 laps?"
} |
### QUESTION
Which title has tracks smaller than 7 with translation of an island?
### CONTEXT
CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)
### ANSWER
SELECT title FROM table_name_67 WHERE track < 7 AND translation = "an island" | {
"answer": "SELECT title FROM table_name_67 WHERE track < 7 AND translation = \"an island\"",
"context": "CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)",
"question": "Which title has tracks smaller than 7 with translation of an island?"
} |
### QUESTION
What's the position listed for the east carolina team?
### CONTEXT
CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR)
### ANSWER
SELECT position FROM table_name_81 WHERE school_club_team = "east carolina" | {
"answer": "SELECT position FROM table_name_81 WHERE school_club_team = \"east carolina\"",
"context": "CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR)",
"question": "What's the position listed for the east carolina team?"
} |
### QUESTION
Who had a disputed marriage?
### CONTEXT
CREATE TABLE table_name_57 (name VARCHAR, marriage VARCHAR)
### ANSWER
SELECT name FROM table_name_57 WHERE marriage = "disputed" | {
"answer": "SELECT name FROM table_name_57 WHERE marriage = \"disputed\"",
"context": "CREATE TABLE table_name_57 (name VARCHAR, marriage VARCHAR)",
"question": "Who had a disputed marriage?"
} |
### QUESTION
What was the high assists from a high points of dorell wright (20)?
### CONTEXT
CREATE TABLE table_name_98 (high_assists VARCHAR, high_points VARCHAR)
### ANSWER
SELECT high_assists FROM table_name_98 WHERE high_points = "dorell wright (20)" | {
"answer": "SELECT high_assists FROM table_name_98 WHERE high_points = \"dorell wright (20)\"",
"context": "CREATE TABLE table_name_98 (high_assists VARCHAR, high_points VARCHAR)",
"question": "What was the high assists from a high points of dorell wright (20)?"
} |
### QUESTION
When Richmond had a total count of 2,293, what was the total count of Brooklyn?
### CONTEXT
CREATE TABLE table_name_53 (brooklyn VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
### ANSWER
SELECT brooklyn FROM table_name_53 WHERE richmond_[staten_is] = "2,293" | {
"answer": "SELECT brooklyn FROM table_name_53 WHERE richmond_[staten_is] = \"2,293\"",
"context": "CREATE TABLE table_name_53 (brooklyn VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)",
"question": "When Richmond had a total count of 2,293, what was the total count of Brooklyn?"
} |
### QUESTION
For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?
### CONTEXT
CREATE TABLE table_name_41 (fuel_propulsion VARCHAR, year VARCHAR, numbers__quantity_ordered_ VARCHAR)
### ANSWER
SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = "4756-4788 (33 buses)" | {
"answer": "SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = \"4756-4788 (33 buses)\"",
"context": "CREATE TABLE table_name_41 (fuel_propulsion VARCHAR, year VARCHAR, numbers__quantity_ordered_ VARCHAR)",
"question": "For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?"
} |
### QUESTION
What year was the diesel fuel propulsion, with a length of 40', and numbers (quanity ordered) of 3701-3729 (29 buses), retired?
### CONTEXT
CREATE TABLE table_name_2 (year VARCHAR, numbers__quantity_ordered_ VARCHAR, fuel_propulsion VARCHAR, length VARCHAR)
### ANSWER
SELECT year AS Retired FROM table_name_2 WHERE fuel_propulsion = "diesel" AND length = "40'" AND numbers__quantity_ordered_ = "3701-3729 (29 buses)" | {
"answer": "SELECT year AS Retired FROM table_name_2 WHERE fuel_propulsion = \"diesel\" AND length = \"40'\" AND numbers__quantity_ordered_ = \"3701-3729 (29 buses)\"",
"context": "CREATE TABLE table_name_2 (year VARCHAR, numbers__quantity_ordered_ VARCHAR, fuel_propulsion VARCHAR, length VARCHAR)",
"question": "What year was the diesel fuel propulsion, with a length of 40', and numbers (quanity ordered) of 3701-3729 (29 buses), retired?"
} |
### QUESTION
What is the total number of events that Al Geiberger has played with earnings larger than 527,033?
### CONTEXT
CREATE TABLE table_name_42 (events VARCHAR, player VARCHAR, earnings___$__ VARCHAR)
### ANSWER
SELECT COUNT(events) FROM table_name_42 WHERE player = "al geiberger" AND earnings___$__ > 527 OFFSET 033 | {
"answer": "SELECT COUNT(events) FROM table_name_42 WHERE player = \"al geiberger\" AND earnings___$__ > 527 OFFSET 033",
"context": "CREATE TABLE table_name_42 (events VARCHAR, player VARCHAR, earnings___$__ VARCHAR)",
"question": "What is the total number of events that Al Geiberger has played with earnings larger than 527,033?"
} |
### QUESTION
What is the location attendance of the game on February 25?
### CONTEXT
CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_52 WHERE date = "february 25" | {
"answer": "SELECT location_attendance FROM table_name_52 WHERE date = \"february 25\"",
"context": "CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)",
"question": "What is the location attendance of the game on February 25?"
} |
### QUESTION
What's the largest Fall 08 number when fall 09 is less than 82, fall 06 is 5, and fall 05 is less than 3?
### CONTEXT
CREATE TABLE table_name_96 (fall_08 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR, fall_06 VARCHAR)
### ANSWER
SELECT MAX(fall_08) FROM table_name_96 WHERE fall_09 < 82 AND fall_06 = 5 AND fall_05 < 3 | {
"answer": "SELECT MAX(fall_08) FROM table_name_96 WHERE fall_09 < 82 AND fall_06 = 5 AND fall_05 < 3",
"context": "CREATE TABLE table_name_96 (fall_08 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR, fall_06 VARCHAR)",
"question": "What's the largest Fall 08 number when fall 09 is less than 82, fall 06 is 5, and fall 05 is less than 3?"
} |
### QUESTION
Which school has more than 3 rounds with jason odom?
### CONTEXT
CREATE TABLE table_name_71 (school VARCHAR, round VARCHAR, player VARCHAR)
### ANSWER
SELECT school FROM table_name_71 WHERE round > 3 AND player = "jason odom" | {
"answer": "SELECT school FROM table_name_71 WHERE round > 3 AND player = \"jason odom\"",
"context": "CREATE TABLE table_name_71 (school VARCHAR, round VARCHAR, player VARCHAR)",
"question": "Which school has more than 3 rounds with jason odom?"
} |
### QUESTION
I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3
### CONTEXT
CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)
### ANSWER
SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = "009 9th" AND number_of_seasons_in_the_premier_league < 3 | {
"answer": "SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = \"009 9th\" AND number_of_seasons_in_the_premier_league < 3",
"context": "CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)",
"question": "I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3"
} |
### QUESTION
What is the new classification for La Mirada, California?
### CONTEXT
CREATE TABLE table_name_69 (new_classification VARCHAR, location VARCHAR)
### ANSWER
SELECT new_classification FROM table_name_69 WHERE location = "la mirada, california" | {
"answer": "SELECT new_classification FROM table_name_69 WHERE location = \"la mirada, california\"",
"context": "CREATE TABLE table_name_69 (new_classification VARCHAR, location VARCHAR)",
"question": "What is the new classification for La Mirada, California?"
} |
### QUESTION
Who is the player who went to Stanford?
### CONTEXT
CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR)
### ANSWER
SELECT player FROM table_name_8 WHERE school_club_team = "stanford" | {
"answer": "SELECT player FROM table_name_8 WHERE school_club_team = \"stanford\"",
"context": "CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR)",
"question": "Who is the player who went to Stanford?"
} |
### QUESTION
What is the host city of the Singapore Indoor Stadium venue and a Valentine's Day theme?
### CONTEXT
CREATE TABLE table_name_24 (host_city VARCHAR, venue VARCHAR, theme VARCHAR)
### ANSWER
SELECT host_city FROM table_name_24 WHERE venue = "singapore indoor stadium" AND theme = "valentine's day" | {
"answer": "SELECT host_city FROM table_name_24 WHERE venue = \"singapore indoor stadium\" AND theme = \"valentine's day\"",
"context": "CREATE TABLE table_name_24 (host_city VARCHAR, venue VARCHAR, theme VARCHAR)",
"question": "What is the host city of the Singapore Indoor Stadium venue and a Valentine's Day theme?"
} |
### QUESTION
What date has a margin of victory of 1 stroke over Greg Kraft?
### CONTEXT
CREATE TABLE table_name_21 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT date FROM table_name_21 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "greg kraft" | {
"answer": "SELECT date FROM table_name_21 WHERE margin_of_victory = \"1 stroke\" AND runner_s__up = \"greg kraft\"",
"context": "CREATE TABLE table_name_21 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)",
"question": "What date has a margin of victory of 1 stroke over Greg Kraft?"
} |
### QUESTION
Which object type had an NGC number greater than 6357 and a declination (J2000) of °45′34″?
### CONTEXT
CREATE TABLE table_name_53 (object_type VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)
### ANSWER
SELECT object_type FROM table_name_53 WHERE ngc_number > 6357 AND declination___j2000__ = "°45′34″" | {
"answer": "SELECT object_type FROM table_name_53 WHERE ngc_number > 6357 AND declination___j2000__ = \"°45′34″\"",
"context": "CREATE TABLE table_name_53 (object_type VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)",
"question": "Which object type had an NGC number greater than 6357 and a declination (J2000) of °45′34″?"
} |
### QUESTION
For the constellation scorpius and object of planetary nebula, what was the declination (J2000)?
### CONTEXT
CREATE TABLE table_name_53 (declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)
### ANSWER
SELECT declination___j2000__ FROM table_name_53 WHERE constellation = "scorpius" AND object_type = "planetary nebula" | {
"answer": "SELECT declination___j2000__ FROM table_name_53 WHERE constellation = \"scorpius\" AND object_type = \"planetary nebula\"",
"context": "CREATE TABLE table_name_53 (declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)",
"question": "For the constellation scorpius and object of planetary nebula, what was the declination (J2000)?"
} |
### QUESTION
What's the lowest Code that's got a Most Spoke Language of Xhosa, a Place of Addo Elephant National Park, and an Area (KM 2) that's smaller than 1.08?
### CONTEXT
CREATE TABLE table_name_92 (code INTEGER, area__km_2__ VARCHAR, most_spoken_language VARCHAR, place VARCHAR)
### ANSWER
SELECT MIN(code) FROM table_name_92 WHERE most_spoken_language = "xhosa" AND place = "addo elephant national park" AND area__km_2__ < 1.08 | {
"answer": "SELECT MIN(code) FROM table_name_92 WHERE most_spoken_language = \"xhosa\" AND place = \"addo elephant national park\" AND area__km_2__ < 1.08",
"context": "CREATE TABLE table_name_92 (code INTEGER, area__km_2__ VARCHAR, most_spoken_language VARCHAR, place VARCHAR)",
"question": "What's the lowest Code that's got a Most Spoke Language of Xhosa, a Place of Addo Elephant National Park, and an Area (KM 2) that's smaller than 1.08?"
} |
### QUESTION
Tell me the command set with FDD capacity of 270kb and sides of ds with #FDD more than 1
### CONTEXT
CREATE TABLE table_name_35 (command_set VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR, sides VARCHAR)
### ANSWER
SELECT command_set FROM table_name_35 WHERE fdd_capacity__each_ = "270kb" AND sides = "ds" AND _number_fdd > 1 | {
"answer": "SELECT command_set FROM table_name_35 WHERE fdd_capacity__each_ = \"270kb\" AND sides = \"ds\" AND _number_fdd > 1",
"context": "CREATE TABLE table_name_35 (command_set VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR, sides VARCHAR)",
"question": "Tell me the command set with FDD capacity of 270kb and sides of ds with #FDD more than 1"
} |
### QUESTION
What's the score on December 1 when Philadelphia visited?
### CONTEXT
CREATE TABLE table_name_41 (score VARCHAR, visitor VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_41 WHERE visitor = "philadelphia" AND date = "december 1" | {
"answer": "SELECT score FROM table_name_41 WHERE visitor = \"philadelphia\" AND date = \"december 1\"",
"context": "CREATE TABLE table_name_41 (score VARCHAR, visitor VARCHAR, date VARCHAR)",
"question": "What's the score on December 1 when Philadelphia visited?"
} |
### QUESTION
What is the Year 10 6th Quads for the Open 2nd VIII of ACGS and a Year 11 2nd VIII NC?
### CONTEXT
CREATE TABLE table_name_7 (year_10_6th_quad VARCHAR, open_2nd_viii VARCHAR, year_11_2nd_viii VARCHAR)
### ANSWER
SELECT year_10_6th_quad FROM table_name_7 WHERE open_2nd_viii = "acgs" AND year_11_2nd_viii = "nc" | {
"answer": "SELECT year_10_6th_quad FROM table_name_7 WHERE open_2nd_viii = \"acgs\" AND year_11_2nd_viii = \"nc\"",
"context": "CREATE TABLE table_name_7 (year_10_6th_quad VARCHAR, open_2nd_viii VARCHAR, year_11_2nd_viii VARCHAR)",
"question": "What is the Year 10 6th Quads for the Open 2nd VIII of ACGS and a Year 11 2nd VIII NC?"
} |
### QUESTION
On July 25 what is the lowest attendance with the Brewers as the opponent?
### CONTEXT
CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_26 WHERE opponent = "brewers" AND date = "july 25" | {
"answer": "SELECT MIN(attendance) FROM table_name_26 WHERE opponent = \"brewers\" AND date = \"july 25\"",
"context": "CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)",
"question": "On July 25 what is the lowest attendance with the Brewers as the opponent?"
} |
### QUESTION
Which Car # has a Make of toyota, and a Pos of 7?
### CONTEXT
CREATE TABLE table_name_98 (car__number INTEGER, make VARCHAR, pos VARCHAR)
### ANSWER
SELECT MAX(car__number) FROM table_name_98 WHERE make = "toyota" AND pos = 7 | {
"answer": "SELECT MAX(car__number) FROM table_name_98 WHERE make = \"toyota\" AND pos = 7",
"context": "CREATE TABLE table_name_98 (car__number INTEGER, make VARCHAR, pos VARCHAR)",
"question": "Which Car # has a Make of toyota, and a Pos of 7?"
} |
### QUESTION
Which Record has a Date on december 18?
### CONTEXT
CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_55 WHERE date = "december 18" | {
"answer": "SELECT record FROM table_name_55 WHERE date = \"december 18\"",
"context": "CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)",
"question": "Which Record has a Date on december 18?"
} |
### QUESTION
On what surface was the tournament with opponents kathleen horvath marcella mesker in the finals?
### CONTEXT
CREATE TABLE table_name_1 (surface VARCHAR, opponents_in_the_final VARCHAR)
### ANSWER
SELECT surface FROM table_name_1 WHERE opponents_in_the_final = "kathleen horvath marcella mesker" | {
"answer": "SELECT surface FROM table_name_1 WHERE opponents_in_the_final = \"kathleen horvath marcella mesker\"",
"context": "CREATE TABLE table_name_1 (surface VARCHAR, opponents_in_the_final VARCHAR)",
"question": "On what surface was the tournament with opponents kathleen horvath marcella mesker in the finals?"
} |
### QUESTION
Tell me the Host interface for digital of dvb-t (cx22702) and model of nova-t pci (90002)
### CONTEXT
CREATE TABLE table_name_34 (host_interface VARCHAR, digital VARCHAR, model VARCHAR)
### ANSWER
SELECT host_interface FROM table_name_34 WHERE digital = "dvb-t (cx22702)" AND model = "nova-t pci (90002)" | {
"answer": "SELECT host_interface FROM table_name_34 WHERE digital = \"dvb-t (cx22702)\" AND model = \"nova-t pci (90002)\"",
"context": "CREATE TABLE table_name_34 (host_interface VARCHAR, digital VARCHAR, model VARCHAR)",
"question": "Tell me the Host interface for digital of dvb-t (cx22702) and model of nova-t pci (90002)"
} |
### QUESTION
What was the Director with a Ceremony of 2001?
### CONTEXT
CREATE TABLE table_name_93 (director VARCHAR, year__ceremony_ VARCHAR)
### ANSWER
SELECT director FROM table_name_93 WHERE year__ceremony_ = 2001 | {
"answer": "SELECT director FROM table_name_93 WHERE year__ceremony_ = 2001",
"context": "CREATE TABLE table_name_93 (director VARCHAR, year__ceremony_ VARCHAR)",
"question": "What was the Director with a Ceremony of 2001?"
} |
### QUESTION
I want the tuner for hybrid video recorder and Digital of dvb-t (zl10353), and a Model of hvr-900
### CONTEXT
CREATE TABLE table_name_32 (tuner VARCHAR, model VARCHAR, type VARCHAR, digital VARCHAR)
### ANSWER
SELECT tuner FROM table_name_32 WHERE type = "hybrid video recorder" AND digital = "dvb-t (zl10353)" AND model = "hvr-900" | {
"answer": "SELECT tuner FROM table_name_32 WHERE type = \"hybrid video recorder\" AND digital = \"dvb-t (zl10353)\" AND model = \"hvr-900\"",
"context": "CREATE TABLE table_name_32 (tuner VARCHAR, model VARCHAR, type VARCHAR, digital VARCHAR)",
"question": "I want the tuner for hybrid video recorder and Digital of dvb-t (zl10353), and a Model of hvr-900"
} |
### QUESTION
I want the type for host interface of pci saa7146 tmx320av7111
### CONTEXT
CREATE TABLE table_name_89 (type VARCHAR, host_interface VARCHAR)
### ANSWER
SELECT type FROM table_name_89 WHERE host_interface = "pci saa7146 tmx320av7111" | {
"answer": "SELECT type FROM table_name_89 WHERE host_interface = \"pci saa7146 tmx320av7111\"",
"context": "CREATE TABLE table_name_89 (type VARCHAR, host_interface VARCHAR)",
"question": "I want the type for host interface of pci saa7146 tmx320av7111"
} |
### QUESTION
Which Score has a Opponent of Boston red sox and a Save of sager?
### CONTEXT
CREATE TABLE table_name_8 (score VARCHAR, opponent VARCHAR, save VARCHAR)
### ANSWER
SELECT score FROM table_name_8 WHERE opponent = "boston red sox" AND save = "sager" | {
"answer": "SELECT score FROM table_name_8 WHERE opponent = \"boston red sox\" AND save = \"sager\"",
"context": "CREATE TABLE table_name_8 (score VARCHAR, opponent VARCHAR, save VARCHAR)",
"question": "Which Score has a Opponent of Boston red sox and a Save of sager?"
} |
### QUESTION
What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357?
### CONTEXT
CREATE TABLE table_name_25 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)
### ANSWER
SELECT SUM(swimsuit) FROM table_name_25 WHERE evening_gown > 9.257 AND interview = 9.357 | {
"answer": "SELECT SUM(swimsuit) FROM table_name_25 WHERE evening_gown > 9.257 AND interview = 9.357",
"context": "CREATE TABLE table_name_25 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)",
"question": "What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357?"
} |
### QUESTION
What is the length of the highway with junctions i-35 us 83 and named us 83 bus.?
### CONTEXT
CREATE TABLE table_name_25 (length VARCHAR, junctions VARCHAR, route_name VARCHAR)
### ANSWER
SELECT length FROM table_name_25 WHERE junctions = "i-35 us 83" AND route_name = "us 83 bus." | {
"answer": "SELECT length FROM table_name_25 WHERE junctions = \"i-35 us 83\" AND route_name = \"us 83 bus.\"",
"context": "CREATE TABLE table_name_25 (length VARCHAR, junctions VARCHAR, route_name VARCHAR)",
"question": "What is the length of the highway with junctions i-35 us 83 and named us 83 bus.?"
} |
### QUESTION
What is the date of the inauguration with a Length of retirement of 00,624 days?
### CONTEXT
CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR)
### ANSWER
SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = "00,624 days" | {
"answer": "SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = \"00,624 days\"",
"context": "CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR)",
"question": "What is the date of the inauguration with a Length of retirement of 00,624 days?"
} |
### QUESTION
How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?
### CONTEXT
CREATE TABLE table_name_92 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(extra_points) FROM table_name_92 WHERE touchdowns = 1 AND player = "ross kidston" AND points < 5 | {
"answer": "SELECT SUM(extra_points) FROM table_name_92 WHERE touchdowns = 1 AND player = \"ross kidston\" AND points < 5",
"context": "CREATE TABLE table_name_92 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR, player VARCHAR)",
"question": "How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?"
} |
### QUESTION
What is the highest week 9 that had a week 6 of 7, a week 10 of greater than 2, a week 7 of 5, and a week 11 less than 2?
### CONTEXT
CREATE TABLE table_name_13 (wk_9 INTEGER, wk_11 VARCHAR, wk_7 VARCHAR, wk_6 VARCHAR, wk_10 VARCHAR)
### ANSWER
SELECT MAX(wk_9) FROM table_name_13 WHERE wk_6 = "7" AND wk_10 > 2 AND wk_7 = "5" AND wk_11 < 2 | {
"answer": "SELECT MAX(wk_9) FROM table_name_13 WHERE wk_6 = \"7\" AND wk_10 > 2 AND wk_7 = \"5\" AND wk_11 < 2",
"context": "CREATE TABLE table_name_13 (wk_9 INTEGER, wk_11 VARCHAR, wk_7 VARCHAR, wk_6 VARCHAR, wk_10 VARCHAR)",
"question": "What is the highest week 9 that had a week 6 of 7, a week 10 of greater than 2, a week 7 of 5, and a week 11 less than 2?"
} |
### QUESTION
What is Week 14 Nov 24, that has Week 11 Nov 3 of USC (6-2)?
### CONTEXT
CREATE TABLE table_name_44 (week_14_nov_24 VARCHAR, week_11_nov_3 VARCHAR)
### ANSWER
SELECT week_14_nov_24 FROM table_name_44 WHERE week_11_nov_3 = "usc (6-2)" | {
"answer": "SELECT week_14_nov_24 FROM table_name_44 WHERE week_11_nov_3 = \"usc (6-2)\"",
"context": "CREATE TABLE table_name_44 (week_14_nov_24 VARCHAR, week_11_nov_3 VARCHAR)",
"question": "What is Week 14 Nov 24, that has Week 11 Nov 3 of USC (6-2)?"
} |
### QUESTION
Which name has an Order smaller than 997,more than 5 goals, and 215 games?
### CONTEXT
CREATE TABLE table_name_43 (name VARCHAR, games VARCHAR, order VARCHAR, goals VARCHAR)
### ANSWER
SELECT name FROM table_name_43 WHERE order < 997 AND goals > 5 AND games = 215 | {
"answer": "SELECT name FROM table_name_43 WHERE order < 997 AND goals > 5 AND games = 215",
"context": "CREATE TABLE table_name_43 (name VARCHAR, games VARCHAR, order VARCHAR, goals VARCHAR)",
"question": "Which name has an Order smaller than 997,more than 5 goals, and 215 games?"
} |
### QUESTION
What is the latest year in Annecy, France?
### CONTEXT
CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_66 WHERE venue = "annecy, france" | {
"answer": "SELECT MAX(year) FROM table_name_66 WHERE venue = \"annecy, france\"",
"context": "CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR)",
"question": "What is the latest year in Annecy, France?"
} |
### QUESTION
How many people attended the game on january 10 with a Score of 3 – 2?
### CONTEXT
CREATE TABLE table_name_96 (attendance VARCHAR, score VARCHAR, date VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_name_96 WHERE score = "3 – 2" AND date = "january 10" | {
"answer": "SELECT COUNT(attendance) FROM table_name_96 WHERE score = \"3 – 2\" AND date = \"january 10\"",
"context": "CREATE TABLE table_name_96 (attendance VARCHAR, score VARCHAR, date VARCHAR)",
"question": "How many people attended the game on january 10 with a Score of 3 – 2?"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.