text stringlengths 114 1.06k |
|---|
### 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" ### context: CREATE TABLE table_2818164_2 (title VARCHAR, 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" ### context: CREATE TABLE table_2818164_2 (production_code INTEGER, original_air_date VARCHAR) |
### question: when roberts 86' is the scorer what is the round? ### answer: SELECT round FROM table_28181401_4 WHERE scorers = "Roberts 86'" ### context: CREATE TABLE table_28181401_4 (round VARCHAR, scorers 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)" ### context: CREATE TABLE table_28181401_4 (attendance INTEGER, round 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" ### context: CREATE TABLE table_28181347_6 (position_in_table VARCHAR, replaced_by 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" ### context: CREATE TABLE table_28181347_6 (replaced_by VARCHAR, date_of_vacancy 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" ### context: CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment 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" ### context: CREATE TABLE table_2818164_4 (no_in_series INTEGER, written_by 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 ### context: CREATE TABLE table_2818164_4 (original_air_date VARCHAR, production_code 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" ### context: CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed... |
### 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" ### context: CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by 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" ### context: CREATE TABLE table_28196105_1 (_number VARCHAR, production_code VARCHAR) |
### question: Who wrote episode number 18? ### answer: SELECT written_by FROM table_28196105_1 WHERE _number = 18 ### context: CREATE TABLE table_28196105_1 (written_by VARCHAR, _number VARCHAR) |
### question: Name the tries for when L is less than 2.0 ### answer: SELECT tries_for FROM table_28204447_3 WHERE l < 2.0 ### context: CREATE TABLE table_28204447_3 (tries_for VARCHAR, l INTEGER) |
### question: What is the most recent year shown for Betty Stove? ### answer: SELECT MAX(year) FROM table_2820584_2 ### context: CREATE TABLE table_2820584_2 (year INTEGER) |
### question: Who was Betty's partner when the surface is hard? ### answer: SELECT partner FROM table_2820584_2 WHERE surface = "Hard" ### context: CREATE TABLE table_2820584_2 (partner VARCHAR, surface VARCHAR) |
### question: What is the lowest number of drawn games by a team? ### answer: SELECT MIN(drawn) FROM table_28201906_1 ### context: CREATE TABLE table_28201906_1 (drawn INTEGER) |
### question: How many points did the team that won 5 games make? ### answer: 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 does the club that had 45 points against it have? ### answer: SELECT points FROM table_28201906_1 WHERE pts_agst = 45 ### context: CREATE TABLE table_28201906_1 (points VARCHAR, pts_agst 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" ### context: CREATE TABLE table_28211213_2 (institution VARCHAR, team_nickname 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" ### context: CREATE TABLE table_28211213_2 (team_nickname 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" ### context: CREATE TABLE table_28211213_2 (institution VARCHAR, location 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" ### context: CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR) |
### question: 4512 is the enrollment what is the team nickname? ### answer: SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512 ### context: CREATE TABLE table_28211213_2 (team_nickname VARCHAR, enrollment VARCHAR) |
### question: What championship was played with Allan Stone as a partner? ### answer: SELECT championship FROM table_2820584_3 WHERE partner = "Allan Stone" ### context: CREATE TABLE table_2820584_3 (championship VARCHAR, partner VARCHAR) |
### question: How many different partners played in the finale in 1973? ### answer: SELECT COUNT(partner) FROM table_2820584_3 WHERE year = 1973 ### context: CREATE TABLE table_2820584_3 (partner VARCHAR, year 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" ### context: CREATE TABLE table_2820584_3 (score_in_the_final VARCHAR, partner 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" ### context: CREATE TABLE table_28210383_1 (original_air_date 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" ### context: CREATE TABLE table_28210383_1 (written_by VARCHAR, prod_code 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" ### context: CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR... |
### question: Who directed # (season #) is 1 ( 2 )? ### answer: 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 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" ### 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" ### context: CREATE TABLE table_28211988_1 (mens_doubles 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" ### context: CREATE TABLE table_28211988_1 (host VARCHAR, mens_singles 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" ### context: CREATE TABLE table_28211988_1 (womens_singles 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" ### context: CREATE TABLE table_28211988_4 (mens_doubles VARCHAR, season 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 ### context: CREATE TABLE table_28212888_2 (directed_by VARCHAR, no_in_series 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" ### context: CREATE TABLE table_28212888_2 (title 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" ### context: CREATE TABLE table_28215780_4 (no_in_series VARCHAR, us_viewers__millions_ 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" ### context: CREATE TABLE table_28215780_4 (title 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" ### context: CREATE TABLE table_28215780_4 (original_air_date VARCHAR, written_by 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" ### context: CREATE TABLE table_28232443_1 (producer__s_ VARCHAR, song__s_ 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" ### context: CREATE TABLE table_28232443_1 (year INTEGER, artist VARCHAR) |
### question: How many seasons are there with Formula Holden? ### answer: SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = "Formula Holden" ### context: CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR) |
### question: How many poles are there with 2 races? ### answer: SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2 ### context: CREATE TABLE table_2822193_1 (poles INTEGER, races 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" ### context: CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR) |
### question: How many people had high rebounds in game 14? ### answer: SELECT COUNT(high_rebounds) FROM table_28220778_21 WHERE game = 14 ### context: CREATE TABLE table_28220778_21 (high_rebounds VARCHAR, game VARCHAR) |
### question: What is every score when the date is January 2? ### answer: SELECT score FROM table_28220778_21 WHERE date = "January 2" ### context: CREATE TABLE table_28220778_21 (score VARCHAR, date 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" ### context: CREATE TABLE table_28243691_1 (enrollment INTEGER, institution VARCHAR) |
### question: What is the mascot for texas tech university? ### answer: 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 total enrollment for private/ disciples of christ? ### answer: SELECT enrollment FROM table_28243691_1 WHERE affiliation = "Private/ Disciples of Christ" ### context: CREATE TABLE table_28243691_1 (enrollment VARCHAR, affiliation 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" ### context: CREATE TABLE table_28243691_1 (team_nickname VARCHAR, location 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 ### context: CREATE TABLE table_28243691_1 (enrollment INTEGER, founded 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" ### context: CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir 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" ### context: CREATE TABLE table_28243323_1 (club_name 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" ### 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" ### context: CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR) |
### question: How many team songs does fremantle have? ### answer: 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: 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" ### context: CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, writer_composer 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" ### context: CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR) |
### question: What's the nickname of the team with enrollment of 40747? ### answer: SELECT team_nickname FROM table_28243691_2 WHERE enrollment = 40747 ### context: CREATE TABLE table_28243691_2 (team_nickname VARCHAR, enrollment VARCHAR) |
### question: What school is located in Huntsville, Texas? ### answer: SELECT institution FROM table_28243691_2 WHERE location = "Huntsville, Texas" ### context: CREATE TABLE table_28243691_2 (institution VARCHAR, location VARCHAR) |
### question: How many students are enrolled in the team nicknamed Comets? ### answer: SELECT enrollment FROM table_28243691_2 WHERE team_nickname = "Comets" ### context: CREATE TABLE table_28243691_2 (enrollment VARCHAR, team_nickname 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" ### context: CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR) |
### question: Name the country for lusail national stadium ### answer: SELECT country FROM table_28281704_1 WHERE stadium = "Lusail National stadium" ### context: CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR) |
### question: Name the city for los angeles stadium ### answer: SELECT city FROM table_28281704_1 WHERE stadium = "Los Angeles stadium" ### context: CREATE TABLE table_28281704_1 (city VARCHAR, stadium VARCHAR) |
### question: Name the stadium for nizhny novgorod ### answer: SELECT stadium FROM table_28281704_1 WHERE city = "Nizhny Novgorod" ### context: CREATE TABLE table_28281704_1 (stadium VARCHAR, city VARCHAR) |
### question: Name the country for athens ### answer: SELECT COUNT(country) FROM table_28281704_1 WHERE city = "Athens" ### context: CREATE TABLE table_28281704_1 (country VARCHAR, city 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" ### context: CREATE TABLE table_28283535_4 (date_aired 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" ### context: CREATE TABLE table_28283535_4 (weekly_rank VARCHAR, episode VARCHAR) |
### question: What is the rating of episode 1.04? ### answer: SELECT rating FROM table_28283535_4 WHERE episode = "1.04" ### context: CREATE TABLE table_28283535_4 (rating VARCHAR, episode 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" ### context: CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_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 ### context: CREATE TABLE table_28286776_12 (club_s_ VARCHAR, goal_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" ### context: CREATE TABLE table_28286776_12 (goal_s_ INTEGER, club_s_ VARCHAR) |
### question: When 16 is the cap who is the player? ### answer: SELECT player FROM table_28286776_50 WHERE cap_s_ = 16 ### context: CREATE TABLE table_28286776_50 (player VARCHAR, cap_s_ 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" ### context: CREATE TABLE table_28286776_50 (club_s_ VARCHAR, international_debut 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" ### context: CREATE TABLE table_28286776_50 (club_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" ### context: CREATE TABLE table_28286776_50 (cap_s_ VARCHAR, goal_s_ ... |
### 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" ### context: CREATE TABLE table_28286776_50 (international_debut VARCHAR, player 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" ### context: CREATE TABLE table_2828803_1 (title VARCHAR, written_by 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" ### context: CREATE TABLE table_2828803_1 (us_viewers__millions_ VARCHAR, production_code 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" ### context: CREATE TABLE table_2828803_1 (title VARCHAR, directed_by 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" ### context: CREATE TABLE table_28298589_2 (site VARCHAR, time 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" ### context: CREATE TABLE table_28298589_2 (result VARCHAR, visiting_team 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" ### context: CREATE TABLE table_28298471_14 (stage INTEGER, 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" ### context: CREATE TABLE table_28298471_14 (stage 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" ### context: CREATE TABLE table_28298471_14 (team_classification VARCHAR, winner 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" ### context: CREATE TABLE table_28298471_14 (stage VARCHAR, mountains_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" ### context: CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR) |
### question: When hayden roulston is the winner what is the stage? ### answer: SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston" ### context: CREATE TABLE table_28298471_14 (stage VARCHAR, winner 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" ### context: CREATE TABLE table_28298589_4 (date VARCHAR, visiting_team VARCHAR) |
### question: How many Connecticut home games were broadcast? ### answer: SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = "Connecticut" ### context: CREATE TABLE table_28298589_4 (broadcast 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" ### context: CREATE TABLE table_28298589_4 (site 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" ### context: CREATE TABLE table_28298589_4 (result VARCHAR, home_team 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" ### context: CREATE TABLE table_283203_1 (location VARCHAR, capacity VARCHAR) |
### question: Where is the home venue of the team founded in 1993? ### answer: SELECT home_venue FROM table_283203_1 WHERE founded = 1993 ### context: CREATE TABLE table_283203_1 (home_venue VARCHAR, founded 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" ### context: CREATE TABLE table_283203_1 (years_active VARCHAR, home_venue 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" ### context: CREATE TABLE table_283203_1 (capacity VARCHAR, club 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" ### context: CREATE TABLE table_28334498_3 (no_in_season INTEGER, directed_by VARCHAR, us_viewers__million... |
### 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" ### context: CREATE TABLE table_28334498_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.