text
stringlengths
114
1.06k
### question: What was their record in week 11? ### answer: SELECT record FROM table_21839208_4 WHERE week = 11 ### context: CREATE TABLE table_21839208_4 (record VARCHAR, week VARCHAR)
### question: Name the least wins ### answer: SELECT MIN(wins) FROM table_2187333_1 ### context: CREATE TABLE table_2187333_1 (wins INTEGER)
### question: Name the avg start for avg finish of 18.3 ### answer: SELECT avg_start FROM table_2187333_1 WHERE avg_finish = "18.3" ### context: CREATE TABLE table_2187333_1 (avg_start VARCHAR, avg_finish VARCHAR)
### question: Name the year for #16 roush racing for poles less than smaller 1.0 ### answer: SELECT year FROM table_2187333_1 WHERE team_s_ = "#16 Roush Racing" AND poles < 1.0 ### context: CREATE TABLE table_2187333_1 (year VARCHAR, team_s_ VARCHAR, poles VARCHAR)
### question: Name the listen owners for repairone ### answer: SELECT listed_owner_s_ FROM table_2187178_1 WHERE primary_sponsor_s_ = "RepairOne" ### context: CREATE TABLE table_2187178_1 (listed_owner_s_ VARCHAR, primary_sponsor_s_ VARCHAR)
### question: Name the trucks for scott neal ### answer: SELECT truck_s_ FROM table_2187178_1 WHERE crew_chief = "Scott Neal" ### context: CREATE TABLE table_2187178_1 (truck_s_ VARCHAR, crew_chief VARCHAR)
### question: Name the listed owners for brevak racing ### answer: SELECT listed_owner_s_ FROM table_2187178_1 WHERE team = "Brevak Racing" ### context: CREATE TABLE table_2187178_1 (listed_owner_s_ VARCHAR, team VARCHAR)
### question: Name the crew chief for ricky craven ### answer: SELECT crew_chief FROM table_2187178_1 WHERE driver_s_ = "Ricky Craven" ### context: CREATE TABLE table_2187178_1 (crew_chief VARCHAR, driver_s_ VARCHAR)
### question: Name the drivers for superchips ### answer: SELECT driver_s_ FROM table_2187178_1 WHERE primary_sponsor_s_ = "Superchips" ### context: CREATE TABLE table_2187178_1 (driver_s_ VARCHAR, primary_sponsor_s_ VARCHAR)
### question: When was Viva Cuba submitted? ### answer: SELECT year__ceremony_ FROM table_21904740_1 WHERE spanish_title = "Viva Cuba" ### context: CREATE TABLE table_21904740_1 (year__ceremony_ VARCHAR, spanish_title VARCHAR)
### question: Name the name for 15 yield ### answer: SELECT name_or_number FROM table_2189647_1 WHERE yield__megatons_ = "15" ### context: CREATE TABLE table_2189647_1 (name_or_number VARCHAR, yield__megatons_ VARCHAR)
### question: What is the rank of the company known for retailing? ### answer: SELECT COUNT(state_rank_by_revenue) FROM table_21926985_2 WHERE known_for = "Retailing" ### context: CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, known_for VARCHAR)
### question: What is the rank for Murphy Oil? ### answer: SELECT state_rank_by_revenue FROM table_21926985_2 WHERE company_name = "Murphy Oil" ### context: CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, company_name VARCHAR)
### question: Where is the company with estimated revenue of 33.3 billion headquartered? ### answer: SELECT headquarters_city FROM table_21926985_2 WHERE revenue__$billions__2012_estimate = "33.3" ### context: CREATE TABLE table_21926985_2 (headquarters_city VARCHAR, revenue__$billions__2012_estimate VARCHAR)
### question: What is the national rank of Windstream? ### answer: SELECT MIN(national_rank) FROM table_21926985_2 WHERE company_name = "Windstream" ### context: CREATE TABLE table_21926985_2 (national_rank INTEGER, company_name VARCHAR)
### question: What is the state rank of the company with 6.8 billion in revenue? ### answer: SELECT state_rank_by_revenue FROM table_21926985_2 WHERE revenue__$billions__2012_estimate = "6.8" ### context: CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, revenue__$billions__2012_estimate VARCHAR)
### question: Name the entrant for benedicto campos ### answer: SELECT entrant FROM table_21977704_1 WHERE driver = "Benedicto Campos" ### context: CREATE TABLE table_21977704_1 (entrant VARCHAR, driver VARCHAR)
### question: Name the number for automóvil club argentino for juan manuel fangio ### answer: SELECT no FROM table_21977704_1 WHERE entrant = "Automóvil Club Argentino" AND driver = "Juan Manuel Fangio" ### context: CREATE TABLE table_21977704_1 (no VARCHAR, entrant VARCHAR, driver VARCHAR)
### question: Name the most number for automóvil club argentino for benedicto campos ### answer: SELECT MAX(no) FROM table_21977704_1 WHERE entrant = "Automóvil Club Argentino" AND driver = "Benedicto Campos" ### context: CREATE TABLE table_21977704_1 (no INTEGER, entrant VARCHAR, driver VARCHAR)
### question: Name the driver for talbot l6 ### answer: SELECT driver FROM table_21977704_1 WHERE engine = "Talbot L6" ### context: CREATE TABLE table_21977704_1 (driver VARCHAR, engine VARCHAR)
### question: Name the constructor for alberto ascari ### answer: SELECT constructor FROM table_21977704_1 WHERE driver = "Alberto Ascari" ### context: CREATE TABLE table_21977704_1 (constructor VARCHAR, driver VARCHAR)
### question: Name the chassis for alta ### answer: SELECT chassis FROM table_21977704_1 WHERE constructor = "Alta" ### context: CREATE TABLE table_21977704_1 (chassis VARCHAR, constructor VARCHAR)
### question: The Maserati 4cl's minimum no was? ### answer: SELECT MIN(no) FROM table_21977627_1 WHERE chassis = "Maserati 4CL" ### context: CREATE TABLE table_21977627_1 (no INTEGER, chassis VARCHAR)
### question: How many entrants was yves giraud-cabantous? ### answer: SELECT COUNT(entrant) FROM table_21977627_1 WHERE driver = "Yves Giraud-Cabantous" ### context: CREATE TABLE table_21977627_1 (entrant VARCHAR, driver VARCHAR)
### question: What chasis did the maserati l6s have? ### answer: SELECT chassis FROM table_21977627_1 WHERE engine = "Maserati L6s" ### context: CREATE TABLE table_21977627_1 (chassis VARCHAR, engine VARCHAR)
### question: How many drivers did Bob Gerard Racing have? ### answer: SELECT COUNT(driver) FROM table_21977627_1 WHERE entrant = "Bob Gerard Racing" ### context: CREATE TABLE table_21977627_1 (driver VARCHAR, entrant VARCHAR)
### question: For the team with 7 points, how many points were scored against this season? ### answer: SELECT COUNT(pts_agst) FROM table_21991074_1 WHERE points = 7 ### context: CREATE TABLE table_21991074_1 (pts_agst VARCHAR, points VARCHAR)
### question: What is the maximum number of points scored against? ### answer: SELECT MAX(pts_agst) FROM table_21991074_1 ### context: CREATE TABLE table_21991074_1 (pts_agst INTEGER)
### question: What is Chesterfield Spires average? ### answer: SELECT average FROM table_21991074_1 WHERE club = "Chesterfield Spires" ### context: CREATE TABLE table_21991074_1 (average VARCHAR, club VARCHAR)
### question: What is the total number of January (°C) temperatures when the July (°C) temperatures were 22/13? ### answer: SELECT COUNT(january__) AS °c_ FROM table_21980_1 WHERE july__°c_ = "22/13" ### context: CREATE TABLE table_21980_1 (january__ VARCHAR, july__°c_ VARCHAR)
### question: What is the total number of January (°C) temperatures when the July (°C) temperatures were 23/15? ### answer: SELECT COUNT(january__) AS °c_ FROM table_21980_1 WHERE july__°c_ = "23/15" ### context: CREATE TABLE table_21980_1 (january__ VARCHAR, july__°c_ VARCHAR)
### question: In what location were the January (°F) temperatures 30/17? ### answer: SELECT location FROM table_21980_1 WHERE january__°f_ = "30/17" ### context: CREATE TABLE table_21980_1 (location VARCHAR, january__°f_ VARCHAR)
### question: What were the July (°C) temperatures when the July (°F) temperatures were 71/55? ### answer: SELECT july__°c_ FROM table_21980_1 WHERE july__°f_ = "71/55" ### context: CREATE TABLE table_21980_1 (july__°c_ VARCHAR, july__°f_ VARCHAR)
### question: What were the January (°F) temperatures in the Corner Brook location? ### answer: SELECT january__°f_ FROM table_21980_1 WHERE location = "Corner Brook" ### context: CREATE TABLE table_21980_1 (january__°f_ VARCHAR, location VARCHAR)
### question: Name the most points agst ### answer: SELECT MAX(pts_agst) FROM table_21991074_3 ### context: CREATE TABLE table_21991074_3 (pts_agst INTEGER)
### question: Name the least lost ### answer: SELECT MIN(lost) FROM table_21991074_3 ### context: CREATE TABLE table_21991074_3 (lost INTEGER)
### question: who are the writers of the episode that had 3.07 millions of North American spectators? ### answer: SELECT written_by FROM table_21979779_1 WHERE us_viewers__million_ = "3.07" ### context: CREATE TABLE table_21979779_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
### question: what is the biggest series episode number whose production code is 2t7211? ### answer: SELECT MAX(no) FROM table_21979779_1 WHERE production_code = "2T7211" ### context: CREATE TABLE table_21979779_1 (no INTEGER, production_code VARCHAR)
### question: what is the smallest series episode number whose production code is 2t7211? ### answer: SELECT MIN(no) FROM table_21979779_1 WHERE production_code = "2T7211" ### context: CREATE TABLE table_21979779_1 (no INTEGER, production_code VARCHAR)
### question: when was the premiere of the episode where the amount of North American spectators was 1.76 millions? ### answer: SELECT original_air_date FROM table_21979779_1 WHERE us_viewers__million_ = "1.76" ### context: CREATE TABLE table_21979779_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
### question: how many maximum series number have 2apx05 prod. code. ### answer: SELECT MAX(series__number) FROM table_21994729_3 WHERE prod_code = "2APX05" ### context: CREATE TABLE table_21994729_3 (series__number INTEGER, prod_code VARCHAR)
### question: What are all the title directed by reginald hudlin ### answer: SELECT COUNT(title) FROM table_21994729_3 WHERE directed_by = "Reginald Hudlin" ### context: CREATE TABLE table_21994729_3 (title VARCHAR, directed_by VARCHAR)
### question: reginald hudlin directed how many written by. ### answer: SELECT written_by FROM table_21994729_3 WHERE directed_by = "Reginald Hudlin" ### context: CREATE TABLE table_21994729_3 (written_by VARCHAR, directed_by VARCHAR)
### question: Who wore the episode with the production code of 1apx11? ### answer: SELECT written_by FROM table_21994729_2 WHERE prod_code = "1APX11" ### context: CREATE TABLE table_21994729_2 (written_by VARCHAR, prod_code VARCHAR)
### question: If the rank is 11, what is the total amount? ### answer: SELECT total FROM table_21995420_9 WHERE rank = 11 ### context: CREATE TABLE table_21995420_9 (total VARCHAR, rank VARCHAR)
### question: If the school is Central Colleges of the Philippines CCP Bobcats, what is the stunts number? ### answer: SELECT stunts FROM table_21995420_9 WHERE school = "Central Colleges of the Philippines CCP Bobcats" ### context: CREATE TABLE table_21995420_9 (stunts VARCHAR, school VARCHAR)
### question: If the POS is 3, what is the 08 points? ### answer: SELECT 08 AS _pts FROM table_22011138_7 WHERE pos = 3 ### context: CREATE TABLE table_22011138_7 (pos VARCHAR)
### question: If the team is Rubio ñú, what is the 08 points? ### answer: SELECT 08 AS _pts FROM table_22011138_7 WHERE team = "Rubio Ñú" ### context: CREATE TABLE table_22011138_7 (team VARCHAR)
### question: If the average is 1.2803, what is the total points maximum? ### answer: SELECT MAX(total_pts) FROM table_22011138_7 WHERE avg = "1.2803" ### context: CREATE TABLE table_22011138_7 (total_pts INTEGER, avg VARCHAR)
### question: If the POS is 4, what is the total PLD? ### answer: SELECT total_pld FROM table_22011138_7 WHERE pos = 4 ### context: CREATE TABLE table_22011138_7 (total_pld VARCHAR, pos VARCHAR)
### question: What is the team name when 243 is the total? ### answer: SELECT team_name FROM table_22014431_3 WHERE total = "243" ### context: CREATE TABLE table_22014431_3 (team_name VARCHAR, total VARCHAR)
### question: Which team names have 44.5 for tumbling? ### answer: SELECT team_name FROM table_22014431_3 WHERE tumbling = "44.5" ### context: CREATE TABLE table_22014431_3 (team_name VARCHAR, tumbling VARCHAR)
### question: What is the total if 44 is tosses/pyramids? ### answer: SELECT total FROM table_22014431_3 WHERE tosses_pyramids = "44" ### context: CREATE TABLE table_22014431_3 (total VARCHAR, tosses_pyramids VARCHAR)
### question: How many deductions have 56.5 as tosses/pyramids? ### answer: SELECT deductions FROM table_22014431_3 WHERE tosses_pyramids = "56.5" ### context: CREATE TABLE table_22014431_3 (deductions VARCHAR, tosses_pyramids VARCHAR)
### question: What is the rank when 36.5 is tumbling? ### answer: SELECT COUNT(rank) FROM table_22014431_3 WHERE tumbling = "36.5" ### context: CREATE TABLE table_22014431_3 (rank VARCHAR, tumbling VARCHAR)
### question: What is the rank when 64.5 is tosses/pyramids? ### answer: SELECT MAX(rank) FROM table_22014431_3 WHERE tosses_pyramids = "64.5" ### context: CREATE TABLE table_22014431_3 (rank INTEGER, tosses_pyramids VARCHAR)
### question: How many different outcomes of the French Championships were there? ### answer: SELECT COUNT(outcome) FROM table_2201724_2 WHERE championship = "French championships" ### context: CREATE TABLE table_2201724_2 (outcome VARCHAR, championship VARCHAR)
### question: How many different final scores were there in 1963? ### answer: SELECT COUNT(score_in_the_final) FROM table_2201724_2 WHERE year = 1963 ### context: CREATE TABLE table_2201724_2 (score_in_the_final VARCHAR, year VARCHAR)
### question: Who directed the film titled 'Steam of Life'? ### answer: SELECT director FROM table_22020724_1 WHERE film_title_used_in_nomination = "Steam of Life" ### context: CREATE TABLE table_22020724_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What year was the ceremony where the film 'Tummien Perhosten Koti' was submitted? ### answer: SELECT year__ceremony_ FROM table_22020724_1 WHERE title_in_the_original_language = "Tummien perhosten koti" ### context: CREATE TABLE table_22020724_1 (year__ceremony_ VARCHAR, title_in_the_original_language VAR...
### question: What are the results for the film titled 'Joki'? ### answer: SELECT COUNT(result) FROM table_22020724_1 WHERE title_in_the_original_language = "Joki" ### context: CREATE TABLE table_22020724_1 (result VARCHAR, title_in_the_original_language VARCHAR)
### question: What was the domestic box office for the film that had a foreign box office of $26,600,000? ### answer: SELECT domestic_box_office FROM table_2203760_4 WHERE foreign_box_office = "$26,600,000" ### context: CREATE TABLE table_2203760_4 (domestic_box_office VARCHAR, foreign_box_office VARCHAR)
### question: What was the domestic box office for "House on Haunted Hill"? ### answer: SELECT domestic_box_office FROM table_2203760_4 WHERE film = "House on Haunted Hill" ### context: CREATE TABLE table_2203760_4 (domestic_box_office VARCHAR, film VARCHAR)
### question: What was the budget for "Thirteen Ghosts"? ### answer: SELECT budget FROM table_2203760_4 WHERE film = "Thirteen Ghosts" ### context: CREATE TABLE table_2203760_4 (budget VARCHAR, film VARCHAR)
### question: What is every school for the Adelaide location? ### answer: SELECT school FROM table_22043925_1 WHERE location = "Adelaide" ### context: CREATE TABLE table_22043925_1 (school VARCHAR, location VARCHAR)
### question: How many values for founded when enrollment is 850? ### answer: SELECT COUNT(founded) FROM table_22043925_1 WHERE enrolment = 850 ### context: CREATE TABLE table_22043925_1 (founded VARCHAR, enrolment VARCHAR)
### question: What is every denomination for the school Seymour college? ### answer: SELECT denomination FROM table_22043925_1 WHERE school = "Seymour College" ### context: CREATE TABLE table_22043925_1 (denomination VARCHAR, school VARCHAR)
### question: Event number 38m was held on which date? ### answer: SELECT date FROM table_22050544_3 WHERE event__number = "38M" ### context: CREATE TABLE table_22050544_3 (date VARCHAR, event__number VARCHAR)
### question: Who won the $109 no limit hold'em w/rebuys [turbo]? ### answer: SELECT winner FROM table_22050544_3 WHERE event = "$109 No Limit Hold'em w/rebuys [Turbo]" ### context: CREATE TABLE table_22050544_3 (winner VARCHAR, event VARCHAR)
### question: Which event had 25,883 entries? ### answer: SELECT event FROM table_22050544_3 WHERE entries = "25,883" ### context: CREATE TABLE table_22050544_3 (event VARCHAR, entries VARCHAR)
### question: How many categories for elapsed time exist for the $16.50 fixed-limit badugi game? ### answer: SELECT COUNT(elapsed_time) FROM table_22050544_3 WHERE event = "$16.50 Fixed-Limit Badugi" ### context: CREATE TABLE table_22050544_3 (elapsed_time VARCHAR, event VARCHAR)
### question: What year did jaroslav vojtek category:articles with hcards Direct? ### answer: SELECT year__ceremony_ FROM table_22032599_1 WHERE director = "Jaroslav Vojtek Category:Articles with hCards" ### context: CREATE TABLE table_22032599_1 (year__ceremony_ VARCHAR, director VARCHAR)
### question: What was the result for Gypsy? ### answer: SELECT result FROM table_22032599_1 WHERE film_title_used_in_nomination = "Gypsy" ### context: CREATE TABLE table_22032599_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)
### question: HOw many films did martin repka category:articles with hcards direct? ### answer: SELECT COUNT(film_title_used_in_nomination) FROM table_22032599_1 WHERE director = "Martin Repka Category:Articles with hCards" ### context: CREATE TABLE table_22032599_1 (film_title_used_in_nomination VARCHAR, director VARC...
### question: What was the result for City of the Sun? ### answer: SELECT result FROM table_22032599_1 WHERE film_title_used_in_nomination = "City of the Sun" ### context: CREATE TABLE table_22032599_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What was the language for the movie "Late Bloomers"? ### answer: SELECT language_s_ FROM table_22034853_1 WHERE film_title_used_in_nomination = "Late Bloomers" ### context: CREATE TABLE table_22034853_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
### question: How many original titles were listed as "If the Sun Never Returns"? ### answer: SELECT COUNT(original_title) FROM table_22034853_1 WHERE film_title_used_in_nomination = "If the Sun Never Returns" ### context: CREATE TABLE table_22034853_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What was the language of "Mein Name Ist Bach"? ### answer: SELECT language_s_ FROM table_22034853_1 WHERE film_title_used_in_nomination = "Mein Name Ist Bach" ### context: CREATE TABLE table_22034853_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
### question: What was the year for the film "Vitus"? ### answer: SELECT year__ceremony_ FROM table_22034853_1 WHERE original_title = "Vitus" ### context: CREATE TABLE table_22034853_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
### question: How many films are titled "Dans la Ville Blanche"? ### answer: SELECT COUNT(film_title_used_in_nomination) FROM table_22034853_1 WHERE original_title = "Dans la ville blanche" ### context: CREATE TABLE table_22034853_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
### question: How many of the writers had 5.35 viewers? ### answer: SELECT COUNT(written_by) FROM table_22053239_1 WHERE us_viewers__millions_ = "5.35" ### context: CREATE TABLE table_22053239_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
### question: What was the elapsed time for the championship that had $9,377.42 in prize money? ### answer: SELECT elapsed_time FROM table_22050544_4 WHERE prize = "$9,377.42" ### context: CREATE TABLE table_22050544_4 (elapsed_time VARCHAR, prize VARCHAR)
### question: What was the prize pool for the event number 27H? ### answer: SELECT prize AS Pool FROM table_22050544_4 WHERE event__number = "27H" ### context: CREATE TABLE table_22050544_4 (prize VARCHAR, event__number VARCHAR)
### question: What is the event name with the number 8M? ### answer: SELECT event FROM table_22050544_4 WHERE event__number = "8M" ### context: CREATE TABLE table_22050544_4 (event VARCHAR, event__number VARCHAR)
### question: Name the total number 1980 mil for soviet union ### answer: SELECT COUNT(1980 AS __mil_) FROM table_22071705_6 WHERE country = "Soviet Union" ### context: CREATE TABLE table_22071705_6 (country VARCHAR)
### question: How many languages have elles as the film title used in nomination? ### answer: SELECT COUNT(languages) FROM table_22073745_1 WHERE film_title_used_in_nomination = "Elles" ### context: CREATE TABLE table_22073745_1 (languages VARCHAR, film_title_used_in_nomination VARCHAR)
### question: How many languages is refractaire as the film title used in nomination? ### answer: SELECT COUNT(languages) FROM table_22073745_1 WHERE film_title_used_in_nomination = "Refractaire" ### context: CREATE TABLE table_22073745_1 (languages VARCHAR, film_title_used_in_nomination VARCHAR)
### question: How many languages have le roman de renart as the original title? ### answer: SELECT COUNT(languages) FROM table_22073745_1 WHERE original_title = "Le Roman de Renart" ### context: CREATE TABLE table_22073745_1 (languages VARCHAR, original_title VARCHAR)
### question: Who is the director of the original title perl oder pica? ### answer: SELECT director FROM table_22073745_1 WHERE original_title = "Perl oder Pica" ### context: CREATE TABLE table_22073745_1 (director VARCHAR, original_title VARCHAR)
### question: What is the result of the 2005 (78th) year ceremony? ### answer: SELECT result FROM table_22073745_1 WHERE year__ceremony_ = "2005 (78th)" ### context: CREATE TABLE table_22073745_1 (result VARCHAR, year__ceremony_ VARCHAR)
### question: What is the title that has 14.59 u.s. viewers (millions)? ### answer: SELECT title FROM table_22078691_2 WHERE us_viewers__millions_ = "14.59" ### context: CREATE TABLE table_22078691_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
### question: What is the title that had 13.59 u.s. viewers (millions)? ### answer: SELECT title FROM table_22078691_2 WHERE us_viewers__millions_ = "13.59" ### context: CREATE TABLE table_22078691_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
### question: If the earning amount is $309,886, what is the money list ranking? ### answer: SELECT money_list_rank FROM table_22081847_1 WHERE earnings__$_ = "309,886" ### context: CREATE TABLE table_22081847_1 (money_list_rank VARCHAR, earnings__$_ VARCHAR)
### question: What was the maximum number of wins? ### answer: SELECT MAX(wins) FROM table_22081847_1 ### context: CREATE TABLE table_22081847_1 (wins INTEGER)
### question: If the year is 2010, what was the average score? ### answer: SELECT scoring_average FROM table_22081847_1 WHERE year = 2010 ### context: CREATE TABLE table_22081847_1 (scoring_average VARCHAR, year VARCHAR)
### question: How many times did Tim Macrow and Joey Foster both got the fastest lap and pole position respectively? ### answer: SELECT COUNT(event) FROM table_22083044_2 WHERE fastest_lap = "Tim Macrow" AND pole_position = "Joey Foster" ### context: CREATE TABLE table_22083044_2 (event VARCHAR, fastest_lap VARCHAR, po...
### question: What was the winning team where Tim Macrow won the fastest lap on Queensland Raceway circuit? ### answer: SELECT winning_team FROM table_22083044_2 WHERE circuit = "Queensland Raceway" AND fastest_lap = "Tim Macrow" ### context: CREATE TABLE table_22083044_2 (winning_team VARCHAR, circuit VARCHAR, fastest...
### question: What's the series number of the episode whose writer is David North? ### answer: SELECT MAX(no_in_series) FROM table_22078972_2 WHERE written_by = "David North" ### context: CREATE TABLE table_22078972_2 (no_in_series INTEGER, written_by VARCHAR)
### question: What's the series number of the episode seen by 17.04 million people in the US? ### answer: SELECT MAX(no_in_series) FROM table_22078972_2 WHERE us_viewers__millions_ = "17.04" ### context: CREATE TABLE table_22078972_2 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)
### question: What's the title of the episode first seen by 18.15 million people in the US? ### answer: SELECT title FROM table_22078972_2 WHERE us_viewers__millions_ = "18.15" ### context: CREATE TABLE table_22078972_2 (title VARCHAR, us_viewers__millions_ VARCHAR)