combined_text
stringlengths 106
1.05k
|
---|
###question:What is the traditional way to write the name of the district who's area is 2331?###answer:SELECT traditional FROM table_1300525_1 WHERE area = 2331###context:CREATE TABLE table_1300525_1 (traditional VARCHAR, area VARCHAR) |
###question:What is the capital of the district who's simplified name is 信州区?###answer:SELECT COUNT(pinyin) FROM table_1300525_1 WHERE simplified = "信州区"###context:CREATE TABLE table_1300525_1 (pinyin VARCHAR, simplified VARCHAR) |
###question:How many people live in the district who's capital is héngfēng xiàn?###answer:SELECT population FROM table_1300525_1 WHERE pinyin = "Héngfēng Xiàn"###context:CREATE TABLE table_1300525_1 (population VARCHAR, pinyin VARCHAR) |
###question:What is the density of yushan county?###answer:SELECT COUNT(density) FROM table_1300525_1 WHERE english_name = "Yushan County"###context:CREATE TABLE table_1300525_1 (density VARCHAR, english_name VARCHAR) |
###question:How many gold medals does the Choctawhatchee High School have?###answer:SELECT MAX(gold_medals) FROM table_1305623_12 WHERE ensemble = "Choctawhatchee High School"###context:CREATE TABLE table_1305623_12 (gold_medals INTEGER, ensemble VARCHAR) |
###question:How many gold medals does each school who has a total of 1 medal have?###answer:SELECT gold_medals FROM table_1305623_12 WHERE total_medals = 1###context:CREATE TABLE table_1305623_12 (gold_medals VARCHAR, total_medals VARCHAR) |
###question:What is the time for stage ss18?###answer:SELECT time FROM table_13050822_2 WHERE stage = "SS18"###context:CREATE TABLE table_13050822_2 (time VARCHAR, stage VARCHAR) |
###question:Name the length for stage ss22###answer:SELECT length FROM table_13050822_2 WHERE stage = "SS22"###context:CREATE TABLE table_13050822_2 (length VARCHAR, stage VARCHAR) |
###question:What is the number of leg for ss17###answer:SELECT COUNT(leg) FROM table_13050822_2 WHERE stage = "SS17"###context:CREATE TABLE table_13050822_2 (leg VARCHAR, stage VARCHAR) |
###question:What is the leg for c. atkinson###answer:SELECT leg FROM table_13050822_2 WHERE rally_leader = "C. Atkinson"###context:CREATE TABLE table_13050822_2 (leg VARCHAR, rally_leader VARCHAR) |
###question:What's the smallest number of bronze medals that any one if the ensembles has? ###answer:SELECT MIN(bronze_medals) FROM table_1305623_6###context:CREATE TABLE table_1305623_6 (bronze_medals INTEGER) |
###question:What is the rev of the 2003-2004 Mustang Cobra?###answer:SELECT rev FROM table_1310499_1 WHERE application = "2003-2004 Mustang Cobra"###context:CREATE TABLE table_1310499_1 (rev VARCHAR, application VARCHAR) |
###question:What is the rev for all of the Aston Martin applications?###answer:SELECT rev FROM table_1310499_1 WHERE application = "Aston Martin"###context:CREATE TABLE table_1310499_1 (rev VARCHAR, application VARCHAR) |
###question:What is the 3rd ratio for tag number 1386-000-017 and input splines of 26?###answer:SELECT 3 AS rd FROM table_1310499_1 WHERE input_splines = 26 AND tag_id = "1386-000-017"###context:CREATE TABLE table_1310499_1 (input_splines VARCHAR, tag_id VARCHAR) |
###question:What is the 2nd ratio of 1996-2002 Dodge Viper?###answer:SELECT 2 AS nd FROM table_1310499_1 WHERE application = "1996-2002 Dodge Viper"###context:CREATE TABLE table_1310499_1 (application VARCHAR) |
###question:Whose address of operation was the Echirax Concession? ###answer:SELECT client FROM table_13150274_1 WHERE area_of_operation = "EchiraX Concession"###context:CREATE TABLE table_13150274_1 (client VARCHAR, area_of_operation VARCHAR) |
###question:When was the operation in Field 103 executed? ###answer:SELECT years_of_operation FROM table_13150274_1 WHERE area_of_operation = "Field 103"###context:CREATE TABLE table_13150274_1 (years_of_operation VARCHAR, area_of_operation VARCHAR) |
###question:In what country is the El Hamada area of operation? ###answer:SELECT country FROM table_13150274_1 WHERE area_of_operation = "El Hamada"###context:CREATE TABLE table_13150274_1 (country VARCHAR, area_of_operation VARCHAR) |
###question:What is the total number for 3rd place for ducati xerox?###answer:SELECT COUNT(3 AS rd_pl) FROM table_13196576_2 WHERE team = "Ducati Xerox"###context:CREATE TABLE table_13196576_2 (team VARCHAR) |
###question:Who is J.E. Armstrong when W.H. Archer is D.M. Lawson?###answer:SELECT je_armstrong FROM table_1320857_1 WHERE wh_archer = "D.M. Lawson"###context:CREATE TABLE table_1320857_1 (je_armstrong VARCHAR, wh_archer VARCHAR) |
###question:What are the fa.brill when w.h. archer is known as r. newman?###answer:SELECT fa_brill FROM table_1320857_1 WHERE wh_archer = "R. Newman"###context:CREATE TABLE table_1320857_1 (fa_brill VARCHAR, wh_archer VARCHAR) |
###question:Who is h.l birkett if w.h. archer is r. cochrane?###answer:SELECT hl_birkett FROM table_1320857_1 WHERE wh_archer = "R. Cochrane"###context:CREATE TABLE table_1320857_1 (hl_birkett VARCHAR, wh_archer VARCHAR) |
###question:Who is h.t. brewer when j.e. armstrong is a.j. wilson?###answer:SELECT ht_brewer FROM table_1320857_1 WHERE je_armstrong = "A.J. Wilson"###context:CREATE TABLE table_1320857_1 (ht_brewer VARCHAR, je_armstrong VARCHAR) |
###question:Who is h.t. brewer when je armstrong is c.p. greeks?###answer:SELECT ht_brewer FROM table_1320857_1 WHERE je_armstrong = "C.P. Greeks"###context:CREATE TABLE table_1320857_1 (ht_brewer VARCHAR, je_armstrong VARCHAR) |
###question:What was the air date of part 2 of the episode whose part 1 was aired on January 31, 2008?###answer:SELECT part_2 FROM table_13241993_3 WHERE part_1 = "January 31, 2008"###context:CREATE TABLE table_13241993_3 (part_2 VARCHAR, part_1 VARCHAR) |
###question:What's the name of the episode whose part 3 aired on February 7, 2008?###answer:SELECT title FROM table_13241993_3 WHERE part_3 = "February 7, 2008"###context:CREATE TABLE table_13241993_3 (title VARCHAR, part_3 VARCHAR) |
###question:What's the air date of part 1 of the episode whose part 2 aired on December 2, 2007?###answer:SELECT part_1 FROM table_13241993_3 WHERE part_2 = "December 2, 2007"###context:CREATE TABLE table_13241993_3 (part_1 VARCHAR, part_2 VARCHAR) |
###question:How many part 6 parts are there in the episode number 5?###answer:SELECT COUNT(part_6) FROM table_13241993_3 WHERE episode__number = 5###context:CREATE TABLE table_13241993_3 (part_6 VARCHAR, episode__number VARCHAR) |
###question:Name the record with opponent atlanta falcons###answer:SELECT record FROM table_13258823_2 WHERE opponent = "Atlanta Falcons"###context:CREATE TABLE table_13258823_2 (record VARCHAR, opponent VARCHAR) |
###question:Name the number of opponent with arrowhead stadium###answer:SELECT COUNT(opponent) FROM table_13258823_2 WHERE game_site = "Arrowhead Stadium"###context:CREATE TABLE table_13258823_2 (opponent VARCHAR, game_site VARCHAR) |
###question:Name the date with the record of 1-0###answer:SELECT date FROM table_13258823_2 WHERE record = "1-0"###context:CREATE TABLE table_13258823_2 (date VARCHAR, record VARCHAR) |
###question:Name the record for september 15, 1985###answer:SELECT record FROM table_13258823_2 WHERE date = "September 15, 1985"###context:CREATE TABLE table_13258823_2 (record VARCHAR, date VARCHAR) |
###question:What's the series number of the episode that's written by Elizabeth Devine?###answer:SELECT MIN(no_in_series) FROM table_13273629_2 WHERE written_by = "Elizabeth Devine"###context:CREATE TABLE table_13273629_2 (no_in_series INTEGER, written_by VARCHAR) |
###question:When was the episode directed by Carey Meyer aired for the first time?###answer:SELECT original_air_date FROM table_13273629_2 WHERE directed_by = "Carey Meyer"###context:CREATE TABLE table_13273629_2 (original_air_date VARCHAR, directed_by VARCHAR) |
###question:who is the the office with incumbent being ramon r. jimenez, jr.###answer:SELECT office FROM table_1331313_1 WHERE incumbent = "Ramon R. Jimenez, Jr."###context:CREATE TABLE table_1331313_1 (office VARCHAR, incumbent VARCHAR) |
###question: how many office with department being department of justice kagawaran ng katarungan###answer:SELECT COUNT(office) FROM table_1331313_1 WHERE department = "department of Justice Kagawaran ng Katarungan"###context:CREATE TABLE table_1331313_1 (office VARCHAR, department VARCHAR) |
###question:what's the department with acronym being deped (ked)###answer:SELECT department FROM table_1331313_1 WHERE acronym = "DepEd (KEd)"###context:CREATE TABLE table_1331313_1 (department VARCHAR, acronym VARCHAR) |
###question:what's the department with incumbent being enrique ona###answer:SELECT department FROM table_1331313_1 WHERE incumbent = "Enrique Ona"###context:CREATE TABLE table_1331313_1 (department VARCHAR, incumbent VARCHAR) |
###question:what's the acronym with department being department of finance kagawaran ng pananalapi###answer:SELECT acronym FROM table_1331313_1 WHERE department = "department of Finance Kagawaran ng Pananalapi"###context:CREATE TABLE table_1331313_1 (acronym VARCHAR, department VARCHAR) |
###question:What's the season number of the episode watched by 0.57 million US viewers?###answer:SELECT MAX(no_in_season) FROM table_13336122_7 WHERE us_viewers__million_ = "0.57"###context:CREATE TABLE table_13336122_7 (no_in_season INTEGER, us_viewers__million_ VARCHAR) |
###question:How many episodes were seen by 0.67 million US viewers on their original air dates?###answer:SELECT COUNT(original_air_date) FROM table_13336122_7 WHERE us_viewers__million_ = "0.67"###context:CREATE TABLE table_13336122_7 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) |
###question:What episode was directed by David Duchovny?###answer:SELECT title FROM table_13336122_7 WHERE directed_by = "David Duchovny"###context:CREATE TABLE table_13336122_7 (title VARCHAR, directed_by VARCHAR) |
###question:How much is the purse ( $ ) when the margin of victory is 1 stroke?###answer:SELECT purse___$__ FROM table_13388681_1 WHERE margin_of_victory = "1 stroke"###context:CREATE TABLE table_13388681_1 (purse___$__ VARCHAR, margin_of_victory VARCHAR) |
###question:What is the number of "to par" in Mexico with a winning score of 67-67-69-70=273?###answer:SELECT to_par FROM table_13388681_1 WHERE country = "Mexico" AND winning_score = 67 - 67 - 69 - 70 = 273###context:CREATE TABLE table_13388681_1 (to_par VARCHAR, country VARCHAR, winning_score VARCHAR) |
###question:what's the 3rd day with finbeingh position being 16th###answer:SELECT 3 AS rd_day FROM table_1340667_3 WHERE finish_position = "16th"###context:CREATE TABLE table_1340667_3 (finish_position VARCHAR) |
###question:what are all the result for New York 6 district###answer:SELECT result FROM table_1341395_33 WHERE district = "New York 6"###context:CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR) |
###question:Who were the candidates when gregory w. meeks was the incumbent###answer:SELECT candidates FROM table_1341395_33 WHERE incumbent = "Gregory W. Meeks"###context:CREATE TABLE table_1341395_33 (candidates VARCHAR, incumbent VARCHAR) |
###question:what are all the result for New York 16 district###answer:SELECT result FROM table_1341395_33 WHERE district = "New York 16"###context:CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR) |
###question:what are all the result for New York 7 district###answer:SELECT result FROM table_1341395_33 WHERE district = "New York 7"###context:CREATE TABLE table_1341395_33 (result VARCHAR, district VARCHAR) |
###question:What party was Kevin Brady?###answer:SELECT party FROM table_1341395_44 WHERE incumbent = "Kevin Brady"###context:CREATE TABLE table_1341395_44 (party VARCHAR, incumbent VARCHAR) |
###question:What district has Ron Paul?###answer:SELECT district FROM table_1341395_44 WHERE incumbent = "Ron Paul"###context:CREATE TABLE table_1341395_44 (district VARCHAR, incumbent VARCHAR) |
###question:What party does jim ramstad represent?###answer:SELECT party FROM table_1341423_23 WHERE incumbent = "Jim Ramstad"###context:CREATE TABLE table_1341423_23 (party VARCHAR, incumbent VARCHAR) |
###question:What year was incumbent jim ramstad first elected?###answer:SELECT MIN(first_elected) FROM table_1341423_23 WHERE incumbent = "Jim Ramstad"###context:CREATE TABLE table_1341423_23 (first_elected INTEGER, incumbent VARCHAR) |
###question:What was the result when incumbent gil gutknecht ran?###answer:SELECT results FROM table_1341423_23 WHERE incumbent = "Gil Gutknecht"###context:CREATE TABLE table_1341423_23 (results VARCHAR, incumbent VARCHAR) |
###question:When was the incumbent Sherrod Brown first elected? ###answer:SELECT MAX(first_elected) FROM table_1341453_37 WHERE incumbent = "Sherrod Brown"###context:CREATE TABLE table_1341453_37 (first_elected INTEGER, incumbent VARCHAR) |
###question:What was the result of the election in which the incumbent was first elected in 1984?###answer:SELECT results FROM table_1341453_37 WHERE first_elected = 1984###context:CREATE TABLE table_1341453_37 (results VARCHAR, first_elected VARCHAR) |
###question:Which incumbent was first elected in 1972? ###answer:SELECT incumbent FROM table_1341453_37 WHERE first_elected = 1972###context:CREATE TABLE table_1341453_37 (incumbent VARCHAR, first_elected VARCHAR) |
###question:Tony P. Hall was the incumbent in the race between what two candidates? ###answer:SELECT candidates FROM table_1341453_37 WHERE incumbent = "Tony P. Hall"###context:CREATE TABLE table_1341453_37 (candidates VARCHAR, incumbent VARCHAR) |
###question:In which district is the incumbent Marcia C. Kaptur? ###answer:SELECT district FROM table_1341453_37 WHERE incumbent = "Marcia C. Kaptur"###context:CREATE TABLE table_1341453_37 (district VARCHAR, incumbent VARCHAR) |
###question:What is the earliest year where the result of the election was a retired republican hold?###answer:SELECT MIN(first_elected) FROM table_1341472_40 WHERE result = "Retired Republican hold"###context:CREATE TABLE table_1341472_40 (first_elected INTEGER, result VARCHAR) |
###question:What party is thomas foglietta from?###answer:SELECT party FROM table_1341472_40 WHERE incumbent = "Thomas Foglietta"###context:CREATE TABLE table_1341472_40 (party VARCHAR, incumbent VARCHAR) |
###question:who is the the opponent with district being ohio12###answer:SELECT opponent FROM table_1341522_38 WHERE district = "Ohio12"###context:CREATE TABLE table_1341522_38 (opponent VARCHAR, district VARCHAR) |
###question:what's the party with opponent being mike oxley (r) unopposed###answer:SELECT party FROM table_1341522_38 WHERE opponent = "Mike Oxley (R) unopposed"###context:CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR) |
###question:what's the party with opponent being marcy kaptur (d) 75.3% randy whitman (r) 24.7%###answer:SELECT party FROM table_1341522_38 WHERE opponent = "Marcy Kaptur (D) 75.3% Randy Whitman (R) 24.7%"###context:CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR) |
###question:what's the party with opponent being deborah pryce (r) 70.7% bill buckel (d) 29.1%###answer:SELECT party FROM table_1341522_38 WHERE opponent = "Deborah Pryce (R) 70.7% Bill Buckel (D) 29.1%"###context:CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR) |
###question: how many status with first elected being 1968###answer:SELECT COUNT(status) FROM table_1341522_38 WHERE first_elected = 1968###context:CREATE TABLE table_1341522_38 (status VARCHAR, first_elected VARCHAR) |
###question:what's the first elected with opponent being ralph regula (r) 75.0% j. michael finn (d) 25.0%###answer:SELECT first_elected FROM table_1341522_38 WHERE opponent = "Ralph Regula (R) 75.0% J. Michael Finn (D) 25.0%"###context:CREATE TABLE table_1341522_38 (first_elected VARCHAR, opponent VARCHAR) |
###question:What district first elected in 1978?###answer:SELECT district FROM table_1341472_51 WHERE first_elected = 1978###context:CREATE TABLE table_1341472_51 (district VARCHAR, first_elected VARCHAR) |
###question:What district was incumbent Jerry Kleczka in?###answer:SELECT district FROM table_1341472_51 WHERE incumbent = "Jerry Kleczka"###context:CREATE TABLE table_1341472_51 (district VARCHAR, incumbent VARCHAR) |
###question:How many districts had results related to incumbent Toby Roth?###answer:SELECT COUNT(result) FROM table_1341472_51 WHERE incumbent = "Toby Roth"###context:CREATE TABLE table_1341472_51 (result VARCHAR, incumbent VARCHAR) |
###question:Who were the candidates in district Wisconsin 1?###answer:SELECT candidates FROM table_1341472_51 WHERE district = "Wisconsin 1"###context:CREATE TABLE table_1341472_51 (candidates VARCHAR, district VARCHAR) |
###question:Name the district of lawrence j. smith###answer:SELECT district FROM table_1341549_10 WHERE incumbent = "Lawrence J. Smith"###context:CREATE TABLE table_1341549_10 (district VARCHAR, incumbent VARCHAR) |
###question:Name the incumbent for 1954###answer:SELECT incumbent FROM table_1341549_10 WHERE first_elected = "1954"###context:CREATE TABLE table_1341549_10 (incumbent VARCHAR, first_elected VARCHAR) |
###question:What party was Lane Evans?###answer:SELECT party FROM table_1341568_14 WHERE incumbent = "Lane Evans"###context:CREATE TABLE table_1341568_14 (party VARCHAR, incumbent VARCHAR) |
###question:What district had elections in 1964?###answer:SELECT district FROM table_1341568_14 WHERE elected = 1964###context:CREATE TABLE table_1341568_14 (district VARCHAR, elected VARCHAR) |
###question:Who was Henry Hyde's opponent in the race?###answer:SELECT opponent FROM table_1341568_14 WHERE incumbent = "Henry Hyde"###context:CREATE TABLE table_1341568_14 (opponent VARCHAR, incumbent VARCHAR) |
###question:What Republican incumbent was elected in 1974?###answer:SELECT incumbent FROM table_1341568_14 WHERE elected = 1974 AND party = "Republican"###context:CREATE TABLE table_1341568_14 (incumbent VARCHAR, elected VARCHAR, party VARCHAR) |
###question:what's party with result being retired to run for u. s. senate republican hold###answer:SELECT party FROM table_1341577_10 WHERE result = "Retired to run for U. S. Senate Republican hold"###context:CREATE TABLE table_1341577_10 (party VARCHAR, result VARCHAR) |
###question:what's result with incumbent being connie mack###answer:SELECT result FROM table_1341577_10 WHERE incumbent = "Connie Mack"###context:CREATE TABLE table_1341577_10 (result VARCHAR, incumbent VARCHAR) |
###question:what's district with candidates being lawrence j. smith (d) 69.4% joseph smith (r) 30.6%###answer:SELECT district FROM table_1341577_10 WHERE candidates = "Lawrence J. Smith (D) 69.4% Joseph Smith (R) 30.6%"###context:CREATE TABLE table_1341577_10 (district VARCHAR, candidates VARCHAR) |
###question:what's incumbent with district being florida 5###answer:SELECT incumbent FROM table_1341577_10 WHERE district = "Florida 5"###context:CREATE TABLE table_1341577_10 (incumbent VARCHAR, district VARCHAR) |
###question:what's result of first elected being 1980###answer:SELECT result FROM table_1341577_10 WHERE first_elected = 1980###context:CREATE TABLE table_1341577_10 (result VARCHAR, first_elected VARCHAR) |
###question:How many parties is Tom Foley a member of?###answer:SELECT COUNT(party) FROM table_1341568_48 WHERE incumbent = "Tom Foley"###context:CREATE TABLE table_1341568_48 (party VARCHAR, incumbent VARCHAR) |
###question:What was the result of the election in the district whose incumbent is Tom Foley?###answer:SELECT status FROM table_1341568_48 WHERE incumbent = "Tom Foley"###context:CREATE TABLE table_1341568_48 (status VARCHAR, incumbent VARCHAR) |
###question:How many results have the two candidates Gene Taylor (r) 67.0% Ken Young (d) 33.0%?###answer:SELECT COUNT(result) FROM table_1341586_26 WHERE candidates = "Gene Taylor (R) 67.0% Ken Young (D) 33.0%"###context:CREATE TABLE table_1341586_26 (result VARCHAR, candidates VARCHAR) |
###question:Which candidates are from the Missouri 3 district?###answer:SELECT candidates FROM table_1341586_26 WHERE district = "Missouri 3"###context:CREATE TABLE table_1341586_26 (candidates VARCHAR, district VARCHAR) |
###question:What is the result for barney frank?###answer:SELECT result FROM table_1341598_22 WHERE incumbent = "Barney Frank"###context:CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR) |
###question:What is the number of results for james shannon?###answer:SELECT COUNT(result) FROM table_1341598_22 WHERE incumbent = "James Shannon"###context:CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR) |
###question:What is the minimum first elected for ed markey?###answer:SELECT MIN(first_elected) FROM table_1341598_22 WHERE incumbent = "Ed Markey"###context:CREATE TABLE table_1341598_22 (first_elected INTEGER, incumbent VARCHAR) |
###question:What was the result of the election featuring ike skelton?###answer:SELECT result FROM table_1341604_26 WHERE incumbent = "Ike Skelton"###context:CREATE TABLE table_1341604_26 (result VARCHAR, incumbent VARCHAR) |
###question:What district is incumbent ike skelton from?###answer:SELECT district FROM table_1341604_26 WHERE incumbent = "Ike Skelton"###context:CREATE TABLE table_1341604_26 (district VARCHAR, incumbent VARCHAR) |
###question:What year was ike skelton first elected?###answer:SELECT MIN(first_elected) FROM table_1341604_26 WHERE incumbent = "Ike Skelton"###context:CREATE TABLE table_1341604_26 (first_elected INTEGER, incumbent VARCHAR) |
###question:what is the district where the result is re-elected and the incumbent is richard kelly?###answer:SELECT district FROM table_1341663_10 WHERE result = "Re-elected" AND incumbent = "Richard Kelly"###context:CREATE TABLE table_1341663_10 (district VARCHAR, result VARCHAR, incumbent VARCHAR) |
###question:what is the district where the candidates are charles edward bennett (d) unopposed?###answer:SELECT district FROM table_1341663_10 WHERE candidates = "Charles Edward Bennett (D) Unopposed"###context:CREATE TABLE table_1341663_10 (district VARCHAR, candidates VARCHAR) |
###question:who are the candidates where the incumbent is sam m. gibbons?###answer:SELECT candidates FROM table_1341663_10 WHERE incumbent = "Sam M. Gibbons"###context:CREATE TABLE table_1341663_10 (candidates VARCHAR, incumbent VARCHAR) |
###question:how many times was the candidates dan mica (d) 55.3% bill james (r) 44.7%?###answer:SELECT COUNT(incumbent) FROM table_1341663_10 WHERE candidates = "Dan Mica (D) 55.3% Bill James (R) 44.7%"###context:CREATE TABLE table_1341663_10 (incumbent VARCHAR, candidates VARCHAR) |
###question:what was the result where the candidates are sam m. gibbons (d) unopposed?###answer:SELECT result FROM table_1341663_10 WHERE candidates = "Sam M. Gibbons (D) Unopposed"###context:CREATE TABLE table_1341663_10 (result VARCHAR, candidates VARCHAR) |
###question:who is the incumbent where the district is florida 9?###answer:SELECT incumbent FROM table_1341663_10 WHERE district = "Florida 9"###context:CREATE TABLE table_1341663_10 (incumbent VARCHAR, district VARCHAR) |
###question:What is Phil Crane, democrat or republican ###answer:SELECT party FROM table_1341663_14 WHERE incumbent = "Phil Crane"###context:CREATE TABLE table_1341663_14 (party VARCHAR, incumbent VARCHAR) |
###question:What year was Frank Annunzio elected###answer:SELECT MIN(first_elected) FROM table_1341663_14 WHERE incumbent = "Frank Annunzio"###context:CREATE TABLE table_1341663_14 (first_elected INTEGER, incumbent VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.