question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What team(s) enjoyed an average spped (mph) of 138.14?
CREATE TABLE table_17802778_1 (team VARCHAR, average_speed__mph_ VARCHAR)
SELECT team FROM table_17802778_1 WHERE average_speed__mph_ = "138.14"
### Context: CREATE TABLE table_17802778_1 (team VARCHAR, average_speed__mph_ VARCHAR) ### Question: What team(s) enjoyed an average spped (mph) of 138.14? ### Answer: SELECT team FROM table_17802778_1 WHERE average_speed__mph_ = "138.14"
How many laps recorded in 2001?
CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)
SELECT laps FROM table_17802778_1 WHERE year = 2001
### Context: CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR) ### Question: How many laps recorded in 2001? ### Answer: SELECT laps FROM table_17802778_1 WHERE year = 2001
What team(s) were in 2003?
CREATE TABLE table_17802778_1 (team VARCHAR, year VARCHAR)
SELECT team FROM table_17802778_1 WHERE year = 2003
### Context: CREATE TABLE table_17802778_1 (team VARCHAR, year VARCHAR) ### Question: What team(s) were in 2003? ### Answer: SELECT team FROM table_17802778_1 WHERE year = 2003
What was the average speed (mph) for the racer who finished in 1:45:00?
CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)
SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = "1:45:00"
### Context: CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR) ### Question: What was the average speed (mph) for the racer who finished in 1:45:00? ### Answer: SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = "1:45:00"
How many total miles recorded for the racer who finished in 1:05:33?
CREATE TABLE table_17802778_1 (miles__km_ VARCHAR, race_time VARCHAR)
SELECT miles__km_ FROM table_17802778_1 WHERE race_time = "1:05:33"
### Context: CREATE TABLE table_17802778_1 (miles__km_ VARCHAR, race_time VARCHAR) ### Question: How many total miles recorded for the racer who finished in 1:05:33? ### Answer: SELECT miles__km_ FROM table_17802778_1 WHERE race_time = "1:05:33"
what was the title of the episode 21a?
CREATE TABLE table_17810099_3 (title VARCHAR, episode__number VARCHAR)
SELECT title FROM table_17810099_3 WHERE episode__number = "21a"
### Context: CREATE TABLE table_17810099_3 (title VARCHAR, episode__number VARCHAR) ### Question: what was the title of the episode 21a? ### Answer: SELECT title FROM table_17810099_3 WHERE episode__number = "21a"
who wrote episode 14?
CREATE TABLE table_17810099_3 (writer_s_ VARCHAR, episode__number VARCHAR)
SELECT writer_s_ FROM table_17810099_3 WHERE episode__number = "14"
### Context: CREATE TABLE table_17810099_3 (writer_s_ VARCHAR, episode__number VARCHAR) ### Question: who wrote episode 14? ### Answer: SELECT writer_s_ FROM table_17810099_3 WHERE episode__number = "14"
Who many votes did E. Greenberg receive in Morris County?
CREATE TABLE table_17820556_4 (e_greenberg VARCHAR, county VARCHAR)
SELECT COUNT(e_greenberg) FROM table_17820556_4 WHERE county = "Morris"
### Context: CREATE TABLE table_17820556_4 (e_greenberg VARCHAR, county VARCHAR) ### Question: Who many votes did E. Greenberg receive in Morris County? ### Answer: SELECT COUNT(e_greenberg) FROM table_17820556_4 WHERE county = "Morris"
How many precincts are in the county where G. Hager received 19 (20%) votes?
CREATE TABLE table_17820556_4 (precincts VARCHAR, g_hager VARCHAR)
SELECT precincts FROM table_17820556_4 WHERE g_hager = "19 (20%)"
### Context: CREATE TABLE table_17820556_4 (precincts VARCHAR, g_hager VARCHAR) ### Question: How many precincts are in the county where G. Hager received 19 (20%) votes? ### Answer: SELECT precincts FROM table_17820556_4 WHERE g_hager = "19 (20%)"
Name the slope length for 1966 groundstation
CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR)
SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966
### Context: CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR) ### Question: Name the slope length for 1966 groundstation ### Answer: SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966
Name the name or route for slope length being 336
CREATE TABLE table_17814458_1 (name_or_route VARCHAR, slope_length VARCHAR)
SELECT name_or_route FROM table_17814458_1 WHERE slope_length = 336
### Context: CREATE TABLE table_17814458_1 (name_or_route VARCHAR, slope_length VARCHAR) ### Question: Name the name or route for slope length being 336 ### Answer: SELECT name_or_route FROM table_17814458_1 WHERE slope_length = 336
Name the slope length for gondola
CREATE TABLE table_17814458_1 (slope_length INTEGER, type VARCHAR)
SELECT MIN(slope_length) FROM table_17814458_1 WHERE type = "gondola"
### Context: CREATE TABLE table_17814458_1 (slope_length INTEGER, type VARCHAR) ### Question: Name the slope length for gondola ### Answer: SELECT MIN(slope_length) FROM table_17814458_1 WHERE type = "gondola"
Name the least capacity for persons hour for 1983
CREATE TABLE table_17814458_1 (capacity_in_persons_hour INTEGER, construction_year_s_ VARCHAR)
SELECT MIN(capacity_in_persons_hour) FROM table_17814458_1 WHERE construction_year_s_ = "1983"
### Context: CREATE TABLE table_17814458_1 (capacity_in_persons_hour INTEGER, construction_year_s_ VARCHAR) ### Question: Name the least capacity for persons hour for 1983 ### Answer: SELECT MIN(capacity_in_persons_hour) FROM table_17814458_1 WHERE construction_year_s_ = "1983"
How many categories of new entries this round are there for the fourth round proper?
CREATE TABLE table_17814838_1 (new_entries_this_round VARCHAR, round VARCHAR)
SELECT COUNT(new_entries_this_round) FROM table_17814838_1 WHERE round = "Fourth round Proper"
### Context: CREATE TABLE table_17814838_1 (new_entries_this_round VARCHAR, round VARCHAR) ### Question: How many categories of new entries this round are there for the fourth round proper? ### Answer: SELECT COUNT(new_entries_this_round) FROM table_17814838_1 WHERE round = "Fourth round Proper"
How many runner-ups were there when the show went to Japan?
CREATE TABLE table_178242_7 (runner_up VARCHAR, international_destination VARCHAR)
SELECT COUNT(runner_up) FROM table_178242_7 WHERE international_destination = "Japan"
### Context: CREATE TABLE table_178242_7 (runner_up VARCHAR, international_destination VARCHAR) ### Question: How many runner-ups were there when the show went to Japan? ### Answer: SELECT COUNT(runner_up) FROM table_178242_7 WHERE international_destination = "Japan"
How many won the prize when Regina was the runner-up?
CREATE TABLE table_178242_7 (winner VARCHAR, runner_up VARCHAR)
SELECT COUNT(winner) FROM table_178242_7 WHERE runner_up = "Regina"
### Context: CREATE TABLE table_178242_7 (winner VARCHAR, runner_up VARCHAR) ### Question: How many won the prize when Regina was the runner-up? ### Answer: SELECT COUNT(winner) FROM table_178242_7 WHERE runner_up = "Regina"
Which season is it when Milouska was the show's mole ?
CREATE TABLE table_178242_7 (season VARCHAR, the_mole VARCHAR)
SELECT season FROM table_178242_7 WHERE the_mole = "Milouska"
### Context: CREATE TABLE table_178242_7 (season VARCHAR, the_mole VARCHAR) ### Question: Which season is it when Milouska was the show's mole ? ### Answer: SELECT season FROM table_178242_7 WHERE the_mole = "Milouska"
What were the requirements for the role played by Robert Austin in the original production?
CREATE TABLE table_17827271_1 (actor_required VARCHAR, actor_in_original_production VARCHAR)
SELECT actor_required FROM table_17827271_1 WHERE actor_in_original_production = "Robert Austin"
### Context: CREATE TABLE table_17827271_1 (actor_required VARCHAR, actor_in_original_production VARCHAR) ### Question: What were the requirements for the role played by Robert Austin in the original production? ### Answer: SELECT actor_required FROM table_17827271_1 WHERE actor_in_original_production = "Robert Austin"
What actor played the "female, older" role in the original production?
CREATE TABLE table_17827271_1 (actor_in_original_production VARCHAR, actor_required VARCHAR)
SELECT actor_in_original_production FROM table_17827271_1 WHERE actor_required = "Female, older"
### Context: CREATE TABLE table_17827271_1 (actor_in_original_production VARCHAR, actor_required VARCHAR) ### Question: What actor played the "female, older" role in the original production? ### Answer: SELECT actor_in_original_production FROM table_17827271_1 WHERE actor_required = "Female, older"
What FlatSpin actor played the same role as Robert Austin?
CREATE TABLE table_17827271_1 (flatspin VARCHAR, actor_in_original_production VARCHAR)
SELECT flatspin FROM table_17827271_1 WHERE actor_in_original_production = "Robert Austin"
### Context: CREATE TABLE table_17827271_1 (flatspin VARCHAR, actor_in_original_production VARCHAR) ### Question: What FlatSpin actor played the same role as Robert Austin? ### Answer: SELECT flatspin FROM table_17827271_1 WHERE actor_in_original_production = "Robert Austin"
How many RolePlay actors played the role requiring a "male, younger" actor?
CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_required VARCHAR)
SELECT COUNT(roleplay) FROM table_17827271_1 WHERE actor_required = "Male, younger"
### Context: CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_required VARCHAR) ### Question: How many RolePlay actors played the role requiring a "male, younger" actor? ### Answer: SELECT COUNT(roleplay) FROM table_17827271_1 WHERE actor_required = "Male, younger"
How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?
CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR)
SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = "Tracy Taylor"
### Context: CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR) ### Question: How many RolePlay actors played the same role as FlatSpin's Tracy Taylor? ### Answer: SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = "Tracy Taylor"
What RolePlay actor played the same role Alison Pargeter played in the original production?
CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_in_original_production VARCHAR)
SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = "Alison Pargeter"
### Context: CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_in_original_production VARCHAR) ### Question: What RolePlay actor played the same role Alison Pargeter played in the original production? ### Answer: SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = "Alison Pargeter"
What's the name of the church in Stavang?
CREATE TABLE table_178381_1 (church_name VARCHAR, location_of_the_church VARCHAR)
SELECT church_name FROM table_178381_1 WHERE location_of_the_church = "Stavang"
### Context: CREATE TABLE table_178381_1 (church_name VARCHAR, location_of_the_church VARCHAR) ### Question: What's the name of the church in Stavang? ### Answer: SELECT church_name FROM table_178381_1 WHERE location_of_the_church = "Stavang"
What's the sub-parish (sokn) of Eikefjord?
CREATE TABLE table_178381_1 (sub_parish__sokn_ VARCHAR, location_of_the_church VARCHAR)
SELECT sub_parish__sokn_ FROM table_178381_1 WHERE location_of_the_church = "Eikefjord"
### Context: CREATE TABLE table_178381_1 (sub_parish__sokn_ VARCHAR, location_of_the_church VARCHAR) ### Question: What's the sub-parish (sokn) of Eikefjord? ### Answer: SELECT sub_parish__sokn_ FROM table_178381_1 WHERE location_of_the_church = "Eikefjord"
On how many locations is there a church named Askrova Bedehuskapell, built in 1957?
CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR)
SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = "1957" AND church_name = "Askrova bedehuskapell"
### Context: CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR) ### Question: On how many locations is there a church named Askrova Bedehuskapell, built in 1957? ### Answer: SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = "1957" AND church_n...
In what parish is the Askrova Bedehuskapell church?
CREATE TABLE table_178381_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
SELECT parish__prestegjeld_ FROM table_178381_1 WHERE church_name = "Askrova bedehuskapell"
### Context: CREATE TABLE table_178381_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR) ### Question: In what parish is the Askrova Bedehuskapell church? ### Answer: SELECT parish__prestegjeld_ FROM table_178381_1 WHERE church_name = "Askrova bedehuskapell"
Which channel has the host Art Rooijakkers?
CREATE TABLE table_178242_1 (channel VARCHAR, host_s_ VARCHAR)
SELECT channel FROM table_178242_1 WHERE host_s_ = "Art Rooijakkers"
### Context: CREATE TABLE table_178242_1 (channel VARCHAR, host_s_ VARCHAR) ### Question: Which channel has the host Art Rooijakkers? ### Answer: SELECT channel FROM table_178242_1 WHERE host_s_ = "Art Rooijakkers"
When did the program air on Vier?
CREATE TABLE table_178242_1 (premiere___aired VARCHAR, channel VARCHAR)
SELECT premiere___aired FROM table_178242_1 WHERE channel = "VIER"
### Context: CREATE TABLE table_178242_1 (premiere___aired VARCHAR, channel VARCHAR) ### Question: When did the program air on Vier? ### Answer: SELECT premiere___aired FROM table_178242_1 WHERE channel = "VIER"
What is the title that aired from 17 may 2008 – 21 june 2008 on Nederland 3?
CREATE TABLE table_178242_1 (name VARCHAR, channel VARCHAR, premiere___aired VARCHAR)
SELECT name FROM table_178242_1 WHERE channel = "Nederland 3" AND premiere___aired = "17 May 2008 – 21 June 2008"
### Context: CREATE TABLE table_178242_1 (name VARCHAR, channel VARCHAR, premiere___aired VARCHAR) ### Question: What is the title that aired from 17 may 2008 – 21 june 2008 on Nederland 3? ### Answer: SELECT name FROM table_178242_1 WHERE channel = "Nederland 3" AND premiere___aired = "17 May 2008 – 21 June 2008"
How many seasons did the show run in Poland?
CREATE TABLE table_178242_1 (seasons VARCHAR, country___region VARCHAR)
SELECT seasons FROM table_178242_1 WHERE country___region = "Poland"
### Context: CREATE TABLE table_178242_1 (seasons VARCHAR, country___region VARCHAR) ### Question: How many seasons did the show run in Poland? ### Answer: SELECT seasons FROM table_178242_1 WHERE country___region = "Poland"
When 4744 is the avg. trips per mile (x1000) what is the current stock?
CREATE TABLE table_17839_1 (current_stock VARCHAR, avg_trips_per_mile__×1000_ VARCHAR)
SELECT current_stock FROM table_17839_1 WHERE avg_trips_per_mile__×1000_ = 4744
### Context: CREATE TABLE table_17839_1 (current_stock VARCHAR, avg_trips_per_mile__×1000_ VARCHAR) ### Question: When 4744 is the avg. trips per mile (x1000) what is the current stock? ### Answer: SELECT current_stock FROM table_17839_1 WHERE avg_trips_per_mile__×1000_ = 4744
When green is the map colour what is the future stock?
CREATE TABLE table_17839_1 (future_stock VARCHAR, map_colour VARCHAR)
SELECT future_stock FROM table_17839_1 WHERE map_colour = "Green"
### Context: CREATE TABLE table_17839_1 (future_stock VARCHAR, map_colour VARCHAR) ### Question: When green is the map colour what is the future stock? ### Answer: SELECT future_stock FROM table_17839_1 WHERE map_colour = "Green"
When turquoise is the map colour how many avg. trips per mile (×1000) are there?
CREATE TABLE table_17839_1 (avg_trips_per_mile__ VARCHAR, map_colour VARCHAR)
SELECT COUNT(avg_trips_per_mile__) AS ×1000_ FROM table_17839_1 WHERE map_colour = "Turquoise"
### Context: CREATE TABLE table_17839_1 (avg_trips_per_mile__ VARCHAR, map_colour VARCHAR) ### Question: When turquoise is the map colour how many avg. trips per mile (×1000) are there? ### Answer: SELECT COUNT(avg_trips_per_mile__) AS ×1000_ FROM table_17839_1 WHERE map_colour = "Turquoise"
When turquoise is the map colour what is the length?
CREATE TABLE table_17839_1 (length VARCHAR, map_colour VARCHAR)
SELECT length FROM table_17839_1 WHERE map_colour = "Turquoise"
### Context: CREATE TABLE table_17839_1 (length VARCHAR, map_colour VARCHAR) ### Question: When turquoise is the map colour what is the length? ### Answer: SELECT length FROM table_17839_1 WHERE map_colour = "Turquoise"
What is the latest year a division was established?
CREATE TABLE table_1784514_1 (year_established INTEGER)
SELECT MAX(year_established) FROM table_1784514_1
### Context: CREATE TABLE table_1784514_1 (year_established INTEGER) ### Question: What is the latest year a division was established? ### Answer: SELECT MAX(year_established) FROM table_1784514_1
How many powiats have mstsislaw as a capital?
CREATE TABLE table_1784514_1 (number_of_powiats VARCHAR, capital VARCHAR)
SELECT number_of_powiats FROM table_1784514_1 WHERE capital = "Mstsislaw"
### Context: CREATE TABLE table_1784514_1 (number_of_powiats VARCHAR, capital VARCHAR) ### Question: How many powiats have mstsislaw as a capital? ### Answer: SELECT number_of_powiats FROM table_1784514_1 WHERE capital = "Mstsislaw"
How many capitals had brest litovsk voivodeship as voivodeship after 1569?
CREATE TABLE table_1784514_1 (capital VARCHAR, voivodeship_after_1569 VARCHAR)
SELECT COUNT(capital) FROM table_1784514_1 WHERE voivodeship_after_1569 = "Brest Litovsk Voivodeship"
### Context: CREATE TABLE table_1784514_1 (capital VARCHAR, voivodeship_after_1569 VARCHAR) ### Question: How many capitals had brest litovsk voivodeship as voivodeship after 1569? ### Answer: SELECT COUNT(capital) FROM table_1784514_1 WHERE voivodeship_after_1569 = "Brest Litovsk Voivodeship"
What is the latest year established that had 5 powiats?
CREATE TABLE table_1784514_1 (year_established INTEGER, number_of_powiats VARCHAR)
SELECT MAX(year_established) FROM table_1784514_1 WHERE number_of_powiats = "5 powiats"
### Context: CREATE TABLE table_1784514_1 (year_established INTEGER, number_of_powiats VARCHAR) ### Question: What is the latest year established that had 5 powiats? ### Answer: SELECT MAX(year_established) FROM table_1784514_1 WHERE number_of_powiats = "5 powiats"
In what parish is the sub-parish fortun?
CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, sub_parish__sogn_ VARCHAR)
SELECT parish__prestegjeld_ FROM table_178398_1 WHERE sub_parish__sogn_ = "Fortun"
### Context: CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, sub_parish__sogn_ VARCHAR) ### Question: In what parish is the sub-parish fortun? ### Answer: SELECT parish__prestegjeld_ FROM table_178398_1 WHERE sub_parish__sogn_ = "Fortun"
What is the sub-parish of the church located in Fortun?
CREATE TABLE table_178398_1 (sub_parish__sogn_ VARCHAR, location_of_the_church VARCHAR)
SELECT sub_parish__sogn_ FROM table_178398_1 WHERE location_of_the_church = "Fortun"
### Context: CREATE TABLE table_178398_1 (sub_parish__sogn_ VARCHAR, location_of_the_church VARCHAR) ### Question: What is the sub-parish of the church located in Fortun? ### Answer: SELECT sub_parish__sogn_ FROM table_178398_1 WHERE location_of_the_church = "Fortun"
What is the year that the oldest church was built in Jostedal?
CREATE TABLE table_178398_1 (year_built INTEGER, location_of_the_church VARCHAR)
SELECT MIN(year_built) FROM table_178398_1 WHERE location_of_the_church = "Jostedal"
### Context: CREATE TABLE table_178398_1 (year_built INTEGER, location_of_the_church VARCHAR) ### Question: What is the year that the oldest church was built in Jostedal? ### Answer: SELECT MIN(year_built) FROM table_178398_1 WHERE location_of_the_church = "Jostedal"
What parishes are in Solvorn?
CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR)
SELECT parish__prestegjeld_ FROM table_178398_1 WHERE location_of_the_church = "Solvorn"
### Context: CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR) ### Question: What parishes are in Solvorn? ### Answer: SELECT parish__prestegjeld_ FROM table_178398_1 WHERE location_of_the_church = "Solvorn"
Name the number of parish for vilnes kyrkje
CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
SELECT COUNT(parish__prestegjeld_) FROM table_178399_1 WHERE church_name = "Vilnes kyrkje"
### Context: CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR) ### Question: Name the number of parish for vilnes kyrkje ### Answer: SELECT COUNT(parish__prestegjeld_) FROM table_178399_1 WHERE church_name = "Vilnes kyrkje"
Name the parish for 1908
CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, year_built VARCHAR)
SELECT parish__prestegjeld_ FROM table_178399_1 WHERE year_built = 1908
### Context: CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, year_built VARCHAR) ### Question: Name the parish for 1908 ### Answer: SELECT parish__prestegjeld_ FROM table_178399_1 WHERE year_built = 1908
Name the maximum year built for holmedal kyrkje
CREATE TABLE table_178399_1 (year_built INTEGER, church_name VARCHAR)
SELECT MAX(year_built) FROM table_178399_1 WHERE church_name = "Holmedal kyrkje"
### Context: CREATE TABLE table_178399_1 (year_built INTEGER, church_name VARCHAR) ### Question: Name the maximum year built for holmedal kyrkje ### Answer: SELECT MAX(year_built) FROM table_178399_1 WHERE church_name = "Holmedal kyrkje"
What is the week where the game site is Shea Stadium?
CREATE TABLE table_17861179_1 (week INTEGER, game_site VARCHAR)
SELECT MIN(week) FROM table_17861179_1 WHERE game_site = "Shea Stadium"
### Context: CREATE TABLE table_17861179_1 (week INTEGER, game_site VARCHAR) ### Question: What is the week where the game site is Shea Stadium? ### Answer: SELECT MIN(week) FROM table_17861179_1 WHERE game_site = "Shea Stadium"
For week 6, what were the results?
CREATE TABLE table_17861179_1 (result VARCHAR, week VARCHAR)
SELECT result FROM table_17861179_1 WHERE week = 6
### Context: CREATE TABLE table_17861179_1 (result VARCHAR, week VARCHAR) ### Question: For week 6, what were the results? ### Answer: SELECT result FROM table_17861179_1 WHERE week = 6
In how many weeks was the game played on November 3 played?
CREATE TABLE table_17869717_1 (week VARCHAR, date VARCHAR)
SELECT COUNT(week) FROM table_17869717_1 WHERE date = "November 3"
### Context: CREATE TABLE table_17869717_1 (week VARCHAR, date VARCHAR) ### Question: In how many weeks was the game played on November 3 played? ### Answer: SELECT COUNT(week) FROM table_17869717_1 WHERE date = "November 3"
What is the broadcast date when 8.3 million viewers watched?
CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = "8.3"
### Context: CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) ### Question: What is the broadcast date when 8.3 million viewers watched? ### Answer: SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = "8.3"
What is the broadcast date of the episode with run time 25:12?
CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_1785117_1 WHERE run_time = "25:12"
### Context: CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, run_time VARCHAR) ### Question: What is the broadcast date of the episode with run time 25:12? ### Answer: SELECT broadcast_date FROM table_1785117_1 WHERE run_time = "25:12"
How many million viewers watched the episode that runs 25:55 minutes?
CREATE TABLE table_1785117_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT viewers__in_millions_ FROM table_1785117_1 WHERE run_time = "25:55"
### Context: CREATE TABLE table_1785117_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR) ### Question: How many million viewers watched the episode that runs 25:55 minutes? ### Answer: SELECT viewers__in_millions_ FROM table_1785117_1 WHERE run_time = "25:55"
How many dances did Warren & Kym have?
CREATE TABLE table_17862135_3 (number_of_dances VARCHAR, couple VARCHAR)
SELECT number_of_dances FROM table_17862135_3 WHERE couple = "Warren & Kym"
### Context: CREATE TABLE table_17862135_3 (number_of_dances VARCHAR, couple VARCHAR) ### Question: How many dances did Warren & Kym have? ### Answer: SELECT number_of_dances FROM table_17862135_3 WHERE couple = "Warren & Kym"
What are the total points for the team that averages 17.8?
CREATE TABLE table_17862135_3 (total_points VARCHAR, average VARCHAR)
SELECT total_points FROM table_17862135_3 WHERE average = "17.8"
### Context: CREATE TABLE table_17862135_3 (total_points VARCHAR, average VARCHAR) ### Question: What are the total points for the team that averages 17.8? ### Answer: SELECT total_points FROM table_17862135_3 WHERE average = "17.8"
What is average for Cody & Julianne?
CREATE TABLE table_17862135_3 (average VARCHAR, couple VARCHAR)
SELECT average FROM table_17862135_3 WHERE couple = "Cody & Julianne"
### Context: CREATE TABLE table_17862135_3 (average VARCHAR, couple VARCHAR) ### Question: What is average for Cody & Julianne? ### Answer: SELECT average FROM table_17862135_3 WHERE couple = "Cody & Julianne"
what is the division southwest when division south was kožuf and division east was osogovo
CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_south VARCHAR, division_east VARCHAR)
SELECT division_southwest FROM table_17881033_1 WHERE division_south = "Kožuf" AND division_east = "Osogovo"
### Context: CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_south VARCHAR, division_east VARCHAR) ### Question: what is the division southwest when division south was kožuf and division east was osogovo ### Answer: SELECT division_southwest FROM table_17881033_1 WHERE division_south = "Kožuf" AND d...
what is the division north in 2007–08
CREATE TABLE table_17881033_1 (division_north VARCHAR, season VARCHAR)
SELECT division_north FROM table_17881033_1 WHERE season = "2007–08"
### Context: CREATE TABLE table_17881033_1 (division_north VARCHAR, season VARCHAR) ### Question: what is the division north in 2007–08 ### Answer: SELECT division_north FROM table_17881033_1 WHERE season = "2007–08"
what is the division north when division south was kožuf and division southwest was ilinden velmej
CREATE TABLE table_17881033_1 (division_north VARCHAR, division_south VARCHAR, division_southwest VARCHAR)
SELECT division_north FROM table_17881033_1 WHERE division_south = "Kožuf" AND division_southwest = "Ilinden Velmej"
### Context: CREATE TABLE table_17881033_1 (division_north VARCHAR, division_south VARCHAR, division_southwest VARCHAR) ### Question: what is the division north when division south was kožuf and division southwest was ilinden velmej ### Answer: SELECT division_north FROM table_17881033_1 WHERE division_south = "Kožuf" ...
how many division southwest was there when division east was babi
CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_east VARCHAR)
SELECT COUNT(division_southwest) FROM table_17881033_1 WHERE division_east = "Babi"
### Context: CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_east VARCHAR) ### Question: how many division southwest was there when division east was babi ### Answer: SELECT COUNT(division_southwest) FROM table_17881033_1 WHERE division_east = "Babi"
what is the division east when division north was milano
CREATE TABLE table_17881033_1 (division_east VARCHAR, division_north VARCHAR)
SELECT division_east FROM table_17881033_1 WHERE division_north = "Milano"
### Context: CREATE TABLE table_17881033_1 (division_east VARCHAR, division_north VARCHAR) ### Question: what is the division east when division north was milano ### Answer: SELECT division_east FROM table_17881033_1 WHERE division_north = "Milano"
who co-wrote Season 2, Episode 3?
CREATE TABLE table_17901155_3 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_17901155_3 WHERE no_in_season = 3
### Context: CREATE TABLE table_17901155_3 (written_by VARCHAR, no_in_season VARCHAR) ### Question: who co-wrote Season 2, Episode 3? ### Answer: SELECT written_by FROM table_17901155_3 WHERE no_in_season = 3
what is the series # for the episode directed by Kelly Sandefur?
CREATE TABLE table_17901155_3 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_17901155_3 WHERE directed_by = "Kelly Sandefur"
### Context: CREATE TABLE table_17901155_3 (no_in_series INTEGER, directed_by VARCHAR) ### Question: what is the series # for the episode directed by Kelly Sandefur? ### Answer: SELECT MAX(no_in_series) FROM table_17901155_3 WHERE directed_by = "Kelly Sandefur"
how many production codes were there for the episode that was 32 in the series?
CREATE TABLE table_17901155_3 (prod_code VARCHAR, no_in_series VARCHAR)
SELECT COUNT(prod_code) FROM table_17901155_3 WHERE no_in_series = 32
### Context: CREATE TABLE table_17901155_3 (prod_code VARCHAR, no_in_series VARCHAR) ### Question: how many production codes were there for the episode that was 32 in the series? ### Answer: SELECT COUNT(prod_code) FROM table_17901155_3 WHERE no_in_series = 32
What year was the film Milagros submitted?
CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_17919342_1 WHERE original_title = "Milagros"
### Context: CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, original_title VARCHAR) ### Question: What year was the film Milagros submitted? ### Answer: SELECT year__ceremony_ FROM table_17919342_1 WHERE original_title = "Milagros"
How many years was the film The Blossoming of Maximo Oliveros entered?
CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(year__ceremony_) FROM table_17919342_1 WHERE film_title_used_in_nomination = "The Blossoming of Maximo Oliveros"
### Context: CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: How many years was the film The Blossoming of Maximo Oliveros entered? ### Answer: SELECT COUNT(year__ceremony_) FROM table_17919342_1 WHERE film_title_used_in_nomination = "The Blossoming of Maximo...
How many directors were there for the film with the original title of The Moises Padilla Story?
CREATE TABLE table_17919342_1 (director VARCHAR, original_title VARCHAR)
SELECT COUNT(director) FROM table_17919342_1 WHERE original_title = "The Moises Padilla Story"
### Context: CREATE TABLE table_17919342_1 (director VARCHAR, original_title VARCHAR) ### Question: How many directors were there for the film with the original title of The Moises Padilla Story? ### Answer: SELECT COUNT(director) FROM table_17919342_1 WHERE original_title = "The Moises Padilla Story"
What spacecraft was launched from the LC34 launch complex?
CREATE TABLE table_179174_2 (spacecraft VARCHAR, launch_complex VARCHAR)
SELECT spacecraft FROM table_179174_2 WHERE launch_complex = "LC34"
### Context: CREATE TABLE table_179174_2 (spacecraft VARCHAR, launch_complex VARCHAR) ### Question: What spacecraft was launched from the LC34 launch complex? ### Answer: SELECT spacecraft FROM table_179174_2 WHERE launch_complex = "LC34"
What spacecrafts had 22 orbital flights?
CREATE TABLE table_179174_2 (spacecraft VARCHAR, flights VARCHAR)
SELECT spacecraft FROM table_179174_2 WHERE flights = "22 Orbital"
### Context: CREATE TABLE table_179174_2 (spacecraft VARCHAR, flights VARCHAR) ### Question: What spacecrafts had 22 orbital flights? ### Answer: SELECT spacecraft FROM table_179174_2 WHERE flights = "22 Orbital"
What launcher had spacecrafts that did 37 orbital flights?
CREATE TABLE table_179174_2 (launcher VARCHAR, flights VARCHAR)
SELECT launcher FROM table_179174_2 WHERE flights = "37 Orbital"
### Context: CREATE TABLE table_179174_2 (launcher VARCHAR, flights VARCHAR) ### Question: What launcher had spacecrafts that did 37 orbital flights? ### Answer: SELECT launcher FROM table_179174_2 WHERE flights = "37 Orbital"
What years had 134 orbital flights?
CREATE TABLE table_179174_2 (years VARCHAR, flights VARCHAR)
SELECT years FROM table_179174_2 WHERE flights = "134 Orbital"
### Context: CREATE TABLE table_179174_2 (years VARCHAR, flights VARCHAR) ### Question: What years had 134 orbital flights? ### Answer: SELECT years FROM table_179174_2 WHERE flights = "134 Orbital"
What is the status of the London Aquatics Centre project at the time of production?
CREATE TABLE table_1792122_11 (status_at_production VARCHAR, project VARCHAR)
SELECT status_at_production FROM table_1792122_11 WHERE project = "London Aquatics Centre"
### Context: CREATE TABLE table_1792122_11 (status_at_production VARCHAR, project VARCHAR) ### Question: What is the status of the London Aquatics Centre project at the time of production? ### Answer: SELECT status_at_production FROM table_1792122_11 WHERE project = "London Aquatics Centre"
What was the original are date of series number 71?
CREATE TABLE table_1792122_11 (original_air_date VARCHAR, no_in_series VARCHAR)
SELECT original_air_date FROM table_1792122_11 WHERE no_in_series = 71
### Context: CREATE TABLE table_1792122_11 (original_air_date VARCHAR, no_in_series VARCHAR) ### Question: What was the original are date of series number 71? ### Answer: SELECT original_air_date FROM table_1792122_11 WHERE no_in_series = 71
What is the length for a diameter totaling 450 mm?
CREATE TABLE table_17918238_1 (length VARCHAR, maximum_diameter VARCHAR)
SELECT length FROM table_17918238_1 WHERE maximum_diameter = "450 mm"
### Context: CREATE TABLE table_17918238_1 (length VARCHAR, maximum_diameter VARCHAR) ### Question: What is the length for a diameter totaling 450 mm? ### Answer: SELECT length FROM table_17918238_1 WHERE maximum_diameter = "450 mm"
What is Esperance pipeline co total diameter?
CREATE TABLE table_17918238_1 (maximum_diameter VARCHAR, owner_operator VARCHAR)
SELECT maximum_diameter FROM table_17918238_1 WHERE owner_operator = "Esperance Pipeline Co"
### Context: CREATE TABLE table_17918238_1 (maximum_diameter VARCHAR, owner_operator VARCHAR) ### Question: What is Esperance pipeline co total diameter? ### Answer: SELECT maximum_diameter FROM table_17918238_1 WHERE owner_operator = "Esperance Pipeline Co"
Name the opponent for december 8
CREATE TABLE table_17924362_1 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_17924362_1 WHERE date = "December 8"
### Context: CREATE TABLE table_17924362_1 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for december 8 ### Answer: SELECT opponent FROM table_17924362_1 WHERE date = "December 8"
Name the number of weeks for october 26
CREATE TABLE table_17924362_1 (week VARCHAR, date VARCHAR)
SELECT COUNT(week) FROM table_17924362_1 WHERE date = "October 26"
### Context: CREATE TABLE table_17924362_1 (week VARCHAR, date VARCHAR) ### Question: Name the number of weeks for october 26 ### Answer: SELECT COUNT(week) FROM table_17924362_1 WHERE date = "October 26"
What is the attendance record for week 6?
CREATE TABLE table_17928023_1 (attendance VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_17928023_1 WHERE week = 6
### Context: CREATE TABLE table_17928023_1 (attendance VARCHAR, week VARCHAR) ### Question: What is the attendance record for week 6? ### Answer: SELECT COUNT(attendance) FROM table_17928023_1 WHERE week = 6
For game site Schaefer Stadium, what were the results?
CREATE TABLE table_17928023_1 (result VARCHAR, game_site VARCHAR)
SELECT result FROM table_17928023_1 WHERE game_site = "Schaefer Stadium"
### Context: CREATE TABLE table_17928023_1 (result VARCHAR, game_site VARCHAR) ### Question: For game site Schaefer Stadium, what were the results? ### Answer: SELECT result FROM table_17928023_1 WHERE game_site = "Schaefer Stadium"
Who was the outgoing manager when the incoming manager was joão pereira?
CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)
SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = "João Pereira"
### Context: CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR) ### Question: Who was the outgoing manager when the incoming manager was joão pereira? ### Answer: SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = "João Pereira"
What team(s) had an outgoing manager of joão alves?
CREATE TABLE table_17933600_2 (team VARCHAR, outgoing_manage VARCHAR)
SELECT team FROM table_17933600_2 WHERE outgoing_manage = "João Alves"
### Context: CREATE TABLE table_17933600_2 (team VARCHAR, outgoing_manage VARCHAR) ### Question: What team(s) had an outgoing manager of joão alves? ### Answer: SELECT team FROM table_17933600_2 WHERE outgoing_manage = "João Alves"
What day did the job open up when bogićević was outgoing?
CREATE TABLE table_17933600_2 (date_of_vacancy VARCHAR, outgoing_manage VARCHAR)
SELECT date_of_vacancy FROM table_17933600_2 WHERE outgoing_manage = "Bogićević"
### Context: CREATE TABLE table_17933600_2 (date_of_vacancy VARCHAR, outgoing_manage VARCHAR) ### Question: What day did the job open up when bogićević was outgoing? ### Answer: SELECT date_of_vacancy FROM table_17933600_2 WHERE outgoing_manage = "Bogićević"
Name the 0-100 km/hs for name of 2.0 8v
CREATE TABLE table_17941111_2 (s VARCHAR, name VARCHAR)
SELECT 0 AS _100km_h, s FROM table_17941111_2 WHERE name = "2.0 8v"
### Context: CREATE TABLE table_17941111_2 (s VARCHAR, name VARCHAR) ### Question: Name the 0-100 km/hs for name of 2.0 8v ### Answer: SELECT 0 AS _100km_h, s FROM table_17941111_2 WHERE name = "2.0 8v"
Name the volume for co 2 for 168 g/km
CREATE TABLE table_17941111_2 (volume VARCHAR, co_2 VARCHAR)
SELECT volume FROM table_17941111_2 WHERE co_2 = "168 g/km"
### Context: CREATE TABLE table_17941111_2 (volume VARCHAR, co_2 VARCHAR) ### Question: Name the volume for co 2 for 168 g/km ### Answer: SELECT volume FROM table_17941111_2 WHERE co_2 = "168 g/km"
When 60 is the tries against what is the tries for?
CREATE TABLE table_17941032_1 (tries_for VARCHAR, tries_against VARCHAR)
SELECT tries_for FROM table_17941032_1 WHERE tries_against = "60"
### Context: CREATE TABLE table_17941032_1 (tries_for VARCHAR, tries_against VARCHAR) ### Question: When 60 is the tries against what is the tries for? ### Answer: SELECT tries_for FROM table_17941032_1 WHERE tries_against = "60"
When 22 is the tries for what is the lost?
CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)
SELECT lost FROM table_17941032_1 WHERE tries_for = "22"
### Context: CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR) ### Question: When 22 is the tries for what is the lost? ### Answer: SELECT lost FROM table_17941032_1 WHERE tries_for = "22"
When 98 is the points what is the club?
CREATE TABLE table_17941032_1 (club VARCHAR, points VARCHAR)
SELECT club FROM table_17941032_1 WHERE points = "98"
### Context: CREATE TABLE table_17941032_1 (club VARCHAR, points VARCHAR) ### Question: When 98 is the points what is the club? ### Answer: SELECT club FROM table_17941032_1 WHERE points = "98"
When 80 is the tries for what is the try bonus?
CREATE TABLE table_17941032_1 (try_bonus VARCHAR, tries_for VARCHAR)
SELECT try_bonus FROM table_17941032_1 WHERE tries_for = "80"
### Context: CREATE TABLE table_17941032_1 (try_bonus VARCHAR, tries_for VARCHAR) ### Question: When 80 is the tries for what is the try bonus? ### Answer: SELECT try_bonus FROM table_17941032_1 WHERE tries_for = "80"
When 55 is the tries for what is the lost?
CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)
SELECT lost FROM table_17941032_1 WHERE tries_for = "55"
### Context: CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR) ### Question: When 55 is the tries for what is the lost? ### Answer: SELECT lost FROM table_17941032_1 WHERE tries_for = "55"
When 17 is the tries for what is the points against?
CREATE TABLE table_17941032_1 (points_against VARCHAR, tries_for VARCHAR)
SELECT points_against FROM table_17941032_1 WHERE tries_for = "17"
### Context: CREATE TABLE table_17941032_1 (points_against VARCHAR, tries_for VARCHAR) ### Question: When 17 is the tries for what is the points against? ### Answer: SELECT points_against FROM table_17941032_1 WHERE tries_for = "17"
How many draws were there in played games?
CREATE TABLE table_17941032_2 (drawn VARCHAR)
SELECT drawn FROM table_17941032_2 WHERE "played" = "played"
### Context: CREATE TABLE table_17941032_2 (drawn VARCHAR) ### Question: How many draws were there in played games? ### Answer: SELECT drawn FROM table_17941032_2 WHERE "played" = "played"
Which club had 2 wins and 1 draw?
CREATE TABLE table_17941032_2 (club VARCHAR, drawn VARCHAR, won VARCHAR)
SELECT club FROM table_17941032_2 WHERE drawn = "1" AND won = "2"
### Context: CREATE TABLE table_17941032_2 (club VARCHAR, drawn VARCHAR, won VARCHAR) ### Question: Which club had 2 wins and 1 draw? ### Answer: SELECT club FROM table_17941032_2 WHERE drawn = "1" AND won = "2"
How many times were there plays with a try of 56?
CREATE TABLE table_17941032_2 (played VARCHAR, tries_for VARCHAR)
SELECT played FROM table_17941032_2 WHERE tries_for = "56"
### Context: CREATE TABLE table_17941032_2 (played VARCHAR, tries_for VARCHAR) ### Question: How many times were there plays with a try of 56? ### Answer: SELECT played FROM table_17941032_2 WHERE tries_for = "56"
How many tries against were there with points of 150?
CREATE TABLE table_17941032_2 (tries_against VARCHAR, points_for VARCHAR)
SELECT tries_against FROM table_17941032_2 WHERE points_for = "150"
### Context: CREATE TABLE table_17941032_2 (tries_against VARCHAR, points_for VARCHAR) ### Question: How many tries against were there with points of 150? ### Answer: SELECT tries_against FROM table_17941032_2 WHERE points_for = "150"
What was the losing bonus that had 53 points?
CREATE TABLE table_17941032_2 (losing_bonus VARCHAR, points VARCHAR)
SELECT losing_bonus FROM table_17941032_2 WHERE points = "53"
### Context: CREATE TABLE table_17941032_2 (losing_bonus VARCHAR, points VARCHAR) ### Question: What was the losing bonus that had 53 points? ### Answer: SELECT losing_bonus FROM table_17941032_2 WHERE points = "53"
List all points against with a 0 try bonus and points for of 150.
CREATE TABLE table_17941032_2 (points_against VARCHAR, try_bonus VARCHAR, points_for VARCHAR)
SELECT points_against FROM table_17941032_2 WHERE try_bonus = "0" AND points_for = "150"
### Context: CREATE TABLE table_17941032_2 (points_against VARCHAR, try_bonus VARCHAR, points_for VARCHAR) ### Question: List all points against with a 0 try bonus and points for of 150. ### Answer: SELECT points_against FROM table_17941032_2 WHERE try_bonus = "0" AND points_for = "150"
Name the tries against when tries for is 30
CREATE TABLE table_17941032_3 (tries_against VARCHAR, tries_for VARCHAR)
SELECT tries_against FROM table_17941032_3 WHERE tries_for = "30"
### Context: CREATE TABLE table_17941032_3 (tries_against VARCHAR, tries_for VARCHAR) ### Question: Name the tries against when tries for is 30 ### Answer: SELECT tries_against FROM table_17941032_3 WHERE tries_for = "30"
Name the points when tries for is 49
CREATE TABLE table_17941032_3 (points VARCHAR, tries_for VARCHAR)
SELECT points FROM table_17941032_3 WHERE tries_for = "49"
### Context: CREATE TABLE table_17941032_3 (points VARCHAR, tries_for VARCHAR) ### Question: Name the points when tries for is 49 ### Answer: SELECT points FROM table_17941032_3 WHERE tries_for = "49"
Name the try bonus for lost being 11 and losing bonus is 6
CREATE TABLE table_17941032_3 (try_bonus VARCHAR, lost VARCHAR, losing_bonus VARCHAR)
SELECT try_bonus FROM table_17941032_3 WHERE lost = "11" AND losing_bonus = "6"
### Context: CREATE TABLE table_17941032_3 (try_bonus VARCHAR, lost VARCHAR, losing_bonus VARCHAR) ### Question: Name the try bonus for lost being 11 and losing bonus is 6 ### Answer: SELECT try_bonus FROM table_17941032_3 WHERE lost = "11" AND losing_bonus = "6"
For home of River Plate, what is the first leg listed?
CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)
SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "River Plate"
### Context: CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR) ### Question: For home of River Plate, what is the first leg listed? ### Answer: SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "River Plate"
With an aggregate of 0-2, what is listed for home?
CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
SELECT home__2nd_leg_ FROM table_17968229_1 WHERE aggregate = "0-2"
### Context: CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR, aggregate VARCHAR) ### Question: With an aggregate of 0-2, what is listed for home? ### Answer: SELECT home__2nd_leg_ FROM table_17968229_1 WHERE aggregate = "0-2"