question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the name of the young rider classification when Paolo Tiralongo won?
CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)
SELECT young_rider_classification FROM table_28538368_2 WHERE winner = "Paolo Tiralongo"
### Context: CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR) ### Question: What is the name of the young rider classification when Paolo Tiralongo won? ### Answer: SELECT young_rider_classification FROM table_28538368_2 WHERE winner = "Paolo Tiralongo"
What's the version in the 1.0.4 release?
CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT version FROM table_28540539_2 WHERE release = "1.0.4"
### Context: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR) ### Question: What's the version in the 1.0.4 release? ### Answer: SELECT version FROM table_28540539_2 WHERE release = "1.0.4"
What's the release date in the 1.1.10 release?
CREATE TABLE table_28540539_2 (release VARCHAR)
SELECT release AS date FROM table_28540539_2 WHERE release = "1.1.10"
### Context: CREATE TABLE table_28540539_2 (release VARCHAR) ### Question: What's the release date in the 1.1.10 release? ### Answer: SELECT release AS date FROM table_28540539_2 WHERE release = "1.1.10"
What's the version of the 1.0.12 release?
CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT version FROM table_28540539_2 WHERE release = "1.0.12"
### Context: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR) ### Question: What's the version of the 1.0.12 release? ### Answer: SELECT version FROM table_28540539_2 WHERE release = "1.0.12"
What's the number of the 1.0.9 release version?
CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT COUNT(version) FROM table_28540539_2 WHERE release = "1.0.9"
### Context: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR) ### Question: What's the number of the 1.0.9 release version? ### Answer: SELECT COUNT(version) FROM table_28540539_2 WHERE release = "1.0.9"
What's the number of the 1.0.12 release version?
CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT COUNT(version) FROM table_28540539_2 WHERE release = "1.0.12"
### Context: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR) ### Question: What's the number of the 1.0.12 release version? ### Answer: SELECT COUNT(version) FROM table_28540539_2 WHERE release = "1.0.12"
For how many series were there 11.84 million watchers?
CREATE TABLE table_28561455_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR)
SELECT no_in_series FROM table_28561455_1 WHERE us_viewers__million_ = "11.84"
### Context: CREATE TABLE table_28561455_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR) ### Question: For how many series were there 11.84 million watchers? ### Answer: SELECT no_in_series FROM table_28561455_1 WHERE us_viewers__million_ = "11.84"
What's the smallest season number?
CREATE TABLE table_28561455_1 (no_in_season INTEGER)
SELECT MIN(no_in_season) FROM table_28561455_1
### Context: CREATE TABLE table_28561455_1 (no_in_season INTEGER) ### Question: What's the smallest season number? ### Answer: SELECT MIN(no_in_season) FROM table_28561455_1
Who wrote the episodes that were directed by Peter O'Fallon?
CREATE TABLE table_28561455_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_28561455_1 WHERE directed_by = "Peter O'Fallon"
### Context: CREATE TABLE table_28561455_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who wrote the episodes that were directed by Peter O'Fallon? ### Answer: SELECT written_by FROM table_28561455_1 WHERE directed_by = "Peter O'Fallon"
What was the latest episode number that Meredith Averill wrote?
CREATE TABLE table_28561455_1 (no_in_series INTEGER, written_by VARCHAR)
SELECT MAX(no_in_series) FROM table_28561455_1 WHERE written_by = "Meredith Averill"
### Context: CREATE TABLE table_28561455_1 (no_in_series INTEGER, written_by VARCHAR) ### Question: What was the latest episode number that Meredith Averill wrote? ### Answer: SELECT MAX(no_in_series) FROM table_28561455_1 WHERE written_by = "Meredith Averill"
What is the latest episode number that was directed by Tom Dicillo?
CREATE TABLE table_28561455_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_28561455_1 WHERE directed_by = "Tom DiCillo"
### Context: CREATE TABLE table_28561455_1 (no_in_series INTEGER, directed_by VARCHAR) ### Question: What is the latest episode number that was directed by Tom Dicillo? ### Answer: SELECT MAX(no_in_series) FROM table_28561455_1 WHERE directed_by = "Tom DiCillo"
How many years did Germany participate, when the team from Italy was Naples LL Naples and the team from England was London Area Youth London?
CREATE TABLE table_28562675_3 (germany VARCHAR, italy VARCHAR, england VARCHAR)
SELECT COUNT(germany) FROM table_28562675_3 WHERE italy = "Naples LL Naples" AND england = "London Area Youth London"
### Context: CREATE TABLE table_28562675_3 (germany VARCHAR, italy VARCHAR, england VARCHAR) ### Question: How many years did Germany participate, when the team from Italy was Naples LL Naples and the team from England was London Area Youth London? ### Answer: SELECT COUNT(germany) FROM table_28562675_3 WHERE italy = "Naples LL Naples" AND england = "London Area Youth London"
What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?
CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)
SELECT austria FROM table_28562675_3 WHERE netherlands = "Brunssum/Schinnen LL Brunssum" AND belgium = "SHAPE and Waterloo LL Brussels"
### Context: CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR) ### Question: What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels? ### Answer: SELECT austria FROM table_28562675_3 WHERE netherlands = "Brunssum/Schinnen LL Brunssum" AND belgium = "SHAPE and Waterloo LL Brussels"
What is the maximum number of matches in a game?
CREATE TABLE table_28547332_4 (matches INTEGER)
SELECT MAX(matches) FROM table_28547332_4
### Context: CREATE TABLE table_28547332_4 (matches INTEGER) ### Question: What is the maximum number of matches in a game? ### Answer: SELECT MAX(matches) FROM table_28547332_4
What is the highest score in those games where the average is 9.88?
CREATE TABLE table_28547332_4 (highest_score INTEGER, average VARCHAR)
SELECT MIN(highest_score) FROM table_28547332_4 WHERE average = "9.88"
### Context: CREATE TABLE table_28547332_4 (highest_score INTEGER, average VARCHAR) ### Question: What is the highest score in those games where the average is 9.88? ### Answer: SELECT MIN(highest_score) FROM table_28547332_4 WHERE average = "9.88"
What digital channel corresponds to virtual channel 23.2?
CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "23.2"
### Context: CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR) ### Question: What digital channel corresponds to virtual channel 23.2? ### Answer: SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "23.2"
What digital channel corresponds to virtual channel 5.2?
CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "5.2"
### Context: CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR) ### Question: What digital channel corresponds to virtual channel 5.2? ### Answer: SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "5.2"
What network airs on virtual channel 23.1?
CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)
SELECT network FROM table_2857352_3 WHERE virtual_channel = "23.1"
### Context: CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR) ### Question: What network airs on virtual channel 23.1? ### Answer: SELECT network FROM table_2857352_3 WHERE virtual_channel = "23.1"
How many networks run on virtual channel 23.4?
CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)
SELECT COUNT(network) FROM table_2857352_3 WHERE virtual_channel = "23.4"
### Context: CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR) ### Question: How many networks run on virtual channel 23.4? ### Answer: SELECT COUNT(network) FROM table_2857352_3 WHERE virtual_channel = "23.4"
What city licensed the broadcast on virtual channel 8.2?
CREATE TABLE table_2857352_3 (city_of_license VARCHAR, virtual_channel VARCHAR)
SELECT city_of_license FROM table_2857352_3 WHERE virtual_channel = "8.2"
### Context: CREATE TABLE table_2857352_3 (city_of_license VARCHAR, virtual_channel VARCHAR) ### Question: What city licensed the broadcast on virtual channel 8.2? ### Answer: SELECT city_of_license FROM table_2857352_3 WHERE virtual_channel = "8.2"
What was the title of the episode with production code 2J5515?
CREATE TABLE table_28582091_2 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_28582091_2 WHERE production_code = "2J5515"
### Context: CREATE TABLE table_28582091_2 (title VARCHAR, production_code VARCHAR) ### Question: What was the title of the episode with production code 2J5515? ### Answer: SELECT title FROM table_28582091_2 WHERE production_code = "2J5515"
Name the chassis for ludwig fischer
CREATE TABLE table_28578594_1 (chassis VARCHAR, driver VARCHAR)
SELECT chassis FROM table_28578594_1 WHERE driver = "Ludwig Fischer"
### Context: CREATE TABLE table_28578594_1 (chassis VARCHAR, driver VARCHAR) ### Question: Name the chassis for ludwig fischer ### Answer: SELECT chassis FROM table_28578594_1 WHERE driver = "Ludwig Fischer"
Name the entrant for bruno sterzi
CREATE TABLE table_28578594_1 (entrant VARCHAR, driver VARCHAR)
SELECT entrant FROM table_28578594_1 WHERE driver = "Bruno Sterzi"
### Context: CREATE TABLE table_28578594_1 (entrant VARCHAR, driver VARCHAR) ### Question: Name the entrant for bruno sterzi ### Answer: SELECT entrant FROM table_28578594_1 WHERE driver = "Bruno Sterzi"
Name the least number for nello pagani
CREATE TABLE table_28578594_1 (no INTEGER, driver VARCHAR)
SELECT MIN(no) FROM table_28578594_1 WHERE driver = "Nello Pagani"
### Context: CREATE TABLE table_28578594_1 (no INTEGER, driver VARCHAR) ### Question: Name the least number for nello pagani ### Answer: SELECT MIN(no) FROM table_28578594_1 WHERE driver = "Nello Pagani"
What is the largest number of consecutive starts for jason gildon?
CREATE TABLE table_28606933_7 (consecutive_starts INTEGER, player VARCHAR)
SELECT MAX(consecutive_starts) FROM table_28606933_7 WHERE player = "Jason Gildon"
### Context: CREATE TABLE table_28606933_7 (consecutive_starts INTEGER, player VARCHAR) ### Question: What is the largest number of consecutive starts for jason gildon? ### Answer: SELECT MAX(consecutive_starts) FROM table_28606933_7 WHERE player = "Jason Gildon"
What team(s) had 120 consecutive starts?
CREATE TABLE table_28606933_7 (teams VARCHAR, consecutive_starts VARCHAR)
SELECT teams FROM table_28606933_7 WHERE consecutive_starts = 120
### Context: CREATE TABLE table_28606933_7 (teams VARCHAR, consecutive_starts VARCHAR) ### Question: What team(s) had 120 consecutive starts? ### Answer: SELECT teams FROM table_28606933_7 WHERE consecutive_starts = 120
What period(s) featured a left inside linebacker?
CREATE TABLE table_28606933_7 (period VARCHAR, position VARCHAR)
SELECT period FROM table_28606933_7 WHERE position = "Left inside linebacker"
### Context: CREATE TABLE table_28606933_7 (period VARCHAR, position VARCHAR) ### Question: What period(s) featured a left inside linebacker? ### Answer: SELECT period FROM table_28606933_7 WHERE position = "Left inside linebacker"
How many consecutive starts for the linebacker who played from 9/21/1975 – 12/16/1984?
CREATE TABLE table_28606933_7 (total INTEGER, period VARCHAR)
SELECT MAX(total) FROM table_28606933_7 WHERE period = "9/21/1975 – 12/16/1984"
### Context: CREATE TABLE table_28606933_7 (total INTEGER, period VARCHAR) ### Question: How many consecutive starts for the linebacker who played from 9/21/1975 – 12/16/1984? ### Answer: SELECT MAX(total) FROM table_28606933_7 WHERE period = "9/21/1975 – 12/16/1984"
What is the title of the episode written by Frank Military?
CREATE TABLE table_28611413_2 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_28611413_2 WHERE written_by = "Frank Military"
### Context: CREATE TABLE table_28611413_2 (title VARCHAR, written_by VARCHAR) ### Question: What is the title of the episode written by Frank Military? ### Answer: SELECT title FROM table_28611413_2 WHERE written_by = "Frank Military"
How many seasons had 16.15 million viewers?
CREATE TABLE table_28611413_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_28611413_2 WHERE viewers__millions_ = "16.15"
### Context: CREATE TABLE table_28611413_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR) ### Question: How many seasons had 16.15 million viewers? ### Answer: SELECT COUNT(no_in_series) FROM table_28611413_2 WHERE viewers__millions_ = "16.15"
What is air date of the episode directed by John P. Kousakis?
CREATE TABLE table_28611413_2 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_28611413_2 WHERE directed_by = "John P. Kousakis"
### Context: CREATE TABLE table_28611413_2 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: What is air date of the episode directed by John P. Kousakis? ### Answer: SELECT original_air_date FROM table_28611413_2 WHERE directed_by = "John P. Kousakis"
Who was the player when totals were 105-161?
CREATE TABLE table_28628309_6 (player VARCHAR, totals VARCHAR)
SELECT player FROM table_28628309_6 WHERE totals = "105-161"
### Context: CREATE TABLE table_28628309_6 (player VARCHAR, totals VARCHAR) ### Question: Who was the player when totals were 105-161? ### Answer: SELECT player FROM table_28628309_6 WHERE totals = "105-161"
How many items appear in the average column when the totals were 105-161?
CREATE TABLE table_28628309_6 (average VARCHAR, totals VARCHAR)
SELECT COUNT(average) FROM table_28628309_6 WHERE totals = "105-161"
### Context: CREATE TABLE table_28628309_6 (average VARCHAR, totals VARCHAR) ### Question: How many items appear in the average column when the totals were 105-161? ### Answer: SELECT COUNT(average) FROM table_28628309_6 WHERE totals = "105-161"
What were the totals when the average is 6.25?
CREATE TABLE table_28628309_6 (totals VARCHAR, average VARCHAR)
SELECT totals FROM table_28628309_6 WHERE average = "6.25"
### Context: CREATE TABLE table_28628309_6 (totals VARCHAR, average VARCHAR) ### Question: What were the totals when the average is 6.25? ### Answer: SELECT totals FROM table_28628309_6 WHERE average = "6.25"
Who was the team when the category is field goal percentage?
CREATE TABLE table_28628309_6 (team VARCHAR, category VARCHAR)
SELECT team FROM table_28628309_6 WHERE category = "Field goal percentage"
### Context: CREATE TABLE table_28628309_6 (team VARCHAR, category VARCHAR) ### Question: Who was the team when the category is field goal percentage? ### Answer: SELECT team FROM table_28628309_6 WHERE category = "Field goal percentage"
Name the election for the percent of popular vote being 4.48%
CREATE TABLE table_286271_1 (election VARCHAR, _percentage_of_popular_vote VARCHAR)
SELECT election FROM table_286271_1 WHERE _percentage_of_popular_vote = "4.48%"
### Context: CREATE TABLE table_286271_1 (election VARCHAR, _percentage_of_popular_vote VARCHAR) ### Question: Name the election for the percent of popular vote being 4.48% ### Answer: SELECT election FROM table_286271_1 WHERE _percentage_of_popular_vote = "4.48%"
How many times was taiwan 3rd runner-up?
CREATE TABLE table_28634206_1 (country VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = "Taiwan"
### Context: CREATE TABLE table_28634206_1 (country VARCHAR) ### Question: How many times was taiwan 3rd runner-up? ### Answer: SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = "Taiwan"
How many miss universes did south africa have?
CREATE TABLE table_28634206_1 (miss_universe VARCHAR, country VARCHAR)
SELECT COUNT(miss_universe) FROM table_28634206_1 WHERE country = "South Africa"
### Context: CREATE TABLE table_28634206_1 (miss_universe VARCHAR, country VARCHAR) ### Question: How many miss universes did south africa have? ### Answer: SELECT COUNT(miss_universe) FROM table_28634206_1 WHERE country = "South Africa"
How many placements in total does russia have?
CREATE TABLE table_28634206_1 (total INTEGER, country VARCHAR)
SELECT MAX(total) FROM table_28634206_1 WHERE country = "Russia"
### Context: CREATE TABLE table_28634206_1 (total INTEGER, country VARCHAR) ### Question: How many placements in total does russia have? ### Answer: SELECT MAX(total) FROM table_28634206_1 WHERE country = "Russia"
Which country has had 6 miss universe's?
CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)
SELECT country FROM table_28634206_1 WHERE miss_universe = "6"
### Context: CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR) ### Question: Which country has had 6 miss universe's? ### Answer: SELECT country FROM table_28634206_1 WHERE miss_universe = "6"
Which country has had 8 miss universes?
CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)
SELECT country FROM table_28634206_1 WHERE miss_universe = "8"
### Context: CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR) ### Question: Which country has had 8 miss universes? ### Answer: SELECT country FROM table_28634206_1 WHERE miss_universe = "8"
What is the minimum number of points for teams averaging 1.412?
CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR)
SELECT MIN(points) FROM table_2865020_5 WHERE average = "1.412"
### Context: CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR) ### Question: What is the minimum number of points for teams averaging 1.412? ### Answer: SELECT MIN(points) FROM table_2865020_5 WHERE average = "1.412"
What 2003-2004 values are associated with an average of 1.377?
CREATE TABLE table_2865020_5 (average VARCHAR)
SELECT 2003 AS _04 FROM table_2865020_5 WHERE average = "1.377"
### Context: CREATE TABLE table_2865020_5 (average VARCHAR) ### Question: What 2003-2004 values are associated with an average of 1.377? ### Answer: SELECT 2003 AS _04 FROM table_2865020_5 WHERE average = "1.377"
How many millions of viewers are listed where the writer is Matthew Okumura?
CREATE TABLE table_2866503_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__million_ FROM table_2866503_1 WHERE written_by = "Matthew Okumura"
### Context: CREATE TABLE table_2866503_1 (us_viewers__million_ VARCHAR, written_by VARCHAR) ### Question: How many millions of viewers are listed where the writer is Matthew Okumura? ### Answer: SELECT us_viewers__million_ FROM table_2866503_1 WHERE written_by = "Matthew Okumura"
What is the U.S. air date when the U.S. viewers are 7.5 million?
CREATE TABLE table_2866503_1 (us_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT us_air_date FROM table_2866503_1 WHERE us_viewers__million_ = "7.5"
### Context: CREATE TABLE table_2866503_1 (us_air_date VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the U.S. air date when the U.S. viewers are 7.5 million? ### Answer: SELECT us_air_date FROM table_2866503_1 WHERE us_viewers__million_ = "7.5"
How many u.s. viewers (million) have 6 as the #?
CREATE TABLE table_2866456_1 (us_viewers__million_ VARCHAR, _number VARCHAR)
SELECT us_viewers__million_ FROM table_2866456_1 WHERE _number = 6
### Context: CREATE TABLE table_2866456_1 (us_viewers__million_ VARCHAR, _number VARCHAR) ### Question: How many u.s. viewers (million) have 6 as the #? ### Answer: SELECT us_viewers__million_ FROM table_2866456_1 WHERE _number = 6
Who is the directed by when 2t6404 is the production code?
CREATE TABLE table_2866456_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_2866456_1 WHERE production_code = "2T6404"
### Context: CREATE TABLE table_2866456_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: Who is the directed by when 2t6404 is the production code? ### Answer: SELECT directed_by FROM table_2866456_1 WHERE production_code = "2T6404"
what is the number of the episode in the season that had 5.60 millions of north american spectors?
CREATE TABLE table_2866509_1 (no VARCHAR, us_viewers__million_ VARCHAR)
SELECT no FROM table_2866509_1 WHERE us_viewers__million_ = "5.60"
### Context: CREATE TABLE table_2866509_1 (no VARCHAR, us_viewers__million_ VARCHAR) ### Question: what is the number of the episode in the season that had 5.60 millions of north american spectors? ### Answer: SELECT no FROM table_2866509_1 WHERE us_viewers__million_ = "5.60"
who are the writers of the episode whose production code is 176206?
CREATE TABLE table_2866509_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_2866509_1 WHERE production_code = 176206
### Context: CREATE TABLE table_2866509_1 (written_by VARCHAR, production_code VARCHAR) ### Question: who are the writers of the episode whose production code is 176206? ### Answer: SELECT written_by FROM table_2866509_1 WHERE production_code = 176206
What stadium does FK Rudar play in?
CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)
SELECT stadium FROM table_28668784_1 WHERE home_team = "FK Rudar"
### Context: CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR) ### Question: What stadium does FK Rudar play in? ### Answer: SELECT stadium FROM table_28668784_1 WHERE home_team = "FK Rudar"
What town holds Stadion Zlatica?
CREATE TABLE table_28668784_1 (city___town VARCHAR, stadium VARCHAR)
SELECT city___town FROM table_28668784_1 WHERE stadium = "Stadion Zlatica"
### Context: CREATE TABLE table_28668784_1 (city___town VARCHAR, stadium VARCHAR) ### Question: What town holds Stadion Zlatica? ### Answer: SELECT city___town FROM table_28668784_1 WHERE stadium = "Stadion Zlatica"
What stadium does FK Jedinstvo play in?
CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)
SELECT stadium FROM table_28668784_1 WHERE home_team = "FK Jedinstvo"
### Context: CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR) ### Question: What stadium does FK Jedinstvo play in? ### Answer: SELECT stadium FROM table_28668784_1 WHERE home_team = "FK Jedinstvo"
What is listed in tor floysvik when karianne gulliksen is 6?
CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)
SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE karianne_gulliksen = 6
### Context: CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR) ### Question: What is listed in tor floysvik when karianne gulliksen is 6? ### Answer: SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE karianne_gulliksen = 6
How many music entries are there when tor floysvik is 3?
CREATE TABLE table_28677723_10 (music VARCHAR, tor_fløysvik VARCHAR)
SELECT COUNT(music) FROM table_28677723_10 WHERE tor_fløysvik = 3
### Context: CREATE TABLE table_28677723_10 (music VARCHAR, tor_fløysvik VARCHAR) ### Question: How many music entries are there when tor floysvik is 3? ### Answer: SELECT COUNT(music) FROM table_28677723_10 WHERE tor_fløysvik = 3
What is listed under chister tornell when karianne gulliksen is 7?
CREATE TABLE table_28677723_10 (christer_tornell INTEGER, karianne_gulliksen VARCHAR)
SELECT MIN(christer_tornell) FROM table_28677723_10 WHERE karianne_gulliksen = 7
### Context: CREATE TABLE table_28677723_10 (christer_tornell INTEGER, karianne_gulliksen VARCHAR) ### Question: What is listed under chister tornell when karianne gulliksen is 7? ### Answer: SELECT MIN(christer_tornell) FROM table_28677723_10 WHERE karianne_gulliksen = 7
What is listed under tor floysvik when couple is maria & asmund?
CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, couple VARCHAR)
SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE couple = "Maria & Asmund"
### Context: CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, couple VARCHAR) ### Question: What is listed under tor floysvik when couple is maria & asmund? ### Answer: SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE couple = "Maria & Asmund"
What are Unit 2's dates of commissioning?
CREATE TABLE table_28672269_1 (date_of_commissioning VARCHAR, unit_number VARCHAR)
SELECT COUNT(date_of_commissioning) FROM table_28672269_1 WHERE unit_number = 2
### Context: CREATE TABLE table_28672269_1 (date_of_commissioning VARCHAR, unit_number VARCHAR) ### Question: What are Unit 2's dates of commissioning? ### Answer: SELECT COUNT(date_of_commissioning) FROM table_28672269_1 WHERE unit_number = 2
What is the boiler provider for Bhel, India's TG Set provider?
CREATE TABLE table_28672269_1 (boiler_provider VARCHAR, tg_set_provider VARCHAR)
SELECT boiler_provider FROM table_28672269_1 WHERE tg_set_provider = "BHEL, India"
### Context: CREATE TABLE table_28672269_1 (boiler_provider VARCHAR, tg_set_provider VARCHAR) ### Question: What is the boiler provider for Bhel, India's TG Set provider? ### Answer: SELECT boiler_provider FROM table_28672269_1 WHERE tg_set_provider = "BHEL, India"
Name the trine dehli cleve for english waltz
CREATE TABLE table_28677723_14 (trine_dehli_cleve INTEGER, style VARCHAR)
SELECT MIN(trine_dehli_cleve) FROM table_28677723_14 WHERE style = "English Waltz"
### Context: CREATE TABLE table_28677723_14 (trine_dehli_cleve INTEGER, style VARCHAR) ### Question: Name the trine dehli cleve for english waltz ### Answer: SELECT MIN(trine_dehli_cleve) FROM table_28677723_14 WHERE style = "English Waltz"
Name the style for 39
CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)
SELECT style FROM table_28677723_14 WHERE total = 39
### Context: CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR) ### Question: Name the style for 39 ### Answer: SELECT style FROM table_28677723_14 WHERE total = 39
Name the style for 27
CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)
SELECT style FROM table_28677723_14 WHERE total = 27
### Context: CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR) ### Question: Name the style for 27 ### Answer: SELECT style FROM table_28677723_14 WHERE total = 27
Name the most for fløysvik for 8
CREATE TABLE table_28677723_14 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)
SELECT MAX(tor_fløysvik) FROM table_28677723_14 WHERE karianne_gulliksen = 8
### Context: CREATE TABLE table_28677723_14 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR) ### Question: Name the most for fløysvik for 8 ### Answer: SELECT MAX(tor_fløysvik) FROM table_28677723_14 WHERE karianne_gulliksen = 8
how many for floysvik and christer tornell is 7?
CREATE TABLE table_28677723_11 (tor_fløysvik VARCHAR, christer_tornell VARCHAR)
SELECT COUNT(tor_fløysvik) FROM table_28677723_11 WHERE christer_tornell = 7
### Context: CREATE TABLE table_28677723_11 (tor_fløysvik VARCHAR, christer_tornell VARCHAR) ### Question: how many for floysvik and christer tornell is 7? ### Answer: SELECT COUNT(tor_fløysvik) FROM table_28677723_11 WHERE christer_tornell = 7
how many for christer tornell where the total is 30?
CREATE TABLE table_28677723_11 (christer_tornell VARCHAR, total VARCHAR)
SELECT COUNT(christer_tornell) FROM table_28677723_11 WHERE total = 30
### Context: CREATE TABLE table_28677723_11 (christer_tornell VARCHAR, total VARCHAR) ### Question: how many for christer tornell where the total is 30? ### Answer: SELECT COUNT(christer_tornell) FROM table_28677723_11 WHERE total = 30
What is the couple that received a total score of 38?
CREATE TABLE table_28677723_16 (couple VARCHAR, total VARCHAR)
SELECT couple FROM table_28677723_16 WHERE total = 38
### Context: CREATE TABLE table_28677723_16 (couple VARCHAR, total VARCHAR) ### Question: What is the couple that received a total score of 38? ### Answer: SELECT couple FROM table_28677723_16 WHERE total = 38
What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?
CREATE TABLE table_28677723_16 (total INTEGER, couple VARCHAR, karianne_gulliksen VARCHAR)
SELECT MAX(total) FROM table_28677723_16 WHERE couple = "Aylar & Egor" AND karianne_gulliksen = 8
### Context: CREATE TABLE table_28677723_16 (total INTEGER, couple VARCHAR, karianne_gulliksen VARCHAR) ### Question: What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8? ### Answer: SELECT MAX(total) FROM table_28677723_16 WHERE couple = "Aylar & Egor" AND karianne_gulliksen = 8
What is the largest number for trine dehli cleve?
CREATE TABLE table_28677723_5 (trine_dehli_cleve INTEGER)
SELECT MAX(trine_dehli_cleve) FROM table_28677723_5
### Context: CREATE TABLE table_28677723_5 (trine_dehli_cleve INTEGER) ### Question: What is the largest number for trine dehli cleve? ### Answer: SELECT MAX(trine_dehli_cleve) FROM table_28677723_5
What is the largest number for karianne gulliksen?
CREATE TABLE table_28677723_5 (karianne_gulliksen INTEGER)
SELECT MAX(karianne_gulliksen) FROM table_28677723_5
### Context: CREATE TABLE table_28677723_5 (karianne_gulliksen INTEGER) ### Question: What is the largest number for karianne gulliksen? ### Answer: SELECT MAX(karianne_gulliksen) FROM table_28677723_5
How many styles had a total score of exactly 33?
CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR)
SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33
### Context: CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR) ### Question: How many styles had a total score of exactly 33? ### Answer: SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33
Which style led to a score given by Tor Floysvik of 8?
CREATE TABLE table_28677723_9 (style VARCHAR, tor_fløysvik VARCHAR)
SELECT style FROM table_28677723_9 WHERE tor_fløysvik = 8
### Context: CREATE TABLE table_28677723_9 (style VARCHAR, tor_fløysvik VARCHAR) ### Question: Which style led to a score given by Tor Floysvik of 8? ### Answer: SELECT style FROM table_28677723_9 WHERE tor_fløysvik = 8
What is the smallest total score for the Pasodoble style?
CREATE TABLE table_28677723_9 (total INTEGER, style VARCHAR)
SELECT MIN(total) FROM table_28677723_9 WHERE style = "Pasodoble"
### Context: CREATE TABLE table_28677723_9 (total INTEGER, style VARCHAR) ### Question: What is the smallest total score for the Pasodoble style? ### Answer: SELECT MIN(total) FROM table_28677723_9 WHERE style = "Pasodoble"
What is the title of the episode watched by 0.88 million U.S. viewers?
CREATE TABLE table_28680377_2 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT title FROM table_28680377_2 WHERE us_viewers__million_ = "0.88"
### Context: CREATE TABLE table_28680377_2 (title VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the title of the episode watched by 0.88 million U.S. viewers? ### Answer: SELECT title FROM table_28680377_2 WHERE us_viewers__million_ = "0.88"
What is the original air date of the episode that was watched by 0.88 million U.S. viewers?
CREATE TABLE table_28680377_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_28680377_2 WHERE us_viewers__million_ = "0.88"
### Context: CREATE TABLE table_28680377_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the original air date of the episode that was watched by 0.88 million U.S. viewers? ### Answer: SELECT original_air_date FROM table_28680377_2 WHERE us_viewers__million_ = "0.88"
How may players have a passing yard score of 208?
CREATE TABLE table_28697228_4 (player VARCHAR, passing_yards VARCHAR)
SELECT COUNT(player) FROM table_28697228_4 WHERE passing_yards = 208
### Context: CREATE TABLE table_28697228_4 (player VARCHAR, passing_yards VARCHAR) ### Question: How may players have a passing yard score of 208? ### Answer: SELECT COUNT(player) FROM table_28697228_4 WHERE passing_yards = 208
What is the name of the player with total offense of 454?
CREATE TABLE table_28697228_4 (player VARCHAR, total_offense VARCHAR)
SELECT player FROM table_28697228_4 WHERE total_offense = 454
### Context: CREATE TABLE table_28697228_4 (player VARCHAR, total_offense VARCHAR) ### Question: What is the name of the player with total offense of 454? ### Answer: SELECT player FROM table_28697228_4 WHERE total_offense = 454
What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?
CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR)
SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = "Indiana" AND player = "Denard Robinson"
### Context: CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR) ### Question: What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson? ### Answer: SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = "Indiana" AND player = "Denard Robinson"
What is the number of total offense when the opponentis Penn State?
CREATE TABLE table_28697228_4 (total_offense INTEGER, opponent VARCHAR)
SELECT MAX(total_offense) FROM table_28697228_4 WHERE opponent = "Penn State"
### Context: CREATE TABLE table_28697228_4 (total_offense INTEGER, opponent VARCHAR) ### Question: What is the number of total offense when the opponentis Penn State? ### Answer: SELECT MAX(total_offense) FROM table_28697228_4 WHERE opponent = "Penn State"
How many rushing yards are listed when the passing yards are 244?
CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR)
SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244
### Context: CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR) ### Question: How many rushing yards are listed when the passing yards are 244? ### Answer: SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244
What is the volume when the resrvoir is Tanes?
CREATE TABLE table_28702208_1 (volume__hm³_ VARCHAR, reservoir VARCHAR)
SELECT volume__hm³_ FROM table_28702208_1 WHERE reservoir = "Tanes"
### Context: CREATE TABLE table_28702208_1 (volume__hm³_ VARCHAR, reservoir VARCHAR) ### Question: What is the volume when the resrvoir is Tanes? ### Answer: SELECT volume__hm³_ FROM table_28702208_1 WHERE reservoir = "Tanes"
are there bi-tone is there's no olive drab and the caliber is 9×19mm parabellum and model is xdm 5.25 competition
CREATE TABLE table_2869843_1 (bi_tone VARCHAR, model VARCHAR, olive_drab VARCHAR, caliber VARCHAR)
SELECT bi_tone FROM table_2869843_1 WHERE olive_drab = "No" AND caliber = "9×19mm Parabellum" AND model = "XDM 5.25 Competition"
### Context: CREATE TABLE table_2869843_1 (bi_tone VARCHAR, model VARCHAR, olive_drab VARCHAR, caliber VARCHAR) ### Question: are there bi-tone is there's no olive drab and the caliber is 9×19mm parabellum and model is xdm 5.25 competition ### Answer: SELECT bi_tone FROM table_2869843_1 WHERE olive_drab = "No" AND caliber = "9×19mm Parabellum" AND model = "XDM 5.25 Competition"
What is the family of the constellation that has lyncis /ˈlɪnsɨs/ as genitive?
CREATE TABLE table_287159_1 (family VARCHAR, genitive VARCHAR)
SELECT family FROM table_287159_1 WHERE genitive = "Lyncis /ˈlɪnsɨs/"
### Context: CREATE TABLE table_287159_1 (family VARCHAR, genitive VARCHAR) ### Question: What is the family of the constellation that has lyncis /ˈlɪnsɨs/ as genitive? ### Answer: SELECT family FROM table_287159_1 WHERE genitive = "Lyncis /ˈlɪnsɨs/"
What is the origin of the constellation that can be abbreviated to tele?
CREATE TABLE table_287159_1 (origin VARCHAR, other_abbreviation VARCHAR)
SELECT origin FROM table_287159_1 WHERE other_abbreviation = "Tele"
### Context: CREATE TABLE table_287159_1 (origin VARCHAR, other_abbreviation VARCHAR) ### Question: What is the origin of the constellation that can be abbreviated to tele? ### Answer: SELECT origin FROM table_287159_1 WHERE other_abbreviation = "Tele"
What is the other abbreviation of the constellation that has β trianguli as its brightest star?
CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, brightest_star VARCHAR)
SELECT other_abbreviation FROM table_287159_1 WHERE brightest_star = "β Trianguli"
### Context: CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, brightest_star VARCHAR) ### Question: What is the other abbreviation of the constellation that has β trianguli as its brightest star? ### Answer: SELECT other_abbreviation FROM table_287159_1 WHERE brightest_star = "β Trianguli"
What is the brightest star of the constellation that means archer?
CREATE TABLE table_287159_1 (brightest_star VARCHAR, meaning VARCHAR)
SELECT brightest_star FROM table_287159_1 WHERE meaning = "archer"
### Context: CREATE TABLE table_287159_1 (brightest_star VARCHAR, meaning VARCHAR) ### Question: What is the brightest star of the constellation that means archer? ### Answer: SELECT brightest_star FROM table_287159_1 WHERE meaning = "archer"
What is the other abbreviation of the constellation that has hydrae /ˈhaɪdriː/ as genitive?
CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, genitive VARCHAR)
SELECT other_abbreviation FROM table_287159_1 WHERE genitive = "Hydrae /ˈhaɪdriː/"
### Context: CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, genitive VARCHAR) ### Question: What is the other abbreviation of the constellation that has hydrae /ˈhaɪdriː/ as genitive? ### Answer: SELECT other_abbreviation FROM table_287159_1 WHERE genitive = "Hydrae /ˈhaɪdriː/"
What is the meaning of the constellation that has puppis /ˈpʌpɨs/ as genitive?
CREATE TABLE table_287159_1 (meaning VARCHAR, genitive VARCHAR)
SELECT meaning FROM table_287159_1 WHERE genitive = "Puppis /ˈpʌpɨs/"
### Context: CREATE TABLE table_287159_1 (meaning VARCHAR, genitive VARCHAR) ### Question: What is the meaning of the constellation that has puppis /ˈpʌpɨs/ as genitive? ### Answer: SELECT meaning FROM table_287159_1 WHERE genitive = "Puppis /ˈpʌpɨs/"
How many track numbers were called song 2?
CREATE TABLE table_28715942_3 (track_no VARCHAR, track VARCHAR)
SELECT COUNT(track_no) FROM table_28715942_3 WHERE track = "Song 2"
### Context: CREATE TABLE table_28715942_3 (track_no VARCHAR, track VARCHAR) ### Question: How many track numbers were called song 2? ### Answer: SELECT COUNT(track_no) FROM table_28715942_3 WHERE track = "Song 2"
Who was the vocal percussionist when stevie wonder was the original artist?
CREATE TABLE table_28715942_3 (vocal_percussionist VARCHAR, original_artist VARCHAR)
SELECT vocal_percussionist FROM table_28715942_3 WHERE original_artist = "Stevie Wonder"
### Context: CREATE TABLE table_28715942_3 (vocal_percussionist VARCHAR, original_artist VARCHAR) ### Question: Who was the vocal percussionist when stevie wonder was the original artist? ### Answer: SELECT vocal_percussionist FROM table_28715942_3 WHERE original_artist = "Stevie Wonder"
What track name had Terry Tamm as the soloist?
CREATE TABLE table_28715942_3 (track VARCHAR, soloist_s_ VARCHAR)
SELECT track FROM table_28715942_3 WHERE soloist_s_ = "Terry Tamm"
### Context: CREATE TABLE table_28715942_3 (track VARCHAR, soloist_s_ VARCHAR) ### Question: What track name had Terry Tamm as the soloist? ### Answer: SELECT track FROM table_28715942_3 WHERE soloist_s_ = "Terry Tamm"
What was the date of the game that had a result of Army 16, SMU 14?
CREATE TABLE table_28719193_19 (date VARCHAR, matchups_results VARCHAR)
SELECT date FROM table_28719193_19 WHERE matchups_results = "Army 16, SMU 14"
### Context: CREATE TABLE table_28719193_19 (date VARCHAR, matchups_results VARCHAR) ### Question: What was the date of the game that had a result of Army 16, SMU 14? ### Answer: SELECT date FROM table_28719193_19 WHERE matchups_results = "Army 16, SMU 14"
What was the city whose stadium is Gerald J. Ford Stadium?
CREATE TABLE table_28719193_19 (city VARCHAR, stadium VARCHAR)
SELECT city FROM table_28719193_19 WHERE stadium = "Gerald J. Ford stadium"
### Context: CREATE TABLE table_28719193_19 (city VARCHAR, stadium VARCHAR) ### Question: What was the city whose stadium is Gerald J. Ford Stadium? ### Answer: SELECT city FROM table_28719193_19 WHERE stadium = "Gerald J. Ford stadium"
What is every category wise when the multi lane is 677?
CREATE TABLE table_28723146_2 (category_wise VARCHAR, multi_lane VARCHAR)
SELECT category_wise FROM table_28723146_2 WHERE multi_lane = 677
### Context: CREATE TABLE table_28723146_2 (category_wise VARCHAR, multi_lane VARCHAR) ### Question: What is every category wise when the multi lane is 677? ### Answer: SELECT category_wise FROM table_28723146_2 WHERE multi_lane = 677
What is the highest value for multi lane if category wise is major district roads?
CREATE TABLE table_28723146_2 (multi_lane INTEGER, category_wise VARCHAR)
SELECT MAX(multi_lane) FROM table_28723146_2 WHERE category_wise = "Major district roads"
### Context: CREATE TABLE table_28723146_2 (multi_lane INTEGER, category_wise VARCHAR) ### Question: What is the highest value for multi lane if category wise is major district roads? ### Answer: SELECT MAX(multi_lane) FROM table_28723146_2 WHERE category_wise = "Major district roads"
What is the least total?
CREATE TABLE table_28723146_2 (total INTEGER)
SELECT MIN(total) FROM table_28723146_2
### Context: CREATE TABLE table_28723146_2 (total INTEGER) ### Question: What is the least total? ### Answer: SELECT MIN(total) FROM table_28723146_2
What are the years of TeBe career for the players whose league matches are exactly 163?
CREATE TABLE table_28730459_3 (tebe_career VARCHAR, league_matches VARCHAR)
SELECT tebe_career FROM table_28730459_3 WHERE league_matches = 163
### Context: CREATE TABLE table_28730459_3 (tebe_career VARCHAR, league_matches VARCHAR) ### Question: What are the years of TeBe career for the players whose league matches are exactly 163? ### Answer: SELECT tebe_career FROM table_28730459_3 WHERE league_matches = 163
What is the number of league goals for players with 10 league matches and a TeBe career of 2003?
CREATE TABLE table_28730459_3 (league_goals VARCHAR, league_matches VARCHAR, tebe_career VARCHAR)
SELECT league_goals FROM table_28730459_3 WHERE league_matches = 10 AND tebe_career = "2003"
### Context: CREATE TABLE table_28730459_3 (league_goals VARCHAR, league_matches VARCHAR, tebe_career VARCHAR) ### Question: What is the number of league goals for players with 10 league matches and a TeBe career of 2003? ### Answer: SELECT league_goals FROM table_28730459_3 WHERE league_matches = 10 AND tebe_career = "2003"
What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46?
CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR)
SELECT eliminated FROM table_28742659_2 WHERE finish = "15th voted Out 9th Jury Member Day 46"
### Context: CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR) ### Question: What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46? ### Answer: SELECT eliminated FROM table_28742659_2 WHERE finish = "15th voted Out 9th Jury Member Day 46"
What is listed in reward when the finish is listed at 13th voted out 6th jury Member Day 43?
CREATE TABLE table_28742659_2 (reward VARCHAR, finish VARCHAR)
SELECT reward FROM table_28742659_2 WHERE finish = "13th voted Out 6th Jury Member Day 43"
### Context: CREATE TABLE table_28742659_2 (reward VARCHAR, finish VARCHAR) ### Question: What is listed in reward when the finish is listed at 13th voted out 6th jury Member Day 43? ### Answer: SELECT reward FROM table_28742659_2 WHERE finish = "13th voted Out 6th Jury Member Day 43"
What is the name of immunity when the finish is 3rd voted out day 9?
CREATE TABLE table_28742659_2 (immunity VARCHAR, finish VARCHAR)
SELECT immunity FROM table_28742659_2 WHERE finish = "3rd voted Out Day 9"
### Context: CREATE TABLE table_28742659_2 (immunity VARCHAR, finish VARCHAR) ### Question: What is the name of immunity when the finish is 3rd voted out day 9? ### Answer: SELECT immunity FROM table_28742659_2 WHERE finish = "3rd voted Out Day 9"
What is the vote number when immunity listed as David and reward is listed as none?
CREATE TABLE table_28742659_2 (vote VARCHAR, immunity VARCHAR, reward VARCHAR)
SELECT vote FROM table_28742659_2 WHERE immunity = "David" AND reward = "None"
### Context: CREATE TABLE table_28742659_2 (vote VARCHAR, immunity VARCHAR, reward VARCHAR) ### Question: What is the vote number when immunity listed as David and reward is listed as none? ### Answer: SELECT vote FROM table_28742659_2 WHERE immunity = "David" AND reward = "None"