instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: What are the school years where class "AAA" is argyle? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAA VARCHAR, Argyle VARCHAR) | SELECT school_year FROM table_14603212_5 WHERE class_aAA = Argyle |
Write a SQL query that answers the following question: What are all the AAA classes in the school years of 2005-06? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR) | SELECT class_aAA FROM table_14603212_5 WHERE school_year = "2005-06" |
Write a SQL query that answers the following question: What are all the AAAA classes in the schools years 2004-05? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_5 (class_aAAA VARCHAR, school_year VARCHAR) | SELECT class_aAAA FROM table_14603212_5 WHERE school_year = "2004-05" |
Write a SQL query that answers the following question: What are all the school years where class AAAA is in Gregory-Portland? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR) | SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland |
Write a SQL query that answers the following question: What are all the AAA classes in the school years of 2004-05? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR) | SELECT class_aAA FROM table_14603212_5 WHERE school_year = "2004-05" |
Write a SQL query that answers the following question: What are all classes for the position SLB? | The relevant table was constructed using the following SQL : CREATE TABLE table_14624447_24 (class VARCHAR, position VARCHAR) | SELECT class FROM table_14624447_24 WHERE position = "SLB" |
Write a SQL query that answers the following question: What are all weights for the number 27? | The relevant table was constructed using the following SQL : CREATE TABLE table_14624447_24 (weight VARCHAR, number VARCHAR) | SELECT weight FROM table_14624447_24 WHERE number = 27 |
Write a SQL query that answers the following question: What are all names for the position FS? | The relevant table was constructed using the following SQL : CREATE TABLE table_14624447_24 (name VARCHAR, position VARCHAR) | SELECT name FROM table_14624447_24 WHERE position = "FS" |
Write a SQL query that answers the following question: Name the call sign for the 17 physical | The relevant table was constructed using the following SQL : CREATE TABLE table_14623167_1 (call_sign VARCHAR, physical VARCHAR) | SELECT call_sign FROM table_14623167_1 WHERE physical = 17 |
Write a SQL query that answers the following question: Name the branding for forum communications | The relevant table was constructed using the following SQL : CREATE TABLE table_14623167_1 (branding VARCHAR, owner VARCHAR) | SELECT branding FROM table_14623167_1 WHERE owner = "Forum Communications" |
Write a SQL query that answers the following question: Name the number of branding for 31 physical | The relevant table was constructed using the following SQL : CREATE TABLE table_14623167_1 (branding VARCHAR, physical VARCHAR) | SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31 |
Write a SQL query that answers the following question: Name the number of virtual for NBC | The relevant table was constructed using the following SQL : CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR) | SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "NBC" |
Write a SQL query that answers the following question: Name the virtual for Fox | The relevant table was constructed using the following SQL : CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR) | SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "Fox" |
Write a SQL query that answers the following question: Name the owners for prairie public | The relevant table was constructed using the following SQL : CREATE TABLE table_14623167_1 (owner VARCHAR, branding VARCHAR) | SELECT COUNT(owner) FROM table_14623167_1 WHERE branding = "Prairie Public" |
Write a SQL query that answers the following question: Name the total number of class aaa for 2006-07 | The relevant table was constructed using the following SQL : CREATE TABLE table_14630796_1 (class_aAA VARCHAR, school_year VARCHAR) | SELECT COUNT(class_aAA) FROM table_14630796_1 WHERE school_year = "2006-07" |
Write a SQL query that answers the following question: Name the class aaaa for menard | The relevant table was constructed using the following SQL : CREATE TABLE table_14630796_1 (class_aAAA VARCHAR, class_a VARCHAR) | SELECT class_aAAA FROM table_14630796_1 WHERE class_a = "Menard" |
Write a SQL query that answers the following question: Name the class a for carthage | The relevant table was constructed using the following SQL : CREATE TABLE table_14630796_1 (class_a VARCHAR, class_aAAA VARCHAR, Carthage VARCHAR) | SELECT class_a FROM table_14630796_1 WHERE class_aAAA = Carthage |
Write a SQL query that answers the following question: What is the original title of europe for dummies? | The relevant table was constructed using the following SQL : CREATE TABLE table_14631909_1 (original_title VARCHAR, english_title VARCHAR) | SELECT original_title FROM table_14631909_1 WHERE english_title = "Europe for Dummies" |
Write a SQL query that answers the following question: What is the English version of Mariusz Szczygieł book? | The relevant table was constructed using the following SQL : CREATE TABLE table_14631909_1 (english_title VARCHAR, author VARCHAR) | SELECT english_title FROM table_14631909_1 WHERE author = "Mariusz Szczygieł" |
Write a SQL query that answers the following question: who is the the pole position with date being august 10 | The relevant table was constructed using the following SQL : CREATE TABLE table_14638077_2 (pole_position VARCHAR, date VARCHAR) | SELECT pole_position FROM table_14638077_2 WHERE date = "August 10" |
Write a SQL query that answers the following question: how many winning team with circuit being road america | The relevant table was constructed using the following SQL : CREATE TABLE table_14638077_2 (winning_team VARCHAR, circuit VARCHAR) | SELECT COUNT(winning_team) FROM table_14638077_2 WHERE circuit = "Road America" |
Write a SQL query that answers the following question: who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200 | The relevant table was constructed using the following SQL : CREATE TABLE table_14638077_2 (winning_driver VARCHAR, pole_position VARCHAR, race_name VARCHAR) | SELECT winning_driver FROM table_14638077_2 WHERE pole_position = "Paul Tracy" AND race_name = "Miller Genuine Draft 200" |
Write a SQL query that answers the following question: who is the the pole position with rnd being 16 | The relevant table was constructed using the following SQL : CREATE TABLE table_14638077_2 (pole_position VARCHAR, rnd VARCHAR) | SELECT pole_position FROM table_14638077_2 WHERE rnd = 16 |
Write a SQL query that answers the following question: what's the race name with date being september 7 | The relevant table was constructed using the following SQL : CREATE TABLE table_14638077_2 (race_name VARCHAR, date VARCHAR) | SELECT race_name FROM table_14638077_2 WHERE date = "September 7" |
Write a SQL query that answers the following question: what's the circuit with rnd being 5 | The relevant table was constructed using the following SQL : CREATE TABLE table_14638077_2 (circuit VARCHAR, rnd VARCHAR) | SELECT circuit FROM table_14638077_2 WHERE rnd = 5 |
Write a SQL query that answers the following question: What is the number of appearances where the most recent final result is 1999, beat Genk 3-1? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463332_2 (_number_appearances VARCHAR, most_recent_final VARCHAR) | SELECT COUNT(_number_appearances) FROM table_1463332_2 WHERE most_recent_final = "1999, beat Genk 3-1" |
Write a SQL query that answers the following question: What is the number of runner-up results for the years (won in bold) 1984, 2010? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463332_2 (_number_runner_up INTEGER, years__won_in_bold_ VARCHAR) | SELECT MAX(_number_runner_up) FROM table_1463332_2 WHERE years__won_in_bold_ = "1984, 2010" |
Write a SQL query that answers the following question: What is the most recent final result for the years (won in bold) 1979? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463332_2 (most_recent_final VARCHAR, years__won_in_bold_ VARCHAR) | SELECT most_recent_final FROM table_1463332_2 WHERE years__won_in_bold_ = "1979" |
Write a SQL query that answers the following question: what's the title with original air date being september23,1995 | The relevant table was constructed using the following SQL : CREATE TABLE table_14637853_3 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_14637853_3 WHERE original_air_date = "September23,1995" |
Write a SQL query that answers the following question: who wrote with original air date being september23,1995 | The relevant table was constructed using the following SQL : CREATE TABLE table_14637853_3 (written_by VARCHAR, original_air_date VARCHAR) | SELECT written_by FROM table_14637853_3 WHERE original_air_date = "September23,1995" |
Write a SQL query that answers the following question: who directed with original air date being november18,1995 | The relevant table was constructed using the following SQL : CREATE TABLE table_14637853_3 (directed_by VARCHAR, original_air_date VARCHAR) | SELECT directed_by FROM table_14637853_3 WHERE original_air_date = "November18,1995" |
Write a SQL query that answers the following question: What percentages of social democratic correspond to a 5.5% left bloc? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463383_1 (social_democratic VARCHAR, left_bloc VARCHAR) | SELECT social_democratic FROM table_1463383_1 WHERE left_bloc = "5.5%" |
Write a SQL query that answers the following question: When was there 8.9% Green-Communist? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463383_1 (date_released VARCHAR, green_communist VARCHAR) | SELECT date_released FROM table_1463383_1 WHERE green_communist = "8.9%" |
Write a SQL query that answers the following question: How many socialists correspond to a 7.5% People's Party? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463383_1 (socialist VARCHAR, peoples_party VARCHAR) | SELECT COUNT(socialist) FROM table_1463383_1 WHERE peoples_party = "7.5%" |
Write a SQL query that answers the following question: What are all percentages of Left Block when there is a 28.7% Social Democratic? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR) | SELECT left_bloc FROM table_1463383_1 WHERE social_democratic = "28.7%" |
Write a SQL query that answers the following question: If Socialist is at 46.1%, what are all percentages for social democratic? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463383_1 (social_democratic VARCHAR, socialist VARCHAR) | SELECT social_democratic FROM table_1463383_1 WHERE socialist = "46.1%" |
Write a SQL query that answers the following question: How many percentages of Left Bloc correspond to a 32.1% Social Democratic? | The relevant table was constructed using the following SQL : CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR) | SELECT COUNT(left_bloc) FROM table_1463383_1 WHERE social_democratic = "32.1%" |
Write a SQL query that answers the following question: What is the NFL team of the player whose college is Minnesota? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650162_1 (nfl_team VARCHAR, college VARCHAR) | SELECT nfl_team FROM table_14650162_1 WHERE college = "Minnesota" |
Write a SQL query that answers the following question: What college did the defensive back attend? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650162_1 (college VARCHAR, position VARCHAR) | SELECT college FROM table_14650162_1 WHERE position = "Defensive Back" |
Write a SQL query that answers the following question: What is the pick number of the player whose college is Florida State? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650162_1 (pick__number VARCHAR, college VARCHAR) | SELECT pick__number FROM table_14650162_1 WHERE college = "Florida State" |
Write a SQL query that answers the following question: How many colleges did pick number 269 attend? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650162_1 (college VARCHAR, pick__number VARCHAR) | SELECT COUNT(college) FROM table_14650162_1 WHERE pick__number = 269 |
Write a SQL query that answers the following question: How many picks played Tight end? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650162_1 (pick__number VARCHAR, position VARCHAR) | SELECT COUNT(pick__number) FROM table_14650162_1 WHERE position = "Tight End" |
Write a SQL query that answers the following question: What is the position of the player whose college is Western Kentucky? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650162_1 (position VARCHAR, college VARCHAR) | SELECT position FROM table_14650162_1 WHERE college = "Western Kentucky" |
Write a SQL query that answers the following question: What position does Robert Brooks play? | The relevant table was constructed using the following SQL : CREATE TABLE table_14649522_1 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_14649522_1 WHERE player = "Robert Brooks" |
Write a SQL query that answers the following question: Which team does Robert Brooks play with? | The relevant table was constructed using the following SQL : CREATE TABLE table_14649522_1 (nfl_team VARCHAR, player VARCHAR) | SELECT nfl_team FROM table_14649522_1 WHERE player = "Robert Brooks" |
Write a SQL query that answers the following question: Which team picked from South Carolina college? | The relevant table was constructed using the following SQL : CREATE TABLE table_14649522_1 (nfl_team VARCHAR, college VARCHAR) | SELECT nfl_team FROM table_14649522_1 WHERE college = "South Carolina" |
Write a SQL query that answers the following question: Which college was the wide receiver whose pick was less than 130.0 picked from? | The relevant table was constructed using the following SQL : CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR) | SELECT college FROM table_14649522_1 WHERE position = "Wide Receiver" AND pick__number < 130.0 |
Write a SQL query that answers the following question: What position(s) does the player drafted #34 play? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650373_1 (position VARCHAR, pick__number VARCHAR) | SELECT position FROM table_14650373_1 WHERE pick__number = 34 |
Write a SQL query that answers the following question: What is the highest pick number? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650373_1 (pick__number INTEGER) | SELECT MAX(pick__number) FROM table_14650373_1 |
Write a SQL query that answers the following question: What number picked were players from arizona state picked? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650373_1 (pick__number VARCHAR, college VARCHAR) | SELECT pick__number FROM table_14650373_1 WHERE college = "Arizona State" |
Write a SQL query that answers the following question: What NFL team does player keith woodside play for? | The relevant table was constructed using the following SQL : CREATE TABLE table_14650373_1 (nfl_team VARCHAR, player VARCHAR) | SELECT nfl_team FROM table_14650373_1 WHERE player = "Keith Woodside" |
Write a SQL query that answers the following question: what's the player with college being penn state | The relevant table was constructed using the following SQL : CREATE TABLE table_14655985_1 (player VARCHAR, college VARCHAR) | SELECT player FROM table_14655985_1 WHERE college = "Penn State" |
Write a SQL query that answers the following question: what's the position with college being usc | The relevant table was constructed using the following SQL : CREATE TABLE table_14655985_1 (position VARCHAR, college VARCHAR) | SELECT position FROM table_14655985_1 WHERE college = "USC" |
Write a SQL query that answers the following question: how many college with player being rich voltzke | The relevant table was constructed using the following SQL : CREATE TABLE table_14655985_1 (college VARCHAR, player VARCHAR) | SELECT COUNT(college) FROM table_14655985_1 WHERE player = "Rich Voltzke" |
Write a SQL query that answers the following question: what's the college with position being placekicker | The relevant table was constructed using the following SQL : CREATE TABLE table_14655985_1 (college VARCHAR, position VARCHAR) | SELECT college FROM table_14655985_1 WHERE position = "Placekicker" |
Write a SQL query that answers the following question: who is the the player where pick # is 64 | The relevant table was constructed using the following SQL : CREATE TABLE table_14655985_1 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_14655985_1 WHERE pick__number = 64 |
Write a SQL query that answers the following question: What day were the Denver Broncos the opponent? | The relevant table was constructed using the following SQL : CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_14655917_1 WHERE opponent = "Denver Broncos" |
Write a SQL query that answers the following question: What day was the oppenent the detroit lions? | The relevant table was constructed using the following SQL : CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_14655917_1 WHERE opponent = "Detroit Lions" |
Write a SQL query that answers the following question: List the record of 0-1 from the table? | The relevant table was constructed using the following SQL : CREATE TABLE table_14656147_2 (week VARCHAR, record VARCHAR) | SELECT week FROM table_14656147_2 WHERE record = "0-1" |
Write a SQL query that answers the following question: Type the record details if any result has L 3-6 in it? | The relevant table was constructed using the following SQL : CREATE TABLE table_14656147_2 (record VARCHAR, result VARCHAR) | SELECT record FROM table_14656147_2 WHERE result = "L 3-6" |
Write a SQL query that answers the following question: Find the least value of attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_14656147_2 (attendance INTEGER) | SELECT MIN(attendance) FROM table_14656147_2 |
Write a SQL query that answers the following question: type the attendance for playing with tampa bay buccaneers? | The relevant table was constructed using the following SQL : CREATE TABLE table_14656147_2 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_14656147_2 WHERE opponent = "Tampa Bay Buccaneers" |
Write a SQL query that answers the following question: How many numbers were recorded under revenue when revenue per capita was $6,126? | The relevant table was constructed using the following SQL : CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, revenue_per_capita VARCHAR) | SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE revenue_per_capita = "$6,126" |
Write a SQL query that answers the following question: What was the spending per capita when the revenue per capita was $7,755? | The relevant table was constructed using the following SQL : CREATE TABLE table_14700336_1 (spending_per_capita VARCHAR, revenue_per_capita VARCHAR) | SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = "$7,755" |
Write a SQL query that answers the following question: What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting? | The relevant table was constructed using the following SQL : CREATE TABLE table_14700336_1 (presidential_majority_2000_2004 VARCHAR, presidential_majority_2012 VARCHAR) | SELECT presidential_majority_2000_2004 FROM table_14700336_1 WHERE presidential_majority_2012 = "Non-voting" |
Write a SQL query that answers the following question: How many times was revenue in millions recorded when the spending per capita was $6,736? | The relevant table was constructed using the following SQL : CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, spending_per_capita VARCHAR) | SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE spending_per_capita = "$6,736" |
Write a SQL query that answers the following question: What is the largest number of DVDs? | The relevant table was constructed using the following SQL : CREATE TABLE table_1467951_4 (dvd_no INTEGER) | SELECT MAX(dvd_no) FROM table_1467951_4 |
Write a SQL query that answers the following question: What is the highest number of episodes? | The relevant table was constructed using the following SQL : CREATE TABLE table_1467951_4 (ep_no INTEGER) | SELECT MAX(ep_no) FROM table_1467951_4 |
Write a SQL query that answers the following question: What is the most recent release date? | The relevant table was constructed using the following SQL : CREATE TABLE table_1467951_4 (release_date INTEGER) | SELECT MAX(release_date) FROM table_1467951_4 |
Write a SQL query that answers the following question: How many release dates does volume 4 DVD have? | The relevant table was constructed using the following SQL : CREATE TABLE table_1467951_4 (release_date VARCHAR, dvd_name VARCHAR) | SELECT COUNT(release_date) FROM table_1467951_4 WHERE dvd_name = "Volume 4" |
Write a SQL query that answers the following question: what is the arrival time for no. 14? | The relevant table was constructed using the following SQL : CREATE TABLE table_14688744_2 (arrival VARCHAR, no VARCHAR) | SELECT arrival FROM table_14688744_2 WHERE no = 14 |
Write a SQL query that answers the following question: what is the arrival time where the station code is awy? | The relevant table was constructed using the following SQL : CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR) | SELECT arrival FROM table_14688744_2 WHERE station_code = "AWY" |
Write a SQL query that answers the following question: what amount of stations have station code is awy? | The relevant table was constructed using the following SQL : CREATE TABLE table_14688744_2 (station VARCHAR, station_code VARCHAR) | SELECT COUNT(station) FROM table_14688744_2 WHERE station_code = "AWY" |
Write a SQL query that answers the following question: what is the arrival time where station code is pnvl? | The relevant table was constructed using the following SQL : CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR) | SELECT arrival FROM table_14688744_2 WHERE station_code = "PNVL" |
Write a SQL query that answers the following question: How many years was the total 402? | The relevant table was constructed using the following SQL : CREATE TABLE table_14707564_1 (years VARCHAR, total VARCHAR) | SELECT COUNT(years) FROM table_14707564_1 WHERE total = 402 |
Write a SQL query that answers the following question: Who won the young rider classification in Stage 9 where the mountain classification was Emanuele Sella? | The relevant table was constructed using the following SQL : CREATE TABLE table_14710984_2 (young_rider_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR) | SELECT young_rider_classification FROM table_14710984_2 WHERE mountains_classification = "Emanuele Sella" AND stage = 9 |
Write a SQL query that answers the following question: Who is the general classification leader for stage 3? | The relevant table was constructed using the following SQL : CREATE TABLE table_14710984_2 (general_classification VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_14710984_2 WHERE stage = 3 |
Write a SQL query that answers the following question: Who won the points classifications in the stage where Matteo Priamo was the winner? | The relevant table was constructed using the following SQL : CREATE TABLE table_14710984_2 (points_classification VARCHAR, winner VARCHAR) | SELECT COUNT(points_classification) FROM table_14710984_2 WHERE winner = "Matteo Priamo" |
Write a SQL query that answers the following question: Who was awarded the young ride classification leader when the winner was Marzio Bruseghin? | The relevant table was constructed using the following SQL : CREATE TABLE table_14710984_2 (young_rider_classification VARCHAR, winner VARCHAR) | SELECT young_rider_classification FROM table_14710984_2 WHERE winner = "Marzio Bruseghin" |
Write a SQL query that answers the following question: Which title did Neil Affleck direct? | The relevant table was constructed using the following SQL : CREATE TABLE table_14724369_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_14724369_1 WHERE directed_by = "Neil Affleck" |
Write a SQL query that answers the following question: What is the first number in series that had the production code 1ACX03? | The relevant table was constructed using the following SQL : CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR) | SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03" |
Write a SQL query that answers the following question: Which title had the production code 1ACX04? | The relevant table was constructed using the following SQL : CREATE TABLE table_14724369_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_14724369_1 WHERE production_code = "1ACX04" |
Write a SQL query that answers the following question: When did the show directed by Michael Dimartino first air? | The relevant table was constructed using the following SQL : CREATE TABLE table_14724369_1 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_14724369_1 WHERE directed_by = "Michael DiMartino" |
Write a SQL query that answers the following question: Which series numbers were directed by Monte Young? | The relevant table was constructed using the following SQL : CREATE TABLE table_14724369_1 (no_in_series VARCHAR, directed_by VARCHAR) | SELECT no_in_series FROM table_14724369_1 WHERE directed_by = "Monte Young" |
Write a SQL query that answers the following question: How many people directed the show written by Chris Sheridan? | The relevant table was constructed using the following SQL : CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR) | SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan" |
Write a SQL query that answers the following question: What regular seasons occurred in 2011? | The relevant table was constructed using the following SQL : CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR) | SELECT regular_season FROM table_14723382_1 WHERE year = 2011 |
Write a SQL query that answers the following question: What is the largest numbered? | The relevant table was constructed using the following SQL : CREATE TABLE table_14723382_1 (division INTEGER) | SELECT MAX(division) FROM table_14723382_1 |
Write a SQL query that answers the following question: How many positions does rene villemure play? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_2 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_1473672_2 WHERE player = "Rene Villemure" |
Write a SQL query that answers the following question: What is the pick# for the medicine hat tigers (wchl)? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR) | SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)" |
Write a SQL query that answers the following question: What nhl team does stan weir play for? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir" |
Write a SQL query that answers the following question: What nhl team does dwight bialowas play for? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE player = "Dwight Bialowas" |
Write a SQL query that answers the following question: Lorne Henning has the lowest pick# of? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_2 (pick__number INTEGER) | SELECT MIN(pick__number) FROM table_1473672_2 |
Write a SQL query that answers the following question: Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)" |
Write a SQL query that answers the following question: Which colle/junior/club team did Michel Boudreau play for? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1473672_3 WHERE player = "Michel Boudreau" |
Write a SQL query that answers the following question: Which players played right wing? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR) | SELECT player FROM table_1473672_3 WHERE position = "Right Wing" |
Write a SQL query that answers the following question: Which nationality is the player from the Philadelphia Flyers? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR) | SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers" |
Write a SQL query that answers the following question: Which position did the player hold that played for the Philadelphia Flyers in NHL? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_3 (position VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers" |
Write a SQL query that answers the following question: Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL? | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_1473672_3 WHERE nhl_team = "Buffalo Sabres" |
Write a SQL query that answers the following question: Name the number of teams for college/junior club for philadelphia flyers | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = "Philadelphia Flyers" |
Write a SQL query that answers the following question: Name the position for ron lalonde | The relevant table was constructed using the following SQL : CREATE TABLE table_1473672_4 (position VARCHAR, player VARCHAR) | SELECT position FROM table_1473672_4 WHERE player = "Ron Lalonde" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.