answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT AVG(laps) FROM table_name_16 WHERE time = "+17.485" AND grid < 7 | Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7? | CREATE TABLE table_name_16 (laps INTEGER, time VARCHAR, grid VARCHAR) |
SELECT cfl_team FROM table_28059992_1 WHERE college = "Calgary" | What is every CFL team from the Calgary college? | CREATE TABLE table_28059992_1 (cfl_team VARCHAR, college VARCHAR) |
SELECT MIN(points) FROM table_name_38 WHERE drawn < 2 AND played > 8 | What is the fewest number of points for clubs with less than 2 draws and more than 8 matches played? | CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, played VARCHAR) |
SELECT player FROM table_name_87 WHERE total = 297 | What player has a total of 297? | CREATE TABLE table_name_87 (player VARCHAR, total VARCHAR) |
SELECT COUNT(year) FROM table_name_2 WHERE chassis = "ensign n175" | Name the total number of years for chassis of ensign n175 | CREATE TABLE table_name_2 (year VARCHAR, chassis VARCHAR) |
SELECT MAX(p_max___bar__) FROM table_26967904_1 WHERE chambering = ".45 ACP" | What is the p max (bar) in the pistol where the chambering is .45 ACP? | CREATE TABLE table_26967904_1 (p_max___bar__ INTEGER, chambering VARCHAR) |
SELECT yacht FROM table_25561560_3 WHERE skipper = "Andrew Saies" | What yacht did Andrew Saies sail on? | CREATE TABLE table_25561560_3 (yacht VARCHAR, skipper VARCHAR) |
SELECT cfl_team FROM table_name_16 WHERE player = "jeff brown" | What CFL team does Jeff brown play for? | CREATE TABLE table_name_16 (cfl_team VARCHAR, player VARCHAR) |
SELECT imed_avicenna_listed FROM table_name_31 WHERE regional_offshore = "offshore" AND country_territory = "saint kitts and nevis" AND degree = "md" AND established < 2000 | What is the imed/avicenna listed for a medical school offshore in saint kitts and nevis which was established before 2000 and will give you an MD? | CREATE TABLE table_name_31 (imed_avicenna_listed VARCHAR, established VARCHAR, degree VARCHAR, regional_offshore VARCHAR, country_territory VARCHAR) |
SELECT 2009 FROM table_name_14 WHERE 2008 = "2r" AND 2011 = "2r" | What is the categorization in 2009 when it was 2R in 2008 and 2011? | CREATE TABLE table_name_14 (Id VARCHAR) |
SELECT geographical_regions FROM table_18618707_1 WHERE height = "1.79" | When 1.79 is the height what is the geographical region? | CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, height VARCHAR) |
SELECT AVG(goals) FROM table_name_88 WHERE rank < 8 AND matches = 261 | What is the mean number of goals when the rank's less than 8 and there are 261 matches? | CREATE TABLE table_name_88 (goals INTEGER, rank VARCHAR, matches VARCHAR) |
SELECT venue FROM table_name_71 WHERE year < 2008 AND position = "14th (q)" | What venue did he play in before 2008 and finished 14th (q)? | CREATE TABLE table_name_71 (venue VARCHAR, year VARCHAR, position VARCHAR) |
SELECT MIN(rank__timeslot_) FROM table_name_29 WHERE rating < 2.6 | What is the smallest timeslot rank when the rating is smaller than 2.6? | CREATE TABLE table_name_29 (rank__timeslot_ INTEGER, rating INTEGER) |
SELECT season AS finale FROM table_27553627_2 WHERE rank = "20th" | When was the season finale that ranked 20th? | CREATE TABLE table_27553627_2 (season VARCHAR, rank VARCHAR) |
SELECT max_torque_at_rpm FROM table_name_36 WHERE displacement = "2,445 cc" AND engine = "iveco 8144.61" | What is the maximum torque that has 2,445 CC Displacement, and an Iveco 8144.61 engine? | CREATE TABLE table_name_36 (max_torque_at_rpm VARCHAR, displacement VARCHAR, engine VARCHAR) |
SELECT us_viewers__millions_ FROM table_19925114_1 WHERE no_in_season = 8 | How many millions of people in the US watched the episode with season number 8? | CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) |
SELECT T2.product_name, COUNT(*) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id JOIN Orders AS T3 ON T3.order_id = T1.order_id GROUP BY T2.product_name | Show all product names and the number of customers having an order on each product. | CREATE TABLE Order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE Orders (order_id VARCHAR); CREATE TABLE Products (product_name VARCHAR, product_id VARCHAR) |
SELECT MIN(founded) FROM table_2439728_1 WHERE school = "Lawrence Academy at Groton" | when was lawrence academy at groton established? | CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR) |
SELECT MIN(number_1971) FROM table_name_15 WHERE 2002 > 133 AND 1991 < 171 | What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171? | CREATE TABLE table_name_15 (number_1971 INTEGER) |
SELECT AVG(round) FROM table_name_16 WHERE position = "wide receiver" AND name = "r. jay soward" AND overall < 29 | What is the average Round for wide receiver r. jay soward and Overall smaller than 29? | CREATE TABLE table_name_16 (round INTEGER, overall VARCHAR, position VARCHAR, name VARCHAR) |
SELECT date FROM table_name_40 WHERE class = 157 | On which date was the class 157? | CREATE TABLE table_name_40 (date VARCHAR, class VARCHAR) |
SELECT nhl_team FROM table_2897457_3 WHERE player = "Kris Draper" | Which nhl team has kris draper as the player? | CREATE TABLE table_2897457_3 (nhl_team VARCHAR, player VARCHAR) |
SELECT us_viewers__million_ FROM table_24319661_3 WHERE directed_by = "Kevin Bray" | How many millions of people in the US watched when Kevin Bray was director? | CREATE TABLE table_24319661_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR) |
SELECT _number_of_divisions FROM table_2849652_1 WHERE sport = "Bowling" | How many divisions in bowling ? | CREATE TABLE table_2849652_1 (_number_of_divisions VARCHAR, sport VARCHAR) |
SELECT SUM(bronze) FROM table_name_67 WHERE nation = "south korea" | What is the sum of the bronze medals won by south korea? | CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR) |
SELECT platform FROM table_name_11 WHERE system = "various computers and consoles" | What is the name of the platform used for various computers and consoles? | CREATE TABLE table_name_11 (platform VARCHAR, system VARCHAR) |
SELECT AVG(series__number) FROM table_name_81 WHERE directed_by = "milan cheylov" AND written_by = "will dixon" | What series number was directed by milan cheylov and written by will dixon? | CREATE TABLE table_name_81 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR) |
SELECT player FROM table_name_7 WHERE to_par = "–2" AND country = "wales" | Which Player has a To par of –2, and a Country of wales? | CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR) |
SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5 | What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5? | CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) |
SELECT tracks FROM table_name_20 WHERE catalog = "ba 222304" AND length = "2:57" | What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57? | CREATE TABLE table_name_20 (tracks VARCHAR, catalog VARCHAR, length VARCHAR) |
SELECT AVG(ngc_number) FROM table_name_70 WHERE constellation = "leo" AND declination___j2000__ = "°42′13″" | what is the ngc number when the constellation is leo and the declination (j2000) is °42′13″? | CREATE TABLE table_name_70 (ngc_number INTEGER, constellation VARCHAR, declination___j2000__ VARCHAR) |
SELECT round_3 FROM table_name_39 WHERE round_4 = "50" | Round 3 with a round 4 of 50? | CREATE TABLE table_name_39 (round_3 VARCHAR, round_4 VARCHAR) |
SELECT а_а_[a] FROM table_202365_2 WHERE гь_гь_[ɡʲ] = "Л л [l]" | what is а а [a] when гь гь [ɡʲ] is л л [l]? | CREATE TABLE table_202365_2 (а_а_ VARCHAR, a VARCHAR, гь_гь_ VARCHAR, ɡʲ VARCHAR) |
SELECT COUNT(number_of_editions) FROM table_1840433_2 WHERE most_wins_by = "Franco Marvulli (4)" | How many editions have a most wins value of Franco Marvulli (4)? | CREATE TABLE table_1840433_2 (number_of_editions VARCHAR, most_wins_by VARCHAR) |
SELECT sport FROM table_10815352_1 WHERE league = "La Liga" | What is the sport of the La Liga league? | CREATE TABLE table_10815352_1 (sport VARCHAR, league VARCHAR) |
SELECT chrome FROM table_name_22 WHERE opera = "0.30%" AND safari = "6.77%" | What percentage of browsers were using Chrome during the period in which 0.30% were using Opera and 6.77% were using Safari? | CREATE TABLE table_name_22 (chrome VARCHAR, opera VARCHAR, safari VARCHAR) |
SELECT decile FROM table_name_55 WHERE authority = "state integrated" AND name = "westminster christian school" | What is the decile for Westminster Christian School with a state integrated authority? | CREATE TABLE table_name_55 (decile VARCHAR, authority VARCHAR, name VARCHAR) |
SELECT COUNT(rank) FROM table_name_41 WHERE bronze = 21 AND silver > 10 | How much Rank has a Bronze of 21, and a Silver larger than 10? | CREATE TABLE table_name_41 (rank VARCHAR, bronze VARCHAR, silver VARCHAR) |
SELECT institution FROM table_18483171_1 WHERE team_nickname = "Cardinals" | List all institutions with a team name of the Cardinals. | CREATE TABLE table_18483171_1 (institution VARCHAR, team_nickname VARCHAR) |
SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = "San Lorenzo" | If team two is San Lorenzo, how many were on team one? | CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR) |
SELECT label FROM table_name_88 WHERE catalog = "mhcl-20005" | Name the label with catalog of mhcl-20005 | CREATE TABLE table_name_88 (label VARCHAR, catalog VARCHAR) |
SELECT COUNT(production_code) FROM table_1231892_4 WHERE us_air_date = "January 15, 2005" | what's the total number of episodes with a US air date of january 15, 2005? | CREATE TABLE table_1231892_4 (production_code VARCHAR, us_air_date VARCHAR) |
SELECT deaths FROM table_2930244_4 WHERE number_of_hurricanes = 10 AND number_of_major_hurricanes = 1 | How many deaths did the year with 10 hurricanes and exactly 1 major hurricane have? | CREATE TABLE table_2930244_4 (deaths VARCHAR, number_of_hurricanes VARCHAR, number_of_major_hurricanes VARCHAR) |
SELECT swimsuit FROM table_17088705_2 WHERE interview = "9.366" | What are the swimsuit scores of participants with score 9.366 in interview | CREATE TABLE table_17088705_2 (swimsuit VARCHAR, interview VARCHAR) |
SELECT COUNT(*) FROM wrestler | How many wrestlers are there? | CREATE TABLE wrestler (Id VARCHAR) |
SELECT manner_of_departure FROM table_26914759_3 WHERE team = "Notts County" AND incoming_manager = "Martin Allen" | What was the manner of departure for notts county with an incoming manager of martin allen | CREATE TABLE table_26914759_3 (manner_of_departure VARCHAR, team VARCHAR, incoming_manager VARCHAR) |
SELECT SUM(winners) FROM table_name_38 WHERE runners_up > 0 | When the Runners-Up is larger than 0, what's the sum of winners? | CREATE TABLE table_name_38 (winners INTEGER, runners_up INTEGER) |
SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id JOIN order_items AS T3 ON T2.order_id = T3.order_id GROUP BY T1.customer_id HAVING COUNT(DISTINCT T3.product_id) >= 3 | Find the names of customers who have bought by at least three distinct products. | CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR) |
SELECT fcc_info FROM table_name_65 WHERE city_of_license = "burley, idaho" AND frequency_mhz = 89.5 | Which FCC info has a City of license of burley, idaho, and a Frequency MHz of 89.5? | CREATE TABLE table_name_65 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR) |
SELECT local_board FROM table_name_98 WHERE name = "clendon teen parent unit" | Which local board does the Clendon Teen Parent Unit belong to? | CREATE TABLE table_name_98 (local_board VARCHAR, name VARCHAR) |
SELECT english_title FROM table_name_79 WHERE original_title = "возвращение / vozvrashcheniye" | Original title of возвращение / vozvrashcheniye had what English title? | CREATE TABLE table_name_79 (english_title VARCHAR, original_title VARCHAR) |
SELECT week FROM table_name_76 WHERE date = "october 17, 2004" | Which week was the October 17, 2004 game played? | CREATE TABLE table_name_76 (week VARCHAR, date VARCHAR) |
SELECT silver FROM table_name_35 WHERE year = 1962 | WHAT IS THE SILVER WITH A YEAR OF 1962? | CREATE TABLE table_name_35 (silver VARCHAR, year VARCHAR) |
SELECT attendance FROM table_name_66 WHERE date = "december 11, 1966" | What was the attendance at the game on December 11, 1966? | CREATE TABLE table_name_66 (attendance VARCHAR, date VARCHAR) |
SELECT school FROM table_name_75 WHERE conference_joined = "northeast corner" AND mascot = "blazers" | Which school has a mascot of the Blazers and in the Northeast Corner conference? | CREATE TABLE table_name_75 (school VARCHAR, conference_joined VARCHAR, mascot VARCHAR) |
SELECT name FROM table_12834315_5 WHERE barrel_profile = "A2" | What models have an a2 barrel profile? | CREATE TABLE table_12834315_5 (name VARCHAR, barrel_profile VARCHAR) |
SELECT AVG(points) FROM table_name_98 WHERE position > 6 AND lost < 13 | Which Points have a Position larger than 6, and a Lost smaller than 13? | CREATE TABLE table_name_98 (points INTEGER, position VARCHAR, lost VARCHAR) |
SELECT SUM(total__kg_) FROM table_name_26 WHERE snatch < 110 AND clean_ & _jerk > 120 | What is the sum Total (kg) associated with a Snatch less than 110, and a Clean & jerk larger than 120? | CREATE TABLE table_name_26 (total__kg_ INTEGER, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR) |
SELECT COUNT(*) FROM Flight | How many flights do we have? | CREATE TABLE Flight (Id VARCHAR) |
SELECT result FROM table_name_49 WHERE record = "58–11" | What was the result with a record of 58–11? | CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR) |
SELECT rank FROM table_name_45 WHERE third_quarter = "china mobile 195,680.4" | When the third quarter is China Mobile 195,680.4, what is the rank? | CREATE TABLE table_name_45 (rank VARCHAR, third_quarter VARCHAR) |
SELECT bronze FROM table_name_25 WHERE silver = 1 | Name the bronze when silver is 1 | CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR) |
SELECT class_aA FROM table_name_88 WHERE class_a = "anton" AND class_aAA = burnet | If the Class A is Anton and Class AAA is Burnet, what is Class AA? | CREATE TABLE table_name_88 (class_aA VARCHAR, class_a VARCHAR, class_aAA VARCHAR, burnet VARCHAR) |
SELECT wickets FROM table_name_77 WHERE runs < 7531 AND matches > 44 AND average = 22.17 | How many wickets have runs under 7531, matches over 44, and an average of 22.17? | CREATE TABLE table_name_77 (wickets VARCHAR, average VARCHAR, runs VARCHAR, matches VARCHAR) |
SELECT guest_4 FROM table_20466963_13 WHERE date = "8 December" | Name the guest 4 for 8 december | CREATE TABLE table_20466963_13 (guest_4 VARCHAR, date VARCHAR) |
SELECT 2009 FROM table_name_60 WHERE 2010 = "q1" | What is the 2009 value with q1 in 2010? | CREATE TABLE table_name_60 (Id VARCHAR) |
SELECT AVG(attendance) FROM table_name_31 WHERE date = "10 november 2004" | What was the attendance on 10 november 2004? | CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR) |
SELECT date FROM table_name_90 WHERE opponent = "real juventud" | what is the date when the opponent is real juventud? | CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR) |
SELECT occupation FROM table_name_71 WHERE rank = "5th" AND gender = "m" AND residence = "orono" | Which Occupation has a Rank of 5th, a Gender of M, with a Residence of orono? | CREATE TABLE table_name_71 (occupation VARCHAR, residence VARCHAR, rank VARCHAR, gender VARCHAR) |
SELECT written_by FROM table_19417244_2 WHERE us_viewers__millions_ = "14.39" | who write the episode that have 14.39 million viewers | CREATE TABLE table_19417244_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR) |
SELECT time FROM table_name_38 WHERE score = "80-34" | What is the Time with a Score that is 80-34? | CREATE TABLE table_name_38 (time VARCHAR, score VARCHAR) |
SELECT MAX(total) FROM table_name_74 WHERE rank = 6 AND bronze = 2 AND gold > 0 | Which is the highest total at rank 6, bronze 2, and gold larger than 0? | CREATE TABLE table_name_74 (total INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR) |
SELECT away_team FROM table_name_35 WHERE venue = "kardinia park" | Which away team played at Kardinia Park? | CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR) |
SELECT winner FROM table_name_81 WHERE runner_up = "mark fuller" | Who is the winner when mark fuller was the runner-up? | CREATE TABLE table_name_81 (winner VARCHAR, runner_up VARCHAR) |
SELECT AVG(game) FROM table_name_30 WHERE team = "@ boston" | Can you tell me the average Game that has the Team of @ boston? | CREATE TABLE table_name_30 (game INTEGER, team VARCHAR) |
SELECT SUM(crowd) FROM table_name_88 WHERE venue = "junction oval" | How many were in the crowd when there was a game at Junction Oval? | CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR) |
SELECT station FROM table_name_73 WHERE zone_2008 = "8" AND zone_2007 = "outside zones" AND services = "london overground" | Which Station has a Zone 2008 of 8, and a Zone 2007 of outside zones, and Services of london overground? | CREATE TABLE table_name_73 (station VARCHAR, services VARCHAR, zone_2008 VARCHAR, zone_2007 VARCHAR) |
SELECT COUNT(gp_gs) FROM table_name_41 WHERE effic = "121.70" AND avg_g < 218.7 | How many gp-gs have 121.70 as an effic and an avg/g less than 218.7? | CREATE TABLE table_name_41 (gp_gs VARCHAR, effic VARCHAR, avg_g VARCHAR) |
SELECT mon_22_aug FROM table_30058355_3 WHERE wed_24_aug = "22' 50.05 99.141mph" | What is every entry on Monday August 22 when the entry for Wednesday August 24 is 22' 50.05 99.141mph? | CREATE TABLE table_30058355_3 (mon_22_aug VARCHAR, wed_24_aug VARCHAR) |
SELECT general_classification FROM table_name_51 WHERE winner = "guido bontempi" AND stage = "6" | What is guido bontempi's general classification when he has a stage of 6? | CREATE TABLE table_name_51 (general_classification VARCHAR, winner VARCHAR, stage VARCHAR) |
SELECT home FROM table_name_76 WHERE score = "52-54" | Who has the Home Score of 52-54? | CREATE TABLE table_name_76 (home VARCHAR, score VARCHAR) |
SELECT college FROM table_15592941_1 WHERE player_name = "Jeremy Zuttah" | What college did jeremy zuttah attend? | CREATE TABLE table_15592941_1 (college VARCHAR, player_name VARCHAR) |
SELECT T2.Name FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Investor <> "Rachel Elnaugh" | What are the names of entrepreneurs whose investor is not "Rachel Elnaugh"? | CREATE TABLE entrepreneur (People_ID VARCHAR, Investor VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) |
SELECT circuit FROM table_12186237_1 WHERE date = "4 May" | What circuit was on the date 4 May? | CREATE TABLE table_12186237_1 (circuit VARCHAR, date VARCHAR) |
SELECT date FROM table_name_23 WHERE surface = "clay" AND score = "6–1, 6–4" | What day was the surface clay and the score 6–1, 6–4? | CREATE TABLE table_name_23 (date VARCHAR, surface VARCHAR, score VARCHAR) |
SELECT derivatives FROM table_name_57 WHERE launch_date = "july 15, 1970; 15:05 gmt" | Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt? | CREATE TABLE table_name_57 (derivatives VARCHAR, launch_date VARCHAR) |
SELECT MAX(losses) FROM table_name_52 WHERE against > 1427 AND wins > 5 | What was the greatest number of Losses for the team that had 1427 Against and more than 5 Wins? | CREATE TABLE table_name_52 (losses INTEGER, against VARCHAR, wins VARCHAR) |
SELECT MIN(televotes) FROM table_name_54 WHERE performer = "monika sokolovska" AND rank > 15 | Name the lowest Televotes which has monika sokolovska and a Rank larger than 15? | CREATE TABLE table_name_54 (televotes INTEGER, performer VARCHAR, rank VARCHAR) |
SELECT record FROM table_name_41 WHERE res = "loss" AND event = "hero's 3" | Which record has a result of loss in the Hero's 3 event? | CREATE TABLE table_name_41 (record VARCHAR, res VARCHAR, event VARCHAR) |
SELECT club FROM table_name_87 WHERE points_difference = "-24" | What club had a points difference of -24? | CREATE TABLE table_name_87 (club VARCHAR, points_difference VARCHAR) |
SELECT per_capita_income FROM table_name_12 WHERE county = "washington" | What is the per capital income for Washington county? | CREATE TABLE table_name_12 (per_capita_income VARCHAR, county VARCHAR) |
SELECT district FROM table_name_9 WHERE city_area_km_2__ < 12 AND serial_no = 35 | What district was the city with an area smaller than 12 square kilometers and a serial number of 35? | CREATE TABLE table_name_9 (district VARCHAR, city_area_km_2__ VARCHAR, serial_no VARCHAR) |
SELECT MIN(viewers__millions_) FROM table_name_74 WHERE rating / SHARE(18 AS –49) = 1.1 / 3 AND episode__number < 5 | What is the lowest number of million viewers for an episode before episode 5 with a rating/share of 1.1/3? | CREATE TABLE table_name_74 (viewers__millions_ INTEGER, episode__number VARCHAR, rating VARCHAR) |
SELECT lastname FROM list WHERE classroom = 111 | Find the last names of students studying in room 111. | CREATE TABLE list (lastname VARCHAR, classroom VARCHAR) |
SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = "Otto Passman (D) Unopposed" | What year was Otto Passman (d) unopposed first elected? | CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR) |
SELECT district FROM table_name_4 WHERE first_elected = "1900" | when first elected was 1900 what was the district? | CREATE TABLE table_name_4 (district VARCHAR, first_elected VARCHAR) |
SELECT gameplan FROM table_name_71 WHERE actor_in_original_production = "jacqueline king" | Who is the GamePlan when Jacqueline King is the actor in the original production? | CREATE TABLE table_name_71 (gameplan VARCHAR, actor_in_original_production VARCHAR) |
SELECT position FROM table_name_61 WHERE country = "canada" AND pick = "8" | What position was picked for Canada on Pick 8? | CREATE TABLE table_name_61 (position VARCHAR, country VARCHAR, pick VARCHAR) |
SELECT date FROM table_name_87 WHERE week > 5 AND opponent = "houston oilers" | What was the date of the game after week 5 against the Houston Oilers? | CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR, opponent VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.