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