question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
When was the venue named nassau veterans memorial coliseum established?? | CREATE TABLE table_name_45 (established INTEGER, venue VARCHAR) | SELECT MAX(established) FROM table_name_45 WHERE venue = "nassau veterans memorial coliseum" |
What day was a friendly game held that had a score of 2:3? | CREATE TABLE table_name_87 (date VARCHAR, type_of_game VARCHAR, results¹ VARCHAR) | SELECT date FROM table_name_87 WHERE type_of_game = "friendly" AND results¹ = "2:3" |
What is the total number of N for the element with nuclide of 141 pr? | CREATE TABLE table_15366768_1 (n___n__ VARCHAR, nuclide VARCHAR) | SELECT COUNT(n___n__) FROM table_15366768_1 WHERE nuclide = "141 Pr" |
On what date was the Canarian Workers Socialist Union registered? | CREATE TABLE table_name_60 (date_of_registration VARCHAR, name_in_english VARCHAR) | SELECT date_of_registration FROM table_name_60 WHERE name_in_english = "canarian workers socialist union" |
Name the opponent on november 22, 1942 | CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_6 WHERE date = "november 22, 1942" |
What were the years active where Asian Cup played as a captain is Qatar 1988? | CREATE TABLE table_272865_20 (years_active VARCHAR, asian_cup_played_as_a_captain VARCHAR) | SELECT years_active FROM table_272865_20 WHERE asian_cup_played_as_a_captain = "Qatar 1988" |
What was the score for the opponent against Richmond? | CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_48 WHERE home_team = "richmond" |
Which Grand Prix did Nello Pagani win? | CREATE TABLE table_name_2 (name VARCHAR, winning_driver VARCHAR) | SELECT name FROM table_name_2 WHERE winning_driver = "nello pagani" |
What are the names of customers who use payment method "Cash"? | CREATE TABLE customers (customer_name VARCHAR, payment_method VARCHAR) | SELECT customer_name FROM customers WHERE payment_method = "Cash" |
What was Canada's skip? | CREATE TABLE table_name_68 (skip VARCHAR, country VARCHAR) | SELECT skip FROM table_name_68 WHERE country = "canada" |
Find out 5 customers who most recently purchased something. List customers' first and last name. | CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE invoices (customer_id VARCHAR, invoice_date VARCHAR) | SELECT T1.first_name, T1.last_name FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id ORDER BY T2.invoice_date DESC LIMIT 5 |
How many total wins for Leopold that had fewer than 1706 against? | CREATE TABLE table_name_99 (wins INTEGER, against VARCHAR, geelong_fl VARCHAR) | SELECT SUM(wins) FROM table_name_99 WHERE against < 1706 AND geelong_fl = "leopold" |
When river ness is the hr name what is the hr number? | CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR) | SELECT hr_no FROM table_1886270_1 WHERE hr_name = "River Ness" |
Who was the subject of the bronze sculpture who was a colonist and soldier in Ville Marie, New France? | CREATE TABLE table_20903658_1 (title_subject VARCHAR, medium VARCHAR, public_office VARCHAR) | SELECT title_subject FROM table_20903658_1 WHERE medium = "Bronze" AND public_office = "colonist and soldier in Ville Marie, New France" |
On which date is there a performance of more than 8.22.72? | CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR) | SELECT date FROM table_name_9 WHERE performance = "8.22.72" |
Who had the high assist total on january 8? | CREATE TABLE table_27734286_7 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27734286_7 WHERE date = "January 8" |
Who directed the episode with the production code of 6AKY11? | CREATE TABLE table_28027307_1 (directed_by VARCHAR, production_code VARCHAR) | SELECT directed_by FROM table_28027307_1 WHERE production_code = "6AKY11" |
What is the average top 10 score for 2 starts, winnings of $135,984 and an average finish more than 43? | CREATE TABLE table_name_68 (top_10 INTEGER, avg_finish VARCHAR, starts VARCHAR, winnings VARCHAR) | SELECT AVG(top_10) FROM table_name_68 WHERE starts = 2 AND winnings = "$135,984" AND avg_finish > 43 |
What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made? | CREATE TABLE table_name_31 (top_10 INTEGER, top_25 VARCHAR, cuts_made VARCHAR) | SELECT AVG(top_10) FROM table_name_31 WHERE top_25 = 2 AND cuts_made < 10 |
What is the lowest post number for calvin borel? | CREATE TABLE table_name_31 (post INTEGER, jockey VARCHAR) | SELECT MIN(post) FROM table_name_31 WHERE jockey = "calvin borel" |
What Player in Opposition of Kilkenny has a Total of 10? | CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, opposition VARCHAR) | SELECT player FROM table_name_83 WHERE total = 10 AND opposition = "kilkenny" |
Who is The Spouse of the Duchess that has a Became Duchess on 31 october 1733 husband's accession? | CREATE TABLE table_name_31 (spouse VARCHAR, became_duchess VARCHAR) | SELECT spouse FROM table_name_31 WHERE became_duchess = "31 october 1733 husband's accession" |
What was the score of the game with a record of 37–26–9? | CREATE TABLE table_name_5 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_5 WHERE record = "37–26–9" |
What was the result on september 26? | CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_43 WHERE date = "september 26" |
What is the track that from lcd soundsystem? | CREATE TABLE table_name_28 (track VARCHAR, artist VARCHAR) | SELECT track FROM table_name_28 WHERE artist = "lcd soundsystem" |
If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions. | CREATE TABLE table_14465871_1 (description VARCHAR, powershell__alias_ VARCHAR) | SELECT description FROM table_14465871_1 WHERE powershell__alias_ = "cpi, copy, cp" |
Who had high assists in game number 9? | CREATE TABLE table_27712702_7 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_27712702_7 WHERE game = 9 |
What was radio mexicana's website? | CREATE TABLE table_name_22 (website VARCHAR, brand VARCHAR) | SELECT website FROM table_name_22 WHERE brand = "radio mexicana" |
What release date has 6998 as the production num.? | CREATE TABLE table_name_77 (release_date VARCHAR, production_num VARCHAR) | SELECT release_date FROM table_name_77 WHERE production_num = "6998" |
What was the result of the game after Week 13 on December 8, 1991? | CREATE TABLE table_name_14 (result VARCHAR, week VARCHAR, date VARCHAR) | SELECT result FROM table_name_14 WHERE week > 13 AND date = "december 8, 1991" |
What is the competition that occured on 27 July 2004? | CREATE TABLE table_name_98 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_98 WHERE date = "27 july 2004" |
Name the number for dl | CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR) | SELECT pick__number FROM table_20649850_1 WHERE position = "DL" |
What's the acting segment of 林佩琪 lin peiqi's events that are eliminated? | CREATE TABLE table_name_36 (acting_segment VARCHAR, status VARCHAR, name VARCHAR) | SELECT acting_segment FROM table_name_36 WHERE status = "eliminated" AND name = "林佩琪 lin peiqi" |
Which event had Edson Claas Vieira as an opponent? | CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_55 WHERE opponent = "edson claas vieira" |
Which ERP W has a Frequency MHz of 89.3 fm? | CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR) | SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = "89.3 fm" |
Which party had Clair Engle as an incumbent? | CREATE TABLE table_1342149_6 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342149_6 WHERE incumbent = "Clair Engle" |
Name the number of gregorian calenda rof gemini | CREATE TABLE table_169955_1 (gregorian_calendar VARCHAR, sign_of_zodiac VARCHAR) | SELECT COUNT(gregorian_calendar) FROM table_169955_1 WHERE sign_of_zodiac = "Gemini" |
what's the home where date is march 27 | CREATE TABLE table_11964047_9 (home VARCHAR, date VARCHAR) | SELECT home FROM table_11964047_9 WHERE date = "March 27" |
Which year has a Time of 13:23:43? | CREATE TABLE table_name_50 (year VARCHAR, time VARCHAR) | SELECT year FROM table_name_50 WHERE time = "13:23:43" |
What is the sum of the pick of the lw position player? | CREATE TABLE table_name_25 (pick INTEGER, position VARCHAR) | SELECT SUM(pick) FROM table_name_25 WHERE position = "lw" |
What is the ICAO of Lohausen airport? | CREATE TABLE table_name_2 (icao VARCHAR, airport VARCHAR) | SELECT icao FROM table_name_2 WHERE airport = "lohausen airport" |
What is Score, when Country is "United States", when Place is "T9", and when Player is "Jay Hebert"? | CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) | SELECT score FROM table_name_28 WHERE country = "united states" AND place = "t9" AND player = "jay hebert" |
Which Venue has Footscray as it's Home team? | CREATE TABLE table_name_3 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_3 WHERE home_team = "footscray" |
What position is the player whose first year is 2014 | CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, first_season VARCHAR) | SELECT position_in_2013 FROM table_1560673_1 WHERE first_season = 2014 |
Name the Intra DC Precision that has the Name main profile? | CREATE TABLE table_name_59 (intra_dc_precision VARCHAR, name VARCHAR) | SELECT intra_dc_precision FROM table_name_59 WHERE name = "main profile" |
What was the place with 90 point total but a position less than 5? | CREATE TABLE table_name_12 (place VARCHAR, position VARCHAR, points VARCHAR) | SELECT place FROM table_name_12 WHERE position < 5 AND points = 90 |
Which Class has a Frequency MHz of 107.5? | CREATE TABLE table_name_76 (class VARCHAR, frequency_mhz VARCHAR) | SELECT class FROM table_name_76 WHERE frequency_mhz = 107.5 |
Who performed the most rebounds on games against the Minnesota Timberwolves? | CREATE TABLE table_27902171_9 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_27902171_9 WHERE team = "Minnesota Timberwolves" |
Name the height for steffen hamann | CREATE TABLE table_23670057_6 (height__f_ VARCHAR, player VARCHAR) | SELECT height__f_ FROM table_23670057_6 WHERE player = "Steffen Hamann" |
Which Min press has none Death and seven Storm names? | CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR) | SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven" |
What home team is at 7:30pm in ESPN? | CREATE TABLE table_26842217_4 (home_team VARCHAR, time VARCHAR, broadcast VARCHAR) | SELECT home_team FROM table_26842217_4 WHERE time = "7:30pm" AND broadcast = "ESPN" |
What is the 1st leg when team number 1 is CSU SIBIU? | CREATE TABLE table_name_53 (team__number1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_53 WHERE team__number1 = "csu sibiu" |
What is Opponent, when Year is greater than 2009, and when Score is 7–5, 6–7 (6–8) , 6–1? | CREATE TABLE table_name_64 (opponent VARCHAR, year VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_64 WHERE year > 2009 AND score = "7–5, 6–7 (6–8) , 6–1" |
What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6? | CREATE TABLE table_name_90 (location VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR) | SELECT location FROM table_name_90 WHERE winner = "baltimore colts" AND year < 1972 AND result = "14-6" |
What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102? | CREATE TABLE table_name_99 (games VARCHAR, rank VARCHAR, rebounds VARCHAR) | SELECT COUNT(games) FROM table_name_99 WHERE rank < 4 AND rebounds < 102 |
What is the last year that had sideline reporters rob stone and monica gonzalez? | CREATE TABLE table_17516922_1 (year INTEGER, sideline_reporters VARCHAR) | SELECT MAX(year) FROM table_17516922_1 WHERE sideline_reporters = "Rob Stone and Monica Gonzalez" |
Which Reason has a State (class) of tennessee (2)? | CREATE TABLE table_name_54 (reason_for_change VARCHAR, state__class_ VARCHAR) | SELECT reason_for_change FROM table_name_54 WHERE state__class_ = "tennessee (2)" |
Name the number of home town for number being 32 | CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR) | SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32 |
What collegiate institution has an active status and a charter date of march 30, 2002? | CREATE TABLE table_name_56 (collegiate_institution VARCHAR, status VARCHAR, charter_date VARCHAR) | SELECT collegiate_institution FROM table_name_56 WHERE status = "active" AND charter_date = "march 30, 2002" |
What is the home team on March 7? | CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_61 WHERE date = "march 7" |
In the match where footscray was the home team, how much did they score? | CREATE TABLE table_name_55 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_55 WHERE home_team = "footscray" |
What is the lowest draw that is greater than 0 and byes greater than 0? | CREATE TABLE table_name_8 (losses INTEGER, draws VARCHAR, byes VARCHAR) | SELECT MIN(losses) FROM table_name_8 WHERE draws > 0 AND byes > 0 |
What is the lowest Lane, when Country is France, and when React is less than 0.14100000000000001? | CREATE TABLE table_name_28 (lane INTEGER, country VARCHAR, react VARCHAR) | SELECT MIN(lane) FROM table_name_28 WHERE country = "france" AND react < 0.14100000000000001 |
What city does call sign K248am have its license in? | CREATE TABLE table_name_54 (city_of_license VARCHAR, call_sign VARCHAR) | SELECT city_of_license FROM table_name_54 WHERE call_sign = "k248am" |
What is the time/retired of the honda manufacturer with a grid less than 26, 18 laps, and joan olivé as the rider? | CREATE TABLE table_name_71 (time_retired VARCHAR, rider VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_71 WHERE manufacturer = "honda" AND grid < 26 AND laps = 18 AND rider = "joan olivé" |
what number of people went to the tiger stadium | CREATE TABLE table_name_89 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_89 WHERE venue = "tiger stadium" |
If the district name is the Academy of Flint, what is the authorizing agency? | CREATE TABLE table_22665117_1 (authorizing_agency VARCHAR, district_name VARCHAR) | SELECT authorizing_agency FROM table_22665117_1 WHERE district_name = "Academy of Flint" |
What is the total population for the 3,616km area? | CREATE TABLE table_name_45 (population VARCHAR, area__km²_ VARCHAR) | SELECT COUNT(population) FROM table_name_45 WHERE area__km²_ = 3 OFFSET 616 |
What are the names of people in ascending order of height? | CREATE TABLE People (Name VARCHAR, Height VARCHAR) | SELECT Name FROM People ORDER BY Height |
Who did they play against in the game that ended in 2-2? | CREATE TABLE table_13258806_2 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_13258806_2 WHERE record = "2-2" |
Name the opponents for record of 2-1 | CREATE TABLE table_21092444_1 (opponents VARCHAR, record VARCHAR) | SELECT opponents FROM table_21092444_1 WHERE record = "2-1" |
Which first names are used for professionals or owners but are not used as dog names? | CREATE TABLE Owners (first_name VARCHAR, name VARCHAR); CREATE TABLE Dogs (first_name VARCHAR, name VARCHAR); CREATE TABLE Professionals (first_name VARCHAR, name VARCHAR) | SELECT first_name FROM Professionals UNION SELECT first_name FROM Owners EXCEPT SELECT name FROM Dogs |
Show the church names for the weddings of all people older than 30. | CREATE TABLE church (name VARCHAR, church_id VARCHAR); CREATE TABLE people (people_id VARCHAR, age VARCHAR); CREATE TABLE wedding (male_id VARCHAR, female_id VARCHAR, church_id VARCHAR) | SELECT T4.name FROM wedding AS T1 JOIN people AS T2 ON T1.male_id = T2.people_id JOIN people AS T3 ON T1.female_id = T3.people_id JOIN church AS T4 ON T4.church_id = T1.church_id WHERE T2.age > 30 OR T3.age > 30 |
When the nationality is united states, and the time is 58.06, and the heat is larger than 5 what is the lowest rank? | CREATE TABLE table_name_6 (rank INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR) | SELECT MIN(rank) FROM table_name_6 WHERE nationality = "united states" AND time = "58.06" AND heat > 5 |
What is the name of the dreamworks experience from Ferrari? | CREATE TABLE table_name_30 (name VARCHAR, themed_area VARCHAR, manufacturer VARCHAR) | SELECT name FROM table_name_30 WHERE themed_area = "dreamworks experience" AND manufacturer = "ferrari" |
Which player went to Gonzaga? | CREATE TABLE table_name_80 (player VARCHAR, school_country VARCHAR) | SELECT player FROM table_name_80 WHERE school_country = "gonzaga" |
Find the name of accounts whose checking balance is below the average checking balance. | CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (balance INTEGER); CREATE TABLE checking (custid VARCHAR, balance INTEGER) | SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM checking) |
Which championship is in a year later than 2010 on a grass surface? | CREATE TABLE table_name_10 (championship VARCHAR, year VARCHAR, surface VARCHAR) | SELECT championship FROM table_name_10 WHERE year > 2010 AND surface = "grass" |
What is the Green-Communist percentage in the poll showing a 9.7% lead? | CREATE TABLE table_name_1 (green_communist VARCHAR, lead VARCHAR) | SELECT green_communist FROM table_name_1 WHERE lead = "9.7%" |
What is the result the R3 round? | CREATE TABLE table_name_14 (result VARCHAR, round VARCHAR) | SELECT result FROM table_name_14 WHERE round = "r3" |
What is Nationality, when Round is less than 2, and when Pick is "24"? | CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, pick VARCHAR) | SELECT nationality FROM table_name_17 WHERE round < 2 AND pick = 24 |
Return the number of routes with destination airport in Italy operated by the airline with name 'American Airlines'. | CREATE TABLE routes (dst_apid VARCHAR, alid VARCHAR); CREATE TABLE airports (apid VARCHAR, country VARCHAR); CREATE TABLE airlines (alid VARCHAR, name VARCHAR) | SELECT COUNT(*) FROM routes AS T1 JOIN airports AS T2 ON T1.dst_apid = T2.apid JOIN airlines AS T3 ON T1.alid = T3.alid WHERE T2.country = 'Italy' AND T3.name = 'American Airlines' |
Name the Result of new zealand Nationality / Opponent? | CREATE TABLE table_name_56 (result VARCHAR, nationality___opponent VARCHAR) | SELECT result FROM table_name_56 WHERE nationality___opponent = "new zealand" |
Which opponent lost with pitcher Kinney (0-1)? | CREATE TABLE table_name_54 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_54 WHERE loss = "kinney (0-1)" |
Find the number of products with category "Spices" and typically sold above 1000. | CREATE TABLE products (product_category_code VARCHAR, typical_buying_price VARCHAR) | SELECT COUNT(*) FROM products WHERE product_category_code = "Spices" AND typical_buying_price > 1000 |
Tell me the nationality of pick 140 | CREATE TABLE table_name_67 (nationality VARCHAR, pick VARCHAR) | SELECT nationality FROM table_name_67 WHERE pick = "140" |
What is the average laps for the grid smaller than 21 for Renzo Zorzi? | CREATE TABLE table_name_6 (laps INTEGER, grid VARCHAR, driver VARCHAR) | SELECT AVG(laps) FROM table_name_6 WHERE grid < 21 AND driver = "renzo zorzi" |
What stadium held the game that had a score of 6–3? | CREATE TABLE table_name_71 (stadium VARCHAR, score VARCHAR) | SELECT stadium FROM table_name_71 WHERE score = "6–3" |
Name the most overall for dwight freeney with round less than 1 | CREATE TABLE table_name_8 (overall INTEGER, name VARCHAR, round VARCHAR) | SELECT MAX(overall) FROM table_name_8 WHERE name = "dwight freeney" AND round < 1 |
What is the to par when the score is 73-69-67-74=283? | CREATE TABLE table_name_40 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_40 WHERE score = 73 - 69 - 67 - 74 = 283 |
How many status figures does James Finch have? | CREATE TABLE table_27514362_7 (status VARCHAR, entrant VARCHAR) | SELECT COUNT(status) FROM table_27514362_7 WHERE entrant = "James Finch" |
Barry University had the highest enrollment of what number? | CREATE TABLE table_1183842_1 (enrollment INTEGER, institution VARCHAR) | SELECT MAX(enrollment) FROM table_1183842_1 WHERE institution = "Barry University" |
What are the name and description for role code "MG"? | CREATE TABLE ROLES (role_name VARCHAR, role_description VARCHAR, role_code VARCHAR) | SELECT role_name, role_description FROM ROLES WHERE role_code = "MG" |
What was the date of the poll with a sample size of 496 where Republican Mike Huckabee was chosen? | CREATE TABLE table_name_29 (date VARCHAR, republican VARCHAR, sample_size VARCHAR) | SELECT date FROM table_name_29 WHERE republican = "mike huckabee" AND sample_size = 496 |
Name the successor for pennsylvania 15th | CREATE TABLE table_1958768_3 (successor VARCHAR, district VARCHAR) | SELECT successor FROM table_1958768_3 WHERE district = "Pennsylvania 15th" |
What is Score, when High Points is "Luis Scola (18)", and when High Rebounds is "Luis Scola (11)"? | CREATE TABLE table_name_93 (score VARCHAR, high_points VARCHAR, high_rebounds VARCHAR) | SELECT score FROM table_name_93 WHERE high_points = "luis scola (18)" AND high_rebounds = "luis scola (11)" |
what year did david whitfield win | CREATE TABLE table_name_14 (year VARCHAR, artist VARCHAR) | SELECT year FROM table_name_14 WHERE artist = "david whitfield" |
What venue has Scotland as the opposing teams? | CREATE TABLE table_name_95 (venue VARCHAR, opposing_teams VARCHAR) | SELECT venue FROM table_name_95 WHERE opposing_teams = "scotland" |
Which season premiered on 29 October 1990 and had more than 6 episodes? | CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR) | SELECT MAX(series) FROM table_name_94 WHERE premiere = "29 october 1990" AND episodes > 6 |
what's the district with candidates being john e. rankin (d) unopposed | CREATE TABLE table_1342379_23 (district VARCHAR, candidates VARCHAR) | SELECT district FROM table_1342379_23 WHERE candidates = "John E. Rankin (D) Unopposed" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.