answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT the_mole FROM table_13036251_1 WHERE winner = "Frédérique Huydts"
what's the mole with winner being frédérique huydts
CREATE TABLE table_13036251_1 (the_mole VARCHAR, winner VARCHAR)
SELECT district FROM table_1342233_24 WHERE incumbent = "Jamie L. Whitten"
Which district is jamie l. whitten from?
CREATE TABLE table_1342233_24 (district VARCHAR, incumbent VARCHAR)
SELECT order_id, customer_id FROM customer_orders WHERE order_status_code = "Cancelled" ORDER BY order_date
List the order id, customer id for orders in Cancelled status, ordered by their order dates.
CREATE TABLE customer_orders (order_id VARCHAR, customer_id VARCHAR, order_status_code VARCHAR, order_date VARCHAR)
SELECT location FROM table_name_13 WHERE method = "decision draw" AND round < 5
Where was the decision draw before round 5?
CREATE TABLE table_name_13 (location VARCHAR, method VARCHAR, round VARCHAR)
SELECT AVG(attendance) FROM table_name_6 WHERE date = "july 2"
What is the usual attendance for july 2?
CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)
SELECT under_13 FROM table_26368963_1 WHERE year = 2009
In the year 2009 who was the under-13?
CREATE TABLE table_26368963_1 (under_13 VARCHAR, year VARCHAR)
SELECT record FROM table_name_63 WHERE home = "chicago"
What was the record when chicago was the home team?
CREATE TABLE table_name_63 (record VARCHAR, home VARCHAR)
SELECT COUNT(interregnum_ended) FROM table_11071897_1 WHERE duration = "3 months, 6 days"
What is the number of interregnum for duration 3 months, 6 days?
CREATE TABLE table_11071897_1 (interregnum_ended VARCHAR, duration VARCHAR)
SELECT high_rebounds FROM table_name_68 WHERE team = "charlotte"
What is the High rebounds with a Team that is charlotte?
CREATE TABLE table_name_68 (high_rebounds VARCHAR, team VARCHAR)
SELECT opponent FROM table_name_34 WHERE game < 47 AND record = "24-13-4"
Who was the opponent for game number less than 47 and a record of 24-13-4?
CREATE TABLE table_name_34 (opponent VARCHAR, game VARCHAR, record VARCHAR)
SELECT end_address FROM table_name_61 WHERE class = "class e (reserved)"
What is the end address for the Class E (Reserved)?
CREATE TABLE table_name_61 (end_address VARCHAR, class VARCHAR)
SELECT height FROM table_name_28 WHERE school = "nacogdoches high school"
How tall is the player from Nacogdoches High School?
CREATE TABLE table_name_28 (height VARCHAR, school VARCHAR)
SELECT date FROM table_21091157_1 WHERE game = 8
Name the date for game 8
CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR)
SELECT school FROM table_name_50 WHERE college_hall_of_fame = "nevers hof profile"
What is the school of the player with a college hall of fame nevers hof profile?
CREATE TABLE table_name_50 (school VARCHAR, college_hall_of_fame VARCHAR)
SELECT pole_position FROM table_name_2 WHERE date = "7 august"
Who had the pole position on 7 August?
CREATE TABLE table_name_2 (pole_position VARCHAR, date VARCHAR)
SELECT MIN(silver) FROM table_name_95 WHERE nation = "iceland" AND total < 87
What is the lowest amount of silver medals Iceland, who has less than 87 medals, has?
CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT AVG(age_at_appointment) FROM table_name_58 WHERE portfolio_attachment = "security"
What is the average age at appointment of those attached to security?
CREATE TABLE table_name_58 (age_at_appointment INTEGER, portfolio_attachment VARCHAR)
SELECT first_name FROM customer WHERE NOT customer_id IN (SELECT customer_id FROM rental WHERE rental_date > '2005-08-23 02:06:01')
What are the first names of customers who have not rented any films after '2005-08-23 02:06:01'?
CREATE TABLE customer (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER); CREATE TABLE rental (first_name VARCHAR, customer_id VARCHAR, rental_date INTEGER)
SELECT power FROM table_name_91 WHERE year = "1935-45"
Tell me the power for 1935-45
CREATE TABLE table_name_91 (power VARCHAR, year VARCHAR)
SELECT MAX(total) FROM table_name_12 WHERE country = "scotland" AND year_s__won = 1985
What is the highest total for Scotland with a year won of 1985?
CREATE TABLE table_name_12 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
SELECT attendance FROM table_name_13 WHERE week = 6
What was the attendance in week 6?
CREATE TABLE table_name_13 (attendance VARCHAR, week VARCHAR)
SELECT AVG(administrative_panel) FROM table_name_36 WHERE nominated_by_the_taoiseach = 0 AND total < 4
What is the average administrative panel of the composition nominated by Taoiseach 0 times with a total less than 4?
CREATE TABLE table_name_36 (administrative_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)
SELECT order__number FROM table_21501511_1 WHERE week__number = "Top 11"
What order did Lambert perform in the top 11?
CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR)
SELECT COUNT(public) FROM table_26375386_23 WHERE vote_percentage = "22.9%"
What is the number of public that was there when the vote percentage was 22.9%?
CREATE TABLE table_26375386_23 (public VARCHAR, vote_percentage VARCHAR)
SELECT player FROM table_24912693_4 WHERE blocks = 17
Which player has 17 blocks?
CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)
SELECT wickets FROM table_16570286_4 WHERE average = "22.66"
How many wickets were there when average was 22.66?
CREATE TABLE table_16570286_4 (wickets VARCHAR, average VARCHAR)
SELECT score FROM table_17355408_7 WHERE team = "@ Orlando"
What was the final score for @ Orlando?
CREATE TABLE table_17355408_7 (score VARCHAR, team VARCHAR)
SELECT MAX(rank) FROM table_name_97 WHERE country = "israel"
What is the rank of Israel?
CREATE TABLE table_name_97 (rank INTEGER, country VARCHAR)
SELECT driver FROM table_name_58 WHERE grid < 14 AND laps < 53 AND time_retired = "collision" AND constructor = "ferrari"
What is the name of the driver with a grid less than 14, laps smaller than 53 and a Time/Retired of collision, and a Constructor of ferrari?
CREATE TABLE table_name_58 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT tries_against FROM table_17941032_2 WHERE points_for = "150"
How many tries against were there with points of 150?
CREATE TABLE table_17941032_2 (tries_against VARCHAR, points_for VARCHAR)
SELECT year__ceremony_ FROM table_16255245_1 WHERE original_title = "Spiele Leben"
Name the year for spiele leben
CREATE TABLE table_16255245_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT district FROM table_1342233_6 WHERE result = "Re-elected" AND candidates = "Clarence F. Lea (D) Unopposed"
what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed
CREATE TABLE table_1342233_6 (district VARCHAR, result VARCHAR, candidates VARCHAR)
SELECT T2.document_type_name FROM All_documents AS T1 JOIN Ref_document_types AS T2 ON T1.document_type_code = T2.document_type_code WHERE T1.document_name = "How to read a book"
What is the document type name for the document with name "How to read a book"?
CREATE TABLE Ref_document_types (document_type_name VARCHAR, document_type_code VARCHAR); CREATE TABLE All_documents (document_type_code VARCHAR, document_name VARCHAR)
SELECT T1.name FROM constructors AS T1 JOIN constructorstandings AS T2 ON T1.constructorid = T2.constructorid WHERE T1.nationality = "Japanese" AND T2.points > 5
Find the names of Japanese constructors that have once earned more than 5 points?
CREATE TABLE constructorstandings (constructorid VARCHAR, points VARCHAR); CREATE TABLE constructors (name VARCHAR, constructorid VARCHAR, nationality VARCHAR)
SELECT MIN(points) FROM table_name_18 WHERE rank = "36th"
What is the lowest points for 36th rank?
CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR)
SELECT COUNT(title) FROM table_10718525_2 WHERE us_viewers__millions_ = "26.53"
How many titles got a viewership of 26.53 million?
CREATE TABLE table_10718525_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT outcome FROM table_name_74 WHERE partner = "dora djilianova" AND date = "october 1, 1995"
On October 1, 1995 with Dora Djilianova as a partner, what was the outcome of the match?
CREATE TABLE table_name_74 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
SELECT points FROM table_15467476_2 WHERE club = "Pontrhydyfen RFC"
Name the points for pontrhydyfen rfc
CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)
SELECT company_name FROM table_name_31 WHERE hardware_model = "nokia 700"
What company makes the Nokia 700?
CREATE TABLE table_name_31 (company_name VARCHAR, hardware_model VARCHAR)
SELECT nanquan FROM table_name_76 WHERE nandao > 9.49 AND rank = 4
Which Nanquan has a Nandao larger than 9.49, and a Rank of 4?
CREATE TABLE table_name_76 (nanquan VARCHAR, nandao VARCHAR, rank VARCHAR)
SELECT AVG(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Latin" OR T1.Name = "Pop"
What is the average duration in milliseconds of tracks that belong to Latin or Pop genre?
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
SELECT COUNT(circuit) FROM table_1140105_6 WHERE date = "22 April"
What is the total amount of circuts dated 22 april?
CREATE TABLE table_1140105_6 (circuit VARCHAR, date VARCHAR)
SELECT MIN(played) FROM table_name_57 WHERE blackpool < 0
Which Played is the lowest one that has a Blackpool smaller than 0?
CREATE TABLE table_name_57 (played INTEGER, blackpool INTEGER)
SELECT bronze FROM table_name_65 WHERE total > 7 AND silver = 3 AND games = "summer" AND gold = 5
Which Bronze has a Total larger than 7 and a Silver of 3, and a Games of summer, and a Gold of 5?
CREATE TABLE table_name_65 (bronze VARCHAR, gold VARCHAR, games VARCHAR, total VARCHAR, silver VARCHAR)
SELECT AVG(latitude) FROM table_name_18 WHERE diameter__km_ < 12.8 AND longitude < 208
What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208?
CREATE TABLE table_name_18 (latitude INTEGER, diameter__km_ VARCHAR, longitude VARCHAR)
SELECT MAX(ine_code) FROM table_300283_1 WHERE official_name = "Berantevilla"
What is the INE code of the municipality whose official name is Berantevilla?
CREATE TABLE table_300283_1 (ine_code INTEGER, official_name VARCHAR)
SELECT athlete FROM table_name_8 WHERE 224 = "xo" AND 220 = "o" AND 215 = "o"
Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o?
CREATE TABLE table_name_8 (athlete VARCHAR)
SELECT attendance FROM table_28211103_1 WHERE hawthorn_score = "18.15.123"
What is the attendance when the hawthorn score is 18.15.123?
CREATE TABLE table_28211103_1 (attendance VARCHAR, hawthorn_score VARCHAR)
SELECT COUNT(matches_played) FROM table_27708484_3 WHERE average_goals_scored_per_match = "1.25"
how many matches were played that average goals scored 1.25?
CREATE TABLE table_27708484_3 (matches_played VARCHAR, average_goals_scored_per_match VARCHAR)
SELECT national_final_co_host FROM table_name_85 WHERE national_final_main_host = "david jacobs" AND selection_show = "a song for europe" AND year_s_ = "1966"
What is the name of the national final co host when David Jacobs was the National final main host, and the selection show was a song for europe in 1966?
CREATE TABLE table_name_85 (national_final_co_host VARCHAR, year_s_ VARCHAR, national_final_main_host VARCHAR, selection_show VARCHAR)
SELECT common_name FROM table_15417439_1 WHERE accession_number = "XP_852505.1"
What kind of animal corresponds to the accession number xp_852505.1?
CREATE TABLE table_15417439_1 (common_name VARCHAR, accession_number VARCHAR)
SELECT COUNT(lites_2_race_one_winning_team) FROM table_26638600_3 WHERE lites_1_race_two_winning_team = "Gary Gibson"
How many different circuits had Gary Gibson has the Lites 1 race two winning team?
CREATE TABLE table_26638600_3 (lites_2_race_one_winning_team VARCHAR, lites_1_race_two_winning_team VARCHAR)
SELECT points_against FROM table_name_91 WHERE played = "22" AND points = "52" AND tries_against = "51"
Name the points against when tries against is 51 and points is 52 with played of 22
CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)
SELECT rank_on_channel FROM table_26493520_3 WHERE original_air_date = "January 21, 2011"
Name the rank on channel for january 21, 2011
CREATE TABLE table_26493520_3 (rank_on_channel VARCHAR, original_air_date VARCHAR)
SELECT comp_att FROM table_name_10 WHERE avg_g = "36.5"
What is the completion/attempts value for the year with an average per game of 36.5?
CREATE TABLE table_name_10 (comp_att VARCHAR, avg_g VARCHAR)
SELECT h___a FROM table_name_34 WHERE round = "round 2"
what is the h/a round of round 2
CREATE TABLE table_name_34 (h___a VARCHAR, round VARCHAR)
SELECT team FROM table_29261823_10 WHERE aggregate_score = "L 1–2"
what is the name of the team which aggregate score is l 1–2
CREATE TABLE table_29261823_10 (team VARCHAR, aggregate_score VARCHAR)
SELECT date FROM table_name_75 WHERE against < 6 AND venue = "durban"
What is date when against is smaller than 6 and location was durban?
CREATE TABLE table_name_75 (date VARCHAR, against VARCHAR, venue VARCHAR)
SELECT frequency FROM table_name_15 WHERE socket = "socket 370" AND model_number = "c3 1.4a"
Which Frequency has a Socket of socket 370, and a Model Number of c3 1.4a?
CREATE TABLE table_name_15 (frequency VARCHAR, socket VARCHAR, model_number VARCHAR)
SELECT result FROM table_name_93 WHERE guest = "fc zürich (asl)"
What was the result when the guest was fc zürich (asl)?
CREATE TABLE table_name_93 (result VARCHAR, guest VARCHAR)
SELECT MAX(total) FROM table_name_57 WHERE bronze > 1 AND gold > 0
Which Total has a Bronze larger than 1, and a Gold larger than 0?
CREATE TABLE table_name_57 (total INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT broadcast_date FROM table_name_39 WHERE viewership__millions_ = 9.65
What is the broadcast date of the episode with 9.65 million viewers?
CREATE TABLE table_name_39 (broadcast_date VARCHAR, viewership__millions_ VARCHAR)
SELECT polling_organisation_client FROM table_name_5 WHERE others = "7%"
When the others had a value of 7%, what was the Polling organisation/client?
CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)
SELECT COUNT(*) FROM (SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' UNION SELECT * FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_loser = T2.team_id_br WHERE T2.name = 'Boston Red Stockings')
What is the total number of postseason games that team Boston Red Stockings participated in?
CREATE TABLE postseason (team_id_winner VARCHAR, team_id_loser VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)
SELECT city FROM branch WHERE open_year = 2001 AND membership_amount > 100
Show all city with a branch opened in 2001 and a branch with more than 100 membership.
CREATE TABLE branch (city VARCHAR, open_year VARCHAR, membership_amount VARCHAR)
SELECT AVG(floors) FROM table_name_76 WHERE street_address = "170 fourth avenue north"
What is the average number of floors at 170 Fourth Avenue North?
CREATE TABLE table_name_76 (floors INTEGER, street_address VARCHAR)
SELECT 3 AS rd_run FROM table_name_55 WHERE rank = 8
Which 3rd run has rank of 8?
CREATE TABLE table_name_55 (rank VARCHAR)
SELECT COUNT(change_in_population_since_1993) FROM table_2637317_1 WHERE _percentage_of_countrys_population = "4.2"
What is the change in population since 1993 in the region where the % of country's population was 4.2?
CREATE TABLE table_2637317_1 (change_in_population_since_1993 VARCHAR, _percentage_of_countrys_population VARCHAR)
SELECT qual_2 FROM table_name_55 WHERE qual_1 = "1:01.630"
What was the qualifying 2 time for the team with a qualifying 1 time of 1:01.630?
CREATE TABLE table_name_55 (qual_2 VARCHAR, qual_1 VARCHAR)
SELECT COUNT(position) FROM table_name_17 WHERE drawn = 0 AND points > 22 AND played > 14
What is the total position with a drawn of 0 and greater than 22 points and a greater than 14 played?
CREATE TABLE table_name_17 (position VARCHAR, played VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT high_rebounds FROM table_27715173_12 WHERE game = 1
Who was the high rebounder on game 1?
CREATE TABLE table_27715173_12 (high_rebounds VARCHAR, game VARCHAR)
SELECT loss FROM table_name_23 WHERE record = "71-81"
Name the loss for record of 71-81
CREATE TABLE table_name_23 (loss VARCHAR, record VARCHAR)
SELECT house FROM table_name_60 WHERE abbr = "g"
Which house has an abbreviation of G?
CREATE TABLE table_name_60 (house VARCHAR, abbr VARCHAR)
SELECT world_record FROM table_23988726_2 WHERE "saif_saaeed_shaheen___qat__" = "saif_saaeed_shaheen___qat__"
When saif saaeed shaheen (qat) is the saif saaeed shaheen ( qat ) what is the world record?
CREATE TABLE table_23988726_2 (world_record VARCHAR)
SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz"
What episode number was written by Gregg Hurwitz?
CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR)
SELECT town FROM table_2803662_3 WHERE tournament = "Grand Prix De SAR La Princesse Lalla Meryem"
When grand prix de sar la princesse lalla meryem is the tournament what is the town?
CREATE TABLE table_2803662_3 (town VARCHAR, tournament VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE venue = "western oval"
What did the home team score at Western Oval?
CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
SELECT 2006 FROM table_name_98 WHERE 2007 = "a"
Which 2006 has a 2007 of A?
CREATE TABLE table_name_98 (Id VARCHAR)
SELECT shirt_sponsor FROM table_name_48 WHERE kitmaker = "puma" AND head_coach = "andre schubert"
Who is the shirt sponsor for the team with a head coach of andre schubert and a kitmaker of puma?
CREATE TABLE table_name_48 (shirt_sponsor VARCHAR, kitmaker VARCHAR, head_coach VARCHAR)
SELECT runner_s__up FROM table_name_78 WHERE margin_of_victory = "3 strokes" AND winning_score = –13(68 - 70 - 66 - 71 = 275)
Which runner(s)-up had a Winning score of –13 (68-70-66-71=275) and a Margin of victory of 3 strokes?
CREATE TABLE table_name_78 (runner_s__up VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT flag FROM table_19872699_1 WHERE builder = "Green Marine"
Which flag was on the Green Marine's boat?
CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR)
SELECT MIN(population) FROM table_27003223_4 WHERE democratic = "28.0%"
What is the lowest population in which 28.0% are democrat?
CREATE TABLE table_27003223_4 (population INTEGER, democratic VARCHAR)
SELECT institution FROM table_name_48 WHERE location = "big rapids, michigan"
what is the institution when the location is big rapids, michigan?
CREATE TABLE table_name_48 (institution VARCHAR, location VARCHAR)
SELECT purpose FROM table_name_54 WHERE name = "quay"
What was the purpose of the Quay test blast?
CREATE TABLE table_name_54 (purpose VARCHAR, name VARCHAR)
SELECT college FROM table_name_69 WHERE player = "perry ellis"
What was the College of Player Perry Ellis?
CREATE TABLE table_name_69 (college VARCHAR, player VARCHAR)
SELECT location_attendance FROM table_name_4 WHERE record = "35-28"
What is the location/ attendance for a 35-28 record?
CREATE TABLE table_name_4 (location_attendance VARCHAR, record VARCHAR)
SELECT DISTINCT Visit_Date FROM VISITS
What are the distinct visit dates?
CREATE TABLE VISITS (Visit_Date VARCHAR)
SELECT season FROM table_name_6 WHERE position = "guard" AND school_club_team = "perpetual help"
What season was School/Club Team perpetual help in the guard position?
CREATE TABLE table_name_6 (season VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT first_elected FROM table_1341672_14 WHERE incumbent = "Abner J. Mikva"
Name the first elected for abner j. mikva
CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)
SELECT position FROM table_name_13 WHERE round = 1
What is round 1's position?
CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR)
SELECT hometown FROM table_14624447_39 WHERE name = "Ventrell Jenkins"
Name the hometown for ventrell jenkins
CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)
SELECT name FROM table_name_20 WHERE birth = "29 september 1766"
Who is born on 29 September 1766?
CREATE TABLE table_name_20 (name VARCHAR, birth VARCHAR)
SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = "BGS" AND u15_1st_iv = "ACGS" AND open_1st_viii = "ACGS"
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs
CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR)
SELECT country FROM table_name_99 WHERE place = "t3" AND score = 71 - 76 - 71 = 218
What is the Country with the T3 Place Player with a Score of 71-76-71=218?
CREATE TABLE table_name_99 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT nationality FROM table_1213511_7 WHERE pick__number = 89
What nationality is pick # 89
CREATE TABLE table_1213511_7 (nationality VARCHAR, pick__number VARCHAR)
SELECT game_4 FROM table_name_8 WHERE position = "wing" AND game_1 = "michael o'connor"
For which Game 4 did Michael O'Connor play wing position?
CREATE TABLE table_name_8 (game_4 VARCHAR, position VARCHAR, game_1 VARCHAR)
SELECT points_against FROM table_name_93 WHERE tries_against = "77" AND lost = "16"
What point against has tries against of 77, and a lost of 16?
CREATE TABLE table_name_93 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR)
SELECT venue FROM table_name_90 WHERE state = "connecticut"
What venue is in the state of Connecticut?
CREATE TABLE table_name_90 (venue VARCHAR, state VARCHAR)
SELECT MAX(Ends) AS lost FROM table_26912584_2
What is the largest amount of ends lost?
CREATE TABLE table_26912584_2 (Ends INTEGER)
SELECT 1 AS st_member FROM table_name_51 WHERE election = "1832"
which 1st Member has a Election of 1832
CREATE TABLE table_name_51 (election VARCHAR)