Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
40,200
<question>: How many different titles does the episode originally aired on September 27, 1984 have? <context>: CREATE TABLE table_2818164_2 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(title) FROM table_2818164_2 WHERE original_air_date = "September 27, 1984"
40,201
<question>: What's the production code of the episode originally aired on February 21, 1985? <context>: CREATE TABLE table_2818164_2 (production_code INTEGER, original_air_date VARCHAR)
SELECT MIN(production_code) FROM table_2818164_2 WHERE original_air_date = "February 21, 1985"
40,202
<question>: when roberts 86' is the scorer what is the round? <context>: CREATE TABLE table_28181401_4 (round VARCHAR, scorers VARCHAR)
SELECT round FROM table_28181401_4 WHERE scorers = "Roberts 86'"
40,203
<question>: When semi final (2nd leg) is the round what is the highest attendance? <context>: CREATE TABLE table_28181401_4 (attendance INTEGER, round VARCHAR)
SELECT MAX(attendance) FROM table_28181401_4 WHERE round = "Semi Final (2nd leg)"
40,204
<question>: When Mark Stimson started his job in 2007-08 what posiiton was the team on the table <context>: CREATE TABLE table_28181347_6 (position_in_table VARCHAR, replaced_by VARCHAR)
SELECT position_in_table FROM table_28181347_6 WHERE replaced_by = "Mark Stimson"
40,205
<question>: In football league one, what coach was hired as a replacement on 8 October 2007 <context>: CREATE TABLE table_28181347_6 (replaced_by VARCHAR, date_of_vacancy VARCHAR)
SELECT replaced_by FROM table_28181347_6 WHERE date_of_vacancy = "8 October 2007"
40,206
<question>: One 6 November 2007 what was the manner of departure for the coach release in football league one? <context>: CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = "6 November 2007"
40,207
<question>: What is the series number for the episode written by janet leahy? <context>: CREATE TABLE table_2818164_4 (no_in_series INTEGER, written_by VARCHAR)
SELECT MIN(no_in_series) FROM table_2818164_4 WHERE written_by = "Janet Leahy"
40,208
<question>: What was the air date of the episode with the production code of 322? <context>: CREATE TABLE table_2818164_4 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_2818164_4 WHERE production_code = 322
40,209
<question>: What is the series number for the episode directed by jay sandrich that aired October 23, 1986? <context>: CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR)
SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = "Jay Sandrich" AND original_air_date = "October 23, 1986"
40,210
<question>: What are the title(s) of episodes directed by david solomon and written by marti noxon? <context>: CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT title FROM table_28195971_1 WHERE directed_by = "David Solomon" AND written_by = "Marti Noxon"
40,211
<question>: What was the number of episodes whose production code is 7ABB21? <context>: CREATE TABLE table_28196105_1 (_number VARCHAR, production_code VARCHAR)
SELECT COUNT(_number) FROM table_28196105_1 WHERE production_code = "7ABB21"
40,212
<question>: Who wrote episode number 18? <context>: CREATE TABLE table_28196105_1 (written_by VARCHAR, _number VARCHAR)
SELECT written_by FROM table_28196105_1 WHERE _number = 18
40,213
<question>: Name the tries for when L is less than 2.0 <context>: CREATE TABLE table_28204447_3 (tries_for VARCHAR, l INTEGER)
SELECT tries_for FROM table_28204447_3 WHERE l < 2.0
40,214
<question>: What is the most recent year shown for Betty Stove? <context>: CREATE TABLE table_2820584_2 (year INTEGER)
SELECT MAX(year) FROM table_2820584_2
40,215
<question>: Who was Betty's partner when the surface is hard? <context>: CREATE TABLE table_2820584_2 (partner VARCHAR, surface VARCHAR)
SELECT partner FROM table_2820584_2 WHERE surface = "Hard"
40,216
<question>: What is the lowest number of drawn games by a team? <context>: CREATE TABLE table_28201906_1 (drawn INTEGER)
SELECT MIN(drawn) FROM table_28201906_1
40,217
<question>: How many points did the team that won 5 games make? <context>: CREATE TABLE table_28201906_1 (pts_for VARCHAR, won VARCHAR)
SELECT pts_for FROM table_28201906_1 WHERE won = 5
40,218
<question>: How many points does the club that had 45 points against it have? <context>: CREATE TABLE table_28201906_1 (points VARCHAR, pts_agst VARCHAR)
SELECT points FROM table_28201906_1 WHERE pts_agst = 45
40,219
<question>: When gray wolves is the team nickname how many institutions are there? <context>: CREATE TABLE table_28211213_2 (institution VARCHAR, team_nickname VARCHAR)
SELECT COUNT(institution) FROM table_28211213_2 WHERE team_nickname = "Gray Wolves"
40,220
<question>: When sylvania, oh is the location what is the team nickname? <context>: CREATE TABLE table_28211213_2 (team_nickname VARCHAR, location VARCHAR)
SELECT team_nickname FROM table_28211213_2 WHERE location = "Sylvania, OH"
40,221
<question>: When indianapolis, indiana is the location what is the institution? <context>: CREATE TABLE table_28211213_2 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_28211213_2 WHERE location = "Indianapolis, Indiana"
40,222
<question>: When private/ nonsectarian is the the affiliation what is the team nickname? <context>: CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR)
SELECT team_nickname FROM table_28211213_2 WHERE affiliation = "Private/ Nonsectarian"
40,223
<question>: 4512 is the enrollment what is the team nickname? <context>: CREATE TABLE table_28211213_2 (team_nickname VARCHAR, enrollment VARCHAR)
SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512
40,224
<question>: What championship was played with Allan Stone as a partner? <context>: CREATE TABLE table_2820584_3 (championship VARCHAR, partner VARCHAR)
SELECT championship FROM table_2820584_3 WHERE partner = "Allan Stone"
40,225
<question>: How many different partners played in the finale in 1973? <context>: CREATE TABLE table_2820584_3 (partner VARCHAR, year VARCHAR)
SELECT COUNT(partner) FROM table_2820584_3 WHERE year = 1973
40,226
<question>: What was the score in the final played with Fred McNair as partner? <context>: CREATE TABLE table_2820584_3 (score_in_the_final VARCHAR, partner VARCHAR)
SELECT score_in_the_final FROM table_2820584_3 WHERE partner = "Fred McNair"
40,227
<question>: What was the orginal air date for episodes with production code 2acx12? <context>: CREATE TABLE table_28210383_1 (original_air_date VARCHAR, prod_code VARCHAR)
SELECT original_air_date FROM table_28210383_1 WHERE prod_code = "2ACX12"
40,228
<question>: Who wrote the episode with production code 2acx12? <context>: CREATE TABLE table_28210383_1 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_28210383_1 WHERE prod_code = "2ACX12"
40,229
<question>: What numbered episode was directed by greg colton and written by patrick meighan? <context>: CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT no__episode__number_ FROM table_28210383_1 WHERE directed_by = "Greg Colton" AND written_by = "Patrick Meighan"
40,230
<question>: Who directed # (season #) is 1 ( 2 )? <context>: CREATE TABLE table_28210383_1 (directed_by VARCHAR, _number__season__number_ VARCHAR)
SELECT directed_by FROM table_28210383_1 WHERE _number__season__number_ = "1 ( 2 )"
40,231
<question>: Who is everyone on the men's doubles when men's singles is Ma Wenge? <context>: CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"
40,232
<question>: Who are all men's doubles when men's singles is Jean-Michel Saive? <context>: CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive"
40,233
<question>: Who are all hosts when men's singles is Ma Wenge? <context>: CREATE TABLE table_28211988_1 (host VARCHAR, mens_singles VARCHAR)
SELECT host FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"
40,234
<question>: How many people are women's singles in the season of 2000/01? <context>: CREATE TABLE table_28211988_1 (womens_singles VARCHAR, season VARCHAR)
SELECT COUNT(womens_singles) FROM table_28211988_1 WHERE season = "2000/01"
40,235
<question>: Name the winners of the mens doubles in the season of 1963/64. <context>: CREATE TABLE table_28211988_4 (mens_doubles VARCHAR, season VARCHAR)
SELECT mens_doubles FROM table_28211988_4 WHERE season = "1963/64"
40,236
<question>: Who was the director of the episode with series number 116? <context>: CREATE TABLE table_28212888_2 (directed_by VARCHAR, no_in_series VARCHAR)
SELECT directed_by FROM table_28212888_2 WHERE no_in_series = 116
40,237
<question>: What's the title of the episode seen by 12.85 millions of people in the US? <context>: CREATE TABLE table_28212888_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_28212888_2 WHERE us_viewers__millions_ = "12.85"
40,238
<question>: How many episodes had 11.86 million US viewers? <context>: CREATE TABLE table_28215780_4 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_28215780_4 WHERE us_viewers__millions_ = "11.86"
40,239
<question>: What is the title(s) of episodes written by aron eli coleite? <context>: CREATE TABLE table_28215780_4 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_28215780_4 WHERE written_by = "Aron Eli Coleite"
40,240
<question>: What are the original air date(s) for episodes written by aron eli coleite? <context>: CREATE TABLE table_28215780_4 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_28215780_4 WHERE written_by = "Aron Eli Coleite"
40,241
<question>: how many producers are responsible for the song 'calling out to marlboro? <context>: CREATE TABLE table_28232443_1 (producer__s_ VARCHAR, song__s_ VARCHAR)
SELECT COUNT(producer__s_) FROM table_28232443_1 WHERE song__s_ = "Calling Out to Marlboro"
40,242
<question>: what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records? <context>: CREATE TABLE table_28232443_1 (year INTEGER, artist VARCHAR)
SELECT MIN(year) FROM table_28232443_1 WHERE artist = "Kid Creole and the Coconuts"
40,243
<question>: How many seasons are there with Formula Holden? <context>: CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR)
SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = "Formula Holden"
40,244
<question>: How many poles are there with 2 races? <context>: CREATE TABLE table_2822193_1 (poles INTEGER, races VARCHAR)
SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2
40,245
<question>: What's the most amount of point finishes for v8supercar? <context>: CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR)
SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = "V8Supercar"
40,246
<question>: How many people had high rebounds in game 14? <context>: CREATE TABLE table_28220778_21 (high_rebounds VARCHAR, game VARCHAR)
SELECT COUNT(high_rebounds) FROM table_28220778_21 WHERE game = 14
40,247
<question>: What is every score when the date is January 2? <context>: CREATE TABLE table_28220778_21 (score VARCHAR, date VARCHAR)
SELECT score FROM table_28220778_21 WHERE date = "January 2"
40,248
<question>: What was the highest number of students in attendance for the university of north texas? <context>: CREATE TABLE table_28243691_1 (enrollment INTEGER, institution VARCHAR)
SELECT MAX(enrollment) FROM table_28243691_1 WHERE institution = "University of North Texas"
40,249
<question>: What is the mascot for texas tech university? <context>: CREATE TABLE table_28243691_1 (team_nickname VARCHAR, institution VARCHAR)
SELECT team_nickname FROM table_28243691_1 WHERE institution = "Texas Tech University"
40,250
<question>: What is the total enrollment for private/ disciples of christ? <context>: CREATE TABLE table_28243691_1 (enrollment VARCHAR, affiliation VARCHAR)
SELECT enrollment FROM table_28243691_1 WHERE affiliation = "Private/ Disciples of Christ"
40,251
<question>: How many mascotts are there for college station, texas <context>: CREATE TABLE table_28243691_1 (team_nickname VARCHAR, location VARCHAR)
SELECT COUNT(team_nickname) FROM table_28243691_1 WHERE location = "College Station, Texas"
40,252
<question>: List the highest number of students in attendance for the institution that started in 1923. <context>: CREATE TABLE table_28243691_1 (enrollment INTEGER, founded VARCHAR)
SELECT MAX(enrollment) FROM table_28243691_1 WHERE founded = 1923
40,253
<question>: How many next in lines had heirs of Archduke Karl? <context>: CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir VARCHAR)
SELECT COUNT(next_in_line) FROM table_28241890_2 WHERE heir = "Archduke Karl"
40,254
<question>: Name the team that has a song writer named larry spokes. <context>: CREATE TABLE table_28243323_1 (club_name VARCHAR, writer_composer VARCHAR)
SELECT club_name FROM table_28243323_1 WHERE writer_composer = "Larry Spokes"
40,255
<question>: How man teams have a writer named harry angus? <context>: CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)
SELECT COUNT(name_of_team_song) FROM table_28243323_1 WHERE writer_composer = "Harry Angus"
40,256
<question>: Name the team anthem that was written by quentin eyers and les kaczmarek. <context>: CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)
SELECT name_of_team_song FROM table_28243323_1 WHERE writer_composer = "Quentin Eyers and Les Kaczmarek"
40,257
<question>: How many team songs does fremantle have? <context>: CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, club_name VARCHAR)
SELECT COUNT(basis_for_team_song) FROM table_28243323_1 WHERE club_name = "Fremantle"
40,258
<question>: What is the name of the team song written by ken walther? <context>: CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, writer_composer VARCHAR)
SELECT basis_for_team_song FROM table_28243323_1 WHERE writer_composer = "Ken Walther"
40,259
<question>: In how many different years was the team nicknamed Comets founded? <context>: CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR)
SELECT COUNT(founded) FROM table_28243691_2 WHERE team_nickname = "Comets"
40,260
<question>: What's the nickname of the team with enrollment of 40747? <context>: CREATE TABLE table_28243691_2 (team_nickname VARCHAR, enrollment VARCHAR)
SELECT team_nickname FROM table_28243691_2 WHERE enrollment = 40747
40,261
<question>: What school is located in Huntsville, Texas? <context>: CREATE TABLE table_28243691_2 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_28243691_2 WHERE location = "Huntsville, Texas"
40,262
<question>: How many students are enrolled in the team nicknamed Comets? <context>: CREATE TABLE table_28243691_2 (enrollment VARCHAR, team_nickname VARCHAR)
SELECT enrollment FROM table_28243691_2 WHERE team_nickname = "Comets"
40,263
<question>: Name the number of tenants for russia at the saransk stadium <context>: CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR)
SELECT COUNT(tenant) FROM table_28281704_1 WHERE country = "Russia" AND stadium = "Saransk stadium"
40,264
<question>: Name the country for lusail national stadium <context>: CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR)
SELECT country FROM table_28281704_1 WHERE stadium = "Lusail National stadium"
40,265
<question>: Name the city for los angeles stadium <context>: CREATE TABLE table_28281704_1 (city VARCHAR, stadium VARCHAR)
SELECT city FROM table_28281704_1 WHERE stadium = "Los Angeles stadium"
40,266
<question>: Name the stadium for nizhny novgorod <context>: CREATE TABLE table_28281704_1 (stadium VARCHAR, city VARCHAR)
SELECT stadium FROM table_28281704_1 WHERE city = "Nizhny Novgorod"
40,267
<question>: Name the country for athens <context>: CREATE TABLE table_28281704_1 (country VARCHAR, city VARCHAR)
SELECT COUNT(country) FROM table_28281704_1 WHERE city = "Athens"
40,268
<question>: When did the episode 1.13 air for the first time? <context>: CREATE TABLE table_28283535_4 (date_aired VARCHAR, episode VARCHAR)
SELECT date_aired FROM table_28283535_4 WHERE episode = "1.13"
40,269
<question>: What's the weekly rank of episode 1.03? <context>: CREATE TABLE table_28283535_4 (weekly_rank VARCHAR, episode VARCHAR)
SELECT weekly_rank FROM table_28283535_4 WHERE episode = "1.03"
40,270
<question>: What is the rating of episode 1.04? <context>: CREATE TABLE table_28283535_4 (rating VARCHAR, episode VARCHAR)
SELECT rating FROM table_28283535_4 WHERE episode = "1.04"
40,271
<question>: How many items are listed under caps when burnley is the club team? <context>: CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR)
SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = "Burnley"
40,272
<question>: What club did the championship player come from who had 10 goals? <context>: CREATE TABLE table_28286776_12 (club_s_ VARCHAR, goal_s_ VARCHAR)
SELECT club_s_ FROM table_28286776_12 WHERE goal_s_ = 10
40,273
<question>: How many goals did the player from Ipswich town score? <context>: CREATE TABLE table_28286776_12 (goal_s_ INTEGER, club_s_ VARCHAR)
SELECT MIN(goal_s_) FROM table_28286776_12 WHERE club_s_ = "Ipswich Town"
40,274
<question>: When 16 is the cap who is the player? <context>: CREATE TABLE table_28286776_50 (player VARCHAR, cap_s_ VARCHAR)
SELECT player FROM table_28286776_50 WHERE cap_s_ = 16
40,275
<question>: When 2010 v australia is the interantional debut what is the club? <context>: CREATE TABLE table_28286776_50 (club_s_ VARCHAR, international_debut VARCHAR)
SELECT club_s_ FROM table_28286776_50 WHERE international_debut = "2010 v Australia"
40,276
<question>: When winston reid category:articles with hcards is the player what is the club? <context>: CREATE TABLE table_28286776_50 (club_s_ VARCHAR, player VARCHAR)
SELECT club_s_ FROM table_28286776_50 WHERE player = "Winston Reid Category:Articles with hCards"
40,277
<question>: When tommy smith category:articles with hcards is the player and 1 is the goal how many cap(s) are there? <context>: CREATE TABLE table_28286776_50 (cap_s_ VARCHAR, goal_s_ VARCHAR, player VARCHAR)
SELECT COUNT(cap_s_) FROM table_28286776_50 WHERE goal_s_ = 1 AND player = "Tommy Smith Category:Articles with hCards"
40,278
<question>: When rory fallon category:articles with hcards is the player when is the international debut? <context>: CREATE TABLE table_28286776_50 (international_debut VARCHAR, player VARCHAR)
SELECT international_debut FROM table_28286776_50 WHERE player = "Rory Fallon Category:Articles with hCards"
40,279
<question>: What is th title of the episode written by Nick Thiel? <context>: CREATE TABLE table_2828803_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_2828803_1 WHERE written_by = "Nick Thiel"
40,280
<question>: How many million u.s. viewers watched the episode with a production code of 2t7004? <context>: CREATE TABLE table_2828803_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__millions_ FROM table_2828803_1 WHERE production_code = "2T7004"
40,281
<question>: What is the name of the episode that was directed by Dennis Smith? <context>: CREATE TABLE table_2828803_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_2828803_1 WHERE directed_by = "Dennis Smith"
40,282
<question>: How many site entries are there at 3:30pm and the visiting team is coastal carolina? <context>: CREATE TABLE table_28298589_2 (site VARCHAR, time VARCHAR, visiting_team VARCHAR)
SELECT COUNT(site) FROM table_28298589_2 WHERE time = "3:30pm" AND visiting_team = "Coastal Carolina"
40,283
<question>: What is the result when the visiting team is syracuse? <context>: CREATE TABLE table_28298589_2 (result VARCHAR, visiting_team VARCHAR)
SELECT result FROM table_28298589_2 WHERE visiting_team = "Syracuse"
40,284
<question>: When svein tuft is the winner what is the highest stage? <context>: CREATE TABLE table_28298471_14 (stage INTEGER, winner VARCHAR)
SELECT MAX(stage) FROM table_28298471_14 WHERE winner = "Svein Tuft"
40,285
<question>: when svein tuft is the winner how many stages are there? <context>: CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)
SELECT COUNT(stage) FROM table_28298471_14 WHERE winner = "Svein Tuft"
40,286
<question>: when hayden roulston is the winner what is the team classification? <context>: CREATE TABLE table_28298471_14 (team_classification VARCHAR, winner VARCHAR)
SELECT team_classification FROM table_28298471_14 WHERE winner = "Hayden Roulston"
40,287
<question>: When michael reihs is the mountains classification what is the stage? <context>: CREATE TABLE table_28298471_14 (stage VARCHAR, mountains_classification VARCHAR)
SELECT stage FROM table_28298471_14 WHERE mountains_classification = "Michael Reihs"
40,288
<question>: When michael van stayen is the points classification what is the team classification? <context>: CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR)
SELECT team_classification FROM table_28298471_14 WHERE points_classification = "Michael Van Stayen"
40,289
<question>: When hayden roulston is the winner what is the stage? <context>: CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)
SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston"
40,290
<question>: What date was the game where Texas Southern was the visiting team? <context>: CREATE TABLE table_28298589_4 (date VARCHAR, visiting_team VARCHAR)
SELECT date FROM table_28298589_4 WHERE visiting_team = "Texas Southern"
40,291
<question>: How many Connecticut home games were broadcast? <context>: CREATE TABLE table_28298589_4 (broadcast VARCHAR, home_team VARCHAR)
SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = "Connecticut"
40,292
<question>: In what facility was Pittsburgh's home game played? <context>: CREATE TABLE table_28298589_4 (site VARCHAR, home_team VARCHAR)
SELECT site FROM table_28298589_4 WHERE home_team = "Pittsburgh"
40,293
<question>: What was the final score of Washington's home game? <context>: CREATE TABLE table_28298589_4 (result VARCHAR, home_team VARCHAR)
SELECT result FROM table_28298589_4 WHERE home_team = "Washington"
40,294
<question>: Where is the team that has a stadium capable of a capacity of 10,517 5,006 located? <context>: CREATE TABLE table_283203_1 (location VARCHAR, capacity VARCHAR)
SELECT location FROM table_283203_1 WHERE capacity = "10,517 5,006"
40,295
<question>: Where is the home venue of the team founded in 1993? <context>: CREATE TABLE table_283203_1 (home_venue VARCHAR, founded VARCHAR)
SELECT home_venue FROM table_283203_1 WHERE founded = 1993
40,296
<question>: How long has the team who owns North Shore Events Centre Vector Arena been active? <context>: CREATE TABLE table_283203_1 (years_active VARCHAR, home_venue VARCHAR)
SELECT years_active FROM table_283203_1 WHERE home_venue = "North Shore Events Centre Vector Arena"
40,297
<question>: What is the capacity for the Home Venue of the New Zealand Breakers club? <context>: CREATE TABLE table_283203_1 (capacity VARCHAR, club VARCHAR)
SELECT capacity FROM table_283203_1 WHERE club = "New Zealand Breakers"
40,298
<question>: How many episodes were directed by Jeff Melman and 1.21million viewers? <context>: CREATE TABLE table_28334498_3 (no_in_season INTEGER, directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MIN(no_in_season) FROM table_28334498_3 WHERE directed_by = "Jeff Melman" AND us_viewers__millions_ = "1.21"
40,299
<question>: What air date had 1.01 million U.S. viewers? <context>: CREATE TABLE table_28334498_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_28334498_3 WHERE us_viewers__millions_ = "1.01"