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