combined_text
stringlengths
106
1.05k
###question:Name the typed for formed from 6-pul trailer third in res unit###answer:SELECT type FROM table_name_40 WHERE formed_from = "6-pul trailer third in res unit"###context:CREATE TABLE table_name_40 (type VARCHAR, formed_from VARCHAR)
###question:Name the formed that has type of 4-cor###answer:SELECT formed_from FROM table_name_58 WHERE type = "4-cor"###context:CREATE TABLE table_name_58 (formed_from VARCHAR, type VARCHAR)
###question:Who lost with a time of 2:42?###answer:SELECT loss FROM table_name_9 WHERE time = "2:42"###context:CREATE TABLE table_name_9 (loss VARCHAR, time VARCHAR)
###question:Who lost on August 27?###answer:SELECT loss FROM table_name_93 WHERE date = "august 27"###context:CREATE TABLE table_name_93 (loss VARCHAR, date VARCHAR)
###question:Which of the biggest points numbers had a year more recent than 1953?###answer:SELECT MAX(points) FROM table_name_62 WHERE year > 1953###context:CREATE TABLE table_name_62 (points INTEGER, year INTEGER)
###question:How many years had more than 0 points?###answer:SELECT SUM(year) FROM table_name_68 WHERE points > 0###context:CREATE TABLE table_name_68 (year INTEGER, points INTEGER)
###question:Which entrant was present prior to 1953?###answer:SELECT entrant FROM table_name_67 WHERE year < 1953###context:CREATE TABLE table_name_67 (entrant VARCHAR, year INTEGER)
###question:How many wickets have runs under 7531, matches over 44, and an average of 22.17?###answer:SELECT wickets FROM table_name_77 WHERE runs < 7531 AND matches > 44 AND average = 22.17###context:CREATE TABLE table_name_77 (wickets VARCHAR, average VARCHAR, runs VARCHAR, matches VARCHAR)
###question:What is the total number of wickets that have runs under 4600 and matches under 44?###answer:SELECT SUM(wickets) FROM table_name_64 WHERE runs < 4600 AND matches < 44###context:CREATE TABLE table_name_64 (wickets INTEGER, runs VARCHAR, matches VARCHAR)
###question:Which Label was cataloged as alca-9013?###answer:SELECT label FROM table_name_2 WHERE catalog = "alca-9013"###context:CREATE TABLE table_name_2 (label VARCHAR, catalog VARCHAR)
###question:Which Catalog was formated as a CD under the label Alfa Records?###answer:SELECT catalog FROM table_name_9 WHERE label = "alfa records" AND format = "cd"###context:CREATE TABLE table_name_9 (catalog VARCHAR, label VARCHAR, format VARCHAR)
###question:What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103?###answer:SELECT MIN(retired) FROM table_name_50 WHERE delivery = "1965" AND in_service = "november 1971" AND poaf_serial < 7103###context:CREATE TABLE table_name_50 (retired INTEGER, p...
###question:What is the smallest amount of freight carried on the road that closed on March 31 and reached super B capacity on February 17 after 2011?###answer:SELECT MIN(freight_carried_s_tonne) FROM table_name_80 WHERE road_closed = "march 31" AND super_b_capacity_reached_[_citation_needed_] = "february 17" AND year ...
###question:What's the English title listed that has an Original title of The Crying Game?###answer:SELECT english_title FROM table_name_95 WHERE original_title = "the crying game"###context:CREATE TABLE table_name_95 (english_title VARCHAR, original_title VARCHAR)
###question:Which Year has the Orginal title of La Cérémonie?###answer:SELECT year FROM table_name_13 WHERE original_title = "la cérémonie"###context:CREATE TABLE table_name_13 (year VARCHAR, original_title VARCHAR)
###question:What's the Original Title of the English title A Judgement in Stone?###answer:SELECT original_title FROM table_name_70 WHERE english_title = "a judgement in stone"###context:CREATE TABLE table_name_70 (original_title VARCHAR, english_title VARCHAR)
###question:Who is the Director of the Original title of The Crying Game?###answer:SELECT director FROM table_name_59 WHERE original_title = "the crying game"###context:CREATE TABLE table_name_59 (director VARCHAR, original_title VARCHAR)
###question:Which Country is listed for the Director Thomas Vinterberg?###answer:SELECT country FROM table_name_74 WHERE director = "thomas vinterberg"###context:CREATE TABLE table_name_74 (country VARCHAR, director VARCHAR)
###question:Which Country has the Director Chen Kaige?###answer:SELECT country FROM table_name_79 WHERE director = "chen kaige"###context:CREATE TABLE table_name_79 (country VARCHAR, director VARCHAR)
###question:What was the score of the game attended by 50,200?###answer:SELECT score FROM table_name_2 WHERE attendance = "50,200"###context:CREATE TABLE table_name_2 (score VARCHAR, attendance VARCHAR)
###question:What's the Termination of Mission listed that has a Presentation of Credentials for August 29, 1859?###answer:SELECT termination_of_mission FROM table_name_34 WHERE presentation_of_credentials = "august 29, 1859"###context:CREATE TABLE table_name_34 (termination_of_mission VARCHAR, presentation_of_credentia...
###question:What's the Representative listed that has a Presentation of Credentials of August 25, 1851?###answer:SELECT representative FROM table_name_80 WHERE presentation_of_credentials = "august 25, 1851"###context:CREATE TABLE table_name_80 (representative VARCHAR, presentation_of_credentials VARCHAR)
###question:What Title has a Termination of Mission for August 13, 1854?###answer:SELECT title FROM table_name_93 WHERE termination_of_mission = "august 13, 1854"###context:CREATE TABLE table_name_93 (title VARCHAR, termination_of_mission VARCHAR)
###question:What Title has a Termination of Mission of November 4, 1861?###answer:SELECT title FROM table_name_60 WHERE termination_of_mission = "november 4, 1861"###context:CREATE TABLE table_name_60 (title VARCHAR, termination_of_mission VARCHAR)
###question:What Representative has a Presentation of Credentails of April 10, 1855?###answer:SELECT representative FROM table_name_42 WHERE presentation_of_credentials = "april 10, 1855"###context:CREATE TABLE table_name_42 (representative VARCHAR, presentation_of_credentials VARCHAR)
###question:Which Title has an Appointed by of Millard Fillmore?###answer:SELECT title FROM table_name_21 WHERE appointed_by = "millard fillmore"###context:CREATE TABLE table_name_21 (title VARCHAR, appointed_by VARCHAR)
###question:Who was Choong Tan Fook's opponent in 1999?###answer:SELECT opponent FROM table_name_42 WHERE year = 1999 AND partner = "choong tan fook"###context:CREATE TABLE table_name_42 (opponent VARCHAR, year VARCHAR, partner VARCHAR)
###question:Which opponent played in the Chinese Taipei Open in 2000?###answer:SELECT opponent FROM table_name_66 WHERE tournament = "chinese taipei open" AND year = 2000###context:CREATE TABLE table_name_66 (opponent VARCHAR, tournament VARCHAR, year VARCHAR)
###question:How many bronzes have a Nation of jamaica (jam), and a Total smaller than 7?###answer:SELECT COUNT(bronze) FROM table_name_6 WHERE nation = "jamaica (jam)" AND total < 7###context:CREATE TABLE table_name_6 (bronze VARCHAR, nation VARCHAR, total VARCHAR)
###question:What is the average silver with more than 0 gold, a Rank of 1, and a Total smaller than 30?###answer:SELECT AVG(silver) FROM table_name_82 WHERE gold > 0 AND rank = "1" AND total < 30###context:CREATE TABLE table_name_82 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
###question:What is the total gold with a total less than 1?###answer:SELECT SUM(gold) FROM table_name_2 WHERE total < 1###context:CREATE TABLE table_name_2 (gold INTEGER, total INTEGER)
###question:Which NIR number is for the tso (ex-br class 488 unit 488305) type that has a 6082 / 72605 BR number?###answer:SELECT nir_number FROM table_name_87 WHERE type = "tso (ex-br class 488 unit 488305)" AND br_number_s_ = "6082 / 72605"###context:CREATE TABLE table_name_87 (nir_number VARCHAR, type VARCHAR, br_nu...
###question:What is the Whakamaru school's authority?###answer:SELECT authority FROM table_name_32 WHERE name = "whakamaru school"###context:CREATE TABLE table_name_32 (authority VARCHAR, name VARCHAR)
###question:Where is the school with state authority that has a roll of more than 157 students?###answer:SELECT area FROM table_name_11 WHERE authority = "state" AND roll > 157###context:CREATE TABLE table_name_11 (area VARCHAR, authority VARCHAR, roll VARCHAR)
###question:Name the subject of shiyan###answer:SELECT subject FROM table_name_12 WHERE pinyin = "shiyan"###context:CREATE TABLE table_name_12 (subject VARCHAR, pinyin VARCHAR)
###question:Name the chinese with subject of adjectives, adverbs, mostly with reduplication###answer:SELECT chinese FROM table_name_50 WHERE subject = "adjectives, adverbs, mostly with reduplication"###context:CREATE TABLE table_name_50 (chinese VARCHAR, subject VARCHAR)
###question:Name the total number of chapter for chinese of 釋宮###answer:SELECT COUNT(chapter) FROM table_name_74 WHERE chinese = "釋宮"###context:CREATE TABLE table_name_74 (chapter VARCHAR, chinese VARCHAR)
###question:Name the highest chapter with chinese of 釋言###answer:SELECT MAX(chapter) FROM table_name_24 WHERE chinese = "釋言"###context:CREATE TABLE table_name_24 (chapter INTEGER, chinese VARCHAR)
###question:Name the chapter with chinese of 釋水###answer:SELECT chapter FROM table_name_28 WHERE chinese = "釋水"###context:CREATE TABLE table_name_28 (chapter VARCHAR, chinese VARCHAR)
###question:Who used Gordini Straight-6 in 1956?###answer:SELECT entrant FROM table_name_93 WHERE engine = "gordini straight-6" AND year = 1956###context:CREATE TABLE table_name_93 (entrant VARCHAR, engine VARCHAR, year VARCHAR)
###question:Who was in 1963?###answer:SELECT entrant FROM table_name_87 WHERE year = 1963###context:CREATE TABLE table_name_87 (entrant VARCHAR, year VARCHAR)
###question:Name the score for september 11###answer:SELECT score FROM table_name_48 WHERE date = "september 11"###context:CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)
###question:Name the loss for record of 71-81###answer:SELECT loss FROM table_name_23 WHERE record = "71-81"###context:CREATE TABLE table_name_23 (loss VARCHAR, record VARCHAR)
###question:Name the score which has record of 73-83###answer:SELECT score FROM table_name_17 WHERE record = "73-83"###context:CREATE TABLE table_name_17 (score VARCHAR, record VARCHAR)
###question:Name the date for record of 74-84###answer:SELECT date FROM table_name_20 WHERE record = "74-84"###context:CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR)
###question:For all events with index f10, what is the sum of the overall rankings?###answer:SELECT SUM(overall_ranking) FROM table_name_66 WHERE index = "f10"###context:CREATE TABLE table_name_66 (overall_ranking INTEGER, index VARCHAR)
###question:For the event with index f7, what is the status?###answer:SELECT status FROM table_name_23 WHERE index = "f7"###context:CREATE TABLE table_name_23 (status VARCHAR, index VARCHAR)
###question:For the event with index f9, what's the talent segment?###answer:SELECT talent_segment FROM table_name_49 WHERE index = "f9"###context:CREATE TABLE table_name_49 (talent_segment VARCHAR, index VARCHAR)
###question:What's the acting segment of 林佩琪 lin peiqi's events that are eliminated?###answer:SELECT acting_segment FROM table_name_36 WHERE status = "eliminated" AND name = "林佩琪 lin peiqi"###context:CREATE TABLE table_name_36 (acting_segment VARCHAR, status VARCHAR, name VARCHAR)
###question:What's the total number of overall rankings of 廖尹宁 jvnne leow's events that are eliminated?###answer:SELECT COUNT(overall_ranking) FROM table_name_12 WHERE status = "eliminated" AND name = "廖尹宁 jvnne leow"###context:CREATE TABLE table_name_12 (overall_ranking VARCHAR, status VARCHAR, name VARCHAR)
###question:Who was the opponent at the qf(r) round?###answer:SELECT opponent FROM table_name_9 WHERE round = "qf(r)"###context:CREATE TABLE table_name_9 (opponent VARCHAR, round VARCHAR)
###question:What day was the game held at Firhill against AYR United?###answer:SELECT date FROM table_name_60 WHERE venue = "firhill" AND opponent = "ayr united"###context:CREATE TABLE table_name_60 (date VARCHAR, venue VARCHAR, opponent VARCHAR)
###question:What is the average attendance at a game held at Firhill for the 5(r) round?###answer:SELECT AVG(attendance) FROM table_name_26 WHERE venue = "firhill" AND round = "5(r)"###context:CREATE TABLE table_name_26 (attendance INTEGER, venue VARCHAR, round VARCHAR)
###question:Who was the opponent when the Seattle Seahawks had a record of 0-1?###answer:SELECT opponent FROM table_name_18 WHERE record = "0-1"###context:CREATE TABLE table_name_18 (opponent VARCHAR, record VARCHAR)
###question:Who was the opponent when the Seattle Seahawks had a record of 8-7?###answer:SELECT opponent FROM table_name_87 WHERE record = "8-7"###context:CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR)
###question:How many points after 1956?###answer:SELECT COUNT(points) FROM table_name_40 WHERE year > 1956###context:CREATE TABLE table_name_40 (points VARCHAR, year INTEGER)
###question:Before 1956, what Chassis has Gordini Straight-4 engine with 3 points?###answer:SELECT chassis FROM table_name_83 WHERE year < 1956 AND engine = "gordini straight-4" AND points = 3###context:CREATE TABLE table_name_83 (chassis VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)
###question:What engine was used by Equipe Simca Gordini before 1956 with less than 4 points?###answer:SELECT engine FROM table_name_15 WHERE year < 1956 AND points < 4 AND entrant = "equipe simca gordini"###context:CREATE TABLE table_name_15 (engine VARCHAR, entrant VARCHAR, year VARCHAR, points VARCHAR)
###question:What chassis has smaller than 9 points by Equipe Rosier?###answer:SELECT chassis FROM table_name_92 WHERE points < 9 AND entrant = "equipe rosier"###context:CREATE TABLE table_name_92 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)
###question:Who was the winner in the 2008 season?###answer:SELECT winner FROM table_name_53 WHERE season = 2008###context:CREATE TABLE table_name_53 (winner VARCHAR, season VARCHAR)
###question:Who is the company Investing Dragons, or tiny box?###answer:SELECT investing_dragon_s_ FROM table_name_21 WHERE company_or_product_name = "tiny box"###context:CREATE TABLE table_name_21 (investing_dragon_s_ VARCHAR, company_or_product_name VARCHAR)
###question:When did episode 6 first air with entrepreneur Guy Portelli?###answer:SELECT first_aired FROM table_name_98 WHERE episode = "episode 6" AND entrepreneur_s_ = "guy portelli"###context:CREATE TABLE table_name_98 (first_aired VARCHAR, episode VARCHAR, entrepreneur_s_ VARCHAR)
###question:How much money did the company Neurotica request?###answer:SELECT money_requested__£_ FROM table_name_39 WHERE company_or_product_name = "neurotica"###context:CREATE TABLE table_name_39 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)
###question:Name the least hits for year less than 1920 and player of ed delahanty###answer:SELECT MIN(hits) FROM table_name_28 WHERE year < 1920 AND player = "ed delahanty"###context:CREATE TABLE table_name_28 (hits INTEGER, year VARCHAR, player VARCHAR)
###question:Name the player with 238 hits and years after 1885###answer:SELECT player FROM table_name_8 WHERE year > 1885 AND hits = 238###context:CREATE TABLE table_name_8 (player VARCHAR, year VARCHAR, hits VARCHAR)
###question:Name the hits for years before 1883###answer:SELECT hits FROM table_name_86 WHERE year < 1883###context:CREATE TABLE table_name_86 (hits VARCHAR, year INTEGER)
###question:For the game that was played on october 22 in west side grounds, what is the total attendance###answer:SELECT COUNT(attendance) FROM table_name_41 WHERE location = "west side grounds" AND date = "october 22"###context:CREATE TABLE table_name_41 (attendance VARCHAR, location VARCHAR, date VARCHAR)
###question:Which week was the first game played that had a time of 2:06 and less than 27,374 attendees?###answer:SELECT MIN(game) FROM table_name_47 WHERE time = "2:06" AND attendance < 27 OFFSET 374###context:CREATE TABLE table_name_47 (game INTEGER, time VARCHAR, attendance VARCHAR)
###question:In which class had 252 laps and a position of dnf?###answer:SELECT class FROM table_name_5 WHERE pos = "dnf" AND laps = 252###context:CREATE TABLE table_name_5 (class VARCHAR, pos VARCHAR, laps VARCHAR)
###question:What was the position in 1997?###answer:SELECT pos FROM table_name_35 WHERE year = 1997###context:CREATE TABLE table_name_35 (pos VARCHAR, year VARCHAR)
###question:Which Kit manufacturer sponsers Arsenal?###answer:SELECT kit_manufacturer FROM table_name_99 WHERE team = "arsenal"###context:CREATE TABLE table_name_99 (kit_manufacturer VARCHAR, team VARCHAR)
###question:Which captain is managed by gianluca vialli?###answer:SELECT captain FROM table_name_31 WHERE manager = "gianluca vialli"###context:CREATE TABLE table_name_31 (captain VARCHAR, manager VARCHAR)
###question:Which Kit Manufacturer supports team Everton?###answer:SELECT kit_manufacturer FROM table_name_90 WHERE team = "everton"###context:CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR)
###question:Which team does David O'leary manage?###answer:SELECT team FROM table_name_28 WHERE manager = "david o'leary"###context:CREATE TABLE table_name_28 (team VARCHAR, manager VARCHAR)
###question:Which shirt sponser has Nike as a kit manufacturer?###answer:SELECT shirt_sponsor FROM table_name_68 WHERE kit_manufacturer = "nike"###context:CREATE TABLE table_name_68 (shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)
###question:Which title has a year prior to 2008 and xbox 360 as the platform?###answer:SELECT title FROM table_name_31 WHERE year < 2008 AND platform = "xbox 360"###context:CREATE TABLE table_name_31 (title VARCHAR, year VARCHAR, platform VARCHAR)
###question:Which publisher has Far Cry as the title?###answer:SELECT publisher FROM table_name_4 WHERE title = "far cry"###context:CREATE TABLE table_name_4 (publisher VARCHAR, title VARCHAR)
###question:Which title has xbox as the platform with a year prior to 2006?###answer:SELECT title FROM table_name_85 WHERE platform = "xbox" AND year < 2006###context:CREATE TABLE table_name_85 (title VARCHAR, platform VARCHAR, year VARCHAR)
###question:Which developer has xbox 360 as the platform?###answer:SELECT developer FROM table_name_59 WHERE platform = "xbox 360"###context:CREATE TABLE table_name_59 (developer VARCHAR, platform VARCHAR)
###question:What is the average year that has far cry vengeance as the title?###answer:SELECT AVG(year) FROM table_name_93 WHERE title = "far cry vengeance"###context:CREATE TABLE table_name_93 (year INTEGER, title VARCHAR)
###question:Which position is the highest to have less than 54 goals, a loss of 7 and a goal difference higher than 23?###answer:SELECT MAX(position) FROM table_name_9 WHERE goals_against < 54 AND losses = 7 AND goal_difference > 23###context:CREATE TABLE table_name_9 (position INTEGER, goal_difference VARCHAR, goals_a...
###question:Which is the lowest played with 28-10 points and goals higher than 29?###answer:SELECT MIN(played) FROM table_name_97 WHERE points = "28-10" AND goals_for > 29###context:CREATE TABLE table_name_97 (played INTEGER, points VARCHAR, goals_for VARCHAR)
###question:How many positions have 14 wins, goals against of 61 and fewer than 19 losses?###answer:SELECT COUNT(position) FROM table_name_7 WHERE wins = 14 AND goals_against = 61 AND losses < 19###context:CREATE TABLE table_name_7 (position VARCHAR, losses VARCHAR, wins VARCHAR, goals_against VARCHAR)
###question:What is the average loss with a goal higher than 51 and wins higher than 14?###answer:SELECT AVG(losses) FROM table_name_88 WHERE goals_against > 51 AND wins > 14###context:CREATE TABLE table_name_88 (losses INTEGER, goals_against VARCHAR, wins VARCHAR)
###question:Name the average ends for weston###answer:SELECT AVG(ends) FROM table_name_28 WHERE name = "weston"###context:CREATE TABLE table_name_28 (ends INTEGER, name VARCHAR)
###question:What is the lowest decile with a state authority and Midhirst school?###answer:SELECT MIN(decile) FROM table_name_71 WHERE authority = "state" AND name = "midhirst school"###context:CREATE TABLE table_name_71 (decile INTEGER, authority VARCHAR, name VARCHAR)
###question:What area is Central Takaka School in?###answer:SELECT area FROM table_name_91 WHERE name = "central takaka school"###context:CREATE TABLE table_name_91 (area VARCHAR, name VARCHAR)
###question:What is the Mach with Vehicle Flight # m2-f2 #8 and an Altitude (meters) greater than 13,716?###answer:SELECT SUM(mach) FROM table_name_88 WHERE vehicle_flight__number = "m2-f2 #8" AND altitude__meters_ > 13 OFFSET 716###context:CREATE TABLE table_name_88 (mach INTEGER, vehicle_flight__number VARCHAR, altit...
###question:What Vehicle Flight # has Pilot Peterson and Velocity (km/h) of 649?###answer:SELECT vehicle_flight__number FROM table_name_31 WHERE pilot = "peterson" AND velocity__km_h_ = 649###context:CREATE TABLE table_name_31 (vehicle_flight__number VARCHAR, pilot VARCHAR, velocity__km_h_ VARCHAR)
###question:What Date has a Mach of 0.662?###answer:SELECT date FROM table_name_77 WHERE mach = 0.662###context:CREATE TABLE table_name_77 (date VARCHAR, mach VARCHAR)
###question:In 1865, what was the first party?###answer:SELECT 1 AS st_party FROM table_name_20 WHERE year = "1865"###context:CREATE TABLE table_name_20 (year VARCHAR)
###question:Which Barrel twist has a Stock of canadian 3rd generation and a Hand guards of short ribbed?###answer:SELECT barrel_twist FROM table_name_33 WHERE stock = "canadian 3rd generation" AND hand_guards = "short ribbed"###context:CREATE TABLE table_name_33 (barrel_twist VARCHAR, stock VARCHAR, hand_guards VARCHAR...
###question:Which Hand guards has a Barrel profile of a2 and a Rear sight of weaver?###answer:SELECT hand_guards FROM table_name_1 WHERE barrel_profile = "a2" AND rear_sight = "weaver"###context:CREATE TABLE table_name_1 (hand_guards VARCHAR, barrel_profile VARCHAR, rear_sight VARCHAR)
###question:Who was the co-driver for the team with more than 160 laps and the number 6 after 2010?###answer:SELECT co_driver FROM table_name_41 WHERE laps > 160 AND year > 2010 AND number = 6###context:CREATE TABLE table_name_41 (co_driver VARCHAR, number VARCHAR, laps VARCHAR, year VARCHAR)
###question:What is the fewest laps for a team with a position of DNF and a number smaller than 25 before 2001?###answer:SELECT MIN(laps) FROM table_name_82 WHERE position = "dnf" AND number < 25 AND year < 2001###context:CREATE TABLE table_name_82 (laps INTEGER, year VARCHAR, position VARCHAR, number VARCHAR)
###question:What is the highest number of votes for the French Professor?###answer:SELECT MAX(votes) FROM table_name_20 WHERE occupation = "french professor"###context:CREATE TABLE table_name_20 (votes INTEGER, occupation VARCHAR)
###question:Where is Hip 4872?###answer:SELECT constellation FROM table_name_38 WHERE designation = "hip 4872"###context:CREATE TABLE table_name_38 (constellation VARCHAR, designation VARCHAR)
###question:What is the language of the film Rosie?###answer:SELECT language_s_ FROM table_name_33 WHERE original_title = "rosie"###context:CREATE TABLE table_name_33 (language_s_ VARCHAR, original_title VARCHAR)
###question:What was the title used for Rosie, the film nominated for the dutch language?###answer:SELECT film_title_used_in_nomination FROM table_name_79 WHERE language_s_ = "dutch" AND original_title = "rosie"###context:CREATE TABLE table_name_79 (film_title_used_in_nomination VARCHAR, language_s_ VARCHAR, original_t...
###question:Who won the Mixed Doubles in 2007?###answer:SELECT mixed_doubles FROM table_name_49 WHERE year = "2007"###context:CREATE TABLE table_name_49 (mixed_doubles VARCHAR, year VARCHAR)