instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: When indianapolis, indiana is the location what is the institution? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211213_2 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_28211213_2 WHERE location = "Indianapolis, Indiana" |
Write a SQL query that answers the following question: When private/ nonsectarian is the the affiliation what is the team nickname? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR) | SELECT team_nickname FROM table_28211213_2 WHERE affiliation = "Private/ Nonsectarian" |
Write a SQL query that answers the following question: 4512 is the enrollment what is the team nickname? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211213_2 (team_nickname VARCHAR, enrollment VARCHAR) | SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512 |
Write a SQL query that answers the following question: What championship was played with Allan Stone as a partner? | The relevant table was constructed using the following SQL : CREATE TABLE table_2820584_3 (championship VARCHAR, partner VARCHAR) | SELECT championship FROM table_2820584_3 WHERE partner = "Allan Stone" |
Write a SQL query that answers the following question: How many different partners played in the finale in 1973? | The relevant table was constructed using the following SQL : CREATE TABLE table_2820584_3 (partner VARCHAR, year VARCHAR) | SELECT COUNT(partner) FROM table_2820584_3 WHERE year = 1973 |
Write a SQL query that answers the following question: What was the score in the final played with Fred McNair as partner? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What was the orginal air date for episodes with production code 2acx12? | The relevant table was constructed using the following SQL : CREATE TABLE table_28210383_1 (original_air_date VARCHAR, prod_code VARCHAR) | SELECT original_air_date FROM table_28210383_1 WHERE prod_code = "2ACX12" |
Write a SQL query that answers the following question: Who wrote the episode with production code 2acx12? | The relevant table was constructed using the following SQL : CREATE TABLE table_28210383_1 (written_by VARCHAR, prod_code VARCHAR) | SELECT written_by FROM table_28210383_1 WHERE prod_code = "2ACX12" |
Write a SQL query that answers the following question: What numbered episode was directed by greg colton and written by patrick meighan? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Who directed # (season #) is 1 ( 2 )? | The relevant table was constructed using the following SQL : 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 )" |
Write a SQL query that answers the following question: Who is everyone on the men's doubles when men's singles is Ma Wenge? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR) | SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge" |
Write a SQL query that answers the following question: Who are all men's doubles when men's singles is Jean-Michel Saive? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR) | SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive" |
Write a SQL query that answers the following question: Who are all hosts when men's singles is Ma Wenge? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211988_1 (host VARCHAR, mens_singles VARCHAR) | SELECT host FROM table_28211988_1 WHERE mens_singles = "Ma Wenge" |
Write a SQL query that answers the following question: How many people are women's singles in the season of 2000/01? | The relevant table was constructed using the following SQL : CREATE TABLE table_28211988_1 (womens_singles VARCHAR, season VARCHAR) | SELECT COUNT(womens_singles) FROM table_28211988_1 WHERE season = "2000/01" |
Write a SQL query that answers the following question: Name the winners of the mens doubles in the season of 1963/64. | The relevant table was constructed using the following SQL : CREATE TABLE table_28211988_4 (mens_doubles VARCHAR, season VARCHAR) | SELECT mens_doubles FROM table_28211988_4 WHERE season = "1963/64" |
Write a SQL query that answers the following question: Who was the director of the episode with series number 116? | The relevant table was constructed using the following SQL : CREATE TABLE table_28212888_2 (directed_by VARCHAR, no_in_series VARCHAR) | SELECT directed_by FROM table_28212888_2 WHERE no_in_series = 116 |
Write a SQL query that answers the following question: What's the title of the episode seen by 12.85 millions of people in the US? | The relevant table was constructed using the following SQL : CREATE TABLE table_28212888_2 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_28212888_2 WHERE us_viewers__millions_ = "12.85" |
Write a SQL query that answers the following question: How many episodes had 11.86 million US viewers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the title(s) of episodes written by aron eli coleite? | The relevant table was constructed using the following SQL : CREATE TABLE table_28215780_4 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_28215780_4 WHERE written_by = "Aron Eli Coleite" |
Write a SQL query that answers the following question: What are the original air date(s) for episodes written by aron eli coleite? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: how many producers are responsible for the song 'calling out to marlboro? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records? | The relevant table was constructed using the following SQL : CREATE TABLE table_28232443_1 (year INTEGER, artist VARCHAR) | SELECT MIN(year) FROM table_28232443_1 WHERE artist = "Kid Creole and the Coconuts" |
Write a SQL query that answers the following question: How many seasons are there with Formula Holden? | The relevant table was constructed using the following SQL : CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR) | SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = "Formula Holden" |
Write a SQL query that answers the following question: How many poles are there with 2 races? | The relevant table was constructed using the following SQL : CREATE TABLE table_2822193_1 (poles INTEGER, races VARCHAR) | SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2 |
Write a SQL query that answers the following question: What's the most amount of point finishes for v8supercar? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: How many people had high rebounds in game 14? | The relevant table was constructed using the following SQL : CREATE TABLE table_28220778_21 (high_rebounds VARCHAR, game VARCHAR) | SELECT COUNT(high_rebounds) FROM table_28220778_21 WHERE game = 14 |
Write a SQL query that answers the following question: What is every score when the date is January 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_28220778_21 (score VARCHAR, date VARCHAR) | SELECT score FROM table_28220778_21 WHERE date = "January 2" |
Write a SQL query that answers the following question: What was the highest number of students in attendance for the university of north texas? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_1 (enrollment INTEGER, institution VARCHAR) | SELECT MAX(enrollment) FROM table_28243691_1 WHERE institution = "University of North Texas" |
Write a SQL query that answers the following question: What is the mascot for texas tech university? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_1 (team_nickname VARCHAR, institution VARCHAR) | SELECT team_nickname FROM table_28243691_1 WHERE institution = "Texas Tech University" |
Write a SQL query that answers the following question: What is the total enrollment for private/ disciples of christ? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_1 (enrollment VARCHAR, affiliation VARCHAR) | SELECT enrollment FROM table_28243691_1 WHERE affiliation = "Private/ Disciples of Christ" |
Write a SQL query that answers the following question: How many mascotts are there for college station, texas | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_1 (team_nickname VARCHAR, location VARCHAR) | SELECT COUNT(team_nickname) FROM table_28243691_1 WHERE location = "College Station, Texas" |
Write a SQL query that answers the following question: List the highest number of students in attendance for the institution that started in 1923. | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_1 (enrollment INTEGER, founded VARCHAR) | SELECT MAX(enrollment) FROM table_28243691_1 WHERE founded = 1923 |
Write a SQL query that answers the following question: How many next in lines had heirs of Archduke Karl? | The relevant table was constructed using the following SQL : CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir VARCHAR) | SELECT COUNT(next_in_line) FROM table_28241890_2 WHERE heir = "Archduke Karl" |
Write a SQL query that answers the following question: Name the team that has a song writer named larry spokes. | The relevant table was constructed using the following SQL : CREATE TABLE table_28243323_1 (club_name VARCHAR, writer_composer VARCHAR) | SELECT club_name FROM table_28243323_1 WHERE writer_composer = "Larry Spokes" |
Write a SQL query that answers the following question: How man teams have a writer named harry angus? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the team anthem that was written by quentin eyers and les kaczmarek. | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: How many team songs does fremantle have? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the name of the team song written by ken walther? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: In how many different years was the team nicknamed Comets founded? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR) | SELECT COUNT(founded) FROM table_28243691_2 WHERE team_nickname = "Comets" |
Write a SQL query that answers the following question: What's the nickname of the team with enrollment of 40747? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_2 (team_nickname VARCHAR, enrollment VARCHAR) | SELECT team_nickname FROM table_28243691_2 WHERE enrollment = 40747 |
Write a SQL query that answers the following question: What school is located in Huntsville, Texas? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_2 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_28243691_2 WHERE location = "Huntsville, Texas" |
Write a SQL query that answers the following question: How many students are enrolled in the team nicknamed Comets? | The relevant table was constructed using the following SQL : CREATE TABLE table_28243691_2 (enrollment VARCHAR, team_nickname VARCHAR) | SELECT enrollment FROM table_28243691_2 WHERE team_nickname = "Comets" |
Write a SQL query that answers the following question: Name the number of tenants for russia at the saransk stadium | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the country for lusail national stadium | The relevant table was constructed using the following SQL : CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR) | SELECT country FROM table_28281704_1 WHERE stadium = "Lusail National stadium" |
Write a SQL query that answers the following question: Name the city for los angeles stadium | The relevant table was constructed using the following SQL : CREATE TABLE table_28281704_1 (city VARCHAR, stadium VARCHAR) | SELECT city FROM table_28281704_1 WHERE stadium = "Los Angeles stadium" |
Write a SQL query that answers the following question: Name the stadium for nizhny novgorod | The relevant table was constructed using the following SQL : CREATE TABLE table_28281704_1 (stadium VARCHAR, city VARCHAR) | SELECT stadium FROM table_28281704_1 WHERE city = "Nizhny Novgorod" |
Write a SQL query that answers the following question: Name the country for athens | The relevant table was constructed using the following SQL : CREATE TABLE table_28281704_1 (country VARCHAR, city VARCHAR) | SELECT COUNT(country) FROM table_28281704_1 WHERE city = "Athens" |
Write a SQL query that answers the following question: When did the episode 1.13 air for the first time? | The relevant table was constructed using the following SQL : CREATE TABLE table_28283535_4 (date_aired VARCHAR, episode VARCHAR) | SELECT date_aired FROM table_28283535_4 WHERE episode = "1.13" |
Write a SQL query that answers the following question: What's the weekly rank of episode 1.03? | The relevant table was constructed using the following SQL : CREATE TABLE table_28283535_4 (weekly_rank VARCHAR, episode VARCHAR) | SELECT weekly_rank FROM table_28283535_4 WHERE episode = "1.03" |
Write a SQL query that answers the following question: What is the rating of episode 1.04? | The relevant table was constructed using the following SQL : CREATE TABLE table_28283535_4 (rating VARCHAR, episode VARCHAR) | SELECT rating FROM table_28283535_4 WHERE episode = "1.04" |
Write a SQL query that answers the following question: How many items are listed under caps when burnley is the club team? | The relevant table was constructed using the following SQL : CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR) | SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = "Burnley" |
Write a SQL query that answers the following question: What club did the championship player come from who had 10 goals? | The relevant table was constructed using the following SQL : CREATE TABLE table_28286776_12 (club_s_ VARCHAR, goal_s_ VARCHAR) | SELECT club_s_ FROM table_28286776_12 WHERE goal_s_ = 10 |
Write a SQL query that answers the following question: How many goals did the player from Ipswich town score? | The relevant table was constructed using the following SQL : CREATE TABLE table_28286776_12 (goal_s_ INTEGER, club_s_ VARCHAR) | SELECT MIN(goal_s_) FROM table_28286776_12 WHERE club_s_ = "Ipswich Town" |
Write a SQL query that answers the following question: When 16 is the cap who is the player? | The relevant table was constructed using the following SQL : CREATE TABLE table_28286776_50 (player VARCHAR, cap_s_ VARCHAR) | SELECT player FROM table_28286776_50 WHERE cap_s_ = 16 |
Write a SQL query that answers the following question: When 2010 v australia is the interantional debut what is the club? | The relevant table was constructed using the following SQL : CREATE TABLE table_28286776_50 (club_s_ VARCHAR, international_debut VARCHAR) | SELECT club_s_ FROM table_28286776_50 WHERE international_debut = "2010 v Australia" |
Write a SQL query that answers the following question: When winston reid category:articles with hcards is the player what is the club? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: When tommy smith category:articles with hcards is the player and 1 is the goal how many cap(s) are there? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: When rory fallon category:articles with hcards is the player when is the international debut? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is th title of the episode written by Nick Thiel? | The relevant table was constructed using the following SQL : CREATE TABLE table_2828803_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_2828803_1 WHERE written_by = "Nick Thiel" |
Write a SQL query that answers the following question: How many million u.s. viewers watched the episode with a production code of 2t7004? | The relevant table was constructed using the following SQL : CREATE TABLE table_2828803_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR) | SELECT us_viewers__millions_ FROM table_2828803_1 WHERE production_code = "2T7004" |
Write a SQL query that answers the following question: What is the name of the episode that was directed by Dennis Smith? | The relevant table was constructed using the following SQL : CREATE TABLE table_2828803_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_2828803_1 WHERE directed_by = "Dennis Smith" |
Write a SQL query that answers the following question: How many site entries are there at 3:30pm and the visiting team is coastal carolina? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the result when the visiting team is syracuse? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298589_2 (result VARCHAR, visiting_team VARCHAR) | SELECT result FROM table_28298589_2 WHERE visiting_team = "Syracuse" |
Write a SQL query that answers the following question: When svein tuft is the winner what is the highest stage? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298471_14 (stage INTEGER, winner VARCHAR) | SELECT MAX(stage) FROM table_28298471_14 WHERE winner = "Svein Tuft" |
Write a SQL query that answers the following question: when svein tuft is the winner how many stages are there? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR) | SELECT COUNT(stage) FROM table_28298471_14 WHERE winner = "Svein Tuft" |
Write a SQL query that answers the following question: when hayden roulston is the winner what is the team classification? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298471_14 (team_classification VARCHAR, winner VARCHAR) | SELECT team_classification FROM table_28298471_14 WHERE winner = "Hayden Roulston" |
Write a SQL query that answers the following question: When michael reihs is the mountains classification what is the stage? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298471_14 (stage VARCHAR, mountains_classification VARCHAR) | SELECT stage FROM table_28298471_14 WHERE mountains_classification = "Michael Reihs" |
Write a SQL query that answers the following question: When michael van stayen is the points classification what is the team classification? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR) | SELECT team_classification FROM table_28298471_14 WHERE points_classification = "Michael Van Stayen" |
Write a SQL query that answers the following question: When hayden roulston is the winner what is the stage? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR) | SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston" |
Write a SQL query that answers the following question: What date was the game where Texas Southern was the visiting team? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298589_4 (date VARCHAR, visiting_team VARCHAR) | SELECT date FROM table_28298589_4 WHERE visiting_team = "Texas Southern" |
Write a SQL query that answers the following question: How many Connecticut home games were broadcast? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298589_4 (broadcast VARCHAR, home_team VARCHAR) | SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = "Connecticut" |
Write a SQL query that answers the following question: In what facility was Pittsburgh's home game played? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298589_4 (site VARCHAR, home_team VARCHAR) | SELECT site FROM table_28298589_4 WHERE home_team = "Pittsburgh" |
Write a SQL query that answers the following question: What was the final score of Washington's home game? | The relevant table was constructed using the following SQL : CREATE TABLE table_28298589_4 (result VARCHAR, home_team VARCHAR) | SELECT result FROM table_28298589_4 WHERE home_team = "Washington" |
Write a SQL query that answers the following question: Where is the team that has a stadium capable of a capacity of 10,517 5,006 located? | The relevant table was constructed using the following SQL : CREATE TABLE table_283203_1 (location VARCHAR, capacity VARCHAR) | SELECT location FROM table_283203_1 WHERE capacity = "10,517 5,006" |
Write a SQL query that answers the following question: Where is the home venue of the team founded in 1993? | The relevant table was constructed using the following SQL : CREATE TABLE table_283203_1 (home_venue VARCHAR, founded VARCHAR) | SELECT home_venue FROM table_283203_1 WHERE founded = 1993 |
Write a SQL query that answers the following question: How long has the team who owns North Shore Events Centre Vector Arena been active? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the capacity for the Home Venue of the New Zealand Breakers club? | The relevant table was constructed using the following SQL : CREATE TABLE table_283203_1 (capacity VARCHAR, club VARCHAR) | SELECT capacity FROM table_283203_1 WHERE club = "New Zealand Breakers" |
Write a SQL query that answers the following question: How many episodes were directed by Jeff Melman and 1.21million viewers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What air date had 1.01 million U.S. viewers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the aircraft type for furstenau/vorden | The relevant table was constructed using the following SQL : CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, geschwader_base VARCHAR) | SELECT aircraft_type FROM table_28342423_1 WHERE geschwader_base = "Furstenau/Vorden" |
Write a SQL query that answers the following question: Name the parent unit for ludwig franzisket | The relevant table was constructed using the following SQL : CREATE TABLE table_28342423_1 (parent_unit VARCHAR, commanding_officer VARCHAR) | SELECT parent_unit FROM table_28342423_1 WHERE commanding_officer = "Ludwig Franzisket" |
Write a SQL query that answers the following question: Name the aircraft type for jagdgeschwader 6 | The relevant table was constructed using the following SQL : CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, parent_unit VARCHAR) | SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = "Jagdgeschwader 6" |
Write a SQL query that answers the following question: Name the aircraft type for jagdgeschwader 26 | The relevant table was constructed using the following SQL : CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, parent_unit VARCHAR) | SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = "Jagdgeschwader 26" |
Write a SQL query that answers the following question: Name the parent unit for josef priller | The relevant table was constructed using the following SQL : CREATE TABLE table_28342423_1 (parent_unit VARCHAR, commanding_officer VARCHAR) | SELECT parent_unit FROM table_28342423_1 WHERE commanding_officer = "Josef Priller" |
Write a SQL query that answers the following question: Name the production code for number 8 | The relevant table was constructed using the following SQL : CREATE TABLE table_28348757_3 (production_code VARCHAR, _number VARCHAR) | SELECT production_code FROM table_28348757_3 WHERE _number = 8 |
Write a SQL query that answers the following question: Name the least number for xle02007 | The relevant table was constructed using the following SQL : CREATE TABLE table_28348757_3 (no INTEGER, production_code VARCHAR) | SELECT MIN(no) FROM table_28348757_3 WHERE production_code = "XLE02007" |
Write a SQL query that answers the following question: Who wrote the episode with the code xle05012? | The relevant table was constructed using the following SQL : CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_28348757_6 WHERE production_code = "XLE05012" |
Write a SQL query that answers the following question: what are the numbers of episodes that had 0.79 million US views? | The relevant table was constructed using the following SQL : CREATE TABLE table_28348757_6 (_number VARCHAR, us_viewers__million_ VARCHAR) | SELECT _number FROM table_28348757_6 WHERE us_viewers__million_ = "0.79" |
Write a SQL query that answers the following question: What female fenced with a saber on the team that had an average fencer rank of 3.5? | The relevant table was constructed using the following SQL : CREATE TABLE table_28372291_1 (female_saber VARCHAR, average_fencers_rank VARCHAR) | SELECT female_saber FROM table_28372291_1 WHERE average_fencers_rank = "3.5" |
Write a SQL query that answers the following question: What team had an average fencer rank of 1.33? | The relevant table was constructed using the following SQL : CREATE TABLE table_28372291_1 (team VARCHAR, average_fencers_rank VARCHAR) | SELECT team FROM table_28372291_1 WHERE average_fencers_rank = "1.33" |
Write a SQL query that answers the following question: What is the name of the corporation that incorporated on october 15, 1955? | The relevant table was constructed using the following SQL : CREATE TABLE table_28367242_1 (corporate_name VARCHAR, incorporation_date__city_ VARCHAR) | SELECT corporate_name FROM table_28367242_1 WHERE incorporation_date__city_ = "October 15, 1955" |
Write a SQL query that answers the following question: What is the area of the corporation named the powell river, the corporation of the city of? | The relevant table was constructed using the following SQL : CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR) | SELECT area__km²_ FROM table_28367242_1 WHERE corporate_name = "Powell River, The Corporation of the City of" |
Write a SQL query that answers the following question: How many Area's are there for Armstrong? | The relevant table was constructed using the following SQL : CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, name VARCHAR) | SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE name = "Armstrong" |
Write a SQL query that answers the following question: What is the name of the city which incorporated on july 16, 1860? | The relevant table was constructed using the following SQL : CREATE TABLE table_28367242_1 (name VARCHAR, incorporation_date__city_ VARCHAR) | SELECT name FROM table_28367242_1 WHERE incorporation_date__city_ = "July 16, 1860" |
Write a SQL query that answers the following question: What is the name of the corporation with an area of 15.63 km? | The relevant table was constructed using the following SQL : CREATE TABLE table_28367242_1 (corporate_name VARCHAR, area__km²_ VARCHAR) | SELECT corporate_name FROM table_28367242_1 WHERE area__km²_ = "15.63" |
Write a SQL query that answers the following question: How many areas are there for the corporation named fort st. john, city of? | The relevant table was constructed using the following SQL : CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR) | SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE corporate_name = "Fort St. John, City of" |
Write a SQL query that answers the following question: What was Emma Bunton's score for the performance with a total score of 22? | The relevant table was constructed using the following SQL : CREATE TABLE table_28352386_1 (emma_bunton VARCHAR, total VARCHAR) | SELECT emma_bunton FROM table_28352386_1 WHERE total = "22" |
Write a SQL query that answers the following question: What was the total score when the guest judge gave a score of 10? | The relevant table was constructed using the following SQL : CREATE TABLE table_28352386_1 (total VARCHAR, guest_judge VARCHAR) | SELECT total FROM table_28352386_1 WHERE guest_judge = "10" |
Write a SQL query that answers the following question: what is the number of the episode in the season whose production code is 101? | The relevant table was constructed using the following SQL : CREATE TABLE table_28358487_3 (no VARCHAR, production_code VARCHAR) | SELECT COUNT(no) FROM table_28358487_3 WHERE production_code = 101 |
Write a SQL query that answers the following question: During what conference is North Carolina listed as the tournament winner? | The relevant table was constructed using the following SQL : CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR) | SELECT conference FROM table_28365816_2 WHERE tournament_winner = "North Carolina" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.