text
stringlengths
114
1.06k
### question: What is the date of appointment when the date of vacancy is 21 december 2007? ### answer: SELECT date_of_appointment FROM table_10592536_8 WHERE date_of_vacancy = "21 December 2007" ### context: CREATE TABLE table_10592536_8 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)
### question: Who replaced when team is wigan athletic? ### answer: SELECT replaced_by FROM table_10592536_8 WHERE team = "Wigan Athletic" ### context: CREATE TABLE table_10592536_8 (replaced_by VARCHAR, team VARCHAR)
### question: What is the date of vacancy when the team is manchester city and replaced by is mark hughes? ### answer: SELECT date_of_vacancy FROM table_10592536_8 WHERE team = "Manchester City" AND replaced_by = "Mark Hughes" ### context: CREATE TABLE table_10592536_8 (date_of_vacancy VARCHAR, team VARCHAR, replaced_b...
### question: What is the date of appointment when replaced by is roy hodgson? ### answer: SELECT date_of_appointment FROM table_10592536_8 WHERE replaced_by = "Roy Hodgson" ### context: CREATE TABLE table_10592536_8 (date_of_appointment VARCHAR, replaced_by VARCHAR)
### question: Who replaced when position in table is pre-season? ### answer: SELECT replaced_by FROM table_10592536_8 WHERE position_in_table = "Pre-season" ### context: CREATE TABLE table_10592536_8 (replaced_by VARCHAR, position_in_table VARCHAR)
### question: How many games had a score value of 813.5 in post-season play? ### answer: SELECT COUNT(play_off) FROM table_1059743_1 WHERE points = "813.5" ### context: CREATE TABLE table_1059743_1 (play_off VARCHAR, points VARCHAR)
### question: Did any team score games that totaled up to 860.5? ### answer: SELECT play_off FROM table_1059743_1 WHERE points = "860.5" ### context: CREATE TABLE table_1059743_1 (play_off VARCHAR, points VARCHAR)
### question: What was the score of the game when the team reached a record of 6-9? ### answer: SELECT score FROM table_10595672_1 WHERE record = "6-9" ### context: CREATE TABLE table_10595672_1 (score VARCHAR, record VARCHAR)
### question: What type institution is point park university ### answer: SELECT type FROM table_10581768_2 WHERE institution = "Point Park University" ### context: CREATE TABLE table_10581768_2 (type VARCHAR, institution VARCHAR)
### question: How many institutions are located in wilmore, kentucky and private ### answer: SELECT MAX(founded) FROM table_10581768_2 WHERE type = "Private" AND location = "Wilmore, Kentucky" ### context: CREATE TABLE table_10581768_2 (founded INTEGER, type VARCHAR, location VARCHAR)
### question: how many founded dates are listed for carlow university 1 ### answer: SELECT COUNT(founded) FROM table_10581768_2 WHERE institution = "Carlow University 1" ### context: CREATE TABLE table_10581768_2 (founded VARCHAR, institution VARCHAR)
### question: what is the original air date of the episode no in season 9? ### answer: SELECT original_air_date FROM table_10610087_3 WHERE no_in_season = 9 ### context: CREATE TABLE table_10610087_3 (original_air_date VARCHAR, no_in_season VARCHAR)
### question: What is the title of the episode written by denis leary, peter tolan and evan reilly? ### answer: SELECT title FROM table_10610087_3 WHERE written_by = "Denis Leary, Peter Tolan and Evan Reilly" ### context: CREATE TABLE table_10610087_3 (title VARCHAR, written_by VARCHAR)
### question: When was Kamba active? ### answer: SELECT dates_active FROM table_10602294_1 WHERE name = "Kamba" ### context: CREATE TABLE table_10602294_1 (dates_active VARCHAR, name VARCHAR)
### question: What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)? ### answer: SELECT pressure FROM table_10602294_1 WHERE deaths = "95km/h (60mph)" ### context: CREATE TABLE table_10602294_1 (pressure VARCHAR, deaths VARCHAR)
### question: What were the active dates for the storm that had 185km/h (115mph) deaths? ### answer: SELECT dates_active FROM table_10602294_1 WHERE deaths = "185km/h (115mph)" ### context: CREATE TABLE table_10602294_1 (dates_active VARCHAR, deaths VARCHAR)
### question: What was the damage (usd) from the cyclones that measured 1003hPa (29.62inHg) pressure? ### answer: SELECT damage__usd_ FROM table_10602294_1 WHERE pressure = "1003hPa (29.62inHg)" ### context: CREATE TABLE table_10602294_1 (damage__usd_ VARCHAR, pressure VARCHAR)
### question: what's the average where high score is 120 ### answer: SELECT average FROM table_10621256_1 WHERE high_score = 120 ### context: CREATE TABLE table_10621256_1 (average VARCHAR, high_score VARCHAR)
### question: what's the player where 50 is 2 and n/o is 0 ### answer: SELECT player FROM table_10621256_1 WHERE 50 = 2 AND n_o = 0 ### context: CREATE TABLE table_10621256_1 (player VARCHAR, n_o VARCHAR)
### question: what's the player where inns is 21 ### answer: SELECT player FROM table_10621256_1 WHERE inns = 21 ### context: CREATE TABLE table_10621256_1 (player VARCHAR, inns VARCHAR)
### question: Which general election had a pq majority and a 44.75% of the popular vote? ### answer: SELECT general_election FROM table_106367_2 WHERE result = "PQ majority" AND _percentage_of_popular_vote = "44.75%" ### context: CREATE TABLE table_106367_2 (general_election VARCHAR, result VARCHAR, _percentage_of_popu...
### question: What is the least number of candidates running were there when 80 seats were won? ### answer: SELECT MIN(_number_of_candidates) FROM table_106367_2 WHERE _number_of_seats_won = 80 ### context: CREATE TABLE table_106367_2 (_number_of_candidates INTEGER, _number_of_seats_won VARCHAR)
### question: How many seats were won in the election with 125 candidates? ### answer: SELECT COUNT(_number_of_seats_won) FROM table_106367_2 WHERE _number_of_candidates = 125 ### context: CREATE TABLE table_106367_2 (_number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)
### question: How many weeks are there? ### answer: SELECT MAX(week) FROM table_10647639_1 ### context: CREATE TABLE table_10647639_1 (week INTEGER)
### question: How many people attended the game against the indianapolis colts? ### answer: SELECT COUNT(attendance) FROM table_10647639_1 WHERE opponent = "Indianapolis Colts" ### context: CREATE TABLE table_10647639_1 (attendance VARCHAR, opponent VARCHAR)
### question: On december 16, 1985, all the records were what? ### answer: SELECT record FROM table_10647639_1 WHERE date = "December 16, 1985" ### context: CREATE TABLE table_10647639_1 (record VARCHAR, date VARCHAR)
### question: How many results are there for the 0-4 record? ### answer: SELECT COUNT(result) FROM table_10646790_2 WHERE record = "0-4" ### context: CREATE TABLE table_10646790_2 (result VARCHAR, record VARCHAR)
### question: How many weeks are there that include the date October 11, 1969. ### answer: SELECT COUNT(week) FROM table_10646790_2 WHERE date = "October 11, 1969" ### context: CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)
### question: How many weeks are there that include the date November 9, 1969. ### answer: SELECT COUNT(week) FROM table_10646790_2 WHERE date = "November 9, 1969" ### context: CREATE TABLE table_10646790_2 (week VARCHAR, date VARCHAR)
### question: How many records are there at the War Memorial Stadium? ### answer: SELECT COUNT(record) FROM table_10646790_2 WHERE stadium = "War Memorial stadium" ### context: CREATE TABLE table_10646790_2 (record VARCHAR, stadium VARCHAR)
### question: What was the minimum attendance on December 7, 1969? ### answer: SELECT MIN(attendance) FROM table_10646790_2 WHERE date = "December 7, 1969" ### context: CREATE TABLE table_10646790_2 (attendance INTEGER, date VARCHAR)
### question: What week corresponds to the last one to be played at the memorial stadium? ### answer: SELECT MAX(week) FROM table_10647401_1 WHERE stadium = "Memorial stadium" ### context: CREATE TABLE table_10647401_1 (week INTEGER, stadium VARCHAR)
### question: In which stadium is the week 5 game played? ### answer: SELECT stadium FROM table_10647401_1 WHERE week = 5 ### context: CREATE TABLE table_10647401_1 (stadium VARCHAR, week VARCHAR)
### question: what is the nfl team where player is thane gash ### answer: SELECT nfl_team FROM table_10650711_1 WHERE player = "Thane Gash" ### context: CREATE TABLE table_10650711_1 (nfl_team VARCHAR, player VARCHAR)
### question: what is the maximum pick # where player is anthony blaylock ### answer: SELECT MAX(pick__number) FROM table_10650711_1 WHERE player = "Anthony Blaylock" ### context: CREATE TABLE table_10650711_1 (pick__number INTEGER, player VARCHAR)
### question: what's the nfl team where player is clifford charlton ### answer: SELECT nfl_team FROM table_10650711_1 WHERE player = "Clifford Charlton" ### context: CREATE TABLE table_10650711_1 (nfl_team VARCHAR, player VARCHAR)
### question: what's the position where player is anthony blaylock ### answer: SELECT position FROM table_10650711_1 WHERE player = "Anthony Blaylock" ### context: CREATE TABLE table_10650711_1 (position VARCHAR, player VARCHAR)
### question: what is the minimum pick # where position is defensive tackle ### answer: SELECT MIN(pick__number) FROM table_10650711_1 WHERE position = "Defensive Tackle" ### context: CREATE TABLE table_10650711_1 (pick__number INTEGER, position VARCHAR)
### question: Which province has a density of 971.4? ### answer: SELECT province FROM table_1067441_1 WHERE density = "971.4" ### context: CREATE TABLE table_1067441_1 (province VARCHAR, density VARCHAR)
### question: What is Friesland's gdp per capita? ### answer: SELECT MIN(gdp_per_cap__2003), _in_€_ FROM table_1067441_1 WHERE province = "Friesland" ### context: CREATE TABLE table_1067441_1 (_in_€_ VARCHAR, gdp_per_cap__2003 INTEGER, province VARCHAR)
### question: What is the area of the place that has a population density of 331.4? ### answer: SELECT MAX(area__km²_) FROM table_1067441_1 WHERE density = "331.4" ### context: CREATE TABLE table_1067441_1 (area__km²_ INTEGER, density VARCHAR)
### question: What is the title when original air date is may15,2008? ### answer: SELECT title FROM table_10701133_1 WHERE original_air_date = "May15,2008" ### context: CREATE TABLE table_10701133_1 (title VARCHAR, original_air_date VARCHAR)
### question: What is the highest no. in season? ### answer: SELECT MAX(no_in_season) FROM table_10701133_1 ### context: CREATE TABLE table_10701133_1 (no_in_season INTEGER)
### question: Who directed the episode where u.s. viewers (million) is 12.90? ### answer: SELECT directed_by FROM table_10701133_1 WHERE us_viewers__million_ = "12.90" ### context: CREATE TABLE table_10701133_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
### question: How many episodes aired in Region 2 beginning May 26, 2008? ### answer: SELECT MIN(_number_of_ep) FROM table_1067134_1 WHERE region_2 = "May 26, 2008" ### context: CREATE TABLE table_1067134_1 (_number_of_ep INTEGER, region_2 VARCHAR)
### question: What date did the DVD for season six come out in region 2? ### answer: SELECT region_2 FROM table_1067134_1 WHERE dvd_name = "Season Six" ### context: CREATE TABLE table_1067134_1 (region_2 VARCHAR, dvd_name VARCHAR)
### question: What is the least amount of season epidsodes? ### answer: SELECT MIN(_number_of_ep) FROM table_1067134_1 ### context: CREATE TABLE table_1067134_1 (_number_of_ep INTEGER)
### question: What DVD season/name for region 2 was released August 22, 2010? ### answer: SELECT dvd_name FROM table_1067134_1 WHERE region_2 = "August 22, 2010" ### context: CREATE TABLE table_1067134_1 (dvd_name VARCHAR, region_2 VARCHAR)
### question: How many points for 2005? ### answer: SELECT COUNT(points) FROM table_10705060_1 WHERE season = "2005" ### context: CREATE TABLE table_10705060_1 (points VARCHAR, season VARCHAR)
### question: what is the score for the dams? ### answer: SELECT points FROM table_10705060_1 WHERE team_name = "DAMS" ### context: CREATE TABLE table_10705060_1 (points VARCHAR, team_name VARCHAR)
### question: how many positions in 2009? ### answer: SELECT COUNT(position) FROM table_10705060_1 WHERE season = "2009" ### context: CREATE TABLE table_10705060_1 (position VARCHAR, season VARCHAR)
### question: what is the least number of poles? ### answer: SELECT MIN(poles) FROM table_10705060_1 ### context: CREATE TABLE table_10705060_1 (poles INTEGER)
### question: Which series with 62 points? ### answer: SELECT series FROM table_10705060_1 WHERE points = 62 ### context: CREATE TABLE table_10705060_1 (series VARCHAR, points VARCHAR)
### question: What is the total for 10th position? ### answer: SELECT COUNT(points) FROM table_10705060_1 WHERE position = "10th" ### context: CREATE TABLE table_10705060_1 (points VARCHAR, position VARCHAR)
### question: how many reports of races took place on october 16? ### answer: SELECT COUNT(report) FROM table_10707142_2 WHERE date = "October 16" ### context: CREATE TABLE table_10707142_2 (report VARCHAR, date VARCHAR)
### question: what is the name of the report that lists the race name as long beach grand prix? ### answer: SELECT report FROM table_10707142_2 WHERE race_name = "Long Beach Grand Prix" ### context: CREATE TABLE table_10707142_2 (report VARCHAR, race_name VARCHAR)
### question: what is the report called where the circuit took place at the nazareth speedway? ### answer: SELECT report FROM table_10707142_2 WHERE circuit = "Nazareth Speedway" ### context: CREATE TABLE table_10707142_2 (report VARCHAR, circuit VARCHAR)
### question: what is the name of the race where newman/haas racing is the winning team and rick mears is at the pole position? ### answer: SELECT race_name FROM table_10707142_2 WHERE winning_team = "Newman/Haas Racing" AND pole_position = "Rick Mears" ### context: CREATE TABLE table_10707142_2 (race_name VARCHAR, win...
### question: meadowlands sports complex is the circuit at which city/location? ### answer: SELECT city_location FROM table_10707142_2 WHERE circuit = "Meadowlands Sports Complex" ### context: CREATE TABLE table_10707142_2 (city_location VARCHAR, circuit VARCHAR)
### question: What is the literacy rate for groups that grew 103.1% between 1991 and 2001? ### answer: SELECT literacy___percentage_ FROM table_10710364_2 WHERE growth__1991_2001_ = "103.1%" ### context: CREATE TABLE table_10710364_2 (literacy___percentage_ VARCHAR, growth__1991_2001_ VARCHAR)
### question: What is the lowest sex ratio in rural areas? ### answer: SELECT MIN(sex_ratio__rural_) FROM table_10710364_2 ### context: CREATE TABLE table_10710364_2 (sex_ratio__rural_ INTEGER)
### question: What is the lowest child sex ratio in groups where employment is 31.3%? ### answer: SELECT MIN(sex_ratio__child_) FROM table_10710364_2 WHERE work_participation___percentage_ = "31.3%" ### context: CREATE TABLE table_10710364_2 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR)
### question: What is the population percentage of the group where the rural sex ratio is 953? ### answer: SELECT population__percentage FROM table_10710364_2 WHERE sex_ratio__rural_ = 953 ### context: CREATE TABLE table_10710364_2 (population__percentage VARCHAR, sex_ratio__rural_ VARCHAR)
### question: What is the title of the episode directed by Peter Markle and written by Jerry Stahl? ### answer: SELECT title FROM table_10715317_2 WHERE directed_by = "Peter Markle" AND written_by = "Jerry Stahl" ### context: CREATE TABLE table_10715317_2 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
### question: Who does the lap-by-lap in 2011? ### answer: SELECT lap_by_lap FROM table_10716893_3 WHERE year = 2011 ### context: CREATE TABLE table_10716893_3 (lap_by_lap VARCHAR, year VARCHAR)
### question: Which network has Marty Reid as host and lap-by-lap broadcaster? ### answer: SELECT network FROM table_10716893_3 WHERE lap_by_lap = "Marty Reid" AND host = "Marty Reid" ### context: CREATE TABLE table_10716893_3 (network VARCHAR, lap_by_lap VARCHAR, host VARCHAR)
### question: How many pre-race analysis occur when Allen Bestwick does the lap-by-lap? ### answer: SELECT COUNT(pre_race_analyst) FROM table_10716893_3 WHERE lap_by_lap = "Allen Bestwick" ### context: CREATE TABLE table_10716893_3 (pre_race_analyst VARCHAR, lap_by_lap VARCHAR)
### question: What's the highest season number of an episode in the series? ### answer: SELECT MAX(no_in_season) FROM table_10718192_2 ### context: CREATE TABLE table_10718192_2 (no_in_season INTEGER)
### question: What's the date of the first airing of the episode with series number 63? ### answer: SELECT original_air_date FROM table_10718192_2 WHERE no_in_series = 63 ### context: CREATE TABLE table_10718192_2 (original_air_date VARCHAR, no_in_series VARCHAR)
### question: How many titles got a viewership of 26.53 million? ### answer: SELECT COUNT(title) FROM table_10718525_2 WHERE us_viewers__millions_ = "26.53" ### context: CREATE TABLE table_10718525_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
### question: How many viewers tuned into the show directed by Matt Earl Beesley? ### answer: SELECT us_viewers__millions_ FROM table_10718525_2 WHERE directed_by = "Matt Earl Beesley" ### context: CREATE TABLE table_10718525_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
### question: Who wrote episode 94? ### answer: SELECT written_by FROM table_10718631_2 WHERE no_in_series = 94 ### context: CREATE TABLE table_10718631_2 (written_by VARCHAR, no_in_series VARCHAR)
### question: Which episode was the number in the season where the number in the season is 10? ### answer: SELECT no_in_series FROM table_10718631_2 WHERE no_in_season = 10 ### context: CREATE TABLE table_10718631_2 (no_in_series VARCHAR, no_in_season VARCHAR)
### question: When did the 113 episode air? ### answer: SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113 ### context: CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR)
### question: How many titles were there for the 113 episode? ### answer: SELECT COUNT(title) FROM table_10718631_2 WHERE no_in_series = 113 ### context: CREATE TABLE table_10718631_2 (title VARCHAR, no_in_series VARCHAR)
### question: What is the number in the season that Marlene Meyer wrote and 20.49 million people watched? ### answer: SELECT MAX(no_in_season) FROM table_10718984_2 WHERE written_by = "Marlene Meyer" AND us_viewers__millions_ = "20.49" ### context: CREATE TABLE table_10718984_2 (no_in_season INTEGER, written_by VARCHAR...
### question: When did the no. 23 show originally air? ### answer: SELECT original_air_date FROM table_10718984_2 WHERE no_in_season = 23 ### context: CREATE TABLE table_10718984_2 (original_air_date VARCHAR, no_in_season VARCHAR)
### question: Which circuits had a race on October 4? ### answer: SELECT circuit FROM table_10725629_2 WHERE date = "October 4" ### context: CREATE TABLE table_10725629_2 (circuit VARCHAR, date VARCHAR)
### question: In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team? ### answer: SELECT report FROM table_10725629_2 WHERE pole_position = "Michael Andretti" AND winning_team = "Galles-Kraco Racing" ### context: CREATE TABLE table_10725629_2 (report VARCHAR, pole_posi...
### question: How many rounds were there of the Bosch Spark Plug Grand Prix? ### answer: SELECT COUNT(rnd) FROM table_10725629_2 WHERE race_name = "Bosch Spark Plug Grand Prix" ### context: CREATE TABLE table_10725629_2 (rnd VARCHAR, race_name VARCHAR)
### question: Which rounds were held on August 9? ### answer: SELECT rnd FROM table_10725629_2 WHERE date = "August 9" ### context: CREATE TABLE table_10725629_2 (rnd VARCHAR, date VARCHAR)
### question: On how many dates did the Michigan International Speedway hold a round? ### answer: SELECT COUNT(date) FROM table_10725629_2 WHERE circuit = "Michigan International Speedway" ### context: CREATE TABLE table_10725629_2 (date VARCHAR, circuit VARCHAR)
### question: Name the total number of bids of the sun belt conference ### answer: SELECT COUNT(_number_of_bids) FROM table_10722506_6 WHERE conference = "Sun Belt" ### context: CREATE TABLE table_10722506_6 (_number_of_bids VARCHAR, conference VARCHAR)
### question: Name the round of 32 in conference usa ### answer: SELECT round_of_32 FROM table_10722506_6 WHERE conference = "conference USA" ### context: CREATE TABLE table_10722506_6 (round_of_32 VARCHAR, conference VARCHAR)
### question: What is the record when round of 32 is 0 and metro atlantic conference? ### answer: SELECT record FROM table_10722506_6 WHERE round_of_32 = 0 AND conference = "Metro Atlantic" ### context: CREATE TABLE table_10722506_6 (record VARCHAR, round_of_32 VARCHAR, conference VARCHAR)
### question: What is the number of bids with elite eight larger than 1.0 ### answer: SELECT COUNT(_number_of_bids) FROM table_10722506_6 WHERE elite_eight > 1.0 ### context: CREATE TABLE table_10722506_6 (_number_of_bids VARCHAR, elite_eight INTEGER)
### question: Who directed the episode with production code 7aff03? ### answer: SELECT directed_by FROM table_10749143_2 WHERE production_code = "7AFF03" ### context: CREATE TABLE table_10749143_2 (directed_by VARCHAR, production_code VARCHAR)
### question: What is the title of the episode wtih 10.34 million U.S viewers? ### answer: SELECT title FROM table_10749143_2 WHERE us_viewers__millions_ = "10.34" ### context: CREATE TABLE table_10749143_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
### question: What place is the team that completed 6 races? ### answer: SELECT position FROM table_10748727_1 WHERE races = 6 ### context: CREATE TABLE table_10748727_1 (position VARCHAR, races VARCHAR)
### question: how much did the british formula three called "fortec motorsport" score? ### answer: SELECT points FROM table_10748727_1 WHERE series = "British Formula Three" AND team_name = "Fortec Motorsport" ### context: CREATE TABLE table_10748727_1 (points VARCHAR, series VARCHAR, team_name VARCHAR)
### question: how many races were in 2009 with 0 wins? ### answer: SELECT races FROM table_10748727_1 WHERE season = "2009" AND wins = 0 ### context: CREATE TABLE table_10748727_1 (races VARCHAR, season VARCHAR, wins VARCHAR)
### question: What years did art grand prix compete? ### answer: SELECT season FROM table_10748727_1 WHERE team_name = "ART Grand Prix" ### context: CREATE TABLE table_10748727_1 (season VARCHAR, team_name VARCHAR)
### question: What year had a score of 9? ### answer: SELECT season FROM table_10748727_1 WHERE points = "9" ### context: CREATE TABLE table_10748727_1 (season VARCHAR, points VARCHAR)
### question: what is the greatest number of wins by japanese formula three? ### answer: SELECT MAX(wins) FROM table_10748727_1 WHERE series = "Japanese Formula Three" ### context: CREATE TABLE table_10748727_1 (wins INTEGER, series VARCHAR)
### question: Who took test #4? ### answer: SELECT test_taker FROM table_10749367_3 WHERE _number = 4 ### context: CREATE TABLE table_10749367_3 (test_taker VARCHAR, _number VARCHAR)
### question: What episode aired on 18 April 2007? ### answer: SELECT MIN(_number) FROM table_10749367_3 WHERE air_date = "18 April 2007" ### context: CREATE TABLE table_10749367_3 (_number INTEGER, air_date VARCHAR)
### question: Who had the challenge of night driving? ### answer: SELECT test_taker FROM table_10749367_3 WHERE challenge = "Night Driving" ### context: CREATE TABLE table_10749367_3 (test_taker VARCHAR, challenge VARCHAR)
### question: How many directors were there for the film Course Completed? ### answer: SELECT COUNT(director) FROM table_10798928_1 WHERE film_title_used_in_nomination = "Course Completed" ### context: CREATE TABLE table_10798928_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
### question: Who directed El Nido? ### answer: SELECT director FROM table_10798928_1 WHERE original_title = "El nido" ### context: CREATE TABLE table_10798928_1 (director VARCHAR, original_title VARCHAR)
### question: Who directed Dulcinea? ### answer: SELECT director FROM table_10798928_1 WHERE original_title = "Dulcinea" ### context: CREATE TABLE table_10798928_1 (director VARCHAR, original_title VARCHAR)