question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What team(s) enjoyed an average spped (mph) of 138.14?
CREATE TABLE table_17802778_1 (team VARCHAR, average_speed__mph_ VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT laps FROM table_17802778_1 WHERE year = 2001" }
What team(s) were in 2003?
CREATE TABLE table_17802778_1 (team VARCHAR, year VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = \"1957\" AND church_name = \"Askrova bedehuskapell\"" }
In what parish is the Askrova Bedehuskapell church?
CREATE TABLE table_178381_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT division_southwest FROM table_17881033_1 WHERE division_south = \"Kožuf\" AND division_east = \"Osogovo\"" }
what is the division north in 2007–08
CREATE TABLE table_17881033_1 (division_north VARCHAR, season VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT division_north FROM table_17881033_1 WHERE division_south = \"Kožuf\" AND division_southwest = \"Ilinden Velmej\"" }
how many division southwest was there when division east was babi
CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_east VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(year__ceremony_) FROM table_17919342_1 WHERE film_title_used_in_nomination = \"The Blossoming of Maximo Oliveros\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT home__2nd_leg_ FROM table_17968229_1 WHERE aggregate = \"0-2\"" }