text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?
### CONTEXT
CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)
### ANSWER
SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = "Piret Hamer Helen Reino" | {
"answer": "SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = \"Piret Hamer Helen Reino\"",
"context": "CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)",
"question": "WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?"
} |
### QUESTION
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?
### CONTEXT
CREATE TABLE table_14903627_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)
### ANSWER
SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles = "Kairi Viilup" | {
"answer": "SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles = \"Kairi Viilup\"",
"context": "CREATE TABLE table_14903627_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)",
"question": "WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?"
} |
### QUESTION
Who was the sponsor for the bill introduced February 28, 2005 with cosponsors less than 200?
### CONTEXT
CREATE TABLE table_name_18 (sponsor_s_ VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)
### ANSWER
SELECT sponsor_s_ FROM table_name_18 WHERE _number_of_cosponsors < 200 AND date_introduced = "february 28, 2005" | {
"answer": "SELECT sponsor_s_ FROM table_name_18 WHERE _number_of_cosponsors < 200 AND date_introduced = \"february 28, 2005\"",
"context": "CREATE TABLE table_name_18 (sponsor_s_ VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)",
"question": "Who was the sponsor for the bill introduced February 28, 2005 with cosponsors less than 200?"
} |
### QUESTION
Name the womens doubles when mens doubles is theodoros velkos giorgos patis
### CONTEXT
CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
### ANSWER
SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = "Theodoros Velkos Giorgos Patis" | {
"answer": "SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = \"Theodoros Velkos Giorgos Patis\"",
"context": "CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)",
"question": "Name the womens doubles when mens doubles is theodoros velkos giorgos patis"
} |
### QUESTION
Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010
### CONTEXT
CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)
### ANSWER
SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = "Magnús Ingi Helgason Tinna Helgadóttir" AND womens_singles = "Ragna Ingólfsdóttir" AND year = 2010 | {
"answer": "SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = \"Magnús Ingi Helgason Tinna Helgadóttir\" AND womens_singles = \"Ragna Ingólfsdóttir\" AND year = 2010",
"context": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)",
"question": "Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010"
} |
### QUESTION
How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles
### CONTEXT
CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
### ANSWER
SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = "Broddi Kristjánsson Drífa Harðardóttir" | {
"answer": "SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = \"Broddi Kristjánsson Drífa Harðardóttir\"",
"context": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)",
"question": "How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles"
} |
### QUESTION
Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles
### CONTEXT
CREATE TABLE table_14903999_1 (mens_singles VARCHAR, mens_doubles VARCHAR, womens_singles VARCHAR)
### ANSWER
SELECT mens_singles FROM table_14903999_1 WHERE mens_doubles = "Sveinn Logi Sölvason Tryggvi Nilsen" AND womens_singles = "Elsa Nielsen" | {
"answer": "SELECT mens_singles FROM table_14903999_1 WHERE mens_doubles = \"Sveinn Logi Sölvason Tryggvi Nilsen\" AND womens_singles = \"Elsa Nielsen\"",
"context": "CREATE TABLE table_14903999_1 (mens_singles VARCHAR, mens_doubles VARCHAR, womens_singles VARCHAR)",
"question": "Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles"
} |
### QUESTION
What is the result of men's doubles when there was no competition?
### CONTEXT
CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)
### ANSWER
SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = "no competition" | {
"answer": "SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = \"no competition\"",
"context": "CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)",
"question": "What is the result of men's doubles when there was no competition?"
} |
### QUESTION
What is the margin of victory in the race where Justin Rose was the runner-up?
### CONTEXT
CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
### ANSWER
SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = "justin rose" | {
"answer": "SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = \"justin rose\"",
"context": "CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR)",
"question": "What is the margin of victory in the race where Justin Rose was the runner-up?"
} |
### QUESTION
how many years has сенки been nominated?
### CONTEXT
CREATE TABLE table_14928423_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
### ANSWER
SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = "Сенки" | {
"answer": "SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = \"Сенки\"",
"context": "CREATE TABLE table_14928423_1 (year__ceremony_ VARCHAR, original_title VARCHAR)",
"question": "how many years has сенки been nominated?"
} |
### QUESTION
Which team was 3:47.761 on day 2?
### CONTEXT
CREATE TABLE table_name_78 (team VARCHAR, day_2 VARCHAR)
### ANSWER
SELECT team FROM table_name_78 WHERE day_2 = "3:47.761" | {
"answer": "SELECT team FROM table_name_78 WHERE day_2 = \"3:47.761\"",
"context": "CREATE TABLE table_name_78 (team VARCHAR, day_2 VARCHAR)",
"question": "Which team was 3:47.761 on day 2?"
} |
### QUESTION
Who is the second performer in episode 5?
### CONTEXT
CREATE TABLE table_14934885_1 (performer_2 VARCHAR, episode VARCHAR)
### ANSWER
SELECT performer_2 FROM table_14934885_1 WHERE episode = 5 | {
"answer": "SELECT performer_2 FROM table_14934885_1 WHERE episode = 5",
"context": "CREATE TABLE table_14934885_1 (performer_2 VARCHAR, episode VARCHAR)",
"question": "Who is the second performer in episode 5?"
} |
### QUESTION
How many wins for bruce fleisher with over 31 events?
### CONTEXT
CREATE TABLE table_name_16 (wins INTEGER, player VARCHAR, events VARCHAR)
### ANSWER
SELECT AVG(wins) FROM table_name_16 WHERE player = "bruce fleisher" AND events > 31 | {
"answer": "SELECT AVG(wins) FROM table_name_16 WHERE player = \"bruce fleisher\" AND events > 31",
"context": "CREATE TABLE table_name_16 (wins INTEGER, player VARCHAR, events VARCHAR)",
"question": "How many wins for bruce fleisher with over 31 events?"
} |
### QUESTION
Who is the opponent when the score was 6–4, 6–2 and the surface was clay?
### CONTEXT
CREATE TABLE table_name_94 (opponent VARCHAR, score VARCHAR, surface VARCHAR)
### ANSWER
SELECT opponent FROM table_name_94 WHERE score = "6–4, 6–2" AND surface = "clay" | {
"answer": "SELECT opponent FROM table_name_94 WHERE score = \"6–4, 6–2\" AND surface = \"clay\"",
"context": "CREATE TABLE table_name_94 (opponent VARCHAR, score VARCHAR, surface VARCHAR)",
"question": "Who is the opponent when the score was 6–4, 6–2 and the surface was clay?"
} |
### QUESTION
Name the german voice actor for rafael torres
### CONTEXT
CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR)
### ANSWER
SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = "Rafael Torres" | {
"answer": "SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = \"Rafael Torres\"",
"context": "CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR)",
"question": "Name the german voice actor for rafael torres"
} |
### QUESTION
I want the driver for ferrari who made Laps less than 26 and grids more than 9
### CONTEXT
CREATE TABLE table_name_69 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)
### ANSWER
SELECT driver FROM table_name_69 WHERE grid > 9 AND laps < 26 AND constructor = "ferrari" | {
"answer": "SELECT driver FROM table_name_69 WHERE grid > 9 AND laps < 26 AND constructor = \"ferrari\"",
"context": "CREATE TABLE table_name_69 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)",
"question": "I want the driver for ferrari who made Laps less than 26 and grids more than 9"
} |
### QUESTION
How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?
### CONTEXT
CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = "Tommy Johnson Category:Articles with hCards" | {
"answer": "SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = \"Tommy Johnson Category:Articles with hCards\"",
"context": "CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR)",
"question": "How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?"
} |
### QUESTION
What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?
### CONTEXT
CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)
### ANSWER
SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona" | {
"answer": "SELECT new_classification FROM table_14976504_2 WHERE institution = \"University of Arizona\"",
"context": "CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)",
"question": "What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?"
} |
### QUESTION
What is California State University, Hayward's new conference for Western Collegiate Lacrosse?
### CONTEXT
CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR)
### ANSWER
SELECT new_conference FROM table_14976504_2 WHERE institution = "California State University, Hayward" | {
"answer": "SELECT new_conference FROM table_14976504_2 WHERE institution = \"California State University, Hayward\"",
"context": "CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR)",
"question": "What is California State University, Hayward's new conference for Western Collegiate Lacrosse?"
} |
### QUESTION
who is the constructor when the grid is more than 23 and the driver is piercarlo ghinzani?
### CONTEXT
CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)
### ANSWER
SELECT constructor FROM table_name_66 WHERE grid > 23 AND driver = "piercarlo ghinzani" | {
"answer": "SELECT constructor FROM table_name_66 WHERE grid > 23 AND driver = \"piercarlo ghinzani\"",
"context": "CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)",
"question": "who is the constructor when the grid is more than 23 and the driver is piercarlo ghinzani?"
} |
### QUESTION
What is the result of the european indoor championships after 1974?
### CONTEXT
CREATE TABLE table_name_41 (result VARCHAR, tournament VARCHAR, year VARCHAR)
### ANSWER
SELECT result FROM table_name_41 WHERE tournament = "european indoor championships" AND year > 1974 | {
"answer": "SELECT result FROM table_name_41 WHERE tournament = \"european indoor championships\" AND year > 1974",
"context": "CREATE TABLE table_name_41 (result VARCHAR, tournament VARCHAR, year VARCHAR)",
"question": "What is the result of the european indoor championships after 1974?"
} |
### QUESTION
What is the highest evening gown score of the contestant from Tennessee with an interview score larger than 9.36 and an average larger than 9.75 have?
### CONTEXT
CREATE TABLE table_name_31 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, country VARCHAR)
### ANSWER
SELECT MAX(evening_gown) FROM table_name_31 WHERE interview > 9.36 AND country = "tennessee" AND average > 9.75 | {
"answer": "SELECT MAX(evening_gown) FROM table_name_31 WHERE interview > 9.36 AND country = \"tennessee\" AND average > 9.75",
"context": "CREATE TABLE table_name_31 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, country VARCHAR)",
"question": "What is the highest evening gown score of the contestant from Tennessee with an interview score larger than 9.36 and an average larger than 9.75 have?"
} |
### QUESTION
Who was the rookie who played when Matt Vinc was defensive and Pat Maddalena was offensive?
### CONTEXT
CREATE TABLE table_name_6 (rookie VARCHAR, defensive VARCHAR, offensive VARCHAR)
### ANSWER
SELECT rookie FROM table_name_6 WHERE defensive = "matt vinc" AND offensive = "pat maddalena" | {
"answer": "SELECT rookie FROM table_name_6 WHERE defensive = \"matt vinc\" AND offensive = \"pat maddalena\"",
"context": "CREATE TABLE table_name_6 (rookie VARCHAR, defensive VARCHAR, offensive VARCHAR)",
"question": "Who was the rookie who played when Matt Vinc was defensive and Pat Maddalena was offensive?"
} |
### QUESTION
Name the total number of population 2000 census for mesquita
### CONTEXT
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR)
### ANSWER
SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = "Mesquita" | {
"answer": "SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = \"Mesquita\"",
"context": "CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR)",
"question": "Name the total number of population 2000 census for mesquita"
} |
### QUESTION
Name the number of area where population density 2010 for 514
### CONTEXT
CREATE TABLE table_14986292_1 (area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR)
### ANSWER
SELECT COUNT(area__km²_) FROM table_14986292_1 WHERE population_density_2010___km²_ = 514 | {
"answer": "SELECT COUNT(area__km²_) FROM table_14986292_1 WHERE population_density_2010___km²_ = 514",
"context": "CREATE TABLE table_14986292_1 (area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR)",
"question": "Name the number of area where population density 2010 for 514"
} |
### QUESTION
What is the score for the away team when they played Hawthorn?
### CONTEXT
CREATE TABLE table_name_46 (away_team VARCHAR, home_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_46 WHERE home_team = "hawthorn" | {
"answer": "SELECT away_team AS score FROM table_name_46 WHERE home_team = \"hawthorn\"",
"context": "CREATE TABLE table_name_46 (away_team VARCHAR, home_team VARCHAR)",
"question": "What is the score for the away team when they played Hawthorn?"
} |
### QUESTION
What is the occupation of the candidate that has a riding of labrador?
### CONTEXT
CREATE TABLE table_name_11 (occupation VARCHAR, riding VARCHAR)
### ANSWER
SELECT occupation FROM table_name_11 WHERE riding = "labrador" | {
"answer": "SELECT occupation FROM table_name_11 WHERE riding = \"labrador\"",
"context": "CREATE TABLE table_name_11 (occupation VARCHAR, riding VARCHAR)",
"question": "What is the occupation of the candidate that has a riding of labrador?"
} |
### QUESTION
What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105?
### CONTEXT
CREATE TABLE table_name_61 (sinclair_coefficient INTEGER, sinclair_total VARCHAR, weight_class__kg_ VARCHAR)
### ANSWER
SELECT AVG(sinclair_coefficient) FROM table_name_61 WHERE sinclair_total = 477.2772023 AND weight_class__kg_ > 105 | {
"answer": "SELECT AVG(sinclair_coefficient) FROM table_name_61 WHERE sinclair_total = 477.2772023 AND weight_class__kg_ > 105",
"context": "CREATE TABLE table_name_61 (sinclair_coefficient INTEGER, sinclair_total VARCHAR, weight_class__kg_ VARCHAR)",
"question": "What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105?"
} |
### QUESTION
Which Date has an Opponent of manchester united, and a Venue A?
### CONTEXT
CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_31 WHERE opponent = "manchester united" AND venue = "a" | {
"answer": "SELECT date FROM table_name_31 WHERE opponent = \"manchester united\" AND venue = \"a\"",
"context": "CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, venue VARCHAR)",
"question": "Which Date has an Opponent of manchester united, and a Venue A?"
} |
### QUESTION
who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser
### CONTEXT
CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
### ANSWER
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Leopold Bauer Alfred Kohlhauser" | {
"answer": "SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = \"Leopold Bauer Alfred Kohlhauser\"",
"context": "CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)",
"question": "who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser"
} |
### QUESTION
What is the home teamscore for Richmond?
### CONTEXT
CREATE TABLE table_name_11 (home_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_11 WHERE home_team = "richmond" | {
"answer": "SELECT home_team AS score FROM table_name_11 WHERE home_team = \"richmond\"",
"context": "CREATE TABLE table_name_11 (home_team VARCHAR)",
"question": "What is the home teamscore for Richmond?"
} |
### QUESTION
How many different directors are associated with the writer Gaby Chiappe?
### CONTEXT
CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR)
### ANSWER
SELECT COUNT(director) FROM table_15026994_2 WHERE writer = "Gaby Chiappe" | {
"answer": "SELECT COUNT(director) FROM table_15026994_2 WHERE writer = \"Gaby Chiappe\"",
"context": "CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR)",
"question": "How many different directors are associated with the writer Gaby Chiappe?"
} |
### QUESTION
How many licenses have version 1.2.2.0?
### CONTEXT
CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR)
### ANSWER
SELECT COUNT(license) FROM table_15038373_1 WHERE version = "1.2.2.0" | {
"answer": "SELECT COUNT(license) FROM table_15038373_1 WHERE version = \"1.2.2.0\"",
"context": "CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR)",
"question": "How many licenses have version 1.2.2.0?"
} |
### QUESTION
Which Stage (Winner) has a Vladimir Karpets General classification and a Team classification of relax-gam, and a Points classification of Denis Menchov?
### CONTEXT
CREATE TABLE table_name_17 (stage__winner_ VARCHAR, points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)
### ANSWER
SELECT stage__winner_ FROM table_name_17 WHERE general_classification = "vladimir karpets" AND team_classification = "relax-gam" AND points_classification = "denis menchov" | {
"answer": "SELECT stage__winner_ FROM table_name_17 WHERE general_classification = \"vladimir karpets\" AND team_classification = \"relax-gam\" AND points_classification = \"denis menchov\"",
"context": "CREATE TABLE table_name_17 (stage__winner_ VARCHAR, points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)",
"question": "Which Stage (Winner) has a Vladimir Karpets General classification and a Team classification of relax-gam, and a Points classification of Denis Menchov?"
} |
### QUESTION
Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert?
### CONTEXT
CREATE TABLE table_name_58 (ice_level_reporters VARCHAR, year VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR)
### ANSWER
SELECT ice_level_reporters FROM table_name_58 WHERE color_commentator_s_ = "john davidson" AND play_by_play = "marv albert" AND year > 1992 | {
"answer": "SELECT ice_level_reporters FROM table_name_58 WHERE color_commentator_s_ = \"john davidson\" AND play_by_play = \"marv albert\" AND year > 1992",
"context": "CREATE TABLE table_name_58 (ice_level_reporters VARCHAR, year VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR)",
"question": "Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert?"
} |
### QUESTION
What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?
### CONTEXT
CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR)
### ANSWER
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821 | {
"answer": "SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821",
"context": "CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR)",
"question": "What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?"
} |
### QUESTION
If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?
### CONTEXT
CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
### ANSWER
SELECT mountains_classification FROM table_15059783_1 WHERE winner = "Alejandro Valverde" AND points_classification = "Erik Zabel" | {
"answer": "SELECT mountains_classification FROM table_15059783_1 WHERE winner = \"Alejandro Valverde\" AND points_classification = \"Erik Zabel\"",
"context": "CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)",
"question": "If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?"
} |
### QUESTION
How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?
### CONTEXT
CREATE TABLE table_15059783_1 (team_classification VARCHAR, combination_classification VARCHAR, points_classification VARCHAR)
### ANSWER
SELECT COUNT(team_classification) FROM table_15059783_1 WHERE combination_classification = "Alejandro Valverde" AND points_classification = "Alessandro Petacchi" | {
"answer": "SELECT COUNT(team_classification) FROM table_15059783_1 WHERE combination_classification = \"Alejandro Valverde\" AND points_classification = \"Alessandro Petacchi\"",
"context": "CREATE TABLE table_15059783_1 (team_classification VARCHAR, combination_classification VARCHAR, points_classification VARCHAR)",
"question": "How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?"
} |
### QUESTION
I want the total number of ends for filip šebo and Goals more than 2
### CONTEXT
CREATE TABLE table_name_67 (ends VARCHAR, name VARCHAR, goals VARCHAR)
### ANSWER
SELECT COUNT(ends) FROM table_name_67 WHERE name = "filip šebo" AND goals > 2 | {
"answer": "SELECT COUNT(ends) FROM table_name_67 WHERE name = \"filip šebo\" AND goals > 2",
"context": "CREATE TABLE table_name_67 (ends VARCHAR, name VARCHAR, goals VARCHAR)",
"question": "I want the total number of ends for filip šebo and Goals more than 2"
} |
### QUESTION
What number of win% has a postseason of did not qualify and rank larger than 8?
### CONTEXT
CREATE TABLE table_name_89 (win_percentage VARCHAR, postseason VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(win_percentage) FROM table_name_89 WHERE postseason = "did not qualify" AND rank > 8 | {
"answer": "SELECT COUNT(win_percentage) FROM table_name_89 WHERE postseason = \"did not qualify\" AND rank > 8",
"context": "CREATE TABLE table_name_89 (win_percentage VARCHAR, postseason VARCHAR, rank VARCHAR)",
"question": "What number of win% has a postseason of did not qualify and rank larger than 8?"
} |
### QUESTION
What team has Carlos Sánchez as a goalkeeper and an average below 1.12?
### CONTEXT
CREATE TABLE table_name_64 (team VARCHAR, average VARCHAR, goalkeeper VARCHAR)
### ANSWER
SELECT team FROM table_name_64 WHERE average < 1.12 AND goalkeeper = "carlos sánchez" | {
"answer": "SELECT team FROM table_name_64 WHERE average < 1.12 AND goalkeeper = \"carlos sánchez\"",
"context": "CREATE TABLE table_name_64 (team VARCHAR, average VARCHAR, goalkeeper VARCHAR)",
"question": "What team has Carlos Sánchez as a goalkeeper and an average below 1.12?"
} |
### QUESTION
when the nickname halley is used, what are the date completed
### CONTEXT
CREATE TABLE table_15070195_1 (date_completed VARCHAR, nickname VARCHAR)
### ANSWER
SELECT date_completed FROM table_15070195_1 WHERE nickname = "Halley" | {
"answer": "SELECT date_completed FROM table_15070195_1 WHERE nickname = \"Halley\"",
"context": "CREATE TABLE table_15070195_1 (date_completed VARCHAR, nickname VARCHAR)",
"question": "when the nickname halley is used, what are the date completed"
} |
### QUESTION
Who was the colour commentator when the play-by-play announcer was Bob Cole?
### CONTEXT
CREATE TABLE table_name_58 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)
### ANSWER
SELECT colour_commentator_s_ FROM table_name_58 WHERE play_by_play = "bob cole" | {
"answer": "SELECT colour_commentator_s_ FROM table_name_58 WHERE play_by_play = \"bob cole\"",
"context": "CREATE TABLE table_name_58 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)",
"question": "Who was the colour commentator when the play-by-play announcer was Bob Cole?"
} |
### QUESTION
How many descriptions are there when the attribute is "ondragstart"?
### CONTEXT
CREATE TABLE table_1507852_1 (description VARCHAR, attribute VARCHAR)
### ANSWER
SELECT COUNT(description) FROM table_1507852_1 WHERE attribute = "ondragstart" | {
"answer": "SELECT COUNT(description) FROM table_1507852_1 WHERE attribute = \"ondragstart\"",
"context": "CREATE TABLE table_1507852_1 (description VARCHAR, attribute VARCHAR)",
"question": "How many descriptions are there when the attribute is \"ondragstart\"?"
} |
### QUESTION
Name all the team clasification where the combination classification is mederic clain
### CONTEXT
CREATE TABLE table_15088557_1 (team_classification VARCHAR, combination_classification VARCHAR)
### ANSWER
SELECT team_classification FROM table_15088557_1 WHERE combination_classification = "Mederic Clain" | {
"answer": "SELECT team_classification FROM table_15088557_1 WHERE combination_classification = \"Mederic Clain\"",
"context": "CREATE TABLE table_15088557_1 (team_classification VARCHAR, combination_classification VARCHAR)",
"question": "Name all the team clasification where the combination classification is mederic clain"
} |
### QUESTION
What is the high cap total for a lock with the vicenza rangers?
### CONTEXT
CREATE TABLE table_name_55 (caps INTEGER, position VARCHAR, club_province VARCHAR)
### ANSWER
SELECT MAX(caps) FROM table_name_55 WHERE position = "lock" AND club_province = "vicenza rangers" | {
"answer": "SELECT MAX(caps) FROM table_name_55 WHERE position = \"lock\" AND club_province = \"vicenza rangers\"",
"context": "CREATE TABLE table_name_55 (caps INTEGER, position VARCHAR, club_province VARCHAR)",
"question": "What is the high cap total for a lock with the vicenza rangers?"
} |
### QUESTION
What is the minimum stage where Sergei Smetanine won?
### CONTEXT
CREATE TABLE table_15088557_1 (stage INTEGER, winner VARCHAR)
### ANSWER
SELECT MIN(stage) FROM table_15088557_1 WHERE winner = "Sergei Smetanine" | {
"answer": "SELECT MIN(stage) FROM table_15088557_1 WHERE winner = \"Sergei Smetanine\"",
"context": "CREATE TABLE table_15088557_1 (stage INTEGER, winner VARCHAR)",
"question": "What is the minimum stage where Sergei Smetanine won?"
} |
### QUESTION
How many countries does honoree Roberto de Vicenzo represent?
### CONTEXT
CREATE TABLE table_1515346_2 (country VARCHAR, honoree_s_ VARCHAR)
### ANSWER
SELECT COUNT(country) FROM table_1515346_2 WHERE honoree_s_ = "Roberto De Vicenzo" | {
"answer": "SELECT COUNT(country) FROM table_1515346_2 WHERE honoree_s_ = \"Roberto De Vicenzo\"",
"context": "CREATE TABLE table_1515346_2 (country VARCHAR, honoree_s_ VARCHAR)",
"question": "How many countries does honoree Roberto de Vicenzo represent?"
} |
### QUESTION
Who did the fastest lap when pole position was damon hill and the location was magny-cours?
### CONTEXT
CREATE TABLE table_name_33 (fastest_lap VARCHAR, pole_position VARCHAR, location VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_name_33 WHERE pole_position = "damon hill" AND location = "magny-cours" | {
"answer": "SELECT fastest_lap FROM table_name_33 WHERE pole_position = \"damon hill\" AND location = \"magny-cours\"",
"context": "CREATE TABLE table_name_33 (fastest_lap VARCHAR, pole_position VARCHAR, location VARCHAR)",
"question": "Who did the fastest lap when pole position was damon hill and the location was magny-cours?"
} |
### QUESTION
Name the segment b for 167
### CONTEXT
CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR)
### ANSWER
SELECT segment_b FROM table_15187735_13 WHERE episode = 167 | {
"answer": "SELECT segment_b FROM table_15187735_13 WHERE episode = 167",
"context": "CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR)",
"question": "Name the segment b for 167"
} |
### QUESTION
How many votes did 3rd ranking candidate Mary Louise Lorefice receive?
### CONTEXT
CREATE TABLE table_name_48 (votes VARCHAR, rank VARCHAR, candidate VARCHAR)
### ANSWER
SELECT COUNT(votes) FROM table_name_48 WHERE rank = "3rd" AND candidate = "mary louise lorefice" | {
"answer": "SELECT COUNT(votes) FROM table_name_48 WHERE rank = \"3rd\" AND candidate = \"mary louise lorefice\"",
"context": "CREATE TABLE table_name_48 (votes VARCHAR, rank VARCHAR, candidate VARCHAR)",
"question": "How many votes did 3rd ranking candidate Mary Louise Lorefice receive?"
} |
### QUESTION
Name the segment b for s dress form
### CONTEXT
CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_a VARCHAR)
### ANSWER
SELECT segment_b FROM table_15187735_10 WHERE segment_a = "s Dress Form" | {
"answer": "SELECT segment_b FROM table_15187735_10 WHERE segment_a = \"s Dress Form\"",
"context": "CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_a VARCHAR)",
"question": "Name the segment b for s dress form"
} |
### QUESTION
What is Segment A where Segment C is Sushi (part 1)?
### CONTEXT
CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_c VARCHAR)
### ANSWER
SELECT segment_a FROM table_15187735_15 WHERE segment_c = "Sushi (Part 1)" | {
"answer": "SELECT segment_a FROM table_15187735_15 WHERE segment_c = \"Sushi (Part 1)\"",
"context": "CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_c VARCHAR)",
"question": "What is Segment A where Segment C is Sushi (part 1)? "
} |
### QUESTION
Which episode has segment D on custom motorcycle tanks?
### CONTEXT
CREATE TABLE table_15187735_20 (episode INTEGER, segment_d VARCHAR)
### ANSWER
SELECT MIN(episode) FROM table_15187735_20 WHERE segment_d = "Custom Motorcycle Tanks" | {
"answer": "SELECT MIN(episode) FROM table_15187735_20 WHERE segment_d = \"Custom Motorcycle Tanks\"",
"context": "CREATE TABLE table_15187735_20 (episode INTEGER, segment_d VARCHAR)",
"question": "Which episode has segment D on custom motorcycle tanks?"
} |
### QUESTION
Whats the season/episode of segment a digital dentistry
### CONTEXT
CREATE TABLE table_15187735_16 (netflix VARCHAR, segment_a VARCHAR)
### ANSWER
SELECT netflix FROM table_15187735_16 WHERE segment_a = "Digital Dentistry" | {
"answer": "SELECT netflix FROM table_15187735_16 WHERE segment_a = \"Digital Dentistry\"",
"context": "CREATE TABLE table_15187735_16 (netflix VARCHAR, segment_a VARCHAR)",
"question": "Whats the season/episode of segment a digital dentistry"
} |
### QUESTION
Name the least episode for fibre cement siding
### CONTEXT
CREATE TABLE table_15187735_18 (episode INTEGER, segment_d VARCHAR)
### ANSWER
SELECT MIN(episode) FROM table_15187735_18 WHERE segment_d = "Fibre Cement Siding" | {
"answer": "SELECT MIN(episode) FROM table_15187735_18 WHERE segment_d = \"Fibre Cement Siding\"",
"context": "CREATE TABLE table_15187735_18 (episode INTEGER, segment_d VARCHAR)",
"question": "Name the least episode for fibre cement siding"
} |
### QUESTION
What is the segment C of the episode where segment B is Film Digitization?
### CONTEXT
CREATE TABLE table_15187735_19 (segment_c VARCHAR, segment_b VARCHAR)
### ANSWER
SELECT segment_c FROM table_15187735_19 WHERE segment_b = "Film Digitization" | {
"answer": "SELECT segment_c FROM table_15187735_19 WHERE segment_b = \"Film Digitization\"",
"context": "CREATE TABLE table_15187735_19 (segment_c VARCHAR, segment_b VARCHAR)",
"question": "What is the segment C of the episode where segment B is Film Digitization?"
} |
### QUESTION
What is the segment A on episode 237?
### CONTEXT
CREATE TABLE table_15187735_19 (segment_a VARCHAR, episode VARCHAR)
### ANSWER
SELECT segment_a FROM table_15187735_19 WHERE episode = 237 | {
"answer": "SELECT segment_a FROM table_15187735_19 WHERE episode = 237",
"context": "CREATE TABLE table_15187735_19 (segment_a VARCHAR, episode VARCHAR)",
"question": "What is the segment A on episode 237?"
} |
### QUESTION
Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26
### CONTEXT
CREATE TABLE table_name_75 (fs VARCHAR, sp VARCHAR, points VARCHAR, rank VARCHAR, nation VARCHAR)
### ANSWER
SELECT COUNT(sp) + fs FROM table_name_75 WHERE rank > 8 AND nation = "netherlands" AND points > 127.26 | {
"answer": "SELECT COUNT(sp) + fs FROM table_name_75 WHERE rank > 8 AND nation = \"netherlands\" AND points > 127.26",
"context": "CREATE TABLE table_name_75 (fs VARCHAR, sp VARCHAR, points VARCHAR, rank VARCHAR, nation VARCHAR)",
"question": "Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26"
} |
### QUESTION
Name the total number of SP+FS for places of 60 and points more than 151.66
### CONTEXT
CREATE TABLE table_name_28 (fs VARCHAR, sp VARCHAR, places VARCHAR, points VARCHAR)
### ANSWER
SELECT COUNT(sp) + fs FROM table_name_28 WHERE places = 60 AND points > 151.66 | {
"answer": "SELECT COUNT(sp) + fs FROM table_name_28 WHERE places = 60 AND points > 151.66",
"context": "CREATE TABLE table_name_28 (fs VARCHAR, sp VARCHAR, places VARCHAR, points VARCHAR)",
"question": "Name the total number of SP+FS for places of 60 and points more than 151.66"
} |
### QUESTION
What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?
### CONTEXT
CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)
### ANSWER
SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = "georgia" | {
"answer": "SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = \"georgia\"",
"context": "CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)",
"question": "What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?"
} |
### QUESTION
What was the attendance of the bowl game in Gainesville, Fl?
### CONTEXT
CREATE TABLE table_15190346_2 (attendance VARCHAR, location VARCHAR)
### ANSWER
SELECT attendance FROM table_15190346_2 WHERE location = "Gainesville, FL" | {
"answer": "SELECT attendance FROM table_15190346_2 WHERE location = \"Gainesville, FL\"",
"context": "CREATE TABLE table_15190346_2 (attendance VARCHAR, location VARCHAR)",
"question": "What was the attendance of the bowl game in Gainesville, Fl?"
} |
### QUESTION
Name the total number of median income for population 2006 for 365540
### CONTEXT
CREATE TABLE table_151994_1 (median_monthly_per_capita___labour_force_income__hkd_ VARCHAR, population__2006_est_ VARCHAR)
### ANSWER
SELECT COUNT(median_monthly_per_capita___labour_force_income__hkd_) FROM table_151994_1 WHERE population__2006_est_ = 365540 | {
"answer": "SELECT COUNT(median_monthly_per_capita___labour_force_income__hkd_) FROM table_151994_1 WHERE population__2006_est_ = 365540",
"context": "CREATE TABLE table_151994_1 (median_monthly_per_capita___labour_force_income__hkd_ VARCHAR, population__2006_est_ VARCHAR)",
"question": "Name the total number of median income for population 2006 for 365540"
} |
### QUESTION
What was the original title of the Bruno Barreto film in 1989
### CONTEXT
CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR, year__ceremony_ VARCHAR)
### ANSWER
SELECT original_title FROM table_15277629_1 WHERE director = "Bruno Barreto" AND year__ceremony_ = 1989 | {
"answer": "SELECT original_title FROM table_15277629_1 WHERE director = \"Bruno Barreto\" AND year__ceremony_ = 1989",
"context": "CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR, year__ceremony_ VARCHAR)",
"question": "What was the original title of the Bruno Barreto film in 1989"
} |
### QUESTION
Who is in group a when indiana is in group d?
### CONTEXT
CREATE TABLE table_15290638_1 (group_a VARCHAR, group_d VARCHAR)
### ANSWER
SELECT group_a FROM table_15290638_1 WHERE group_d = "Indiana" | {
"answer": "SELECT group_a FROM table_15290638_1 WHERE group_d = \"Indiana\"",
"context": "CREATE TABLE table_15290638_1 (group_a VARCHAR, group_d VARCHAR)",
"question": "Who is in group a when indiana is in group d?"
} |
### QUESTION
Name the religion for Former Experience of commissioner of health and assumed office before 2005
### CONTEXT
CREATE TABLE table_name_73 (religion VARCHAR, assumed_office VARCHAR, former_experience VARCHAR)
### ANSWER
SELECT religion FROM table_name_73 WHERE assumed_office < 2005 AND former_experience = "commissioner of health" | {
"answer": "SELECT religion FROM table_name_73 WHERE assumed_office < 2005 AND former_experience = \"commissioner of health\"",
"context": "CREATE TABLE table_name_73 (religion VARCHAR, assumed_office VARCHAR, former_experience VARCHAR)",
"question": "Name the religion for Former Experience of commissioner of health and assumed office before 2005"
} |
### QUESTION
Who is Jason Leffler's primary sponsor?
### CONTEXT
CREATE TABLE table_1529793_1 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)
### ANSWER
SELECT primary_sponsor_s_ FROM table_1529793_1 WHERE driver_s_ = "Jason Leffler" | {
"answer": "SELECT primary_sponsor_s_ FROM table_1529793_1 WHERE driver_s_ = \"Jason Leffler\"",
"context": "CREATE TABLE table_1529793_1 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)",
"question": "Who is Jason Leffler's primary sponsor?"
} |
### QUESTION
When the team classification was quick step, what was the total number of general classifications?
### CONTEXT
CREATE TABLE table_15294880_2 (general_classification VARCHAR, team_classification VARCHAR)
### ANSWER
SELECT COUNT(general_classification) FROM table_15294880_2 WHERE team_classification = "Quick Step" | {
"answer": "SELECT COUNT(general_classification) FROM table_15294880_2 WHERE team_classification = \"Quick Step\"",
"context": "CREATE TABLE table_15294880_2 (general_classification VARCHAR, team_classification VARCHAR)",
"question": "When the team classification was quick step, what was the total number of general classifications?"
} |
### QUESTION
If the coordinate velocity v dx/dt in units of c is (e 2 − 1)/(e 2 + 1) ≅ 0.761, what is the velocity angle η in i-radians?
### CONTEXT
CREATE TABLE table_15314901_1 (velocity_angle_η_in_i_radians VARCHAR, coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR)
### ANSWER
SELECT velocity_angle_η_in_i_radians FROM table_15314901_1 WHERE coordinate_velocity_v_dx_dt_in_units_of_c = "(e 2 − 1)/(e 2 + 1) ≅ 0.761" | {
"answer": "SELECT velocity_angle_η_in_i_radians FROM table_15314901_1 WHERE coordinate_velocity_v_dx_dt_in_units_of_c = \"(e 2 − 1)/(e 2 + 1) ≅ 0.761\"",
"context": "CREATE TABLE table_15314901_1 (velocity_angle_η_in_i_radians VARCHAR, coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR)",
"question": "If the coordinate velocity v dx/dt in units of c is (e 2 − 1)/(e 2 + 1) ≅ 0.761, what is the velocity angle η in i-radians?"
} |
### QUESTION
What is the coordinate velocity v dx/dt in units of c total number if the velocity angle η in i-radians is ln[2 + √5] ≅ 1.444?
### CONTEXT
CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, velocity_angle_η_in_i_radians VARCHAR)
### ANSWER
SELECT COUNT(coordinate_velocity_v_dx_dt_in_units_of_c) FROM table_15314901_1 WHERE velocity_angle_η_in_i_radians = "ln[2 + √5] ≅ 1.444" | {
"answer": "SELECT COUNT(coordinate_velocity_v_dx_dt_in_units_of_c) FROM table_15314901_1 WHERE velocity_angle_η_in_i_radians = \"ln[2 + √5] ≅ 1.444\"",
"context": "CREATE TABLE table_15314901_1 (coordinate_velocity_v_dx_dt_in_units_of_c VARCHAR, velocity_angle_η_in_i_radians VARCHAR)",
"question": "What is the coordinate velocity v dx/dt in units of c total number if the velocity angle η in i-radians is ln[2 + √5] ≅ 1.444?"
} |
### QUESTION
If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/dτ in units of c?
### CONTEXT
CREATE TABLE table_15314901_1 (proper_velocity_w_dx_dτ_in_units_of_c VARCHAR, condition_parameter VARCHAR)
### ANSWER
SELECT proper_velocity_w_dx_dτ_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = "Rapidity of 1 hyperbolic radian" | {
"answer": "SELECT proper_velocity_w_dx_dτ_in_units_of_c FROM table_15314901_1 WHERE condition_parameter = \"Rapidity of 1 hyperbolic radian\"",
"context": "CREATE TABLE table_15314901_1 (proper_velocity_w_dx_dτ_in_units_of_c VARCHAR, condition_parameter VARCHAR)",
"question": "If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/dτ in units of c?"
} |
### QUESTION
Who was the away team at Arden Street Oval?
### CONTEXT
CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team FROM table_name_20 WHERE venue = "arden street oval" | {
"answer": "SELECT away_team FROM table_name_20 WHERE venue = \"arden street oval\"",
"context": "CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR)",
"question": "Who was the away team at Arden Street Oval?"
} |
### QUESTION
Name the most losst for corinthians
### CONTEXT
CREATE TABLE table_15319684_1 (lost INTEGER, team VARCHAR)
### ANSWER
SELECT MIN(lost) FROM table_15319684_1 WHERE team = "Corinthians" | {
"answer": "SELECT MIN(lost) FROM table_15319684_1 WHERE team = \"Corinthians\"",
"context": "CREATE TABLE table_15319684_1 (lost INTEGER, team VARCHAR)",
"question": "Name the most losst for corinthians"
} |
### QUESTION
What was the percentage of muslims during a time where there were 614 registered mosques?
### CONTEXT
CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, registered_mosques VARCHAR)
### ANSWER
SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE registered_mosques = 614 | {
"answer": "SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE registered_mosques = 614",
"context": "CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, registered_mosques VARCHAR)",
"question": "What was the percentage of muslims during a time where there were 614 registered mosques?"
} |
### QUESTION
Name the number ends won when L is 4 and stolen ends is 17
### CONTEXT
CREATE TABLE table_15333005_1 (Ends VARCHAR, l VARCHAR, stolen_ends VARCHAR)
### ANSWER
SELECT COUNT(Ends) AS won FROM table_15333005_1 WHERE l = 4 AND stolen_ends = 17 | {
"answer": "SELECT COUNT(Ends) AS won FROM table_15333005_1 WHERE l = 4 AND stolen_ends = 17",
"context": "CREATE TABLE table_15333005_1 (Ends VARCHAR, l VARCHAR, stolen_ends VARCHAR)",
"question": "Name the number ends won when L is 4 and stolen ends is 17"
} |
### QUESTION
What was the venue on October 16, 1996?
### CONTEXT
CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)
### ANSWER
SELECT venue FROM table_name_13 WHERE date = "october 16, 1996" | {
"answer": "SELECT venue FROM table_name_13 WHERE date = \"october 16, 1996\"",
"context": "CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR)",
"question": "What was the venue on October 16, 1996?"
} |
### QUESTION
What year was the class 253 larger than 18 built?
### CONTEXT
CREATE TABLE table_name_10 (year_built VARCHAR, class VARCHAR, number VARCHAR)
### ANSWER
SELECT year_built FROM table_name_10 WHERE class = "class 253" AND number > 18 | {
"answer": "SELECT year_built FROM table_name_10 WHERE class = \"class 253\" AND number > 18",
"context": "CREATE TABLE table_name_10 (year_built VARCHAR, class VARCHAR, number VARCHAR)",
"question": "What year was the class 253 larger than 18 built?"
} |
### QUESTION
What is the margin for the Masters Tournament (2) championship?
### CONTEXT
CREATE TABLE table_name_34 (margin VARCHAR, championship VARCHAR)
### ANSWER
SELECT margin FROM table_name_34 WHERE championship = "masters tournament (2)" | {
"answer": "SELECT margin FROM table_name_34 WHERE championship = \"masters tournament (2)\"",
"context": "CREATE TABLE table_name_34 (margin VARCHAR, championship VARCHAR)",
"question": "What is the margin for the Masters Tournament (2) championship?"
} |
### QUESTION
How many Drawn does the team Portuguesa Santista have?
### CONTEXT
CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)
### ANSWER
SELECT drawn FROM table_15352382_1 WHERE team = "Portuguesa Santista" | {
"answer": "SELECT drawn FROM table_15352382_1 WHERE team = \"Portuguesa Santista\"",
"context": "CREATE TABLE table_15352382_1 (drawn VARCHAR, team VARCHAR)",
"question": "How many Drawn does the team Portuguesa Santista have?"
} |
### QUESTION
How many vieweres for the episode with a share of 1, a Rating larger than 0.7000000000000001, and a Rank (#) of 100/102?
### CONTEXT
CREATE TABLE table_name_73 (viewers__m_ VARCHAR, rank___number_ VARCHAR, share VARCHAR, rating VARCHAR)
### ANSWER
SELECT viewers__m_ FROM table_name_73 WHERE share = 1 AND rating > 0.7000000000000001 AND rank___number_ = "100/102" | {
"answer": "SELECT viewers__m_ FROM table_name_73 WHERE share = 1 AND rating > 0.7000000000000001 AND rank___number_ = \"100/102\"",
"context": "CREATE TABLE table_name_73 (viewers__m_ VARCHAR, rank___number_ VARCHAR, share VARCHAR, rating VARCHAR)",
"question": "How many vieweres for the episode with a share of 1, a Rating larger than 0.7000000000000001, and a Rank (#) of 100/102?"
} |
### QUESTION
How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?
### CONTEXT
CREATE TABLE table_15358729_6 (average_weekly_rank VARCHAR, average_nightly_rank VARCHAR)
### ANSWER
SELECT COUNT(average_weekly_rank) FROM table_15358729_6 WHERE average_nightly_rank = "No. 2" | {
"answer": "SELECT COUNT(average_weekly_rank) FROM table_15358729_6 WHERE average_nightly_rank = \"No. 2\"",
"context": "CREATE TABLE table_15358729_6 (average_weekly_rank VARCHAR, average_nightly_rank VARCHAR)",
"question": "How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?"
} |
### QUESTION
Who was the away team at Junction Oval?
### CONTEXT
CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team FROM table_name_63 WHERE venue = "junction oval" | {
"answer": "SELECT away_team FROM table_name_63 WHERE venue = \"junction oval\"",
"context": "CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)",
"question": "Who was the away team at Junction Oval?"
} |
### QUESTION
What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4?
### CONTEXT
CREATE TABLE table_name_99 (total VARCHAR, usca VARCHAR, joint_music_award VARCHAR, rthk VARCHAR)
### ANSWER
SELECT total FROM table_name_99 WHERE joint_music_award = "1" AND rthk = "4" AND usca = "4" | {
"answer": "SELECT total FROM table_name_99 WHERE joint_music_award = \"1\" AND rthk = \"4\" AND usca = \"4\"",
"context": "CREATE TABLE table_name_99 (total VARCHAR, usca VARCHAR, joint_music_award VARCHAR, rthk VARCHAR)",
"question": "What is the Total with a Joint Music Award of 1, RTHK of 4, and USCA of 4?"
} |
### QUESTION
Name the difference for when drawn is larger than 2.0
### CONTEXT
CREATE TABLE table_15400878_1 (difference VARCHAR, drawn INTEGER)
### ANSWER
SELECT difference FROM table_15400878_1 WHERE drawn > 2.0 | {
"answer": "SELECT difference FROM table_15400878_1 WHERE drawn > 2.0",
"context": "CREATE TABLE table_15400878_1 (difference VARCHAR, drawn INTEGER)",
"question": "Name the difference for when drawn is larger than 2.0"
} |
### QUESTION
How many figures are there for wheels for LMS numbers 16377-9?
### CONTEXT
CREATE TABLE table_15412381_5 (wheels VARCHAR, lms_nos VARCHAR)
### ANSWER
SELECT COUNT(wheels) FROM table_15412381_5 WHERE lms_nos = "16377-9" | {
"answer": "SELECT COUNT(wheels) FROM table_15412381_5 WHERE lms_nos = \"16377-9\"",
"context": "CREATE TABLE table_15412381_5 (wheels VARCHAR, lms_nos VARCHAR)",
"question": "How many figures are there for wheels for LMS numbers 16377-9?"
} |
### QUESTION
what is the most laps with the time/retired is differential and the grid is more than 2?
### CONTEXT
CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
### ANSWER
SELECT MAX(laps) FROM table_name_35 WHERE time_retired = "differential" AND grid > 2 | {
"answer": "SELECT MAX(laps) FROM table_name_35 WHERE time_retired = \"differential\" AND grid > 2",
"context": "CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)",
"question": "what is the most laps with the time/retired is differential and the grid is more than 2?"
} |
### QUESTION
On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?
### CONTEXT
CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR)
### ANSWER
SELECT deleted FROM table_name_35 WHERE listed = "09/21/1984" AND name = "stauffer chemical company (lemoyne plant)" | {
"answer": "SELECT deleted FROM table_name_35 WHERE listed = \"09/21/1984\" AND name = \"stauffer chemical company (lemoyne plant)\"",
"context": "CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR)",
"question": "On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?"
} |
### QUESTION
Name the fifth district for william womer
### CONTEXT
CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)
### ANSWER
SELECT fifth_district FROM table_15442974_1 WHERE third_district = "William Womer" | {
"answer": "SELECT fifth_district FROM table_15442974_1 WHERE third_district = \"William Womer\"",
"context": "CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)",
"question": "Name the fifth district for william womer"
} |
### QUESTION
Name the fourth district for beverly bodem
### CONTEXT
CREATE TABLE table_15442974_1 (fourth_district VARCHAR, first_district VARCHAR)
### ANSWER
SELECT fourth_district FROM table_15442974_1 WHERE first_district = "Beverly Bodem" | {
"answer": "SELECT fourth_district FROM table_15442974_1 WHERE first_district = \"Beverly Bodem\"",
"context": "CREATE TABLE table_15442974_1 (fourth_district VARCHAR, first_district VARCHAR)",
"question": "Name the fourth district for beverly bodem"
} |
### QUESTION
Name the number for fifth district for richard houskamp
### CONTEXT
CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)
### ANSWER
SELECT COUNT(fifth_district) FROM table_15442974_1 WHERE third_district = "Richard Houskamp" | {
"answer": "SELECT COUNT(fifth_district) FROM table_15442974_1 WHERE third_district = \"Richard Houskamp\"",
"context": "CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR)",
"question": "Name the number for fifth district for richard houskamp"
} |
### QUESTION
What was the school/club team whose season was in 2012 and were acquired via trade?
### CONTEXT
CREATE TABLE table_15463188_17 (school_club_team VARCHAR, season VARCHAR, acquisition_via VARCHAR)
### ANSWER
SELECT school_club_team FROM table_15463188_17 WHERE season = "2012" AND acquisition_via = "Trade" | {
"answer": "SELECT school_club_team FROM table_15463188_17 WHERE season = \"2012\" AND acquisition_via = \"Trade\"",
"context": "CREATE TABLE table_15463188_17 (school_club_team VARCHAR, season VARCHAR, acquisition_via VARCHAR)",
"question": "What was the school/club team whose season was in 2012 and were acquired via trade? "
} |
### QUESTION
What is the free sotware with the latest stable date version of 1.1?
### CONTEXT
CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)
### ANSWER
SELECT software FROM table_name_78 WHERE cost___usd__ = "free" AND latest_stable_date__version_ = "1.1" | {
"answer": "SELECT software FROM table_name_78 WHERE cost___usd__ = \"free\" AND latest_stable_date__version_ = \"1.1\"",
"context": "CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)",
"question": "What is the free sotware with the latest stable date version of 1.1?"
} |
### QUESTION
Which date's visitor was jazz, when the leading scorer was Mehmet Okur (22)?
### CONTEXT
CREATE TABLE table_name_4 (date VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
### ANSWER
SELECT date FROM table_name_4 WHERE visitor = "jazz" AND leading_scorer = "mehmet okur (22)" | {
"answer": "SELECT date FROM table_name_4 WHERE visitor = \"jazz\" AND leading_scorer = \"mehmet okur (22)\"",
"context": "CREATE TABLE table_name_4 (date VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)",
"question": "Which date's visitor was jazz, when the leading scorer was Mehmet Okur (22)?"
} |
### QUESTION
In which condition(s) is bleeding time prolonged and prothrombin time unaffected?
### CONTEXT
CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
### ANSWER
SELECT condition FROM table_1555308_1 WHERE bleeding_time = "Prolonged" AND prothrombin_time = "Unaffected" | {
"answer": "SELECT condition FROM table_1555308_1 WHERE bleeding_time = \"Prolonged\" AND prothrombin_time = \"Unaffected\"",
"context": "CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)",
"question": "In which condition(s) is bleeding time prolonged and prothrombin time unaffected?"
} |
### QUESTION
What Club has Fiba European Champion's Cup and an Italian Cup?
### CONTEXT
CREATE TABLE table_name_27 (club VARCHAR, european_cup VARCHAR, national_cup VARCHAR)
### ANSWER
SELECT club FROM table_name_27 WHERE european_cup = "fiba european champion's cup" AND national_cup = "italian cup" | {
"answer": "SELECT club FROM table_name_27 WHERE european_cup = \"fiba european champion's cup\" AND national_cup = \"italian cup\"",
"context": "CREATE TABLE table_name_27 (club VARCHAR, european_cup VARCHAR, national_cup VARCHAR)",
"question": "What Club has Fiba European Champion's Cup and an Italian Cup?"
} |
### QUESTION
Who currently affiliates in San Francisco - Oakland - San Jose?
### CONTEXT
CREATE TABLE table_1553485_1 (current_affiliation VARCHAR, city_of_license__market VARCHAR)
### ANSWER
SELECT current_affiliation FROM table_1553485_1 WHERE city_of_license__market = "San Francisco - Oakland - San Jose" | {
"answer": "SELECT current_affiliation FROM table_1553485_1 WHERE city_of_license__market = \"San Francisco - Oakland - San Jose\"",
"context": "CREATE TABLE table_1553485_1 (current_affiliation VARCHAR, city_of_license__market VARCHAR)",
"question": "Who currently affiliates in San Francisco - Oakland - San Jose?"
} |
### QUESTION
What is the percentage of total area in the ecozone that the percentage protected is 8.06?
### CONTEXT
CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR)
### ANSWER
SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = "8.06" | {
"answer": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = \"8.06\"",
"context": "CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR)",
"question": "What is the percentage of total area in the ecozone that the percentage protected is 8.06?"
} |
### QUESTION
Name the number of proto austronesian for *natu
### CONTEXT
CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)
### ANSWER
SELECT COUNT(proto_austronesian) FROM table_15568886_14 WHERE proto_oceanic = "*natu" | {
"answer": "SELECT COUNT(proto_austronesian) FROM table_15568886_14 WHERE proto_oceanic = \"*natu\"",
"context": "CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)",
"question": "Name the number of proto austronesian for *natu"
} |
### QUESTION
How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437?
### CONTEXT
CREATE TABLE table_name_52 (pommel_horse VARCHAR, vault VARCHAR, total VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(pommel_horse) FROM table_name_52 WHERE total < 230.019 AND team = "china (chn)" AND vault < 38.437 | {
"answer": "SELECT COUNT(pommel_horse) FROM table_name_52 WHERE total < 230.019 AND team = \"china (chn)\" AND vault < 38.437",
"context": "CREATE TABLE table_name_52 (pommel_horse VARCHAR, vault VARCHAR, total VARCHAR, team VARCHAR)",
"question": "How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437?"
} |
### QUESTION
What was the studio for The Hard Way in 1943?
### CONTEXT
CREATE TABLE table_name_77 (studio VARCHAR, year VARCHAR, title VARCHAR)
### ANSWER
SELECT studio FROM table_name_77 WHERE year = 1943 AND title = "the hard way" | {
"answer": "SELECT studio FROM table_name_77 WHERE year = 1943 AND title = \"the hard way\"",
"context": "CREATE TABLE table_name_77 (studio VARCHAR, year VARCHAR, title VARCHAR)",
"question": "What was the studio for The Hard Way in 1943?"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.