answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT opponent FROM table_name_54 WHERE week > 8 AND date = "december 4, 1960" | Who was the opponent in a week over 8 on December 4, 1960? | CREATE TABLE table_name_54 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
SELECT place FROM table_name_14 WHERE score > 68 AND to_par = "e" AND player = "bunky henry" | When Bunky Henry of the United States scored higher than 68 and his To par was e, what was his place? | CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, score VARCHAR, to_par VARCHAR) |
SELECT position FROM table_25557880_1 WHERE points = "38" | What was his position when he garnered 38 points? | CREATE TABLE table_25557880_1 (position VARCHAR, points VARCHAR) |
SELECT title FROM table_22078972_2 WHERE us_viewers__millions_ = "18.15" | What's the title of the episode first seen by 18.15 million people in the US? | CREATE TABLE table_22078972_2 (title VARCHAR, us_viewers__millions_ VARCHAR) |
SELECT nation FROM table_name_46 WHERE total > 4 AND bronze < 4 | Name the nation when bronze is less than 4 and the total is more than 4 | CREATE TABLE table_name_46 (nation VARCHAR, total VARCHAR, bronze VARCHAR) |
SELECT first_store FROM table_name_20 WHERE country = "india" | What year was the first store in India? | CREATE TABLE table_name_20 (first_store VARCHAR, country VARCHAR) |
SELECT team FROM table_23284271_10 WHERE high_rebounds = "Dirk Nowitski (13)" | Which team has dirk nowitski (13) as high rebounds? | CREATE TABLE table_23284271_10 (team VARCHAR, high_rebounds VARCHAR) |
SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55 | What is the lowest Loss for the player named total that has a long greater than 55? | CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR) |
SELECT AVG(points) FROM table_name_10 WHERE year = 1964 | How many points did he average in 1964? | CREATE TABLE table_name_10 (points INTEGER, year VARCHAR) |
SELECT COUNT(*) FROM Faculty WHERE Rank = "Professor" AND building = "NEB" | How many Professors are in building NEB? | CREATE TABLE Faculty (Rank VARCHAR, building VARCHAR) |
SELECT MIN(al_wehdat_wins) FROM table_2985714_2 WHERE _number = 2 | When the number is 2 what is the lowest amount of al-wedhat wins? | CREATE TABLE table_2985714_2 (al_wehdat_wins INTEGER, _number VARCHAR) |
SELECT loss FROM table_name_29 WHERE record = "54-61" | Who took the loss in the game that ended with a 54-61 record? | CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR) |
SELECT party FROM table_1341604_11 WHERE incumbent = "Jack Thomas Brinkley" | Name the party for jack thomas brinkley | CREATE TABLE table_1341604_11 (party VARCHAR, incumbent VARCHAR) |
SELECT MIN(lost) FROM table_name_72 WHERE team = "kirkby town" AND goals_for > 83 | What is Kirkby Town's lowest lost with more than 83 goals? | CREATE TABLE table_name_72 (lost INTEGER, team VARCHAR, goals_for VARCHAR) |
SELECT MIN(brisbane) FROM table_24291077_8 WHERE adelaide = 94000 | What was the rating for Brisbane the week that Adelaide had 94000? | CREATE TABLE table_24291077_8 (brisbane INTEGER, adelaide VARCHAR) |
SELECT MAX(points) FROM table_name_8 WHERE year > 1953 | Name the highest points when year is more than 1953 | CREATE TABLE table_name_8 (points INTEGER, year INTEGER) |
SELECT season FROM table_name_42 WHERE skip = "eve muirhead" AND third = "kerry barr" | What is the season with a Skip of Eve Muirhead and a third of Kerry Barr? | CREATE TABLE table_name_42 (season VARCHAR, skip VARCHAR, third VARCHAR) |
SELECT COUNT(episode) FROM table_24725951_1 WHERE celebrities = "Frank Skinner and Lee Mack" | How many episodes had celebrity guest stars Frank Skinner and Lee Mack? | CREATE TABLE table_24725951_1 (episode VARCHAR, celebrities VARCHAR) |
SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith" | Name the position for christopher smith | CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR) |
SELECT away_team FROM table_name_7 WHERE home_team = "carlton" | What was the away team when the home team was Carlton? | CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR) |
SELECT record FROM table_name_46 WHERE game_site = "raymond james stadium" | What is the record when the game was played at raymond james stadium? | CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR) |
SELECT record FROM table_name_35 WHERE nationality = "new zealand" | What is the Record that has a Nationality of new zealand? | CREATE TABLE table_name_35 (record VARCHAR, nationality VARCHAR) |
SELECT date_incident_start, date_incident_end FROM Behavior_Incident WHERE incident_type_code = "NOISE" | What are the start and end dates for incidents with incident type code "NOISE"? | CREATE TABLE Behavior_Incident (date_incident_start VARCHAR, date_incident_end VARCHAR, incident_type_code VARCHAR) |
SELECT COUNT(place__posición_) FROM table_name_53 WHERE draw__pe_ > 2 AND team__equipo_ = "paraíso" AND won__pg_ > 6 | How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6? | CREATE TABLE table_name_53 (place__posición_ VARCHAR, won__pg_ VARCHAR, draw__pe_ VARCHAR, team__equipo_ VARCHAR) |
SELECT MAX(wins) FROM table_14871601_1 WHERE team = "Nacional" | What is the highest win for the team Nacional? | CREATE TABLE table_14871601_1 (wins INTEGER, team VARCHAR) |
SELECT tries_for FROM table_name_65 WHERE points_for = "0" | If the points were 0, what were the tries for? | CREATE TABLE table_name_65 (tries_for VARCHAR, points_for VARCHAR) |
SELECT SUM(position) FROM table_name_57 WHERE points = 15 AND drawn < 3 | How many positions have 15 for the points, with a drawn less than 3? | CREATE TABLE table_name_57 (position INTEGER, points VARCHAR, drawn VARCHAR) |
SELECT date_of_birth FROM table_name_66 WHERE goals < 4 AND games > 1 AND years_at_club = "1945" AND player = "jim young" | what is the date of birth for the player with goals less than 4, games more than 1, years at club, 1945 and named jim young? | CREATE TABLE table_name_66 (date_of_birth VARCHAR, player VARCHAR, years_at_club VARCHAR, goals VARCHAR, games VARCHAR) |
SELECT match_id FROM MATCH WHERE competition = "1994 FIFA World Cup qualification" | Find the match ids of the cities that hosted competition "1994 FIFA World Cup qualification"? | CREATE TABLE MATCH (match_id VARCHAR, competition VARCHAR) |
SELECT first_elected FROM table_name_21 WHERE state = "vic" AND member = "hon don chipp" | What is the year First elected, when the State is vic, and when the Member is Hon Don Chipp? | CREATE TABLE table_name_21 (first_elected VARCHAR, state VARCHAR, member VARCHAR) |
SELECT away_team FROM table_name_81 WHERE venue = "vfl park" | When vfl park is the venue what's the Away team playing? | CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR) |
SELECT pressure FROM table_name_80 WHERE name = "ken" | What pressure is Ken? | CREATE TABLE table_name_80 (pressure VARCHAR, name VARCHAR) |
SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = "ho-hum land" | What issue was the spoofed title Ho-Hum land? | CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR) |
SELECT COUNT(draws) FROM table_name_45 WHERE goals_for = 58 AND losses = 12 AND goal_difference < 21 | Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21 | CREATE TABLE table_name_45 (draws VARCHAR, goal_difference VARCHAR, goals_for VARCHAR, losses VARCHAR) |
SELECT COUNT(most_recent) FROM table_name_56 WHERE height__m_ = "2770" AND first_time_as_hc_climb < 1992 | What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed? | CREATE TABLE table_name_56 (most_recent VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR) |
SELECT cfl_team FROM table_name_5 WHERE college = "boston college" | Which CFL team drafted a pick from Boston College? | CREATE TABLE table_name_5 (cfl_team VARCHAR, college VARCHAR) |
SELECT human_gene__protein_ FROM table_name_41 WHERE yeast_ortholog = "rad26" | What human gene has a yeast ortholog of RAD26? | CREATE TABLE table_name_41 (human_gene__protein_ VARCHAR, yeast_ortholog VARCHAR) |
SELECT open_cup FROM table_12002388_1 WHERE reg_season = "4th" | What was the result of the open cup when they finished 4th in the regular season? | CREATE TABLE table_12002388_1 (open_cup VARCHAR, reg_season VARCHAR) |
SELECT soccer_stadium FROM table_27369069_1 WHERE province = "NL" | What is the name of the soccer stadium in NL providence? | CREATE TABLE table_27369069_1 (soccer_stadium VARCHAR, province VARCHAR) |
SELECT tournament FROM table_name_80 WHERE ground = "a" AND round = "8" | What tournament took place on Ground A with 8 rounds? | CREATE TABLE table_name_80 (tournament VARCHAR, ground VARCHAR, round VARCHAR) |
SELECT player FROM table_name_99 WHERE pick > 15 AND hometown_school = "dayton, oh" | What is the Player from Dayton, Oh with a Pick of 15 or larger? | CREATE TABLE table_name_99 (player VARCHAR, pick VARCHAR, hometown_school VARCHAR) |
SELECT MIN(year) FROM table_13050003_2 WHERE blocks = "Nerlens Noel (4)" | What year has Nerlens Noel (4) as blocker? | CREATE TABLE table_13050003_2 (year INTEGER, blocks VARCHAR) |
SELECT score FROM table_name_72 WHERE competition = "world cup qualifier" | What was the score for the World Cup Qualifier? | CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR) |
SELECT date FROM table_name_65 WHERE visitor = "philadelphia" | When was the game played against a visiting team from Philadelphia? | CREATE TABLE table_name_65 (date VARCHAR, visitor VARCHAR) |
SELECT competition FROM table_name_67 WHERE lost = "did not qualify for uefa competitions" AND season = "1970-71" | Which competition did not qualify for UEFA competitions in the 1970-71 season? | CREATE TABLE table_name_67 (competition VARCHAR, lost VARCHAR, season VARCHAR) |
SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = "dan dierking" AND gain > 34 | What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34? | CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR) |
SELECT site FROM table_name_93 WHERE superintendent = "james sever" | What is the site when the superintendent was James Sever? | CREATE TABLE table_name_93 (site VARCHAR, superintendent VARCHAR) |
SELECT away_team AS score FROM table_name_83 WHERE venue = "vfl park" | What was the score of the away team when the game was played at vfl park? | CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR) |
SELECT COUNT(to_par) FROM table_name_72 WHERE country = "united states" AND year_won > 1986 AND player = "paul azinger" AND total > 145 | What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145? | CREATE TABLE table_name_72 (to_par VARCHAR, total VARCHAR, player VARCHAR, country VARCHAR, year_won VARCHAR) |
SELECT fastest_lap FROM table_1132588_3 WHERE grand_prix = "European grand_prix" | What is the fastest lap for the european grand prix? | CREATE TABLE table_1132588_3 (fastest_lap VARCHAR, grand_prix VARCHAR) |
SELECT length FROM table_16279520_1 WHERE release = "3.5" | What was the length time of the 3.5 release? | CREATE TABLE table_16279520_1 (length VARCHAR, release VARCHAR) |
SELECT gene FROM table_name_28 WHERE subject_number = "21" | Which gene has the subject number 21? | CREATE TABLE table_name_28 (gene VARCHAR, subject_number VARCHAR) |
SELECT game FROM table_27756474_2 WHERE high_points = "Rudy Gay (12)" | Which game did rudy gay (12) have the highest points? | CREATE TABLE table_27756474_2 (game VARCHAR, high_points VARCHAR) |
SELECT iata FROM table_name_14 WHERE airport = "beijing capital international airport" | What is the IATA for Beijing Capital International Airport? | CREATE TABLE table_name_14 (iata VARCHAR, airport VARCHAR) |
SELECT 2011 FROM table_name_99 WHERE 2010 = "1r" AND 2009 = "1r" | Which 2011 has a 2010 of 1r, and a 2009 of 1r? | CREATE TABLE table_name_99 (Id VARCHAR) |
SELECT label FROM table_name_70 WHERE date = "14 november 2003" AND catalogue = "tojp 60121-22" | What is the Label for Date of 14 November 2003, and Catalogue tojp 60121-22? | CREATE TABLE table_name_70 (label VARCHAR, date VARCHAR, catalogue VARCHAR) |
SELECT opponent FROM table_name_4 WHERE week = "5" | Who was the opponent on week 5? | CREATE TABLE table_name_4 (opponent VARCHAR, week VARCHAR) |
SELECT MAX(pick) FROM table_name_50 WHERE position = "guard" | What was the highest guard picked? | CREATE TABLE table_name_50 (pick INTEGER, position VARCHAR) |
SELECT position FROM table_2850912_10 WHERE nhl_team = "Washington Capitals" | What position was the player who was drafted by the Washington Capitals? | CREATE TABLE table_2850912_10 (position VARCHAR, nhl_team VARCHAR) |
SELECT AVG(year) FROM table_name_67 WHERE notes = "bbc radio 4" AND director = "peter kavanagh" | Notes of bbc radio 4, and a Director of peter kavanagh includes which average year? | CREATE TABLE table_name_67 (year INTEGER, notes VARCHAR, director VARCHAR) |
SELECT power FROM table_name_43 WHERE capacity = "898cc" | what is the power when the capacity is 898cc? | CREATE TABLE table_name_43 (power VARCHAR, capacity VARCHAR) |
SELECT SUM(lane) FROM table_name_17 WHERE rank < 6 AND time = "1:57.01" | In which lane did the swimmer with a time of 1:57.01 and a rank smaller than 6 swim? | CREATE TABLE table_name_17 (lane INTEGER, rank VARCHAR, time VARCHAR) |
SELECT COUNT(urban), __percentage FROM table_16645_1 WHERE population__000_ = 14685 | How many percentage figures are given for the urban population when the total population number is 14685? | CREATE TABLE table_16645_1 (__percentage VARCHAR, urban VARCHAR, population__000_ VARCHAR) |
SELECT MIN(lane) FROM table_name_64 WHERE react > 0.164 AND nationality = "guinea" | what is the lowest lane when react is more than 0.164 and the nationality is guinea? | CREATE TABLE table_name_64 (lane INTEGER, react VARCHAR, nationality VARCHAR) |
SELECT MAX(year) FROM table_2190919_1 WHERE avg_start = "8.5" | What is the most recent year where the average start is 8.5? | CREATE TABLE table_2190919_1 (year INTEGER, avg_start VARCHAR) |
SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2 | How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2? | CREATE TABLE table_name_41 (population VARCHAR, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) |
SELECT nationality FROM table_name_52 WHERE fate = "sunk" AND ship = "rinos" | What was the nationality of the sunk ship named Rinos? | CREATE TABLE table_name_52 (nationality VARCHAR, fate VARCHAR, ship VARCHAR) |
SELECT MIN(west_indies) FROM table_name_92 WHERE holder_at_the_end_of_the_series = "west indies" AND england > 1 AND season = "1991" | When west indes was a holder at the end of the series for the 1991 season with an england greater than 1, what is the smallest west indies? | CREATE TABLE table_name_92 (west_indies INTEGER, season VARCHAR, holder_at_the_end_of_the_series VARCHAR, england VARCHAR) |
SELECT race_name FROM table_1140116_5 WHERE circuit = "Modena" | What is the name of the race in the Modena circuit? | CREATE TABLE table_1140116_5 (race_name VARCHAR, circuit VARCHAR) |
SELECT AVG(pick) FROM table_name_51 WHERE college = "indiana" | What is indiana college's average pick? | CREATE TABLE table_name_51 (pick INTEGER, college VARCHAR) |
SELECT player FROM table_name_22 WHERE position = "goaltender" AND nhl_team = "vancouver canucks" | Who plays goaltender for the Vancouver Canucks? | CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) |
SELECT loss FROM table_name_65 WHERE date = "may 26" | Who lost the game on May 26? | CREATE TABLE table_name_65 (loss VARCHAR, date VARCHAR) |
SELECT home_team AS score FROM table_name_49 WHERE venue = "mcg" | What is the home team's score at mcg? | CREATE TABLE table_name_49 (home_team VARCHAR, venue VARCHAR) |
SELECT document_id, document_name FROM Documents | Show the ids and names of all documents. | CREATE TABLE Documents (document_id VARCHAR, document_name VARCHAR) |
SELECT city FROM table_name_31 WHERE state = "maharashtra" AND team = "pune" | Where is the city of Maharashtra's Pune team? | CREATE TABLE table_name_31 (city VARCHAR, state VARCHAR, team VARCHAR) |
SELECT T1.Famous_Title FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T2.Weeks_on_Top > 2 | What are the famous title of the artists associated with volumes with more than 2 weeks on top? | CREATE TABLE artist (Famous_Title VARCHAR, Artist_ID VARCHAR); CREATE TABLE volume (Artist_ID VARCHAR, Weeks_on_Top INTEGER) |
SELECT COUNT(frequency_mhz) FROM table_name_40 WHERE erp_w = "62" | Total frequency with ERP W of 62? | CREATE TABLE table_name_40 (frequency_mhz VARCHAR, erp_w VARCHAR) |
SELECT front_side_bus FROM table_name_68 WHERE model_number = "c7 1.5" | What is the Front Side Bus for Model Number c7 1.5? | CREATE TABLE table_name_68 (front_side_bus VARCHAR, model_number VARCHAR) |
SELECT runner_up FROM table_name_40 WHERE tournament = "algarve" | Name the runner-up for algarve tournament | CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR) |
SELECT MIN(overall) FROM table_name_48 WHERE school_club_team = "tennessee state" AND round < 10 | What is the highest overall rank of any Tennessee State player drafted before round 10? | CREATE TABLE table_name_48 (overall INTEGER, school_club_team VARCHAR, round VARCHAR) |
SELECT away_team AS score FROM table_name_64 WHERE venue = "western oval" | What was the away team score at Western Oval? | CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR) |
SELECT name, trade_name FROM medicine EXCEPT SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id JOIN enzyme AS T3 ON T3.id = T2.enzyme_id WHERE T3.product = 'Protoporphyrinogen IX' | Show the medicine names and trade names that cannot interact with the enzyme with product 'Heme'. | CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR, enzyme_id VARCHAR); CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE enzyme (id VARCHAR, product VARCHAR) |
SELECT date FROM table_name_90 WHERE week < 4 AND attendance = "44,851" | When was the attendance less than 44,851 during the first 4 weeks of the season? | CREATE TABLE table_name_90 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
SELECT SUM(year) FROM table_name_57 WHERE location = "newport, rhode island" | What is the sum for the year with a location of newport, rhode island? | CREATE TABLE table_name_57 (year INTEGER, location VARCHAR) |
SELECT atheism FROM table_name_90 WHERE other = "0.08%" | What is the percentage of Atheism associated with an other percentage of 0.08%? | CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR) |
SELECT COUNT(drawn) FROM table_name_70 WHERE position = 7 AND points > 18 | How many Drawn have a Position of 7, and Points larger than 18? | CREATE TABLE table_name_70 (drawn VARCHAR, position VARCHAR, points VARCHAR) |
SELECT player FROM table_name_43 WHERE money___$__ < 335 | Which player won less than $335? | CREATE TABLE table_name_43 (player VARCHAR, money___$__ INTEGER) |
SELECT opponent FROM table_name_64 WHERE attendance = "37,845" | Who is the opponent for the game with 37,845 people in attendance? | CREATE TABLE table_name_64 (opponent VARCHAR, attendance VARCHAR) |
SELECT record FROM table_name_16 WHERE visitor = "rockets" | What was the record of the game where the Rockets were the visiting team? | CREATE TABLE table_name_16 (record VARCHAR, visitor VARCHAR) |
SELECT reg_season FROM table_name_87 WHERE record = "20-10" | What is the regular season info that had a record of 20-10? | CREATE TABLE table_name_87 (reg_season VARCHAR, record VARCHAR) |
SELECT to_par FROM table_name_41 WHERE player = "macdonald smith" | What is the to par that has macdonald smith as the player? | CREATE TABLE table_name_41 (to_par VARCHAR, player VARCHAR) |
SELECT finish FROM table_name_20 WHERE total = 306 | What is Finish, when Total is "306"? | CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR) |
SELECT senior_status FROM table_name_7 WHERE appointed_by = "l. johnson category:articles with hcards" AND born_died = "1918–2009" | Which Senior status has Appointed by of l. johnson category:articles with hcards, and Born/Died of 1918–2009? | CREATE TABLE table_name_7 (senior_status VARCHAR, appointed_by VARCHAR, born_died VARCHAR) |
SELECT zip_code, COUNT(*) FROM weather WHERE max_wind_Speed_mph >= 25 GROUP BY zip_code | For each zip code, return how many times max wind speed reached 25? | CREATE TABLE weather (zip_code VARCHAR, max_wind_Speed_mph VARCHAR) |
SELECT engine FROM table_name_57 WHERE rounds = "7" AND driver = "geki" | Name the engine with rounds of 7 with geki driver | CREATE TABLE table_name_57 (engine VARCHAR, rounds VARCHAR, driver VARCHAR) |
SELECT MIN(up_for_reelection) FROM table_name_80 WHERE took_office > 2011 AND position = "chairman" | What is the earliest year a Chairman who took office after 2011 is up for reelection? | CREATE TABLE table_name_80 (up_for_reelection INTEGER, took_office VARCHAR, position VARCHAR) |
SELECT station_type FROM table_2610582_3 WHERE callsign = "DWMC-TV" | What is the station type of DWMC-TV? | CREATE TABLE table_2610582_3 (station_type VARCHAR, callsign VARCHAR) |
SELECT games FROM table_name_72 WHERE standing = "involuntary suspension of season (hurricane rita)" | What are the games with an Involuntary suspension of Season (hurricane Rita)? | CREATE TABLE table_name_72 (games VARCHAR, standing VARCHAR) |
SELECT result FROM table_name_5 WHERE district = "pennsylvania 13" | Which Result has a District of pennsylvania 13? | CREATE TABLE table_name_5 (result VARCHAR, district VARCHAR) |
SELECT writer FROM table_26866233_1 WHERE director = "Gene Reynolds" | The episode where the director is Gene Reynolds has who as the writer? | CREATE TABLE table_26866233_1 (writer VARCHAR, director VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.