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