text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
What is the digital reaction for week of top 5 for Taylor Hicks?
### CONTEXT
CREATE TABLE table_name_20 (hot_digital_songs_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)
### ANSWER
SELECT hot_digital_songs_reaction FROM table_name_20 WHERE week = "top 5" AND performer_s_ = "taylor hicks" | {
"answer": "SELECT hot_digital_songs_reaction FROM table_name_20 WHERE week = \"top 5\" AND performer_s_ = \"taylor hicks\"",
"context": "CREATE TABLE table_name_20 (hot_digital_songs_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)",
"question": "What is the digital reaction for week of top 5 for Taylor Hicks?"
} |
### QUESTION
How many different kinds of reports are there for races that Juan Manuel Fangio won?
### CONTEXT
CREATE TABLE table_1140111_5 (report VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT COUNT(report) FROM table_1140111_5 WHERE winning_driver = "Juan Manuel Fangio" | {
"answer": "SELECT COUNT(report) FROM table_1140111_5 WHERE winning_driver = \"Juan Manuel Fangio\"",
"context": "CREATE TABLE table_1140111_5 (report VARCHAR, winning_driver VARCHAR)",
"question": "How many different kinds of reports are there for races that Juan Manuel Fangio won?"
} |
### QUESTION
Which format had a United States region and a date of August 11, 2009?
### CONTEXT
CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)
### ANSWER
SELECT format FROM table_name_92 WHERE region = "united states" AND date = "august 11, 2009" | {
"answer": "SELECT format FROM table_name_92 WHERE region = \"united states\" AND date = \"august 11, 2009\"",
"context": "CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)",
"question": "Which format had a United States region and a date of August 11, 2009?"
} |
### QUESTION
What is the original air date when there were 12.81 million u.s viewers?
### CONTEXT
CREATE TABLE table_11404452_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT original_air_date FROM table_11404452_1 WHERE us_viewers__millions_ = "12.81" | {
"answer": "SELECT original_air_date FROM table_11404452_1 WHERE us_viewers__millions_ = \"12.81\"",
"context": "CREATE TABLE table_11404452_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)",
"question": "What is the original air date when there were 12.81 million u.s viewers?"
} |
### QUESTION
How many opponents were there at the game with 64,087 people in attendance?
### CONTEXT
CREATE TABLE table_11465521_2 (opponent VARCHAR, attendance VARCHAR)
### ANSWER
SELECT COUNT(opponent) FROM table_11465521_2 WHERE attendance = "64,087" | {
"answer": "SELECT COUNT(opponent) FROM table_11465521_2 WHERE attendance = \"64,087\"",
"context": "CREATE TABLE table_11465521_2 (opponent VARCHAR, attendance VARCHAR)",
"question": "How many opponents were there at the game with 64,087 people in attendance?"
} |
### QUESTION
Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones
### CONTEXT
CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
### ANSWER
SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = "alan jones" | {
"answer": "SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = \"alan jones\"",
"context": "CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)",
"question": "Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones"
} |
### QUESTION
What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?
### CONTEXT
CREATE TABLE table_1147705_1 (engine_type VARCHAR, max_torque_at_rpm VARCHAR)
### ANSWER
SELECT engine_type FROM table_1147705_1 WHERE max_torque_at_rpm = "N·m ( lbf·ft ) @ 4,800" | {
"answer": "SELECT engine_type FROM table_1147705_1 WHERE max_torque_at_rpm = \"N·m ( lbf·ft ) @ 4,800\"",
"context": "CREATE TABLE table_1147705_1 (engine_type VARCHAR, max_torque_at_rpm VARCHAR)",
"question": "What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?"
} |
### QUESTION
I want the constructor for brakes and grid less than 14
### CONTEXT
CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)
### ANSWER
SELECT constructor FROM table_name_39 WHERE time_retired = "brakes" AND grid < 14 | {
"answer": "SELECT constructor FROM table_name_39 WHERE time_retired = \"brakes\" AND grid < 14",
"context": "CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)",
"question": "I want the constructor for brakes and grid less than 14"
} |
### QUESTION
Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1?
### CONTEXT
CREATE TABLE table_name_41 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)
### ANSWER
SELECT chassis FROM table_name_41 WHERE entrant = "larrousse f1" AND driver = "aguri suzuki" | {
"answer": "SELECT chassis FROM table_name_41 WHERE entrant = \"larrousse f1\" AND driver = \"aguri suzuki\"",
"context": "CREATE TABLE table_name_41 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)",
"question": "Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1?"
} |
### QUESTION
What was the entrant in round 16 were Ferrari was the constructor?
### CONTEXT
CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)
### ANSWER
SELECT entrant FROM table_name_70 WHERE rounds = "16" AND constructor = "ferrari" | {
"answer": "SELECT entrant FROM table_name_70 WHERE rounds = \"16\" AND constructor = \"ferrari\"",
"context": "CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)",
"question": "What was the entrant in round 16 were Ferrari was the constructor?"
} |
### QUESTION
What is the model of the engine d5244 t7?
### CONTEXT
CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR)
### ANSWER
SELECT model_name FROM table_1147701_5 WHERE engine_code = "D5244 T7" | {
"answer": "SELECT model_name FROM table_1147701_5 WHERE engine_code = \"D5244 T7\"",
"context": "CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR)",
"question": "What is the model of the engine d5244 t7?"
} |
### QUESTION
Name the result with notes of quarter-finals and event of adcc 2001 absolute
### CONTEXT
CREATE TABLE table_name_65 (result VARCHAR, notes VARCHAR, event VARCHAR)
### ANSWER
SELECT result FROM table_name_65 WHERE notes = "quarter-finals" AND event = "adcc 2001 absolute" | {
"answer": "SELECT result FROM table_name_65 WHERE notes = \"quarter-finals\" AND event = \"adcc 2001 absolute\"",
"context": "CREATE TABLE table_name_65 (result VARCHAR, notes VARCHAR, event VARCHAR)",
"question": "Name the result with notes of quarter-finals and event of adcc 2001 absolute"
} |
### QUESTION
What is the number for years 1985-88
### CONTEXT
CREATE TABLE table_11545282_18 (no INTEGER, years_for_jazz VARCHAR)
### ANSWER
SELECT MIN(no) FROM table_11545282_18 WHERE years_for_jazz = "1985-88" | {
"answer": "SELECT MIN(no) FROM table_11545282_18 WHERE years_for_jazz = \"1985-88\"",
"context": "CREATE TABLE table_11545282_18 (no INTEGER, years_for_jazz VARCHAR)",
"question": "What is the number for years 1985-88"
} |
### QUESTION
Which position does Deshawn Stevenson play?
### CONTEXT
CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)
### ANSWER
SELECT position FROM table_11545282_18 WHERE player = "DeShawn Stevenson" | {
"answer": "SELECT position FROM table_11545282_18 WHERE player = \"DeShawn Stevenson\"",
"context": "CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)",
"question": "Which position does Deshawn Stevenson play?"
} |
### QUESTION
Who was the host that garnered ratings of 9.6/26?
### CONTEXT
CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR)
### ANSWER
SELECT host FROM table_name_30 WHERE ratings = "9.6/26" | {
"answer": "SELECT host FROM table_name_30 WHERE ratings = \"9.6/26\"",
"context": "CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR)",
"question": "Who was the host that garnered ratings of 9.6/26?"
} |
### QUESTION
What were the ratings for host Chris Economaki who had 12.3 million viewers?
### CONTEXT
CREATE TABLE table_name_83 (ratings VARCHAR, host VARCHAR, viewers VARCHAR)
### ANSWER
SELECT ratings FROM table_name_83 WHERE host = "chris economaki" AND viewers = "12.3 million" | {
"answer": "SELECT ratings FROM table_name_83 WHERE host = \"chris economaki\" AND viewers = \"12.3 million\"",
"context": "CREATE TABLE table_name_83 (ratings VARCHAR, host VARCHAR, viewers VARCHAR)",
"question": "What were the ratings for host Chris Economaki who had 12.3 million viewers?"
} |
### QUESTION
What years did number 54 play for the jazz
### CONTEXT
CREATE TABLE table_11545282_4 (years_for_jazz VARCHAR, no VARCHAR)
### ANSWER
SELECT years_for_jazz FROM table_11545282_4 WHERE no = 54 | {
"answer": "SELECT years_for_jazz FROM table_11545282_4 WHERE no = 54",
"context": "CREATE TABLE table_11545282_4 (years_for_jazz VARCHAR, no VARCHAR)",
"question": "What years did number 54 play for the jazz"
} |
### QUESTION
How many schools did darryl dawkins play for
### CONTEXT
CREATE TABLE table_11545282_4 (school_club_team VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(school_club_team) FROM table_11545282_4 WHERE player = "Darryl Dawkins" | {
"answer": "SELECT COUNT(school_club_team) FROM table_11545282_4 WHERE player = \"Darryl Dawkins\"",
"context": "CREATE TABLE table_11545282_4 (school_club_team VARCHAR, player VARCHAR)",
"question": "How many schools did darryl dawkins play for"
} |
### QUESTION
What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11?
### CONTEXT
CREATE TABLE table_name_30 (pole_position VARCHAR, fastest_lap VARCHAR, round VARCHAR)
### ANSWER
SELECT pole_position FROM table_name_30 WHERE fastest_lap = "rubens barrichello" AND round > 11 | {
"answer": "SELECT pole_position FROM table_name_30 WHERE fastest_lap = \"rubens barrichello\" AND round > 11",
"context": "CREATE TABLE table_name_30 (pole_position VARCHAR, fastest_lap VARCHAR, round VARCHAR)",
"question": "What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11?"
} |
### QUESTION
Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver.
### CONTEXT
CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher" | {
"answer": "SELECT fastest_lap FROM table_name_32 WHERE pole_position = \"david coulthard\" AND winning_driver = \"michael schumacher\"",
"context": "CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)",
"question": "Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver."
} |
### QUESTION
What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?
### CONTEXT
CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR)
### ANSWER
SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = "S2 (LST) type, S2 (frigate) type, C1-M type" | {
"answer": "SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = \"S2 (LST) type, S2 (frigate) type, C1-M type\"",
"context": "CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR)",
"question": "What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?"
} |
### QUESTION
What is the date of debut that has a date of birth listed at 24-10-1887?
### CONTEXT
CREATE TABLE table_11585313_1 (date_of_debut VARCHAR, date_of_birth VARCHAR)
### ANSWER
SELECT date_of_debut FROM table_11585313_1 WHERE date_of_birth = "24-10-1887" | {
"answer": "SELECT date_of_debut FROM table_11585313_1 WHERE date_of_birth = \"24-10-1887\"",
"context": "CREATE TABLE table_11585313_1 (date_of_debut VARCHAR, date_of_birth VARCHAR)",
"question": "What is the date of debut that has a date of birth listed at 24-10-1887?"
} |
### QUESTION
What is the frequency of the model with part number lf80537gf0411m?
### CONTEXT
CREATE TABLE table_11602313_4 (frequency VARCHAR, part_number_s_ VARCHAR)
### ANSWER
SELECT frequency FROM table_11602313_4 WHERE part_number_s_ = "LF80537GF0411M" | {
"answer": "SELECT frequency FROM table_11602313_4 WHERE part_number_s_ = \"LF80537GF0411M\"",
"context": "CREATE TABLE table_11602313_4 (frequency VARCHAR, part_number_s_ VARCHAR)",
"question": "What is the frequency of the model with part number lf80537gf0411m?"
} |
### QUESTION
What was the score of the away team when the game was played at vfl park?
### CONTEXT
CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_83 WHERE venue = "vfl park" | {
"answer": "SELECT away_team AS score FROM table_name_83 WHERE venue = \"vfl park\"",
"context": "CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR)",
"question": "What was the score of the away team when the game was played at vfl park?"
} |
### QUESTION
What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?
### CONTEXT
CREATE TABLE table_11603006_1 (score VARCHAR, location VARCHAR, purse__$__ VARCHAR)
### ANSWER
SELECT score FROM table_11603006_1 WHERE location = "Michigan" AND purse__$__ < 1813335.221493934 | {
"answer": "SELECT score FROM table_11603006_1 WHERE location = \"Michigan\" AND purse__$__ < 1813335.221493934",
"context": "CREATE TABLE table_11603006_1 (score VARCHAR, location VARCHAR, purse__$__ VARCHAR)",
"question": "What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?"
} |
### QUESTION
Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii
### CONTEXT
CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music_director VARCHAR)
### ANSWER
SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = "yuvan shankar raja" AND film = "billa ii" | {
"answer": "SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = \"yuvan shankar raja\" AND film = \"billa ii\"",
"context": "CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music_director VARCHAR)",
"question": "Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii"
} |
### QUESTION
What was the founding of navy blue?
### CONTEXT
CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR)
### ANSWER
SELECT founded FROM table_11604804_5 WHERE color = "Navy Blue" | {
"answer": "SELECT founded FROM table_11604804_5 WHERE color = \"Navy Blue\"",
"context": "CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR)",
"question": "What was the founding of navy blue?"
} |
### QUESTION
What seat does Gubernia Warszawska hold?
### CONTEXT
CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_polish VARCHAR)
### ANSWER
SELECT seat FROM table_11614581_3 WHERE name_in_polish = "Gubernia warszawska" | {
"answer": "SELECT seat FROM table_11614581_3 WHERE name_in_polish = \"Gubernia warszawska\"",
"context": "CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_polish VARCHAR)",
"question": "What seat does Gubernia Warszawska hold?"
} |
### QUESTION
what's the maximum purse( $ ) with score value of 204 (-9)
### CONTEXT
CREATE TABLE table_11621915_1 (purse__ INTEGER, score VARCHAR)
### ANSWER
SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = "204 (-9)" | {
"answer": "SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = \"204 (-9)\"",
"context": "CREATE TABLE table_11621915_1 (purse__ INTEGER, score VARCHAR)",
"question": "what's the maximum purse( $ ) with score value of 204 (-9)"
} |
### QUESTION
what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28
### CONTEXT
CREATE TABLE table_11621915_1 (winner VARCHAR, purse__$__ VARCHAR, date VARCHAR)
### ANSWER
SELECT winner FROM table_11621915_1 WHERE purse__$__ > 964017.2297960471 AND date = "May 28" | {
"answer": "SELECT winner FROM table_11621915_1 WHERE purse__$__ > 964017.2297960471 AND date = \"May 28\"",
"context": "CREATE TABLE table_11621915_1 (winner VARCHAR, purse__$__ VARCHAR, date VARCHAR)",
"question": "what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28"
} |
### QUESTION
Which player plays for the college of manitoba?
### CONTEXT
CREATE TABLE table_name_96 (player VARCHAR, college VARCHAR)
### ANSWER
SELECT player FROM table_name_96 WHERE college = "manitoba" | {
"answer": "SELECT player FROM table_name_96 WHERE college = \"manitoba\"",
"context": "CREATE TABLE table_name_96 (player VARCHAR, college VARCHAR)",
"question": "Which player plays for the college of manitoba?"
} |
### QUESTION
What is the name of the player with an Overall larger than 227?
### CONTEXT
CREATE TABLE table_name_14 (player VARCHAR, overall INTEGER)
### ANSWER
SELECT player FROM table_name_14 WHERE overall > 227 | {
"answer": "SELECT player FROM table_name_14 WHERE overall > 227",
"context": "CREATE TABLE table_name_14 (player VARCHAR, overall INTEGER)",
"question": "What is the name of the player with an Overall larger than 227?"
} |
### QUESTION
what's the tournament where winner is raymond floyd (1)
### CONTEXT
CREATE TABLE table_11622255_1 (tournament VARCHAR, winner VARCHAR)
### ANSWER
SELECT tournament FROM table_11622255_1 WHERE winner = "Raymond Floyd (1)" | {
"answer": "SELECT tournament FROM table_11622255_1 WHERE winner = \"Raymond Floyd (1)\"",
"context": "CREATE TABLE table_11622255_1 (tournament VARCHAR, winner VARCHAR)",
"question": " what's the tournament where winner is raymond floyd (1)"
} |
### QUESTION
what's the date where location is illinois
### CONTEXT
CREATE TABLE table_11622255_1 (date VARCHAR, location VARCHAR)
### ANSWER
SELECT date FROM table_11622255_1 WHERE location = "Illinois" | {
"answer": "SELECT date FROM table_11622255_1 WHERE location = \"Illinois\"",
"context": "CREATE TABLE table_11622255_1 (date VARCHAR, location VARCHAR)",
"question": " what's the date where location is illinois"
} |
### QUESTION
Where was the GTE Suncoast Classic tournament held?
### CONTEXT
CREATE TABLE table_11622562_1 (location VARCHAR, tournament VARCHAR)
### ANSWER
SELECT location FROM table_11622562_1 WHERE tournament = "GTE Suncoast Classic" | {
"answer": "SELECT location FROM table_11622562_1 WHERE tournament = \"GTE Suncoast Classic\"",
"context": "CREATE TABLE table_11622562_1 (location VARCHAR, tournament VARCHAR)",
"question": "Where was the GTE Suncoast Classic tournament held?"
} |
### QUESTION
What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?
### CONTEXT
CREATE TABLE table_11622562_1 (location VARCHAR)
### ANSWER
SELECT MIN(*) AS $__ FROM table_11622562_1 WHERE location = "New Mexico" | {
"answer": "SELECT MIN(*) AS $__ FROM table_11622562_1 WHERE location = \"New Mexico\"",
"context": "CREATE TABLE table_11622562_1 (location VARCHAR)",
"question": "What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?"
} |
### QUESTION
What label released a CD in 1988?
### CONTEXT
CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR, format VARCHAR)
### ANSWER
SELECT label FROM table_name_37 WHERE date = "1988" AND format = "cd" | {
"answer": "SELECT label FROM table_name_37 WHERE date = \"1988\" AND format = \"cd\"",
"context": "CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR, format VARCHAR)",
"question": "What label released a CD in 1988?"
} |
### QUESTION
The original air date of 29November2007 has what total no.?
### CONTEXT
CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT total_no FROM table_11642945_1 WHERE original_air_date = "29November2007" | {
"answer": "SELECT total_no FROM table_11642945_1 WHERE original_air_date = \"29November2007\"",
"context": "CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR)",
"question": "The original air date of 29November2007 has what total no.?"
} |
### QUESTION
What is the number of series with production code 503?
### CONTEXT
CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR)
### ANSWER
SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503 | {
"answer": "SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503",
"context": "CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR)",
"question": "What is the number of series with production code 503?"
} |
### QUESTION
What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?
### CONTEXT
CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)
### ANSWER
SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950" | {
"answer": "SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = \"$208,851–$372,950\"",
"context": "CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)",
"question": "What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?"
} |
### QUESTION
what is the total number of coach where captain is grant welsh and win/loss is 5-15
### CONTEXT
CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR)
### ANSWER
SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = "Grant Welsh" AND win_loss = "5-15" | {
"answer": "SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = \"Grant Welsh\" AND win_loss = \"5-15\"",
"context": "CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR)",
"question": "what is the total number of coach where captain is grant welsh and win/loss is 5-15"
} |
### QUESTION
What is the average grid with brm and under 63 laps?
### CONTEXT
CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
### ANSWER
SELECT AVG(grid) FROM table_name_33 WHERE constructor = "brm" AND laps < 63 | {
"answer": "SELECT AVG(grid) FROM table_name_33 WHERE constructor = \"brm\" AND laps < 63",
"context": "CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR)",
"question": "What is the average grid with brm and under 63 laps?"
} |
### QUESTION
Which episode was directed by steven depaul
### CONTEXT
CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT title FROM table_11665016_2 WHERE directed_by = "Steven DePaul" | {
"answer": "SELECT title FROM table_11665016_2 WHERE directed_by = \"Steven DePaul\"",
"context": "CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR)",
"question": "Which episode was directed by steven depaul"
} |
### QUESTION
what's the date entered service with ships name koningin wilhelmina
### CONTEXT
CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR)
### ANSWER
SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = "Koningin Wilhelmina" | {
"answer": "SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = \"Koningin Wilhelmina\"",
"context": "CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR)",
"question": " what's the date entered service with ships name koningin wilhelmina"
} |
### QUESTION
what is the maximum tonnage where date entered service is 25 march 1986
### CONTEXT
CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR)
### ANSWER
SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = "25 March 1986" | {
"answer": "SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = \"25 March 1986\"",
"context": "CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR)",
"question": "what is the maximum tonnage where date entered service is 25 march 1986 "
} |
### QUESTION
what are all the date withdrawn for service entered on 21 november 1945
### CONTEXT
CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service VARCHAR)
### ANSWER
SELECT date_withdrawn FROM table_11662133_3 WHERE date_entered_service = "21 November 1945" | {
"answer": "SELECT date_withdrawn FROM table_11662133_3 WHERE date_entered_service = \"21 November 1945\"",
"context": "CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service VARCHAR)",
"question": "what are all the date withdrawn for service entered on 21 november 1945"
} |
### QUESTION
what are all the date withdrawn for twin screw ro-ro motorship
### CONTEXT
CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR)
### ANSWER
SELECT date_withdrawn FROM table_11662133_3 WHERE type_of_ship = "Twin Screw Ro-Ro Motorship" | {
"answer": "SELECT date_withdrawn FROM table_11662133_3 WHERE type_of_ship = \"Twin Screw Ro-Ro Motorship\"",
"context": "CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR)",
"question": "what are all the date withdrawn for twin screw ro-ro motorship"
} |
### QUESTION
Where is the first season that Anthony Hemingway appears?
### CONTEXT
CREATE TABLE table_11664625_2 (no_in_season INTEGER, directed_by VARCHAR)
### ANSWER
SELECT MIN(no_in_season) FROM table_11664625_2 WHERE directed_by = "Anthony Hemingway" | {
"answer": "SELECT MIN(no_in_season) FROM table_11664625_2 WHERE directed_by = \"Anthony Hemingway\"",
"context": "CREATE TABLE table_11664625_2 (no_in_season INTEGER, directed_by VARCHAR)",
"question": "Where is the first season that Anthony Hemingway appears?"
} |
### QUESTION
When is the first season there were 14.57 million U.S viewers?
### CONTEXT
CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT MIN(no_in_season) FROM table_11664625_2 WHERE us_viewers__millions_ = "14.57" | {
"answer": "SELECT MIN(no_in_season) FROM table_11664625_2 WHERE us_viewers__millions_ = \"14.57\"",
"context": "CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)",
"question": "When is the first season there were 14.57 million U.S viewers?"
} |
### QUESTION
How many hometowns does the catcher have?
### CONTEXT
CREATE TABLE table_11677100_15 (hometown VARCHAR, position VARCHAR)
### ANSWER
SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = "Catcher" | {
"answer": "SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = \"Catcher\"",
"context": "CREATE TABLE table_11677100_15 (hometown VARCHAR, position VARCHAR)",
"question": "How many hometowns does the catcher have?"
} |
### QUESTION
Who was the away team when the crowd was larger than 41,451?
### CONTEXT
CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER)
### ANSWER
SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451 | {
"answer": "SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451",
"context": "CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER)",
"question": "Who was the away team when the crowd was larger than 41,451?"
} |
### QUESTION
What is the hometown of Bubba Starling?
### CONTEXT
CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR)
### ANSWER
SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling" | {
"answer": "SELECT hometown FROM table_11677100_17 WHERE player = \"Bubba Starling\"",
"context": "CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR)",
"question": "What is the hometown of Bubba Starling?"
} |
### QUESTION
What is Josh Hamilton's hometown?
### CONTEXT
CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR)
### ANSWER
SELECT hometown FROM table_11677100_5 WHERE player = "Josh Hamilton" | {
"answer": "SELECT hometown FROM table_11677100_5 WHERE player = \"Josh Hamilton\"",
"context": "CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR)",
"question": "What is Josh Hamilton's hometown?"
} |
### QUESTION
Which college does the player jon hameister-ries play for?
### CONTEXT
CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR)
### ANSWER
SELECT college FROM table_name_93 WHERE player = "jon hameister-ries" | {
"answer": "SELECT college FROM table_name_93 WHERE player = \"jon hameister-ries\"",
"context": "CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR)",
"question": "Which college does the player jon hameister-ries play for?"
} |
### QUESTION
Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67
### CONTEXT
CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR)
### ANSWER
SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = "sébastien bourdais" AND laps < 67 | {
"answer": "SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = \"sébastien bourdais\" AND laps < 67",
"context": "CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR)",
"question": "Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67"
} |
### QUESTION
Name the most laps for grid more than 9 and the driver being jan heylen
### CONTEXT
CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR)
### ANSWER
SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = "jan heylen" | {
"answer": "SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = \"jan heylen\"",
"context": "CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR)",
"question": "Name the most laps for grid more than 9 and the driver being jan heylen"
} |
### QUESTION
How many positions did the player from Spring High School play?
### CONTEXT
CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR)
### ANSWER
SELECT COUNT(position) FROM table_11677100_4 WHERE school = "Spring High school" | {
"answer": "SELECT COUNT(position) FROM table_11677100_4 WHERE school = \"Spring High school\"",
"context": "CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR)",
"question": "How many positions did the player from Spring High School play?"
} |
### QUESTION
What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has?
### CONTEXT
CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)
### ANSWER
SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84 | {
"answer": "SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84",
"context": "CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)",
"question": "What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has?"
} |
### QUESTION
What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has?
### CONTEXT
CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR)
### ANSWER
SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = "kansas" | {
"answer": "SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = \"kansas\"",
"context": "CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR)",
"question": "What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has?"
} |
### QUESTION
WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?
### CONTEXT
CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR)
### ANSWER
SELECT school FROM table_11677691_2 WHERE college = "South Carolina" | {
"answer": "SELECT school FROM table_11677691_2 WHERE college = \"South Carolina\"",
"context": "CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR)",
"question": "WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?"
} |
### QUESTION
What prefix has Haloalkane as the chemical class?
### CONTEXT
CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR)
### ANSWER
SELECT prefix FROM table_name_4 WHERE chemical_class = "haloalkane" | {
"answer": "SELECT prefix FROM table_name_4 WHERE chemical_class = \"haloalkane\"",
"context": "CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR)",
"question": "What prefix has Haloalkane as the chemical class?"
} |
### QUESTION
WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?
### CONTEXT
CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR)
### ANSWER
SELECT position FROM table_11677691_2 WHERE school = "South Pointe High school" | {
"answer": "SELECT position FROM table_11677691_2 WHERE school = \"South Pointe High school\"",
"context": "CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR)",
"question": "WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?"
} |
### QUESTION
Which school is in the hometown of Aledo, Texas?
### CONTEXT
CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR)
### ANSWER
SELECT school FROM table_11677691_5 WHERE hometown = "Aledo, Texas" | {
"answer": "SELECT school FROM table_11677691_5 WHERE hometown = \"Aledo, Texas\"",
"context": "CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR)",
"question": "Which school is in the hometown of Aledo, Texas?"
} |
### QUESTION
Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?
### CONTEXT
CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR)
### ANSWER
SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = "evans (7)" AND high_assists = "evans, ollie (3)" | {
"answer": "SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = \"evans (7)\" AND high_assists = \"evans, ollie (3)\"",
"context": "CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR)",
"question": "Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?"
} |
### QUESTION
Running back Aaron Green went to Nebraska and what high school?
### CONTEXT
CREATE TABLE table_11677691_3 (school VARCHAR, position VARCHAR, college VARCHAR)
### ANSWER
SELECT school FROM table_11677691_3 WHERE position = "Running back" AND college = "Nebraska" | {
"answer": "SELECT school FROM table_11677691_3 WHERE position = \"Running back\" AND college = \"Nebraska\"",
"context": "CREATE TABLE table_11677691_3 (school VARCHAR, position VARCHAR, college VARCHAR)",
"question": "Running back Aaron Green went to Nebraska and what high school? "
} |
### QUESTION
who are all the players for mission viejo high school
### CONTEXT
CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)
### ANSWER
SELECT player FROM table_11677691_12 WHERE school = "Mission Viejo High school" | {
"answer": "SELECT player FROM table_11677691_12 WHERE school = \"Mission Viejo High school\"",
"context": "CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)",
"question": "who are all the players for mission viejo high school"
} |
### QUESTION
What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars?
### CONTEXT
CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR)
### ANSWER
SELECT us_rap FROM table_name_98 WHERE album = "west coast bad boyz, vol. 3: poppin' collars" | {
"answer": "SELECT us_rap FROM table_name_98 WHERE album = \"west coast bad boyz, vol. 3: poppin' collars\"",
"context": "CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR)",
"question": "What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars?"
} |
### QUESTION
What is the location of Blanca Peak?
### CONTEXT
CREATE TABLE table_name_77 (location VARCHAR, mountain_peak VARCHAR)
### ANSWER
SELECT location FROM table_name_77 WHERE mountain_peak = "blanca peak" | {
"answer": "SELECT location FROM table_name_77 WHERE mountain_peak = \"blanca peak\"",
"context": "CREATE TABLE table_name_77 (location VARCHAR, mountain_peak VARCHAR)",
"question": "What is the location of Blanca Peak?"
} |
### QUESTION
How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?
### CONTEXT
CREATE TABLE table_11713303_2 (replaced_by VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)
### ANSWER
SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = "10 December 2007" AND manner_of_departure = "Quit" | {
"answer": "SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"",
"context": "CREATE TABLE table_11713303_2 (replaced_by VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)",
"question": "How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?"
} |
### QUESTION
What is the date of vacancy for 10 december 2007 when quit?
### CONTEXT
CREATE TABLE table_11713303_2 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)
### ANSWER
SELECT date_of_vacancy FROM table_11713303_2 WHERE date_of_appointment = "10 December 2007" AND manner_of_departure = "Quit" | {
"answer": "SELECT date_of_vacancy FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"",
"context": "CREATE TABLE table_11713303_2 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)",
"question": "What is the date of vacancy for 10 december 2007 when quit?"
} |
### QUESTION
what is the display size for the calculator ti-82?
### CONTEXT
CREATE TABLE table_11703336_1 (display_size VARCHAR, calculator VARCHAR)
### ANSWER
SELECT display_size FROM table_11703336_1 WHERE calculator = "TI-82" | {
"answer": "SELECT display_size FROM table_11703336_1 WHERE calculator = \"TI-82\"",
"context": "CREATE TABLE table_11703336_1 (display_size VARCHAR, calculator VARCHAR)",
"question": "what is the display size for the calculator ti-82?"
} |
### QUESTION
How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0?
### CONTEXT
CREATE TABLE table_name_27 (poles INTEGER, drivers VARCHAR, flaps VARCHAR)
### ANSWER
SELECT SUM(poles) FROM table_name_27 WHERE drivers = "juan cruz álvarez" AND flaps > 0 | {
"answer": "SELECT SUM(poles) FROM table_name_27 WHERE drivers = \"juan cruz álvarez\" AND flaps > 0",
"context": "CREATE TABLE table_name_27 (poles INTEGER, drivers VARCHAR, flaps VARCHAR)",
"question": "How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0?"
} |
### QUESTION
Who was the away team at Victoria Park?
### CONTEXT
CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team FROM table_name_52 WHERE venue = "victoria park" | {
"answer": "SELECT away_team FROM table_name_52 WHERE venue = \"victoria park\"",
"context": "CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)",
"question": "Who was the away team at Victoria Park?"
} |
### QUESTION
Name the home when the visitor was dallas on february 2
### CONTEXT
CREATE TABLE table_name_12 (home VARCHAR, visitor VARCHAR, date VARCHAR)
### ANSWER
SELECT home FROM table_name_12 WHERE visitor = "dallas" AND date = "february 2" | {
"answer": "SELECT home FROM table_name_12 WHERE visitor = \"dallas\" AND date = \"february 2\"",
"context": "CREATE TABLE table_name_12 (home VARCHAR, visitor VARCHAR, date VARCHAR)",
"question": "Name the home when the visitor was dallas on february 2"
} |
### QUESTION
Which tournament has an Outcome of runner-up, and an Opponent of maša zec peškirič?
### CONTEXT
CREATE TABLE table_name_93 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)
### ANSWER
SELECT tournament FROM table_name_93 WHERE outcome = "runner-up" AND opponent = "maša zec peškirič" | {
"answer": "SELECT tournament FROM table_name_93 WHERE outcome = \"runner-up\" AND opponent = \"maša zec peškirič\"",
"context": "CREATE TABLE table_name_93 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)",
"question": "Which tournament has an Outcome of runner-up, and an Opponent of maša zec peškirič?"
} |
### QUESTION
Which surface has a Date of 22 august 2006?
### CONTEXT
CREATE TABLE table_name_57 (surface VARCHAR, date VARCHAR)
### ANSWER
SELECT surface FROM table_name_57 WHERE date = "22 august 2006" | {
"answer": "SELECT surface FROM table_name_57 WHERE date = \"22 august 2006\"",
"context": "CREATE TABLE table_name_57 (surface VARCHAR, date VARCHAR)",
"question": "Which surface has a Date of 22 august 2006?"
} |
### QUESTION
Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6–4, 6–2?
### CONTEXT
CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)
### ANSWER
SELECT tournament FROM table_name_95 WHERE outcome = "runner-up" AND surface = "hard" AND score = "6–4, 6–2" | {
"answer": "SELECT tournament FROM table_name_95 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND score = \"6–4, 6–2\"",
"context": "CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)",
"question": "Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6–4, 6–2?"
} |
### QUESTION
Which school, club team, or country played for the rockets in the years 2000-01?
### CONTEXT
CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)
### ANSWER
SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = "2000-01" | {
"answer": "SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = \"2000-01\"",
"context": "CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)",
"question": "Which school, club team, or country played for the rockets in the years 2000-01?"
} |
### QUESTION
Which tournament has an Outcome of winner, and a Opponent of dia evtimova?
### CONTEXT
CREATE TABLE table_name_53 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)
### ANSWER
SELECT tournament FROM table_name_53 WHERE outcome = "winner" AND opponent = "dia evtimova" | {
"answer": "SELECT tournament FROM table_name_53 WHERE outcome = \"winner\" AND opponent = \"dia evtimova\"",
"context": "CREATE TABLE table_name_53 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)",
"question": "Which tournament has an Outcome of winner, and a Opponent of dia evtimova?"
} |
### QUESTION
What is the outcome with marina erakovic as opponent?
### CONTEXT
CREATE TABLE table_name_37 (outcome VARCHAR, opponent VARCHAR)
### ANSWER
SELECT outcome FROM table_name_37 WHERE opponent = "marina erakovic" | {
"answer": "SELECT outcome FROM table_name_37 WHERE opponent = \"marina erakovic\"",
"context": "CREATE TABLE table_name_37 (outcome VARCHAR, opponent VARCHAR)",
"question": "What is the outcome with marina erakovic as opponent?"
} |
### QUESTION
During which years did number 13 play for the Rockets?
### CONTEXT
CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR)
### ANSWER
SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = "13" | {
"answer": "SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = \"13\"",
"context": "CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR)",
"question": "During which years did number 13 play for the Rockets?"
} |
### QUESTION
What years for the rockets did player ford, alton alton ford play?
### CONTEXT
CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)
### ANSWER
SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Alton Alton Ford" | {
"answer": "SELECT years_for_rockets FROM table_11734041_6 WHERE player = \"Ford, Alton Alton Ford\"",
"context": "CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)",
"question": "What years for the rockets did player ford, alton alton ford play?"
} |
### QUESTION
what is the launched date when the builder is john brown, clydebank?
### CONTEXT
CREATE TABLE table_name_57 (launched VARCHAR, builder VARCHAR)
### ANSWER
SELECT launched FROM table_name_57 WHERE builder = "john brown, clydebank" | {
"answer": "SELECT launched FROM table_name_57 WHERE builder = \"john brown, clydebank\"",
"context": "CREATE TABLE table_name_57 (launched VARCHAR, builder VARCHAR)",
"question": "what is the launched date when the builder is john brown, clydebank?"
} |
### QUESTION
What years for the rockets did the player ford, phil phil ford play?
### CONTEXT
CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)
### ANSWER
SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Phil Phil Ford" | {
"answer": "SELECT years_for_rockets FROM table_11734041_6 WHERE player = \"Ford, Phil Phil Ford\"",
"context": "CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)",
"question": "What years for the rockets did the player ford, phil phil ford play?"
} |
### QUESTION
What was the record for a week below 13 on July 12?
### CONTEXT
CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_82 WHERE week < 13 AND date = "july 12" | {
"answer": "SELECT record FROM table_name_82 WHERE week < 13 AND date = \"july 12\"",
"context": "CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR)",
"question": "What was the record for a week below 13 on July 12?"
} |
### QUESTION
Where is ropery lane and la matches 7 location?
### CONTEXT
CREATE TABLE table_1176371_1 (location VARCHAR, la_matches VARCHAR, name_of_ground VARCHAR)
### ANSWER
SELECT location FROM table_1176371_1 WHERE la_matches = 7 AND name_of_ground = "Ropery Lane" | {
"answer": "SELECT location FROM table_1176371_1 WHERE la_matches = 7 AND name_of_ground = \"Ropery Lane\"",
"context": "CREATE TABLE table_1176371_1 (location VARCHAR, la_matches VARCHAR, name_of_ground VARCHAR)",
"question": "Where is ropery lane and la matches 7 location?"
} |
### QUESTION
What is the maximum fc matches at the racecourse?
### CONTEXT
CREATE TABLE table_1176371_1 (fc_matches INTEGER, name_of_ground VARCHAR)
### ANSWER
SELECT MAX(fc_matches) FROM table_1176371_1 WHERE name_of_ground = "The Racecourse" | {
"answer": "SELECT MAX(fc_matches) FROM table_1176371_1 WHERE name_of_ground = \"The Racecourse\"",
"context": "CREATE TABLE table_1176371_1 (fc_matches INTEGER, name_of_ground VARCHAR)",
"question": "What is the maximum fc matches at the racecourse?"
} |
### QUESTION
What date did NY Rangers play at home?
### CONTEXT
CREATE TABLE table_name_12 (date VARCHAR, home VARCHAR)
### ANSWER
SELECT date FROM table_name_12 WHERE home = "ny rangers" | {
"answer": "SELECT date FROM table_name_12 WHERE home = \"ny rangers\"",
"context": "CREATE TABLE table_name_12 (date VARCHAR, home VARCHAR)",
"question": "What date did NY Rangers play at home?"
} |
### QUESTION
What was the missing for lieutenant general sir thomas picton?
### CONTEXT
CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR)
### ANSWER
SELECT missing FROM table_11793221_4 WHERE commander = "Lieutenant General Sir Thomas Picton" | {
"answer": "SELECT missing FROM table_11793221_4 WHERE commander = \"Lieutenant General Sir Thomas Picton\"",
"context": "CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR)",
"question": "What was the missing for lieutenant general sir thomas picton?"
} |
### QUESTION
Name the number of complement for 4th hanoverian brigade
### CONTEXT
CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR)
### ANSWER
SELECT COUNT(complement) FROM table_11793221_4 WHERE unit = "4th Hanoverian Brigade" | {
"answer": "SELECT COUNT(complement) FROM table_11793221_4 WHERE unit = \"4th Hanoverian Brigade\"",
"context": "CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR)",
"question": "Name the number of complement for 4th hanoverian brigade"
} |
### QUESTION
Which analog channel has a digital channel of 4.1?
### CONTEXT
CREATE TABLE table_name_31 (analog_channel VARCHAR, digital_channel VARCHAR)
### ANSWER
SELECT analog_channel FROM table_name_31 WHERE digital_channel = "4.1" | {
"answer": "SELECT analog_channel FROM table_name_31 WHERE digital_channel = \"4.1\"",
"context": "CREATE TABLE table_name_31 (analog_channel VARCHAR, digital_channel VARCHAR)",
"question": "Which analog channel has a digital channel of 4.1?"
} |
### QUESTION
What is the name of the runner up when yevgeny kafelnikov was third place and the score was 3–6, 6–4, [10–3]?
### CONTEXT
CREATE TABLE table_name_18 (runner_up VARCHAR, third_place VARCHAR, score VARCHAR)
### ANSWER
SELECT runner_up FROM table_name_18 WHERE third_place = "yevgeny kafelnikov" AND score = "3–6, 6–4, [10–3]" | {
"answer": "SELECT runner_up FROM table_name_18 WHERE third_place = \"yevgeny kafelnikov\" AND score = \"3–6, 6–4, [10–3]\"",
"context": "CREATE TABLE table_name_18 (runner_up VARCHAR, third_place VARCHAR, score VARCHAR)",
"question": "What is the name of the runner up when yevgeny kafelnikov was third place and the score was 3–6, 6–4, [10–3]?"
} |
### QUESTION
NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM
### CONTEXT
CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR)
### ANSWER
SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = "Omaha (USHL)" | {
"answer": "SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = \"Omaha (USHL)\"",
"context": "CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR)",
"question": "NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM"
} |
### QUESTION
What position does Cody Ceci play?
### CONTEXT
CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR)
### ANSWER
SELECT position FROM table_11803648_21 WHERE player = "Cody Ceci" | {
"answer": "SELECT position FROM table_11803648_21 WHERE player = \"Cody Ceci\"",
"context": "CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR)",
"question": "What position does Cody Ceci play?"
} |
### QUESTION
Which player is in round 5?
### CONTEXT
CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR)
### ANSWER
SELECT player FROM table_11803648_20 WHERE round = 5 | {
"answer": "SELECT player FROM table_11803648_20 WHERE round = 5",
"context": "CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR)",
"question": "Which player is in round 5?"
} |
### QUESTION
I want the total number of points for against of 753 and points diff more than -114
### CONTEXT
CREATE TABLE table_name_75 (points VARCHAR, against VARCHAR, points_diff VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_75 WHERE against = 753 AND points_diff > -114 | {
"answer": "SELECT COUNT(points) FROM table_name_75 WHERE against = 753 AND points_diff > -114",
"context": "CREATE TABLE table_name_75 (points VARCHAR, against VARCHAR, points_diff VARCHAR)",
"question": "I want the total number of points for against of 753 and points diff more than -114"
} |
### QUESTION
What is the last round with club team Guelph Storm (ohl)?
### CONTEXT
CREATE TABLE table_11803648_22 (round INTEGER, club_team VARCHAR)
### ANSWER
SELECT MAX(round) FROM table_11803648_22 WHERE club_team = "Guelph Storm (OHL)" | {
"answer": "SELECT MAX(round) FROM table_11803648_22 WHERE club_team = \"Guelph Storm (OHL)\"",
"context": "CREATE TABLE table_11803648_22 (round INTEGER, club_team VARCHAR)",
"question": "What is the last round with club team Guelph Storm (ohl)?"
} |
### QUESTION
What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658?
### CONTEXT
CREATE TABLE table_name_88 (Id VARCHAR)
### ANSWER
SELECT MAX(1985) FROM table_name_88 WHERE 1990 < 267 AND 2000 = 333 AND 2005 < 658 | {
"answer": "SELECT MAX(1985) FROM table_name_88 WHERE 1990 < 267 AND 2000 = 333 AND 2005 < 658",
"context": "CREATE TABLE table_name_88 (Id VARCHAR)",
"question": "What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658?"
} |
### QUESTION
Where is the Hometown that the person who attended Camarillo High School is from?
### CONTEXT
CREATE TABLE table_name_40 (hometown VARCHAR, school VARCHAR)
### ANSWER
SELECT hometown FROM table_name_40 WHERE school = "camarillo high school" | {
"answer": "SELECT hometown FROM table_name_40 WHERE school = \"camarillo high school\"",
"context": "CREATE TABLE table_name_40 (hometown VARCHAR, school VARCHAR)",
"question": "Where is the Hometown that the person who attended Camarillo High School is from?"
} |
### QUESTION
what are all the percent (1990) where state is united states
### CONTEXT
CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR)
### ANSWER
SELECT percent__1990_ FROM table_1182314_5 WHERE state = "United states" | {
"answer": "SELECT percent__1990_ FROM table_1182314_5 WHERE state = \"United states\"",
"context": "CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR)",
"question": "what are all the percent (1990) where state is united states"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.