text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
Which album had a release of heavenly (hvn95)?
### CONTEXT
CREATE TABLE table_name_56 (album VARCHAR, release_info VARCHAR)
### ANSWER
SELECT album FROM table_name_56 WHERE release_info = "heavenly (hvn95)"</s> | {
"answer": "SELECT album FROM table_name_56 WHERE release_info = \"heavenly (hvn95)\"",
"context": "CREATE TABLE table_name_56 (album VARCHAR, release_info VARCHAR)",
"question": "Which album had a release of heavenly (hvn95)?"
} |
### QUESTION
What is the sum of all the rounds when a Florida State player was drafted?
### CONTEXT
CREATE TABLE table_name_8 (round VARCHAR, college VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_name_8 WHERE college = "florida state"</s> | {
"answer": "SELECT COUNT(round) FROM table_name_8 WHERE college = \"florida state\"",
"context": "CREATE TABLE table_name_8 (round VARCHAR, college VARCHAR)",
"question": "What is the sum of all the rounds when a Florida State player was drafted?"
} |
### QUESTION
How much Draw has a Televote larger than 18, and an Artist of elizabeth anastasiou, and a Jury larger than 4?
### CONTEXT
CREATE TABLE table_name_44 (draw VARCHAR, jury VARCHAR, televote VARCHAR, artist VARCHAR)
### ANSWER
SELECT COUNT(draw) FROM table_name_44 WHERE televote > 18 AND artist = "elizabeth anastasiou" AND jury > 4</s> | {
"answer": "SELECT COUNT(draw) FROM table_name_44 WHERE televote > 18 AND artist = \"elizabeth anastasiou\" AND jury > 4",
"context": "CREATE TABLE table_name_44 (draw VARCHAR, jury VARCHAR, televote VARCHAR, artist VARCHAR)",
"question": "How much Draw has a Televote larger than 18, and an Artist of elizabeth anastasiou, and a Jury larger than 4?"
} |
### QUESTION
Which Place is the highest one that has an Artist of nikolas metaxas, and a Televote larger than 60?
### CONTEXT
CREATE TABLE table_name_65 (place INTEGER, artist VARCHAR, televote VARCHAR)
### ANSWER
SELECT MAX(place) FROM table_name_65 WHERE artist = "nikolas metaxas" AND televote > 60</s> | {
"answer": "SELECT MAX(place) FROM table_name_65 WHERE artist = \"nikolas metaxas\" AND televote > 60",
"context": "CREATE TABLE table_name_65 (place INTEGER, artist VARCHAR, televote VARCHAR)",
"question": "Which Place is the highest one that has an Artist of nikolas metaxas, and a Televote larger than 60?"
} |
### QUESTION
Where was the tournament where Finland received the bronze and the United States received the silver?
### CONTEXT
CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver VARCHAR)
### ANSWER
SELECT venue FROM table_name_22 WHERE bronze = "finland" AND silver = "united states"</s> | {
"answer": "SELECT venue FROM table_name_22 WHERE bronze = \"finland\" AND silver = \"united states\"",
"context": "CREATE TABLE table_name_22 (venue VARCHAR, bronze VARCHAR, silver VARCHAR)",
"question": "Where was the tournament where Finland received the bronze and the United States received the silver?"
} |
### QUESTION
Who created One Night in Lisbon in 1941?
### CONTEXT
CREATE TABLE table_name_78 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, date VARCHAR, title VARCHAR)
### ANSWER
SELECT theatre, _studio, _or_network FROM table_name_78 WHERE date = "1941" AND title = "one night in lisbon"</s> | {
"answer": "SELECT theatre, _studio, _or_network FROM table_name_78 WHERE date = \"1941\" AND title = \"one night in lisbon\"",
"context": "CREATE TABLE table_name_78 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, date VARCHAR, title VARCHAR)",
"question": "Who created One Night in Lisbon in 1941?"
} |
### QUESTION
Who was the host team at Candlestick Park?
### CONTEXT
CREATE TABLE table_name_22 (host_team VARCHAR, stadium VARCHAR)
### ANSWER
SELECT host_team FROM table_name_22 WHERE stadium = "candlestick park"</s> | {
"answer": "SELECT host_team FROM table_name_22 WHERE stadium = \"candlestick park\"",
"context": "CREATE TABLE table_name_22 (host_team VARCHAR, stadium VARCHAR)",
"question": "Who was the host team at Candlestick Park?"
} |
### QUESTION
Which Record has a Kickoff of 12:00pm cst, and a Game site of arrowhead stadium, and a Week of 15?
### CONTEXT
CREATE TABLE table_name_41 (record VARCHAR, week VARCHAR, kickoff VARCHAR, game_site VARCHAR)
### ANSWER
SELECT record FROM table_name_41 WHERE kickoff = "12:00pm cst" AND game_site = "arrowhead stadium" AND week = "15"</s> | {
"answer": "SELECT record FROM table_name_41 WHERE kickoff = \"12:00pm cst\" AND game_site = \"arrowhead stadium\" AND week = \"15\"",
"context": "CREATE TABLE table_name_41 (record VARCHAR, week VARCHAR, kickoff VARCHAR, game_site VARCHAR)",
"question": "Which Record has a Kickoff of 12:00pm cst, and a Game site of arrowhead stadium, and a Week of 15?"
} |
### QUESTION
Name the averag scored for 2011 long teng cup and 2 october 2011
### CONTEXT
CREATE TABLE table_name_64 (scored INTEGER, competition VARCHAR, date VARCHAR)
### ANSWER
SELECT AVG(scored) FROM table_name_64 WHERE competition = "2011 long teng cup" AND date = "2 october 2011"</s> | {
"answer": "SELECT AVG(scored) FROM table_name_64 WHERE competition = \"2011 long teng cup\" AND date = \"2 october 2011\"",
"context": "CREATE TABLE table_name_64 (scored INTEGER, competition VARCHAR, date VARCHAR)",
"question": "Name the averag scored for 2011 long teng cup and 2 october 2011"
} |
### QUESTION
Can you tell me the Barrel twist that has the Barrel lenght of 11.5 in.?
### CONTEXT
CREATE TABLE table_name_63 (barrel_twist VARCHAR, barrel_length VARCHAR)
### ANSWER
SELECT barrel_twist FROM table_name_63 WHERE barrel_length = "11.5 in."</s> | {
"answer": "SELECT barrel_twist FROM table_name_63 WHERE barrel_length = \"11.5 in.\"",
"context": "CREATE TABLE table_name_63 (barrel_twist VARCHAR, barrel_length VARCHAR)",
"question": "Can you tell me the Barrel twist that has the Barrel lenght of 11.5 in.?"
} |
### QUESTION
Which country has an IATA of JFK?
### CONTEXT
CREATE TABLE table_name_3 (country VARCHAR, iata VARCHAR)
### ANSWER
SELECT country FROM table_name_3 WHERE iata = "jfk"</s> | {
"answer": "SELECT country FROM table_name_3 WHERE iata = \"jfk\"",
"context": "CREATE TABLE table_name_3 (country VARCHAR, iata VARCHAR)",
"question": "Which country has an IATA of JFK?"
} |
### QUESTION
In what week was the game on August 24, 1956 played in front of 40,175 fans?
### CONTEXT
CREATE TABLE table_name_10 (week INTEGER, date VARCHAR, attendance VARCHAR)
### ANSWER
SELECT MAX(week) FROM table_name_10 WHERE date = "august 24, 1956" AND attendance > 40 OFFSET 175</s> | {
"answer": "SELECT MAX(week) FROM table_name_10 WHERE date = \"august 24, 1956\" AND attendance > 40 OFFSET 175",
"context": "CREATE TABLE table_name_10 (week INTEGER, date VARCHAR, attendance VARCHAR)",
"question": "In what week was the game on August 24, 1956 played in front of 40,175 fans?"
} |
### QUESTION
Rank smaller than 5, and a Time of 31’ 03.093 is what rider?
### CONTEXT
CREATE TABLE table_name_8 (rider VARCHAR, rank VARCHAR, time VARCHAR)
### ANSWER
SELECT rider FROM table_name_8 WHERE rank < 5 AND time = "31’ 03.093"</s> | {
"answer": "SELECT rider FROM table_name_8 WHERE rank < 5 AND time = \"31’ 03.093\"",
"context": "CREATE TABLE table_name_8 (rider VARCHAR, rank VARCHAR, time VARCHAR)",
"question": "Rank smaller than 5, and a Time of 31’ 03.093 is what rider?"
} |
### QUESTION
What B Mountain Channel has station call letters of k41go?
### CONTEXT
CREATE TABLE table_name_75 (b_mountain_channel VARCHAR, station_call_letters VARCHAR)
### ANSWER
SELECT b_mountain_channel FROM table_name_75 WHERE station_call_letters = "k41go"</s> | {
"answer": "SELECT b_mountain_channel FROM table_name_75 WHERE station_call_letters = \"k41go\"",
"context": "CREATE TABLE table_name_75 (b_mountain_channel VARCHAR, station_call_letters VARCHAR)",
"question": "What B Mountain Channel has station call letters of k41go?"
} |
### QUESTION
Team of honda 250cc, and a Time of 31’ 03.093 has what lowest rank?
### CONTEXT
CREATE TABLE table_name_74 (rank INTEGER, team VARCHAR, time VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_74 WHERE team = "honda 250cc" AND time = "31’ 03.093"</s> | {
"answer": "SELECT MIN(rank) FROM table_name_74 WHERE team = \"honda 250cc\" AND time = \"31’ 03.093\"",
"context": "CREATE TABLE table_name_74 (rank INTEGER, team VARCHAR, time VARCHAR)",
"question": "Team of honda 250cc, and a Time of 31’ 03.093 has what lowest rank?"
} |
### QUESTION
What is the venue where the home team is Footscray?
### CONTEXT
CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR)
### ANSWER
SELECT venue FROM table_name_57 WHERE home_team = "footscray"</s> | {
"answer": "SELECT venue FROM table_name_57 WHERE home_team = \"footscray\"",
"context": "CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR)",
"question": "What is the venue where the home team is Footscray?"
} |
### QUESTION
Which Total matches is the lowest one that has a Total W-L-H of 1-2-0?
### CONTEXT
CREATE TABLE table_name_33 (total_matches INTEGER, total_w_l_h VARCHAR)
### ANSWER
SELECT MIN(total_matches) FROM table_name_33 WHERE total_w_l_h = "1-2-0"</s> | {
"answer": "SELECT MIN(total_matches) FROM table_name_33 WHERE total_w_l_h = \"1-2-0\"",
"context": "CREATE TABLE table_name_33 (total_matches INTEGER, total_w_l_h VARCHAR)",
"question": "Which Total matches is the lowest one that has a Total W-L-H of 1-2-0?"
} |
### QUESTION
What away team is playing at the Brunswick Street Oval Venue?
### CONTEXT
CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team FROM table_name_22 WHERE venue = "brunswick street oval"</s> | {
"answer": "SELECT away_team FROM table_name_22 WHERE venue = \"brunswick street oval\"",
"context": "CREATE TABLE table_name_22 (away_team VARCHAR, venue VARCHAR)",
"question": "What away team is playing at the Brunswick Street Oval Venue?"
} |
### QUESTION
Which date has the tom gullikson butch walts final, and who was the runner-up?
### CONTEXT
CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)
### ANSWER
SELECT date FROM table_name_74 WHERE outcome = "runner-up" AND opponents_in_the_final = "tom gullikson butch walts"</s> | {
"answer": "SELECT date FROM table_name_74 WHERE outcome = \"runner-up\" AND opponents_in_the_final = \"tom gullikson butch walts\"",
"context": "CREATE TABLE table_name_74 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)",
"question": "Which date has the tom gullikson butch walts final, and who was the runner-up?"
} |
### QUESTION
Who is the color commentator for ESPN from 1990 to 1992?
### CONTEXT
CREATE TABLE table_name_70 (color_commentator_s_ VARCHAR, network VARCHAR)
### ANSWER
SELECT color_commentator_s_ FROM table_name_70 WHERE network = "espn"</s> | {
"answer": "SELECT color_commentator_s_ FROM table_name_70 WHERE network = \"espn\"",
"context": "CREATE TABLE table_name_70 (color_commentator_s_ VARCHAR, network VARCHAR)",
"question": "Who is the color commentator for ESPN from 1990 to 1992?"
} |
### QUESTION
How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events?
### CONTEXT
CREATE TABLE table_name_76 (cuts_made INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR)
### ANSWER
SELECT SUM(cuts_made) FROM table_name_76 WHERE wins = 0 AND top_25 = 1 AND events > 4</s> | {
"answer": "SELECT SUM(cuts_made) FROM table_name_76 WHERE wins = 0 AND top_25 = 1 AND events > 4",
"context": "CREATE TABLE table_name_76 (cuts_made INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR)",
"question": "How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events?"
} |
### QUESTION
When was the locomotive named fighter command built?
### CONTEXT
CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR)
### ANSWER
SELECT whenbuilt FROM table_name_28 WHERE name = "fighter command"</s> | {
"answer": "SELECT whenbuilt FROM table_name_28 WHERE name = \"fighter command\"",
"context": "CREATE TABLE table_name_28 (whenbuilt VARCHAR, name VARCHAR)",
"question": "When was the locomotive named fighter command built?"
} |
### QUESTION
Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step?
### CONTEXT
CREATE TABLE table_name_34 (combination_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR)
### ANSWER
SELECT combination_classification FROM table_name_34 WHERE points_classification = "daniele bennati" AND team_classification = "quick step"</s> | {
"answer": "SELECT combination_classification FROM table_name_34 WHERE points_classification = \"daniele bennati\" AND team_classification = \"quick step\"",
"context": "CREATE TABLE table_name_34 (combination_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR)",
"question": "Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step?"
} |
### QUESTION
Which Mountains classification has a Team classification of quick step?
### CONTEXT
CREATE TABLE table_name_81 (mountains_classification VARCHAR, team_classification VARCHAR)
### ANSWER
SELECT mountains_classification FROM table_name_81 WHERE team_classification = "quick step"</s> | {
"answer": "SELECT mountains_classification FROM table_name_81 WHERE team_classification = \"quick step\"",
"context": "CREATE TABLE table_name_81 (mountains_classification VARCHAR, team_classification VARCHAR)",
"question": "Which Mountains classification has a Team classification of quick step?"
} |
### QUESTION
Which Team classification has a Combination classification of egoi martínez, and a Winner of tom boonen?
### CONTEXT
CREATE TABLE table_name_28 (team_classification VARCHAR, combination_classification VARCHAR, winner VARCHAR)
### ANSWER
SELECT team_classification FROM table_name_28 WHERE combination_classification = "egoi martínez" AND winner = "tom boonen"</s> | {
"answer": "SELECT team_classification FROM table_name_28 WHERE combination_classification = \"egoi martínez\" AND winner = \"tom boonen\"",
"context": "CREATE TABLE table_name_28 (team_classification VARCHAR, combination_classification VARCHAR, winner VARCHAR)",
"question": "Which Team classification has a Combination classification of egoi martínez, and a Winner of tom boonen?"
} |
### QUESTION
What is the # of candidates that have a popular vote of 41.37%?
### CONTEXT
CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR)
### ANSWER
SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = "41.37%"</s> | {
"answer": "SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = \"41.37%\"",
"context": "CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR)",
"question": "What is the # of candidates that have a popular vote of 41.37%?"
} |
### QUESTION
How many general elections that have won smaller than 23 with candidates larger than 108?
### CONTEXT
CREATE TABLE table_name_95 (general_election VARCHAR, _number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)
### ANSWER
SELECT COUNT(general_election) FROM table_name_95 WHERE _number_of_seats_won < 23 AND _number_of_candidates > 108</s> | {
"answer": "SELECT COUNT(general_election) FROM table_name_95 WHERE _number_of_seats_won < 23 AND _number_of_candidates > 108",
"context": "CREATE TABLE table_name_95 (general_election VARCHAR, _number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)",
"question": "How many general elections that have won smaller than 23 with candidates larger than 108?"
} |
### QUESTION
What was the essendon score when they were at home?
### CONTEXT
CREATE TABLE table_name_25 (home_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_25 WHERE home_team = "essendon"</s> | {
"answer": "SELECT home_team AS score FROM table_name_25 WHERE home_team = \"essendon\"",
"context": "CREATE TABLE table_name_25 (home_team VARCHAR)",
"question": "What was the essendon score when they were at home?"
} |
### QUESTION
Name the M809 seris with M939 series of M931/932
### CONTEXT
CREATE TABLE table_name_88 (m809_series VARCHAR, m939_series VARCHAR)
### ANSWER
SELECT m809_series FROM table_name_88 WHERE m939_series = "m931/932"</s> | {
"answer": "SELECT m809_series FROM table_name_88 WHERE m939_series = \"m931/932\"",
"context": "CREATE TABLE table_name_88 (m809_series VARCHAR, m939_series VARCHAR)",
"question": "Name the M809 seris with M939 series of M931/932"
} |
### QUESTION
Manufacturer of honda, and a Rank of 8 had what highest wins?
### CONTEXT
CREATE TABLE table_name_71 (wins INTEGER, manufacturer VARCHAR, rank VARCHAR)
### ANSWER
SELECT MAX(wins) FROM table_name_71 WHERE manufacturer = "honda" AND rank = 8</s> | {
"answer": "SELECT MAX(wins) FROM table_name_71 WHERE manufacturer = \"honda\" AND rank = 8",
"context": "CREATE TABLE table_name_71 (wins INTEGER, manufacturer VARCHAR, rank VARCHAR)",
"question": "Manufacturer of honda, and a Rank of 8 had what highest wins?"
} |
### QUESTION
What is the latest year that shadow racing team scored more than 0 points?
### CONTEXT
CREATE TABLE table_name_13 (year INTEGER, entrant VARCHAR, pts VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_13 WHERE entrant = "shadow racing team" AND pts > 0</s> | {
"answer": "SELECT MAX(year) FROM table_name_13 WHERE entrant = \"shadow racing team\" AND pts > 0",
"context": "CREATE TABLE table_name_13 (year INTEGER, entrant VARCHAR, pts VARCHAR)",
"question": "What is the latest year that shadow racing team scored more than 0 points?"
} |
### QUESTION
What was the most recent year when a g-force chassis started in 1st?
### CONTEXT
CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_35 WHERE start = "1st" AND chassis = "g-force"</s> | {
"answer": "SELECT MAX(year) FROM table_name_35 WHERE start = \"1st\" AND chassis = \"g-force\"",
"context": "CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR)",
"question": "What was the most recent year when a g-force chassis started in 1st?"
} |
### QUESTION
What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel?
### CONTEXT
CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR)
### ANSWER
SELECT vessel_name FROM table_name_56 WHERE flag = "malta" AND type = "panamax" AND class = "gl" AND built > 2010</s> | {
"answer": "SELECT vessel_name FROM table_name_56 WHERE flag = \"malta\" AND type = \"panamax\" AND class = \"gl\" AND built > 2010",
"context": "CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR)",
"question": "What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel?"
} |
### QUESTION
Which year was the vessel Deva built as a Panamax DNV class ship?
### CONTEXT
CREATE TABLE table_name_54 (built INTEGER, vessel_name VARCHAR, class VARCHAR, type VARCHAR)
### ANSWER
SELECT SUM(built) FROM table_name_54 WHERE class = "dnv" AND type = "panamax" AND vessel_name = "deva"</s> | {
"answer": "SELECT SUM(built) FROM table_name_54 WHERE class = \"dnv\" AND type = \"panamax\" AND vessel_name = \"deva\"",
"context": "CREATE TABLE table_name_54 (built INTEGER, vessel_name VARCHAR, class VARCHAR, type VARCHAR)",
"question": "Which year was the vessel Deva built as a Panamax DNV class ship?"
} |
### QUESTION
What was the Stage when Pascal Richard had the Mountains classification and Vladimir Poulnikov won?
### CONTEXT
CREATE TABLE table_name_71 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
### ANSWER
SELECT stage FROM table_name_71 WHERE mountains_classification = "pascal richard" AND winner = "vladimir poulnikov"</s> | {
"answer": "SELECT stage FROM table_name_71 WHERE mountains_classification = \"pascal richard\" AND winner = \"vladimir poulnikov\"",
"context": "CREATE TABLE table_name_71 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR)",
"question": "What was the Stage when Pascal Richard had the Mountains classification and Vladimir Poulnikov won?"
} |
### QUESTION
What was the result for Thirst in 2010 at the Green Globe Film Awards?
### CONTEXT
CREATE TABLE table_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR)
### ANSWER
SELECT result FROM table_name_91 WHERE film_series = "thirst" AND year = 2010 AND group = "green globe film awards"</s> | {
"answer": "SELECT result FROM table_name_91 WHERE film_series = \"thirst\" AND year = 2010 AND group = \"green globe film awards\"",
"context": "CREATE TABLE table_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR)",
"question": "What was the result for Thirst in 2010 at the Green Globe Film Awards?"
} |
### QUESTION
What is the average year in which Kim was nominated for Thirst as Best Actress at the Baeksang Arts Awards?
### CONTEXT
CREATE TABLE table_name_92 (year INTEGER, group VARCHAR, award VARCHAR, result VARCHAR, film_series VARCHAR)
### ANSWER
SELECT AVG(year) FROM table_name_92 WHERE result = "nominated" AND film_series = "thirst" AND award = "best actress" AND group = "baeksang arts awards"</s> | {
"answer": "SELECT AVG(year) FROM table_name_92 WHERE result = \"nominated\" AND film_series = \"thirst\" AND award = \"best actress\" AND group = \"baeksang arts awards\"",
"context": "CREATE TABLE table_name_92 (year INTEGER, group VARCHAR, award VARCHAR, result VARCHAR, film_series VARCHAR)",
"question": "What is the average year in which Kim was nominated for Thirst as Best Actress at the Baeksang Arts Awards?"
} |
### QUESTION
What is the lowest round Trinity school was drafted with an overall higher than 21?
### CONTEXT
CREATE TABLE table_name_89 (round INTEGER, school_club_team VARCHAR, overall VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_89 WHERE school_club_team = "trinity" AND overall < 21</s> | {
"answer": "SELECT MIN(round) FROM table_name_89 WHERE school_club_team = \"trinity\" AND overall < 21",
"context": "CREATE TABLE table_name_89 (round INTEGER, school_club_team VARCHAR, overall VARCHAR)",
"question": "What is the lowest round Trinity school was drafted with an overall higher than 21?"
} |
### QUESTION
What is the date of the game later than week 13 and 41,862 people attended?
### CONTEXT
CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR, attendance VARCHAR)
### ANSWER
SELECT date FROM table_name_62 WHERE week > 13 AND attendance = "41,862"</s> | {
"answer": "SELECT date FROM table_name_62 WHERE week > 13 AND attendance = \"41,862\"",
"context": "CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR, attendance VARCHAR)",
"question": "What is the date of the game later than week 13 and 41,862 people attended?"
} |
### QUESTION
What round has this song: 陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你?
### CONTEXT
CREATE TABLE table_name_18 (round VARCHAR, song VARCHAR)
### ANSWER
SELECT round FROM table_name_18 WHERE song = "陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你"</s> | {
"answer": "SELECT round FROM table_name_18 WHERE song = \"陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你\"",
"context": "CREATE TABLE table_name_18 (round VARCHAR, song VARCHAR)",
"question": "What round has this song: 陶喆、蔡依林 - 今天你要嫁给我/曹格 - 世界唯一的你?"
} |
### QUESTION
What week had an attendance of 14,381?
### CONTEXT
CREATE TABLE table_name_25 (week INTEGER, attendance VARCHAR)
### ANSWER
SELECT AVG(week) FROM table_name_25 WHERE attendance = "14,381"</s> | {
"answer": "SELECT AVG(week) FROM table_name_25 WHERE attendance = \"14,381\"",
"context": "CREATE TABLE table_name_25 (week INTEGER, attendance VARCHAR)",
"question": "What week had an attendance of 14,381?"
} |
### QUESTION
Which Network has a Rank larger than 5, a Show of 2012 summer olympics closing ceremony in london?
### CONTEXT
CREATE TABLE table_name_34 (network VARCHAR, rank VARCHAR, show VARCHAR)
### ANSWER
SELECT network FROM table_name_34 WHERE rank > 5 AND show = "2012 summer olympics closing ceremony in london"</s> | {
"answer": "SELECT network FROM table_name_34 WHERE rank > 5 AND show = \"2012 summer olympics closing ceremony in london\"",
"context": "CREATE TABLE table_name_34 (network VARCHAR, rank VARCHAR, show VARCHAR)",
"question": "Which Network has a Rank larger than 5, a Show of 2012 summer olympics closing ceremony in london?"
} |
### QUESTION
What is the s default argument without a pseudorandom number generation and no eval function?
### CONTEXT
CREATE TABLE table_name_37 (s_default_argument VARCHAR, pseudorandom_number_generation VARCHAR, eval_function VARCHAR)
### ANSWER
SELECT s_default_argument FROM table_name_37 WHERE pseudorandom_number_generation = "no" AND eval_function = "no"</s> | {
"answer": "SELECT s_default_argument FROM table_name_37 WHERE pseudorandom_number_generation = \"no\" AND eval_function = \"no\"",
"context": "CREATE TABLE table_name_37 (s_default_argument VARCHAR, pseudorandom_number_generation VARCHAR, eval_function VARCHAR)",
"question": "What is the s default argument without a pseudorandom number generation and no eval function?"
} |
### QUESTION
What is the lambda function without a pseudorandom number generation, no s default argument, no functions, and no eval function?
### CONTEXT
CREATE TABLE table_name_10 (lambda_functions VARCHAR, eval_function VARCHAR, functions VARCHAR, pseudorandom_number_generation VARCHAR, s_default_argument VARCHAR)
### ANSWER
SELECT lambda_functions FROM table_name_10 WHERE pseudorandom_number_generation = "no" AND s_default_argument = "no" AND functions = "no" AND eval_function = "no"</s> | {
"answer": "SELECT lambda_functions FROM table_name_10 WHERE pseudorandom_number_generation = \"no\" AND s_default_argument = \"no\" AND functions = \"no\" AND eval_function = \"no\"",
"context": "CREATE TABLE table_name_10 (lambda_functions VARCHAR, eval_function VARCHAR, functions VARCHAR, pseudorandom_number_generation VARCHAR, s_default_argument VARCHAR)",
"question": "What is the lambda function without a pseudorandom number generation, no s default argument, no functions, and no eval function?"
} |
### QUESTION
Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?
### CONTEXT
CREATE TABLE table_name_18 (player VARCHAR, début VARCHAR, opposition VARCHAR, last_game VARCHAR)
### ANSWER
SELECT player FROM table_name_18 WHERE opposition = "limerick" AND last_game = "munster semi-final" AND début = 1973</s> | {
"answer": "SELECT player FROM table_name_18 WHERE opposition = \"limerick\" AND last_game = \"munster semi-final\" AND début = 1973",
"context": "CREATE TABLE table_name_18 (player VARCHAR, début VARCHAR, opposition VARCHAR, last_game VARCHAR)",
"question": "Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?"
} |
### QUESTION
Which network's genre is music?
### CONTEXT
CREATE TABLE table_name_8 (network VARCHAR, genre VARCHAR)
### ANSWER
SELECT network FROM table_name_8 WHERE genre = "music"</s> | {
"answer": "SELECT network FROM table_name_8 WHERE genre = \"music\"",
"context": "CREATE TABLE table_name_8 (network VARCHAR, genre VARCHAR)",
"question": "Which network's genre is music?"
} |
### QUESTION
What genre is Star Plus from India?
### CONTEXT
CREATE TABLE table_name_50 (genre VARCHAR, origin_of_programming VARCHAR, network VARCHAR)
### ANSWER
SELECT genre FROM table_name_50 WHERE origin_of_programming = "india" AND network = "star plus"</s> | {
"answer": "SELECT genre FROM table_name_50 WHERE origin_of_programming = \"india\" AND network = \"star plus\"",
"context": "CREATE TABLE table_name_50 (genre VARCHAR, origin_of_programming VARCHAR, network VARCHAR)",
"question": "What genre is Star Plus from India?"
} |
### QUESTION
What were the events in the 1976 Innsbruck Games?
### CONTEXT
CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR)
### ANSWER
SELECT event FROM table_name_60 WHERE games = "1976 innsbruck"</s> | {
"answer": "SELECT event FROM table_name_60 WHERE games = \"1976 innsbruck\"",
"context": "CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR)",
"question": "What were the events in the 1976 Innsbruck Games?"
} |
### QUESTION
What was the 2nd leg when Team 1 was Chicago Croatian?
### CONTEXT
CREATE TABLE table_name_57 (team_1 VARCHAR)
### ANSWER
SELECT 2 AS nd_leg FROM table_name_57 WHERE team_1 = "chicago croatian"</s> | {
"answer": "SELECT 2 AS nd_leg FROM table_name_57 WHERE team_1 = \"chicago croatian\"",
"context": "CREATE TABLE table_name_57 (team_1 VARCHAR)",
"question": "What was the 2nd leg when Team 1 was Chicago Croatian?"
} |
### QUESTION
Who was the color commentator for Eric Dickerson and Melissa Stark in 2001?
### CONTEXT
CREATE TABLE table_name_42 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR, year VARCHAR)
### ANSWER
SELECT color_commentator_s_ FROM table_name_42 WHERE sideline_reporter_s_ = "eric dickerson and melissa stark" AND year = 2001</s> | {
"answer": "SELECT color_commentator_s_ FROM table_name_42 WHERE sideline_reporter_s_ = \"eric dickerson and melissa stark\" AND year = 2001",
"context": "CREATE TABLE table_name_42 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR, year VARCHAR)",
"question": "Who was the color commentator for Eric Dickerson and Melissa Stark in 2001?"
} |
### QUESTION
Which nationality do the Montreal Canadiens belong to with a pick# of 25?
### CONTEXT
CREATE TABLE table_name_55 (nationality VARCHAR, nhl_team VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT nationality FROM table_name_55 WHERE nhl_team = "montreal canadiens" AND pick__number = "25"</s> | {
"answer": "SELECT nationality FROM table_name_55 WHERE nhl_team = \"montreal canadiens\" AND pick__number = \"25\"",
"context": "CREATE TABLE table_name_55 (nationality VARCHAR, nhl_team VARCHAR, pick__number VARCHAR)",
"question": "Which nationality do the Montreal Canadiens belong to with a pick# of 25?"
} |
### QUESTION
Who was Al Michaels' color commentator in 2003?
### CONTEXT
CREATE TABLE table_name_69 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)
### ANSWER
SELECT color_commentator_s_ FROM table_name_69 WHERE play_by_play = "al michaels" AND year > 2003</s> | {
"answer": "SELECT color_commentator_s_ FROM table_name_69 WHERE play_by_play = \"al michaels\" AND year > 2003",
"context": "CREATE TABLE table_name_69 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)",
"question": "Who was Al Michaels' color commentator in 2003?"
} |
### QUESTION
Which Site that has a Sex and other data of old male?
### CONTEXT
CREATE TABLE table_name_42 (site INTEGER, sex_and_other_data VARCHAR)
### ANSWER
SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = "old male"</s> | {
"answer": "SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = \"old male\"",
"context": "CREATE TABLE table_name_42 (site INTEGER, sex_and_other_data VARCHAR)",
"question": "Which Site that has a Sex and other data of old male?"
} |
### QUESTION
what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis?
### CONTEXT
CREATE TABLE table_name_37 (competing_entities VARCHAR, sport VARCHAR, age_groups VARCHAR, held_every VARCHAR)
### ANSWER
SELECT competing_entities FROM table_name_37 WHERE age_groups = "18 or younger" AND held_every = "one year" AND sport = "table tennis"</s> | {
"answer": "SELECT competing_entities FROM table_name_37 WHERE age_groups = \"18 or younger\" AND held_every = \"one year\" AND sport = \"table tennis\"",
"context": "CREATE TABLE table_name_37 (competing_entities VARCHAR, sport VARCHAR, age_groups VARCHAR, held_every VARCHAR)",
"question": "what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis?"
} |
### QUESTION
What is shown for Record as played with a Regular season Vacated of 24–0 later than 1997?
### CONTEXT
CREATE TABLE table_name_19 (record_as_played VARCHAR, regular_season_vacated VARCHAR, season VARCHAR)
### ANSWER
SELECT record_as_played FROM table_name_19 WHERE regular_season_vacated = "24–0" AND season > 1997</s> | {
"answer": "SELECT record_as_played FROM table_name_19 WHERE regular_season_vacated = \"24–0\" AND season > 1997",
"context": "CREATE TABLE table_name_19 (record_as_played VARCHAR, regular_season_vacated VARCHAR, season VARCHAR)",
"question": "What is shown for Record as played with a Regular season Vacated of 24–0 later than 1997?"
} |
### QUESTION
Which episode had Hoagy carmichael safe with an order of 5?
### CONTEXT
CREATE TABLE table_name_10 (episode VARCHAR, original_artist VARCHAR, result VARCHAR, order__number VARCHAR)
### ANSWER
SELECT episode FROM table_name_10 WHERE result = "safe" AND order__number = "5" AND original_artist = "hoagy carmichael"</s> | {
"answer": "SELECT episode FROM table_name_10 WHERE result = \"safe\" AND order__number = \"5\" AND original_artist = \"hoagy carmichael\"",
"context": "CREATE TABLE table_name_10 (episode VARCHAR, original_artist VARCHAR, result VARCHAR, order__number VARCHAR)",
"question": "Which episode had Hoagy carmichael safe with an order of 5?"
} |
### QUESTION
What Date is listed for the Region of France and Catalog of 82876-70291-2?
### CONTEXT
CREATE TABLE table_name_48 (date VARCHAR, region VARCHAR, catalog VARCHAR)
### ANSWER
SELECT date FROM table_name_48 WHERE region = "france" AND catalog = "82876-70291-2"</s> | {
"answer": "SELECT date FROM table_name_48 WHERE region = \"france\" AND catalog = \"82876-70291-2\"",
"context": "CREATE TABLE table_name_48 (date VARCHAR, region VARCHAR, catalog VARCHAR)",
"question": "What Date is listed for the Region of France and Catalog of 82876-70291-2?"
} |
### QUESTION
Which dance style had a draw smaller than 15 and 18 points?
### CONTEXT
CREATE TABLE table_name_54 (dance_styles VARCHAR, draw VARCHAR, points VARCHAR)
### ANSWER
SELECT dance_styles FROM table_name_54 WHERE draw < 15 AND points = 18</s> | {
"answer": "SELECT dance_styles FROM table_name_54 WHERE draw < 15 AND points = 18",
"context": "CREATE TABLE table_name_54 (dance_styles VARCHAR, draw VARCHAR, points VARCHAR)",
"question": "Which dance style had a draw smaller than 15 and 18 points?"
} |
### QUESTION
What is the smallest crowd at victoria park?
### CONTEXT
CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR)
### ANSWER
SELECT MIN(crowd) FROM table_name_22 WHERE venue = "victoria park"</s> | {
"answer": "SELECT MIN(crowd) FROM table_name_22 WHERE venue = \"victoria park\"",
"context": "CREATE TABLE table_name_22 (crowd INTEGER, venue VARCHAR)",
"question": "What is the smallest crowd at victoria park?"
} |
### QUESTION
What is the team classification with a winner of Beat Zberg, and a points classification of José María Jiménez.
### CONTEXT
CREATE TABLE table_name_13 (team_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)
### ANSWER
SELECT team_classification FROM table_name_13 WHERE points_classification = "josé maría jiménez" AND winner = "beat zberg"</s> | {
"answer": "SELECT team_classification FROM table_name_13 WHERE points_classification = \"josé maría jiménez\" AND winner = \"beat zberg\"",
"context": "CREATE TABLE table_name_13 (team_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)",
"question": "What is the team classification with a winner of Beat Zberg, and a points classification of José María Jiménez."
} |
### QUESTION
In what city is the Don Valley Stadium located?
### CONTEXT
CREATE TABLE table_name_61 (city VARCHAR, stadium VARCHAR)
### ANSWER
SELECT city FROM table_name_61 WHERE stadium = "don valley stadium"</s> | {
"answer": "SELECT city FROM table_name_61 WHERE stadium = \"don valley stadium\"",
"context": "CREATE TABLE table_name_61 (city VARCHAR, stadium VARCHAR)",
"question": "In what city is the Don Valley Stadium located?"
} |
### QUESTION
What is the average crowd size for games with hawthorn as the home side?
### CONTEXT
CREATE TABLE table_name_8 (crowd INTEGER, home_team VARCHAR)
### ANSWER
SELECT AVG(crowd) FROM table_name_8 WHERE home_team = "hawthorn"</s> | {
"answer": "SELECT AVG(crowd) FROM table_name_8 WHERE home_team = \"hawthorn\"",
"context": "CREATE TABLE table_name_8 (crowd INTEGER, home_team VARCHAR)",
"question": "What is the average crowd size for games with hawthorn as the home side?"
} |
### QUESTION
What is the average Redline RPM of engines with engine code M57TUD30, made after 2002?
### CONTEXT
CREATE TABLE table_name_49 (redline__rpm_ INTEGER, engine_code VARCHAR, year VARCHAR)
### ANSWER
SELECT AVG(redline__rpm_) FROM table_name_49 WHERE engine_code = "m57tud30" AND year > 2002</s> | {
"answer": "SELECT AVG(redline__rpm_) FROM table_name_49 WHERE engine_code = \"m57tud30\" AND year > 2002",
"context": "CREATE TABLE table_name_49 (redline__rpm_ INTEGER, engine_code VARCHAR, year VARCHAR)",
"question": "What is the average Redline RPM of engines with engine code M57TUD30, made after 2002?"
} |
### QUESTION
When richmond was the Away team what was the score of the home team?
### CONTEXT
CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_37 WHERE away_team = "richmond"</s> | {
"answer": "SELECT home_team AS score FROM table_name_37 WHERE away_team = \"richmond\"",
"context": "CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)",
"question": "When richmond was the Away team what was the score of the home team?"
} |
### QUESTION
How many silvers for the nation with under 6 total and under 0 bronze?
### CONTEXT
CREATE TABLE table_name_62 (silver VARCHAR, total VARCHAR, bronze VARCHAR)
### ANSWER
SELECT COUNT(silver) FROM table_name_62 WHERE total < 6 AND bronze < 0</s> | {
"answer": "SELECT COUNT(silver) FROM table_name_62 WHERE total < 6 AND bronze < 0",
"context": "CREATE TABLE table_name_62 (silver VARCHAR, total VARCHAR, bronze VARCHAR)",
"question": "How many silvers for the nation with under 6 total and under 0 bronze?"
} |
### QUESTION
Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable?
### CONTEXT
CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR)
### ANSWER
SELECT origin_of_programming FROM table_name_12 WHERE genre = "general" AND network = "ntv bangla" AND service = "cogeco cable"</s> | {
"answer": "SELECT origin_of_programming FROM table_name_12 WHERE genre = \"general\" AND network = \"ntv bangla\" AND service = \"cogeco cable\"",
"context": "CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR)",
"question": "Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable?"
} |
### QUESTION
Which service has a hindi language, general genre and zee tv network?
### CONTEXT
CREATE TABLE table_name_95 (service VARCHAR, network VARCHAR, language VARCHAR, genre VARCHAR)
### ANSWER
SELECT service FROM table_name_95 WHERE language = "hindi" AND genre = "general" AND network = "zee tv"</s> | {
"answer": "SELECT service FROM table_name_95 WHERE language = \"hindi\" AND genre = \"general\" AND network = \"zee tv\"",
"context": "CREATE TABLE table_name_95 (service VARCHAR, network VARCHAR, language VARCHAR, genre VARCHAR)",
"question": "Which service has a hindi language, general genre and zee tv network?"
} |
### QUESTION
What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10?
### CONTEXT
CREATE TABLE table_name_86 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT SUM(gold) FROM table_name_86 WHERE silver = 1 AND bronze < 2 AND total = 1 AND rank < 10</s> | {
"answer": "SELECT SUM(gold) FROM table_name_86 WHERE silver = 1 AND bronze < 2 AND total = 1 AND rank < 10",
"context": "CREATE TABLE table_name_86 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)",
"question": "What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10?"
} |
### QUESTION
What is the time for when cornelio velasquez was the jockey?
### CONTEXT
CREATE TABLE table_name_12 (time VARCHAR, jockey VARCHAR)
### ANSWER
SELECT time FROM table_name_12 WHERE jockey = "cornelio velasquez"</s> | {
"answer": "SELECT time FROM table_name_12 WHERE jockey = \"cornelio velasquez\"",
"context": "CREATE TABLE table_name_12 (time VARCHAR, jockey VARCHAR)",
"question": "What is the time for when cornelio velasquez was the jockey?"
} |
### QUESTION
The Palazzo's street address is listed as what?
### CONTEXT
CREATE TABLE table_name_73 (street_address VARCHAR, name VARCHAR)
### ANSWER
SELECT street_address FROM table_name_73 WHERE name = "the palazzo"</s> | {
"answer": "SELECT street_address FROM table_name_73 WHERE name = \"the palazzo\"",
"context": "CREATE TABLE table_name_73 (street_address VARCHAR, name VARCHAR)",
"question": "The Palazzo's street address is listed as what?"
} |
### QUESTION
Who was the trainer in 2013?
### CONTEXT
CREATE TABLE table_name_71 (trainer VARCHAR, year VARCHAR)
### ANSWER
SELECT trainer FROM table_name_71 WHERE year = 2013</s> | {
"answer": "SELECT trainer FROM table_name_71 WHERE year = 2013",
"context": "CREATE TABLE table_name_71 (trainer VARCHAR, year VARCHAR)",
"question": "Who was the trainer in 2013?"
} |
### QUESTION
How many people were in attendance in a week over 4 on December 6, 1981?
### CONTEXT
CREATE TABLE table_name_76 (attendance VARCHAR, week VARCHAR, date VARCHAR)
### ANSWER
SELECT COUNT(attendance) FROM table_name_76 WHERE week > 4 AND date = "december 6, 1981"</s> | {
"answer": "SELECT COUNT(attendance) FROM table_name_76 WHERE week > 4 AND date = \"december 6, 1981\"",
"context": "CREATE TABLE table_name_76 (attendance VARCHAR, week VARCHAR, date VARCHAR)",
"question": "How many people were in attendance in a week over 4 on December 6, 1981?"
} |
### QUESTION
Name the least game for october 10 at shibe park
### CONTEXT
CREATE TABLE table_name_5 (game INTEGER, location VARCHAR, date VARCHAR)
### ANSWER
SELECT MIN(game) FROM table_name_5 WHERE location = "shibe park" AND date = "october 10"</s> | {
"answer": "SELECT MIN(game) FROM table_name_5 WHERE location = \"shibe park\" AND date = \"october 10\"",
"context": "CREATE TABLE table_name_5 (game INTEGER, location VARCHAR, date VARCHAR)",
"question": "Name the least game for october 10 at shibe park"
} |
### QUESTION
In 2009, what Appearances had a Winning Percentage of less than 0?
### CONTEXT
CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR)
### ANSWER
SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = "2009" AND winning_percentage < 0</s> | {
"answer": "SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = \"2009\" AND winning_percentage < 0",
"context": "CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR)",
"question": "In 2009, what Appearances had a Winning Percentage of less than 0?"
} |
### QUESTION
What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?
### CONTEXT
CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR)
### ANSWER
SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10</s> | {
"answer": "SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10",
"context": "CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR)",
"question": "What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?"
} |
### QUESTION
What date has an outcome of runner-up, and a Score of 6–4, 6–2, and a Opponents of gisela dulko flavia pennetta?
### CONTEXT
CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, outcome VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_42 WHERE outcome = "runner-up" AND score = "6–4, 6–2" AND opponents = "gisela dulko flavia pennetta"</s> | {
"answer": "SELECT date FROM table_name_42 WHERE outcome = \"runner-up\" AND score = \"6–4, 6–2\" AND opponents = \"gisela dulko flavia pennetta\"",
"context": "CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, outcome VARCHAR, score VARCHAR)",
"question": "What date has an outcome of runner-up, and a Score of 6–4, 6–2, and a Opponents of gisela dulko flavia pennetta?"
} |
### QUESTION
What is the average round that the player from USF was picked in when his draft pick number was less than 24?
### CONTEXT
CREATE TABLE table_name_48 (round INTEGER, college VARCHAR, pick__number VARCHAR)
### ANSWER
SELECT AVG(round) FROM table_name_48 WHERE college = "usf" AND pick__number < 24</s> | {
"answer": "SELECT AVG(round) FROM table_name_48 WHERE college = \"usf\" AND pick__number < 24",
"context": "CREATE TABLE table_name_48 (round INTEGER, college VARCHAR, pick__number VARCHAR)",
"question": "What is the average round that the player from USF was picked in when his draft pick number was less than 24?"
} |
### QUESTION
What Average Pick # has an Overall of 296?
### CONTEXT
CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)
### ANSWER
SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296</s> | {
"answer": "SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296",
"context": "CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)",
"question": "What Average Pick # has an Overall of 296?"
} |
### QUESTION
Which member is from the state of SA and the grey electorate?
### CONTEXT
CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR)
### ANSWER
SELECT member FROM table_name_74 WHERE state = "sa" AND electorate = "grey"</s> | {
"answer": "SELECT member FROM table_name_74 WHERE state = \"sa\" AND electorate = \"grey\"",
"context": "CREATE TABLE table_name_74 (member VARCHAR, state VARCHAR, electorate VARCHAR)",
"question": "Which member is from the state of SA and the grey electorate?"
} |
### QUESTION
How many heats had 2 lanes, a rank above 75, and nationality of Madagascar?
### CONTEXT
CREATE TABLE table_name_48 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(heat) FROM table_name_48 WHERE lane = 2 AND rank > 75 AND nationality = "madagascar"</s> | {
"answer": "SELECT COUNT(heat) FROM table_name_48 WHERE lane = 2 AND rank > 75 AND nationality = \"madagascar\"",
"context": "CREATE TABLE table_name_48 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR)",
"question": "How many heats had 2 lanes, a rank above 75, and nationality of Madagascar?"
} |
### QUESTION
Which call sign has a Class of A, and a Frequency MHz of 88.7?
### CONTEXT
CREATE TABLE table_name_1 (call_sign VARCHAR, class VARCHAR, frequency_mhz VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_1 WHERE class = "a" AND frequency_mhz = 88.7</s> | {
"answer": "SELECT call_sign FROM table_name_1 WHERE class = \"a\" AND frequency_mhz = 88.7",
"context": "CREATE TABLE table_name_1 (call_sign VARCHAR, class VARCHAR, frequency_mhz VARCHAR)",
"question": "Which call sign has a Class of A, and a Frequency MHz of 88.7?"
} |
### QUESTION
What division is Traktor Tashkent in 2005?
### CONTEXT
CREATE TABLE table_name_83 (division VARCHAR, team VARCHAR, season VARCHAR)
### ANSWER
SELECT division FROM table_name_83 WHERE team = "traktor tashkent" AND season = "2005"</s> | {
"answer": "SELECT division FROM table_name_83 WHERE team = \"traktor tashkent\" AND season = \"2005\"",
"context": "CREATE TABLE table_name_83 (division VARCHAR, team VARCHAR, season VARCHAR)",
"question": "What division is Traktor Tashkent in 2005?"
} |
### QUESTION
Name the nominated work for 1996 and festival of black maria film and video festival
### CONTEXT
CREATE TABLE table_name_7 (nominated_work VARCHAR, year VARCHAR, festival VARCHAR)
### ANSWER
SELECT nominated_work FROM table_name_7 WHERE year = 1996 AND festival = "black maria film and video festival"</s> | {
"answer": "SELECT nominated_work FROM table_name_7 WHERE year = 1996 AND festival = \"black maria film and video festival\"",
"context": "CREATE TABLE table_name_7 (nominated_work VARCHAR, year VARCHAR, festival VARCHAR)",
"question": "Name the nominated work for 1996 and festival of black maria film and video festival"
} |
### QUESTION
What was the date of the away game that they lost to Accrington?
### CONTEXT
CREATE TABLE table_name_6 (date VARCHAR, team VARCHAR, venue VARCHAR, win_draw_lose VARCHAR)
### ANSWER
SELECT date FROM table_name_6 WHERE venue = "away" AND win_draw_lose = "lost" AND team = "accrington"</s> | {
"answer": "SELECT date FROM table_name_6 WHERE venue = \"away\" AND win_draw_lose = \"lost\" AND team = \"accrington\"",
"context": "CREATE TABLE table_name_6 (date VARCHAR, team VARCHAR, venue VARCHAR, win_draw_lose VARCHAR)",
"question": "What was the date of the away game that they lost to Accrington?"
} |
### QUESTION
What was the result of the home game against Derby County?
### CONTEXT
CREATE TABLE table_name_71 (win_draw_lose VARCHAR, venue VARCHAR, team VARCHAR)
### ANSWER
SELECT win_draw_lose FROM table_name_71 WHERE venue = "home" AND team = "derby county"</s> | {
"answer": "SELECT win_draw_lose FROM table_name_71 WHERE venue = \"home\" AND team = \"derby county\"",
"context": "CREATE TABLE table_name_71 (win_draw_lose VARCHAR, venue VARCHAR, team VARCHAR)",
"question": "What was the result of the home game against Derby County?"
} |
### QUESTION
Which course has a flat stage on 4 September?
### CONTEXT
CREATE TABLE table_name_21 (course VARCHAR, type VARCHAR, date VARCHAR)
### ANSWER
SELECT course FROM table_name_21 WHERE type = "flat stage" AND date = "4 september"</s> | {
"answer": "SELECT course FROM table_name_21 WHERE type = \"flat stage\" AND date = \"4 september\"",
"context": "CREATE TABLE table_name_21 (course VARCHAR, type VARCHAR, date VARCHAR)",
"question": "Which course has a flat stage on 4 September?"
} |
### QUESTION
What was Hawthorn's score as the away team?
### CONTEXT
CREATE TABLE table_name_96 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_96 WHERE away_team = "hawthorn"</s> | {
"answer": "SELECT away_team AS score FROM table_name_96 WHERE away_team = \"hawthorn\"",
"context": "CREATE TABLE table_name_96 (away_team VARCHAR)",
"question": "What was Hawthorn's score as the away team?"
} |
### QUESTION
What is the number of deputies with 94.2% of the votes?
### CONTEXT
CREATE TABLE table_name_74 (number_of_deputies INTEGER, percentage_of_votes VARCHAR)
### ANSWER
SELECT SUM(number_of_deputies) FROM table_name_74 WHERE percentage_of_votes = "94.2%"</s> | {
"answer": "SELECT SUM(number_of_deputies) FROM table_name_74 WHERE percentage_of_votes = \"94.2%\"",
"context": "CREATE TABLE table_name_74 (number_of_deputies INTEGER, percentage_of_votes VARCHAR)",
"question": "What is the number of deputies with 94.2% of the votes?"
} |
### QUESTION
Who did Bruno Soares and a partner face in the finals on a clay surface on August 1, 2010?
### CONTEXT
CREATE TABLE table_name_37 (opponents_in_the_final VARCHAR, date VARCHAR, partnering VARCHAR, surface VARCHAR)
### ANSWER
SELECT opponents_in_the_final FROM table_name_37 WHERE partnering = "bruno soares" AND surface = "clay" AND date = "august 1, 2010"</s> | {
"answer": "SELECT opponents_in_the_final FROM table_name_37 WHERE partnering = \"bruno soares\" AND surface = \"clay\" AND date = \"august 1, 2010\"",
"context": "CREATE TABLE table_name_37 (opponents_in_the_final VARCHAR, date VARCHAR, partnering VARCHAR, surface VARCHAR)",
"question": "Who did Bruno Soares and a partner face in the finals on a clay surface on August 1, 2010?"
} |
### QUESTION
What is the all-time rank associated with a rank less than 9 and a debut in 1994?
### CONTEXT
CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR, debut_year VARCHAR)
### ANSWER
SELECT -time AS rank FROM table_name_55 WHERE rank < 9 AND debut_year = 1994</s> | {
"answer": "SELECT -time AS rank FROM table_name_55 WHERE rank < 9 AND debut_year = 1994",
"context": "CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR, debut_year VARCHAR)",
"question": "What is the all-time rank associated with a rank less than 9 and a debut in 1994?"
} |
### QUESTION
What is the average attendance that has april 12 as the date?
### CONTEXT
CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_14 WHERE date = "april 12"</s> | {
"answer": "SELECT AVG(attendance) FROM table_name_14 WHERE date = \"april 12\"",
"context": "CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)",
"question": "What is the average attendance that has april 12 as the date?"
} |
### QUESTION
Bandwidth (MB/s) smaller than 4800, and a Bus width (bits) smaller than 16 has what highest Clock rate (MHz)?
### CONTEXT
CREATE TABLE table_name_75 (clock_rate__mhz_ INTEGER, bandwidth__mb_s_ VARCHAR, bus_width__bits_ VARCHAR)
### ANSWER
SELECT MAX(clock_rate__mhz_) FROM table_name_75 WHERE bandwidth__mb_s_ < 4800 AND bus_width__bits_ < 16</s> | {
"answer": "SELECT MAX(clock_rate__mhz_) FROM table_name_75 WHERE bandwidth__mb_s_ < 4800 AND bus_width__bits_ < 16",
"context": "CREATE TABLE table_name_75 (clock_rate__mhz_ INTEGER, bandwidth__mb_s_ VARCHAR, bus_width__bits_ VARCHAR)",
"question": "Bandwidth (MB/s) smaller than 4800, and a Bus width (bits) smaller than 16 has what highest Clock rate (MHz)?"
} |
### QUESTION
What is the highest roll number of the school in Te puna with a decile larger than 2?
### CONTEXT
CREATE TABLE table_name_85 (roll INTEGER, decile VARCHAR, area VARCHAR)
### ANSWER
SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area = "te puna"</s> | {
"answer": "SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area = \"te puna\"",
"context": "CREATE TABLE table_name_85 (roll INTEGER, decile VARCHAR, area VARCHAR)",
"question": "What is the highest roll number of the school in Te puna with a decile larger than 2?"
} |
### QUESTION
Which Android has anOther Unix of unknown?
### CONTEXT
CREATE TABLE table_name_42 (android VARCHAR, other_unix VARCHAR)
### ANSWER
SELECT android FROM table_name_42 WHERE other_unix = "unknown"</s> | {
"answer": "SELECT android FROM table_name_42 WHERE other_unix = \"unknown\"",
"context": "CREATE TABLE table_name_42 (android VARCHAR, other_unix VARCHAR)",
"question": "Which Android has anOther Unix of unknown?"
} |
### QUESTION
What is the home team's score at corio oval?
### CONTEXT
CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_66 WHERE venue = "corio oval"</s> | {
"answer": "SELECT home_team AS score FROM table_name_66 WHERE venue = \"corio oval\"",
"context": "CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)",
"question": "What is the home team's score at corio oval?"
} |
### QUESTION
What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?
### CONTEXT
CREATE TABLE table_name_86 (goals_conceded INTEGER, points VARCHAR, played VARCHAR)
### ANSWER
SELECT SUM(goals_conceded) FROM table_name_86 WHERE points < 26 AND played < 18</s> | {
"answer": "SELECT SUM(goals_conceded) FROM table_name_86 WHERE points < 26 AND played < 18",
"context": "CREATE TABLE table_name_86 (goals_conceded INTEGER, points VARCHAR, played VARCHAR)",
"question": "What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?"
} |
### QUESTION
What is score of the game played in place t8 with Byron Nelson playing?
### CONTEXT
CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR)
### ANSWER
SELECT score FROM table_name_20 WHERE place = "t8" AND player = "byron nelson"</s> | {
"answer": "SELECT score FROM table_name_20 WHERE place = \"t8\" AND player = \"byron nelson\"",
"context": "CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR)",
"question": "What is score of the game played in place t8 with Byron Nelson playing?"
} |
### QUESTION
What is the sum of Money of the game that was played in the United States with Sam Snead as a player?
### CONTEXT
CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = "united states" AND player = "sam snead"</s> | {
"answer": "SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = \"united states\" AND player = \"sam snead\"",
"context": "CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR)",
"question": "What is the sum of Money of the game that was played in the United States with Sam Snead as a player?"
} |
### QUESTION
What Year has a Tyre of D, and Chassis of Mazda 787?
### CONTEXT
CREATE TABLE table_name_55 (year VARCHAR, tyre VARCHAR, chassis VARCHAR)
### ANSWER
SELECT year FROM table_name_55 WHERE tyre = "d" AND chassis = "mazda 787"</s> | {
"answer": "SELECT year FROM table_name_55 WHERE tyre = \"d\" AND chassis = \"mazda 787\"",
"context": "CREATE TABLE table_name_55 (year VARCHAR, tyre VARCHAR, chassis VARCHAR)",
"question": "What Year has a Tyre of D, and Chassis of Mazda 787?"
} |
### QUESTION
Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2
### CONTEXT
CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR)
### ANSWER
SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = "francesco casagrande" AND intergiro_classification = "not awarded" AND stage = "2"</s> | {
"answer": "SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = \"francesco casagrande\" AND intergiro_classification = \"not awarded\" AND stage = \"2\"",
"context": "CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR)",
"question": "Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.