combined_text
stringlengths
106
1.05k
###question:When the runner-up was Jing-qian Yi, who was the winner?###answer:SELECT winner FROM table_name_74 WHERE runner_up = "jing-qian yi"###context:CREATE TABLE table_name_74 (winner VARCHAR, runner_up VARCHAR)
###question:What is the highest episode number in which Jamie Oliver guest-hosted?###answer:SELECT MAX(episode_number) FROM table_name_89 WHERE guest_host = "jamie oliver"###context:CREATE TABLE table_name_89 (episode_number INTEGER, guest_host VARCHAR)
###question:What is the score of the home game for the Cavaliers where Lebron James (46) was the lead scorer?###answer:SELECT score FROM table_name_60 WHERE home = "cavaliers" AND leading_scorer = "lebron james (46)"###context:CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR)
###question:Who was the leading scorer against the visiting team Bulls?###answer:SELECT leading_scorer FROM table_name_96 WHERE visitor = "bulls"###context:CREATE TABLE table_name_96 (leading_scorer VARCHAR, visitor VARCHAR)
###question:What date was the game played against the home team Rockets?###answer:SELECT date FROM table_name_28 WHERE home = "rockets"###context:CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)
###question:What was the Date of the Cimmeria Issue for which the Penciller was Tomás Giorello?###answer:SELECT date FROM table_name_67 WHERE penciller = "tomás giorello" AND title = "cimmeria"###context:CREATE TABLE table_name_67 (date VARCHAR, penciller VARCHAR, title VARCHAR)
###question:When did the Issue with the Title Homecoming come out?###answer:SELECT date FROM table_name_5 WHERE title = "homecoming"###context:CREATE TABLE table_name_5 (date VARCHAR, title VARCHAR)
###question:Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?###answer:SELECT AVG(match) FROM table_name_55 WHERE lost > 0 AND points > 6 AND team = "legia warszawa" AND draw < 0###context:CREATE TABLE table_name_55 (match INTEGER, draw VARCHAR, te...
###question:What draw has a lost less than 6 with 28 as the points?###answer:SELECT draw FROM table_name_23 WHERE lost < 6 AND points = 28###context:CREATE TABLE table_name_23 (draw VARCHAR, lost VARCHAR, points VARCHAR)
###question:Which average lost that has a match less than 14?###answer:SELECT AVG(lost) FROM table_name_9 WHERE match < 14###context:CREATE TABLE table_name_9 (lost INTEGER, match INTEGER)
###question:What is the Match for skra warszawa?###answer:SELECT match FROM table_name_65 WHERE team = "skra warszawa"###context:CREATE TABLE table_name_65 (match VARCHAR, team VARCHAR)
###question:What is the Draw for skra warszawa?###answer:SELECT draw FROM table_name_5 WHERE team = "skra warszawa"###context:CREATE TABLE table_name_5 (draw VARCHAR, team VARCHAR)
###question:What is the Lost when the points were dissolved?###answer:SELECT lost FROM table_name_61 WHERE points = "dissolved"###context:CREATE TABLE table_name_61 (lost VARCHAR, points VARCHAR)
###question:What is the Draw for match 10, and the team was skra warszawa?###answer:SELECT draw FROM table_name_76 WHERE match = "10" AND team = "skra warszawa"###context:CREATE TABLE table_name_76 (draw VARCHAR, match VARCHAR, team VARCHAR)
###question:What is the Draw for the team of tramwajarz łódź?###answer:SELECT draw FROM table_name_2 WHERE team = "tramwajarz łódź"###context:CREATE TABLE table_name_2 (draw VARCHAR, team VARCHAR)
###question:What is the Draw for the team tramwajarz łódź?###answer:SELECT draw FROM table_name_94 WHERE team = "tramwajarz łódź"###context:CREATE TABLE table_name_94 (draw VARCHAR, team VARCHAR)
###question:What is the Location when the novelty is gen?###answer:SELECT location FROM table_name_12 WHERE novelty = "gen"###context:CREATE TABLE table_name_12 (location VARCHAR, novelty VARCHAR)
###question:What shows for Unit with a status of nomen oblitum?###answer:SELECT unit FROM table_name_16 WHERE status = "nomen oblitum"###context:CREATE TABLE table_name_16 (unit VARCHAR, status VARCHAR)
###question:What is the Location when the name is telmatosaurus?###answer:SELECT location FROM table_name_23 WHERE name = "telmatosaurus"###context:CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR)
###question:What is the Status with a novelty of gen et sp, and the name is haplocanthosaurus?###answer:SELECT status FROM table_name_12 WHERE novelty = "gen et sp" AND name = "haplocanthosaurus"###context:CREATE TABLE table_name_12 (status VARCHAR, novelty VARCHAR, name VARCHAR)
###question:How many League cups had a total less than 25 and a league larger than 19?###answer:SELECT COUNT(league) AS Cup FROM table_name_70 WHERE total < 25 AND league > 19###context:CREATE TABLE table_name_70 (league VARCHAR, total VARCHAR)
###question:How many FA trophies did Ceri Williams get with a smaller total than 19?###answer:SELECT COUNT(fa_trophy) FROM table_name_27 WHERE player = "ceri williams" AND total < 19###context:CREATE TABLE table_name_27 (fa_trophy VARCHAR, player VARCHAR, total VARCHAR)
###question:Which City has an Average of 6.85?###answer:SELECT city FROM table_name_27 WHERE average = 6.85###context:CREATE TABLE table_name_27 (city VARCHAR, average VARCHAR)
###question:What is the Average of bergen, norway?###answer:SELECT MIN(average) FROM table_name_81 WHERE city = "bergen, norway"###context:CREATE TABLE table_name_81 (average INTEGER, city VARCHAR)
###question:Which Comprehension of Danish has an Average smaller than 6.85, and a Comprehension of Norwegian of 4.13?###answer:SELECT comprehension_of_danish FROM table_name_48 WHERE average < 6.85 AND comprehension_of_norwegian = "4.13"###context:CREATE TABLE table_name_48 (comprehension_of_danish VARCHAR, average VAR...
###question:What are the Attendance numbers for november 18, 1990?###answer:SELECT attendance FROM table_name_38 WHERE date = "november 18, 1990"###context:CREATE TABLE table_name_38 (attendance VARCHAR, date VARCHAR)
###question:What is the Date for a week higher than 7 with a record of 9–1?###answer:SELECT date FROM table_name_68 WHERE week > 7 AND record = "9–1"###context:CREATE TABLE table_name_68 (date VARCHAR, week VARCHAR, record VARCHAR)
###question:What is the average week of a game on November 12, 1989?###answer:SELECT AVG(week) FROM table_name_26 WHERE date = "november 12, 1989"###context:CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)
###question:What is the Set 5 with a Set 3 that is 25-23 and a Set 4 that is 23-25?###answer:SELECT set_5 FROM table_name_15 WHERE set_3 = "25-23" AND set_4 = "23-25"###context:CREATE TABLE table_name_15 (set_5 VARCHAR, set_3 VARCHAR, set_4 VARCHAR)
###question:What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23?###answer:SELECT SUM(game) FROM table_name_24 WHERE set_4 = "25-21" AND set_3 = "25-23"###context:CREATE TABLE table_name_24 (game INTEGER, set_4 VARCHAR, set_3 VARCHAR)
###question:What is the Set 5 with a Game that is 59?###answer:SELECT set_5 FROM table_name_9 WHERE game = 59###context:CREATE TABLE table_name_9 (set_5 VARCHAR, game VARCHAR)
###question:What shows for nation when the Competition is preseason, Year less than 2011, and a Club of chivas de guadalajara?###answer:SELECT nation FROM table_name_37 WHERE competition = "preseason" AND year < 2011 AND club = "chivas de guadalajara"###context:CREATE TABLE table_name_37 (nation VARCHAR, club VARCHAR, ...
###question:What was the Result for the club universidad de guadalajara?###answer:SELECT result FROM table_name_11 WHERE club = "club universidad de guadalajara"###context:CREATE TABLE table_name_11 (result VARCHAR, club VARCHAR)
###question:What is the Nation with 2012 as the year, and a Competition of preseason, and a Result of w 0–3?###answer:SELECT nation FROM table_name_48 WHERE year = 2012 AND competition = "preseason" AND result = "w 0–3"###context:CREATE TABLE table_name_48 (nation VARCHAR, result VARCHAR, year VARCHAR, competition VARC...
###question:What is the average Year when the Competition was friendly, and a Club of everton?###answer:SELECT AVG(year) FROM table_name_28 WHERE competition = "friendly" AND club = "everton"###context:CREATE TABLE table_name_28 (year INTEGER, competition VARCHAR, club VARCHAR)
###question:What is the Competition when the Club was costa rica u-20?###answer:SELECT competition FROM table_name_94 WHERE club = "costa rica u-20"###context:CREATE TABLE table_name_94 (competition VARCHAR, club VARCHAR)
###question:What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0–1?###answer:SELECT club FROM table_name_8 WHERE nation = "mexico" AND year = 2010 AND competition = "preseason" AND result = "w 0–1"###context:CREATE TABLE table_name_8 (club VARCHAR, result VARCHAR, competition VA...
###question:What is the lowest total when the nation is Sweden?###answer:SELECT MIN(total) FROM table_name_23 WHERE nation = "sweden"###context:CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR)
###question:What is the average Total when silver is less than 1, and the rank is 15?###answer:SELECT AVG(total) FROM table_name_12 WHERE silver < 1 AND rank = "15"###context:CREATE TABLE table_name_12 (total INTEGER, silver VARCHAR, rank VARCHAR)
###question:What is the total number of Bronze when rank is 11, and the total is less than 1?###answer:SELECT COUNT(bronze) FROM table_name_8 WHERE rank = "11" AND total < 1###context:CREATE TABLE table_name_8 (bronze VARCHAR, rank VARCHAR, total VARCHAR)
###question:What year is the latest year that has no under director?###answer:SELECT MAX(year) FROM table_name_18 WHERE director = "no"###context:CREATE TABLE table_name_18 (year INTEGER, director VARCHAR)
###question:With yes under writer and in 2014, what is the director?###answer:SELECT director FROM table_name_77 WHERE year = 2014 AND writer = "yes"###context:CREATE TABLE table_name_77 (director VARCHAR, year VARCHAR, writer VARCHAR)
###question:Who is the writer of the film Run?###answer:SELECT writer FROM table_name_14 WHERE film = "run"###context:CREATE TABLE table_name_14 (writer VARCHAR, film VARCHAR)
###question:What is the most goals made for a person with less than 208 matches and ranked lower than 12?###answer:SELECT MAX(goals) FROM table_name_94 WHERE matches < 208 AND rank > 12###context:CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR)
###question:In what years was there a rank lower than 9, under 84 goals, and more than 158 matches?###answer:SELECT years FROM table_name_63 WHERE matches > 158 AND rank > 9 AND goals < 84###context:CREATE TABLE table_name_63 (years VARCHAR, goals VARCHAR, matches VARCHAR, rank VARCHAR)
###question:What is the HDTV status of the r-light television service?###answer:SELECT hdtv FROM table_name_12 WHERE television_service = "r-light"###context:CREATE TABLE table_name_12 (hdtv VARCHAR, television_service VARCHAR)
###question:Which television service has programmi per adulti 24h/24 content and no HDTV?###answer:SELECT television_service FROM table_name_41 WHERE content = "programmi per adulti 24h/24" AND hdtv = "no"###context:CREATE TABLE table_name_41 (television_service VARCHAR, content VARCHAR, hdtv VARCHAR)
###question:Which television service has a qualsiasi package/option?###answer:SELECT television_service FROM table_name_27 WHERE package_option = "qualsiasi"###context:CREATE TABLE table_name_27 (television_service VARCHAR, package_option VARCHAR)
###question:What is the total number of wins for Darley of Ballarat FL against larger than 1055?###answer:SELECT COUNT(wins) FROM table_name_96 WHERE ballarat_fl = "darley" AND against > 1055###context:CREATE TABLE table_name_96 (wins VARCHAR, ballarat_fl VARCHAR, against VARCHAR)
###question:What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836?###answer:SELECT MIN(draws) FROM table_name_4 WHERE wins < 4 AND losses = 14 AND against > 1836###context:CREATE TABLE table_name_4 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR)
###question:What is the average Byes that has Ballarat FL of Sunbury against more than 1167?###answer:SELECT AVG(byes) FROM table_name_70 WHERE ballarat_fl = "sunbury" AND against > 1167###context:CREATE TABLE table_name_70 (byes INTEGER, ballarat_fl VARCHAR, against VARCHAR)
###question:What is the average draws with more than 1 win, 14 losses, and against less than 1836?###answer:SELECT AVG(draws) FROM table_name_17 WHERE wins > 1 AND losses = 14 AND against < 1836###context:CREATE TABLE table_name_17 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR)
###question:What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2?###answer:SELECT MIN(draws) FROM table_name_94 WHERE ballarat_fl = "sunbury" AND byes > 2###context:CREATE TABLE table_name_94 (draws INTEGER, ballarat_fl VARCHAR, byes VARCHAR)
###question:Which away has apoel as the club?###answer:SELECT away FROM table_name_41 WHERE club = "apoel"###context:CREATE TABLE table_name_41 (away VARCHAR, club VARCHAR)
###question:Which away has uefa cup as the competition, group f as the round, with espanyol as the club?###answer:SELECT away FROM table_name_6 WHERE competition = "uefa cup" AND round = "group f" AND club = "espanyol"###context:CREATE TABLE table_name_6 (away VARCHAR, club VARCHAR, competition VARCHAR, round VARCHAR)
###question:In what location were the fatalities unknown for the Ju-52 aircraft?###answer:SELECT location FROM table_name_12 WHERE fatalities = "unknown" AND aircraft = "ju-52"###context:CREATE TABLE table_name_12 (location VARCHAR, fatalities VARCHAR, aircraft VARCHAR)
###question:In what location was the tail number ZS-SPF?###answer:SELECT location FROM table_name_83 WHERE tail_number = "zs-spf"###context:CREATE TABLE table_name_83 (location VARCHAR, tail_number VARCHAR)
###question:What was the location of the Ju-52 aircraft?###answer:SELECT location FROM table_name_61 WHERE aircraft = "ju-52"###context:CREATE TABLE table_name_61 (location VARCHAR, aircraft VARCHAR)
###question:How many fatalities occurred for an unknown tail number?###answer:SELECT fatalities FROM table_name_60 WHERE tail_number = "unknown"###context:CREATE TABLE table_name_60 (fatalities VARCHAR, tail_number VARCHAR)
###question:What was the tail number with 3/3 fatalities?###answer:SELECT tail_number FROM table_name_32 WHERE fatalities = "3/3"###context:CREATE TABLE table_name_32 (tail_number VARCHAR, fatalities VARCHAR)
###question:How many fatalities occurred for the Ju-52 aircraft?###answer:SELECT fatalities FROM table_name_18 WHERE aircraft = "ju-52"###context:CREATE TABLE table_name_18 (fatalities VARCHAR, aircraft VARCHAR)
###question:What was the score for a goal of 6?###answer:SELECT score FROM table_name_57 WHERE goal = 6###context:CREATE TABLE table_name_57 (score VARCHAR, goal VARCHAR)
###question:Where was the match held on July 17, 1999?###answer:SELECT venue FROM table_name_43 WHERE date = "july 17, 1999"###context:CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR)
###question:Who was on the Democratic ticket for the Office of Attorney General?###answer:SELECT democratic_ticket FROM table_name_70 WHERE office = "attorney general"###context:CREATE TABLE table_name_70 (democratic_ticket VARCHAR, office VARCHAR)
###question:What name has gen et sp nov as the novelty?###answer:SELECT name FROM table_name_56 WHERE novelty = "gen et sp nov"###context:CREATE TABLE table_name_56 (name VARCHAR, novelty VARCHAR)
###question:What authors have clarno formation as the unit, actinidia oregonensis as the name?###answer:SELECT authors FROM table_name_55 WHERE unit = "clarno formation" AND name = "actinidia oregonensis"###context:CREATE TABLE table_name_55 (authors VARCHAR, unit VARCHAR, name VARCHAR)
###question:What novelty has USA as the location, and coryloides as the name?###answer:SELECT novelty FROM table_name_70 WHERE location = "usa" AND name = "coryloides"###context:CREATE TABLE table_name_70 (novelty VARCHAR, location VARCHAR, name VARCHAR)
###question:What status has paleopanax as the name?###answer:SELECT status FROM table_name_78 WHERE name = "paleopanax"###context:CREATE TABLE table_name_78 (status VARCHAR, name VARCHAR)
###question:What unit has gen et sp nov as the novelty?###answer:SELECT unit FROM table_name_51 WHERE novelty = "gen et sp nov"###context:CREATE TABLE table_name_51 (unit VARCHAR, novelty VARCHAR)
###question:Which date was the Memorial Tournament held on, when Payne Stewart was runner-up?###answer:SELECT date FROM table_name_40 WHERE tournament = "memorial tournament" AND runner_s__up = "payne stewart"###context:CREATE TABLE table_name_40 (date VARCHAR, tournament VARCHAR, runner_s__up VARCHAR)
###question:What is the 2007-08 result when the event was Colonial Square?###answer:SELECT 2007 AS _08 FROM table_name_74 WHERE event = "colonial square"###context:CREATE TABLE table_name_74 (event VARCHAR)
###question:What is the 2008-09 result has Masters as the event?###answer:SELECT 2008 AS _09 FROM table_name_58 WHERE event = "masters"###context:CREATE TABLE table_name_58 (event VARCHAR)
###question:What year gave a nominated result for the room 222 series?###answer:SELECT COUNT(year) FROM table_name_66 WHERE result = "nominated" AND series = "room 222"###context:CREATE TABLE table_name_66 (year VARCHAR, result VARCHAR, series VARCHAR)
###question:What was actor Teresa Graves's series before the year 1993?###answer:SELECT series FROM table_name_82 WHERE year < 1993 AND actor = "teresa graves"###context:CREATE TABLE table_name_82 (series VARCHAR, year VARCHAR, actor VARCHAR)
###question:Which motor's quantity was more than 8, and a class of bs 1915?###answer:SELECT motor FROM table_name_57 WHERE quantity > 8 AND class = "bs 1915"###context:CREATE TABLE table_name_57 (motor VARCHAR, quantity VARCHAR, class VARCHAR)
###question:Which motor's class was bs 1910?###answer:SELECT motor FROM table_name_84 WHERE class = "bs 1910"###context:CREATE TABLE table_name_84 (motor VARCHAR, class VARCHAR)
###question:What is the quantity when the seats number was 16 and the class was kss 1913?###answer:SELECT quantity FROM table_name_67 WHERE seats = 16 AND class = "kss 1913"###context:CREATE TABLE table_name_67 (quantity VARCHAR, seats VARCHAR, class VARCHAR)
###question:What is the Root of All Evil with an Original air date that is september 3, 2008?###answer:SELECT root_of_all_evil FROM table_name_33 WHERE original_air_date = "september 3, 2008"###context:CREATE TABLE table_name_33 (root_of_all_evil VARCHAR, original_air_date VARCHAR)
###question:Goals Conceded (GC) that has a Draw (PE) larger than 2, and a Goals Scored (GF) larger than 19?###answer:SELECT MAX(goals_conceded__gc_) FROM table_name_33 WHERE draw__pe_ > 2 AND goals_scored__gf_ > 19###context:CREATE TABLE table_name_33 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ V...
###question:What is the number for the University of Dublin with their Cultural and Educational Panel of 5, and an Industrial and Commercial Panel with less than 9?###answer:SELECT COUNT(university_of_dublin) FROM table_name_46 WHERE cultural_and_educational_panel = 5 AND industrial_and_commercial_panel < 9###context:C...
###question:Which Rank has a Losing Semi- finalist larger than 1, and a Winner smaller than 5?###answer:SELECT rank FROM table_name_79 WHERE losing_semi__finalist > 1 AND winner < 5###context:CREATE TABLE table_name_79 (rank VARCHAR, losing_semi__finalist VARCHAR, winner VARCHAR)
###question:Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1?###answer:SELECT AVG(rank) FROM table_name_78 WHERE country = "costa rica" AND losing_semi__finalist > 1###context:CREATE TABLE table_name_78 (rank INTEGER, country VARCHAR, losing_semi__finalist VARCHAR)
###question:Which Rank has a Runner -up smaller than 0?###answer:SELECT MAX(rank) FROM table_name_31 WHERE runner__up < 0###context:CREATE TABLE table_name_31 (rank INTEGER, runner__up INTEGER)
###question:What Year was the United States the country for aug 3–5?###answer:SELECT year FROM table_name_64 WHERE country = "united states" AND dates = "aug 3–5"###context:CREATE TABLE table_name_64 (year VARCHAR, country VARCHAR, dates VARCHAR)
###question:What is the highest Purse for aug 3–5?###answer:SELECT MAX(purse__) AS $_ FROM table_name_80 WHERE dates = "aug 3–5"###context:CREATE TABLE table_name_80 (purse__ INTEGER, dates VARCHAR)
###question:Which country has a qualsiasi tranne sky hd package/option?###answer:SELECT country FROM table_name_21 WHERE package_option = "qualsiasi tranne sky hd"###context:CREATE TABLE table_name_21 (country VARCHAR, package_option VARCHAR)
###question:Which package/option has sky wwe 24/7 television service?###answer:SELECT package_option FROM table_name_99 WHERE television_service = "sky wwe 24/7"###context:CREATE TABLE table_name_99 (package_option VARCHAR, television_service VARCHAR)
###question:What is the package/option for the calcio content?###answer:SELECT package_option FROM table_name_53 WHERE content = "calcio"###context:CREATE TABLE table_name_53 (package_option VARCHAR, content VARCHAR)
###question:What is the language of the television service cartello promozionale sky hd?###answer:SELECT language FROM table_name_50 WHERE television_service = "cartello promozionale sky hd"###context:CREATE TABLE table_name_50 (language VARCHAR, television_service VARCHAR)
###question:What kind of bike had a grid less than 23, an accident under time, and Graeme Gowland as a rider?###answer:SELECT bike FROM table_name_7 WHERE grid < 23 AND time = "accident" AND rider = "graeme gowland"###context:CREATE TABLE table_name_7 (bike VARCHAR, rider VARCHAR, grid VARCHAR, time VARCHAR)
###question:Who was the rider with more than 5 laps on a grid bigger than 29 on a Honda CBR600RR and time at +1:27.385?###answer:SELECT rider FROM table_name_88 WHERE laps > 5 AND grid > 29 AND bike = "honda cbr600rr" AND time = "+1:27.385"###context:CREATE TABLE table_name_88 (rider VARCHAR, time VARCHAR, bike VARCHAR...
###question:Who was the rider with a grid of 36?###answer:SELECT rider FROM table_name_39 WHERE grid = 36###context:CREATE TABLE table_name_39 (rider VARCHAR, grid VARCHAR)
###question:Which bike had a grid less than 35 and time at 37:58.607?###answer:SELECT bike FROM table_name_13 WHERE grid < 35 AND time = "37:58.607"###context:CREATE TABLE table_name_13 (bike VARCHAR, grid VARCHAR, time VARCHAR)
###question:What is Result, when Director is Veljko Bulajić category:articles with hcards, and when Original title is Sarajevski Atentat?###answer:SELECT result FROM table_name_46 WHERE director = "veljko bulajić category:articles with hcards" AND original_title = "sarajevski atentat"###context:CREATE TABLE table_name_...
###question:What is Result, when Director is Mirza Idrizović category:articles with hcards?###answer:SELECT result FROM table_name_78 WHERE director = "mirza idrizović category:articles with hcards"###context:CREATE TABLE table_name_78 (result VARCHAR, director VARCHAR)
###question:What is Original title, when Film title used in nomination is Train Without A Timetable?###answer:SELECT original_title FROM table_name_35 WHERE film_title_used_in_nomination = "train without a timetable"###context:CREATE TABLE table_name_35 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
###question:What is Original title, when Director is Veljko Bulajić category:articles with hcards, and when Film title used in nomination is Train Without A Timetable?###answer:SELECT original_title FROM table_name_35 WHERE director = "veljko bulajić category:articles with hcards" AND film_title_used_in_nomination = "t...
###question:What is Film title used in nomination, when Year (Ceremony) is 1968 (41st)?###answer:SELECT film_title_used_in_nomination FROM table_name_47 WHERE year__ceremony_ = "1968 (41st)"###context:CREATE TABLE table_name_47 (film_title_used_in_nomination VARCHAR, year__ceremony_ VARCHAR)
###question:What is Director, when Result is nominee, and when Year (Ceremony) is 1969 (42nd)?###answer:SELECT director FROM table_name_65 WHERE result = "nominee" AND year__ceremony_ = "1969 (42nd)"###context:CREATE TABLE table_name_65 (director VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)
###question:Which name's height in centimeters is 178 when its weight in kilograms is less than 91?###answer:SELECT name FROM table_name_24 WHERE height__cm_ = 178 AND weight__kg_ < 91###context:CREATE TABLE table_name_24 (name VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)