answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT comp FROM table_name_63 WHERE games < 2
What is the comp for games less than 2?
CREATE TABLE table_name_63 (comp VARCHAR, games INTEGER)
SELECT high_rebounds FROM table_name_6 WHERE score = "61-59"
What is High Rebounds, when Score is 61-59?
CREATE TABLE table_name_6 (high_rebounds VARCHAR, score VARCHAR)
SELECT location_attendance FROM table_17058116_7 WHERE record = "20–23"
Where was the game with record 20–23 and how many people attended it
CREATE TABLE table_17058116_7 (location_attendance VARCHAR, record VARCHAR)
SELECT score FROM table_name_35 WHERE team = "@ kansas city-omaha kings"
What is Score when Team is @ Kansas City-Omaha Kings?
CREATE TABLE table_name_35 (score VARCHAR, team VARCHAR)
SELECT position FROM table_25518547_4 WHERE pick__number = 63
What is the position of pick # 63?
CREATE TABLE table_25518547_4 (position VARCHAR, pick__number VARCHAR)
SELECT french_title FROM table_23963073_1 WHERE date_of_publication = 1968
What was the French title of the story published in 1968?
CREATE TABLE table_23963073_1 (french_title VARCHAR, date_of_publication VARCHAR)
SELECT conductor FROM table_24521345_1 WHERE work_title = "Rusalka"
Who is the conductor for Rusalka?
CREATE TABLE table_24521345_1 (conductor VARCHAR, work_title VARCHAR)
SELECT surface FROM table_name_31 WHERE opponent = "selma babic"
what is the surface when the opponent is selma babic?
CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_52 WHERE date = "1999-05-31"
WHAT SCORE WAS ON 1999-05-31?
CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR)
SELECT class FROM table_1745843_9 WHERE part_3 = "boten"
Name the class for boten
CREATE TABLE table_1745843_9 (class VARCHAR, part_3 VARCHAR)
SELECT draws FROM table_name_18 WHERE losses > 8 AND hampden_fl = "terang-mortlake"
Which Draws have Losses larger than 8, and a Hampden FL of terang-mortlake?
CREATE TABLE table_name_18 (draws VARCHAR, losses VARCHAR, hampden_fl VARCHAR)
SELECT Nickname FROM school_details WHERE Division <> "Division 1"
Show the nicknames of schools that are not in division 1.
CREATE TABLE school_details (Nickname VARCHAR, Division VARCHAR)
SELECT shooter FROM table_name_18 WHERE total = "11" AND event = "wc munich" AND score_points = "6"
Which shooter had a total of 11 at the WC Munich with a score of 6?
CREATE TABLE table_name_18 (shooter VARCHAR, score_points VARCHAR, total VARCHAR, event VARCHAR)
SELECT school FROM table_name_45 WHERE hometown = "chicago, il"
What school is the player who has a hometown of Chicago, IL from?
CREATE TABLE table_name_45 (school VARCHAR, hometown VARCHAR)
SELECT instrument FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
Find all the instruments ever used by the musician with last name "Heilo"?
CREATE TABLE instruments (bandmateid VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR)
SELECT engine_s_ FROM table_name_41 WHERE year = 1991
What engine was made in 1991?
CREATE TABLE table_name_41 (engine_s_ VARCHAR, year VARCHAR)
SELECT country FROM stadium GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1
Find the country that has the most stadiums.
CREATE TABLE stadium (country VARCHAR)
SELECT MIN(pts_for) FROM table_13018116_1
Name the most points for
CREATE TABLE table_13018116_1 (pts_for INTEGER)
SELECT COUNT(overall) FROM table_name_63 WHERE position = "c" AND round > 9
What is the total number of overall draft picks for player whose position is C and was picked after round 9?
CREATE TABLE table_name_63 (overall VARCHAR, position VARCHAR, round VARCHAR)
SELECT title FROM table_1130632_1 WHERE us_viewers__million_ = "19.48"
What are the title that have 19.48 million u.s. viewers?
CREATE TABLE table_1130632_1 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT home_team AS score FROM table_name_43 WHERE away_team = "geelong"
What was the home team that played Geelong?
CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)
SELECT laps FROM table_name_67 WHERE rank = "14" AND start = "16"
Name the laps for rank of 14 and start of 16
CREATE TABLE table_name_67 (laps VARCHAR, rank VARCHAR, start VARCHAR)
SELECT time_retired FROM table_name_35 WHERE laps < 54 AND driver = "mark donohue"
what is the time/retired when the laps is less than 54 and the driver is mark donohue?
CREATE TABLE table_name_35 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT opponent FROM table_name_97 WHERE game_site = "arrowhead stadium"
What was the Opponent at Arrowhead Stadium?
CREATE TABLE table_name_97 (opponent VARCHAR, game_site VARCHAR)
SELECT time___et__ FROM table_14477002_1 WHERE opponent = "Cincinnati Bengals"
Show all the time(et) where the opponent is the Cincinnati Bengals.
CREATE TABLE table_14477002_1 (time___et__ VARCHAR, opponent VARCHAR)
SELECT MAX(comp) FROM table_name_97 WHERE rating < 52.8 AND yards < 0
What is the highest comp for ratings less than 52.8 and yards less than 0?
CREATE TABLE table_name_97 (comp INTEGER, rating VARCHAR, yards VARCHAR)
SELECT circuit FROM table_20884163_2 WHERE race_title = "PlaceMakers V8 Supercars"
What circuit features the placemakers v8 supercars race?
CREATE TABLE table_20884163_2 (circuit VARCHAR, race_title VARCHAR)
SELECT COUNT(year) FROM table_name_20 WHERE pick = "12" AND position = "dt" AND college = "penn state"
How many years have a Pick of 12, and a Position of dt, and a College of penn state?
CREATE TABLE table_name_20 (year VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR)
SELECT city FROM table_name_75 WHERE title = "the night of the living duck"
In which city was the Night of the Living Duck released?
CREATE TABLE table_name_75 (city VARCHAR, title VARCHAR)
SELECT t1.product_name FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code JOIN ref_colors AS t3 ON t1.color_code = t3.color_code WHERE t3.color_description = "white" AND t2.unit_of_measure <> "Handful"
Find the product names that are colored 'white' but do not have unit of measurement "Handful".
CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR, color_code VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE ref_product_categories (product_category_code VARCHAR, unit_of_measure VARCHAR)
SELECT 2012 FROM table_name_89 WHERE 2009 = "a" AND 2010 = "a" AND 2011 = "a"
Name the 2012 for 2009 of a and 2010 of a and 2011 of a
CREATE TABLE table_name_89 (Id VARCHAR)
SELECT wins FROM table_name_42 WHERE last_win = "2000"
How many wins did the club have with the last win in 2000?
CREATE TABLE table_name_42 (wins VARCHAR, last_win VARCHAR)
SELECT MAX(goals_for) FROM table_name_15 WHERE points = "47+9" AND played < 38
How many goals were scored by the team that played less than 38 games, and had points of 47+9?
CREATE TABLE table_name_15 (goals_for INTEGER, points VARCHAR, played VARCHAR)
SELECT date FROM table_name_44 WHERE killed = "2" AND location = "jaffa"
What date has 2 for killed, and jaffa as the location?
CREATE TABLE table_name_44 (date VARCHAR, killed VARCHAR, location VARCHAR)
SELECT winning_score FROM table_name_53 WHERE date = "jul 27, 1997"
What is Winning Score, when Date is Jul 27, 1997?
CREATE TABLE table_name_53 (winning_score VARCHAR, date VARCHAR)
SELECT torque FROM table_name_29 WHERE engine = "2b"
What is the torque of a 2B engine?
CREATE TABLE table_name_29 (torque VARCHAR, engine VARCHAR)
SELECT AVG(points) FROM table_name_12 WHERE name = "svg burgkirchen" AND lost < 6
How many average points did svg burgkirchen have with a loss smaller than 6?
CREATE TABLE table_name_12 (points INTEGER, name VARCHAR, lost VARCHAR)
SELECT result FROM table_name_80 WHERE goal > 12 AND venue = "pasadena"
What was the result of the game with more than 12 goals at Pasadena?
CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR, venue VARCHAR)
SELECT score FROM table_name_34 WHERE country = "united states" AND player = "mark brooks"
What is Score, when Country is "United States", and when Player is "Mark Brooks"?
CREATE TABLE table_name_34 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT shooter FROM table_14708760_3 WHERE round_3 = 80
Who shot an 80 in round 3
CREATE TABLE table_14708760_3 (shooter VARCHAR, round_3 VARCHAR)
SELECT opponent FROM table_name_76 WHERE date = 1989
What is the Opponent of the game in 1989?
CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR)
SELECT T1.fname, T1.lname FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.FacID ORDER BY COUNT(*) DESC LIMIT 1
What are the first and last name of the faculty who has the most students?
CREATE TABLE Student (advisor VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR)
SELECT 1 AS st_leg FROM table_name_48 WHERE team_2 = "cs sfaxien"
What is the 1st leg of cs sfaxien?
CREATE TABLE table_name_48 (team_2 VARCHAR)
SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "16.2"
What is the earnings per share when the net profit is 16.2 million dollars?
CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR)
SELECT ihsaa_class FROM table_name_56 WHERE location = "monon"
What is the IHSAA class in monon?
CREATE TABLE table_name_56 (ihsaa_class VARCHAR, location VARCHAR)
SELECT category FROM table_name_11 WHERE stations = "5"
Which category has 5 stations?
CREATE TABLE table_name_11 (category VARCHAR, stations VARCHAR)
SELECT ground FROM table_name_49 WHERE match = 4
Which ground is match 4 held on?
CREATE TABLE table_name_49 (ground VARCHAR, match VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_97 WHERE score = 68 - 69 - 68 - 72 = 277
What was the average money when the score was 68-69-68-72=277?
CREATE TABLE table_name_97 (money___ INTEGER, score VARCHAR)
SELECT college FROM table_20649850_1 WHERE position = "OL"
Where did the ol go to college?
CREATE TABLE table_20649850_1 (college VARCHAR, position VARCHAR)
SELECT shirt_sponsor FROM table_27383390_2 WHERE head_coach = "Samad Marfavi"
What sponsor has the head coach Samad Marfavi?
CREATE TABLE table_27383390_2 (shirt_sponsor VARCHAR, head_coach VARCHAR)
SELECT original_air_date FROM table_26561498_1 WHERE patient_portrayer = "Julie Warner"
what is the original air date for julie warner?
CREATE TABLE table_26561498_1 (original_air_date VARCHAR, patient_portrayer VARCHAR)
SELECT year FROM table_name_79 WHERE competition_description = "u.s. championships" AND rank_final < 3 AND apparatus = "all-around"
What is Year, when Competition Description is "U.S. Championships", when Rank-Final is less than 3, and when Apparatus is "All-Around"?
CREATE TABLE table_name_79 (year VARCHAR, apparatus VARCHAR, competition_description VARCHAR, rank_final VARCHAR)
SELECT away_team AS score FROM table_name_75 WHERE venue = "western oval"
What was the away team's score at Western Oval?
CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)
SELECT result FROM table_name_33 WHERE nominated_work = "marlene" AND award = "olivier award"
When Marlene was nominated for the Olivier Award, what was the result?
CREATE TABLE table_name_33 (result VARCHAR, nominated_work VARCHAR, award VARCHAR)
SELECT COUNT(result) FROM table_1342256_10 WHERE incumbent = "Pat Cannon"
How many races involve incumbent Pat Cannon?
CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR)
SELECT AVG(total) FROM table_name_97 WHERE nation = "kyrgyzstan" AND silver < 0
What is the Total of kyrgyzstan with a Silver smaller than 0?
CREATE TABLE table_name_97 (total INTEGER, nation VARCHAR, silver VARCHAR)
SELECT venue FROM table_name_42 WHERE stage = "group g" AND date = "mar 8, 1998"
What venue did group g play at on Mar 8, 1998?
CREATE TABLE table_name_42 (venue VARCHAR, stage VARCHAR, date VARCHAR)
SELECT SUM(games) FROM table_name_54 WHERE assist > 54
How many games had an assist number greater than 54?
CREATE TABLE table_name_54 (games INTEGER, assist INTEGER)
SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270
What player(s) had the score of 64-70-67-69=270?
CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
SELECT MIN(laps) FROM table_name_89 WHERE time_retired = "+18.445"
What was the fewest laps for somone who finished +18.445?
CREATE TABLE table_name_89 (laps INTEGER, time_retired VARCHAR)
SELECT wicket FROM table_name_43 WHERE runs__balls_ = "100 (45)"
Which wicket had a 100 (45) Runs (balls) amount?
CREATE TABLE table_name_43 (wicket VARCHAR, runs__balls_ VARCHAR)
SELECT country FROM table_name_15 WHERE height__m_ > 4100 AND range = "arsi mountains" AND mountain = "bada"
Which Country has a Height (m) larger than 4100, and a Range of arsi mountains, and a Mountain of bada?
CREATE TABLE table_name_15 (country VARCHAR, mountain VARCHAR, height__m_ VARCHAR, range VARCHAR)
SELECT AVG(total) FROM table_name_75 WHERE bronze > 0 AND silver > 0 AND gold > 2 AND nation = "soviet union"
What is the average Total, when Bronze is greater than 0, when Silver is greater than 0, when Gold is greater than 2, and when Nation is Soviet Union?
CREATE TABLE table_name_75 (total INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT church FROM table_name_71 WHERE stops = "27"
Which Church has 27 stops?
CREATE TABLE table_name_71 (church VARCHAR, stops VARCHAR)
SELECT college FROM table_name_53 WHERE overall = 171
Which College had an Overall pick of 171?
CREATE TABLE table_name_53 (college VARCHAR, overall VARCHAR)
SELECT i_id FROM advisor AS T1 JOIN student AS T2 ON T1.s_id = T2.id WHERE T2.dept_name = 'History'
What is the id of the instructor who advises of all students from History department?
CREATE TABLE advisor (s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR)
SELECT SUM(pick__number) FROM table_name_59 WHERE college = "tennessee" AND overall < 270
How many Picks have a College of tennessee, and an Overall smaller than 270?
CREATE TABLE table_name_59 (pick__number INTEGER, college VARCHAR, overall VARCHAR)
SELECT lost FROM table_14058433_5 WHERE club = "Colwyn Bay RFC"
what's the lost with club being colwyn bay rfc
CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR)
SELECT catalog FROM table_name_79 WHERE format = "cd reissue" AND label = "universal"
What is the Catalog number of the CD Reissue Universal release?
CREATE TABLE table_name_79 (catalog VARCHAR, format VARCHAR, label VARCHAR)
SELECT district FROM table_name_98 WHERE first_elected = 2000 AND party = "republican"
What district was a republican first elected in 2000?
CREATE TABLE table_name_98 (district VARCHAR, first_elected VARCHAR, party VARCHAR)
SELECT branding FROM table_17487395_1 WHERE location = "Cebu"
What is the branding for stations located in Cebu?
CREATE TABLE table_17487395_1 (branding VARCHAR, location VARCHAR)
SELECT MAX(game) FROM table_name_40 WHERE march = 29
March of 29 involves what highest scoring game?
CREATE TABLE table_name_40 (game INTEGER, march VARCHAR)
SELECT candidates FROM table_1341973_6 WHERE incumbent = "John Shelley"
What candidates ran in the election that included john shelley?
CREATE TABLE table_1341973_6 (candidates VARCHAR, incumbent VARCHAR)
SELECT Co - singers FROM table_2528382_2 WHERE movie_album = "Pyaasa"
Which co-singers appear in the movie Pyaasa?
CREATE TABLE table_2528382_2 (Co VARCHAR, singers VARCHAR, movie_album VARCHAR)
SELECT AVG(rank) FROM table_name_26 WHERE total > 73 AND gold > 44 AND bronze > 76
What was the average rank for team with more than 44 gold, more and 76 bronze and a higher total than 73?
CREATE TABLE table_name_26 (rank INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)
SELECT COUNT(best_finish) FROM table_20590020_2 WHERE money_list_rank = 96
What is the total number of players who had a money list rank of 96?
CREATE TABLE table_20590020_2 (best_finish VARCHAR, money_list_rank VARCHAR)
SELECT location FROM table_name_5 WHERE manager = "job dragtsma"
What is the Location of the Stadium where Job Dragtsma is Manager?
CREATE TABLE table_name_5 (location VARCHAR, manager VARCHAR)
SELECT visitor FROM table_name_58 WHERE date = "january 1"
What is the Visitor on January 1?
CREATE TABLE table_name_58 (visitor VARCHAR, date VARCHAR)
SELECT rank FROM table_name_28 WHERE season = 1
What rank for season 1?
CREATE TABLE table_name_28 (rank VARCHAR, season VARCHAR)
SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = "son of jens"
What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens?
CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR)
SELECT party FROM table_1341707_15 WHERE district = "Illinois 12"
What party did the incumbent from the Illinois 12 district belong to?
CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)
SELECT declination___j2000__ FROM table_name_77 WHERE constellation = "hydra" AND right_ascension___j2000__ = "10h46m44.9s"
what is the declination (j2000) that has a constellation of hydra and a right ascension (j2000) of 10h46m44.9s?
CREATE TABLE table_name_77 (declination___j2000__ VARCHAR, constellation VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT masculine_an_stems FROM table_name_18 WHERE feminine_ō_stems = "siangar" AND masculine_u_stems = "syni"
What is the an-stem for the word which has an ö-stems of siangar and an u-stem ending of syni?
CREATE TABLE table_name_18 (masculine_an_stems VARCHAR, feminine_ō_stems VARCHAR, masculine_u_stems VARCHAR)
SELECT away_team FROM table_name_65 WHERE ground = "gabba"
Which Away team has a Ground of gabba?
CREATE TABLE table_name_65 (away_team VARCHAR, ground VARCHAR)
SELECT replaced_by FROM table_28181347_6 WHERE date_of_vacancy = "8 October 2007"
In football league one, what coach was hired as a replacement on 8 October 2007
CREATE TABLE table_28181347_6 (replaced_by VARCHAR, date_of_vacancy VARCHAR)
SELECT Product_Type_Code FROM Products WHERE Product_Price > 4500 INTERSECT SELECT Product_Type_Code FROM Products WHERE Product_Price < 3000
Show the product type codes that have both products with price higher than 4500 and products with price lower than 3000.
CREATE TABLE Products (Product_Type_Code VARCHAR, Product_Price INTEGER)
SELECT melbourne FROM table_name_14 WHERE auckland = "no" AND gold_coast = "no"
Which Melbourne has an Auckland of no, and a Gold Coast of no?
CREATE TABLE table_name_14 (melbourne VARCHAR, auckland VARCHAR, gold_coast VARCHAR)
SELECT date FROM table_name_14 WHERE nationality = "united kingdom" AND type = "freighter" AND displacement = "5,145 t"
what is the date when the nationality is united kingdom, the type is freighter and the displacement is 5,145 t?
CREATE TABLE table_name_14 (date VARCHAR, displacement VARCHAR, nationality VARCHAR, type VARCHAR)
SELECT terry_mcauliffe FROM table_name_86 WHERE dates_administered = "may 31 – june 2"
What is the percentage of Terry McAuliffe that has a Date Administered on May 31 – june 2
CREATE TABLE table_name_86 (terry_mcauliffe VARCHAR, dates_administered VARCHAR)
SELECT winning_party_2003 FROM table_name_26 WHERE swing_to_gain < 2.92 AND result = "ld hold"
Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold?
CREATE TABLE table_name_26 (winning_party_2003 VARCHAR, swing_to_gain VARCHAR, result VARCHAR)
SELECT method FROM table_name_33 WHERE event = "ufc 160"
What was the method for the resolution of the fight at UFC 160?
CREATE TABLE table_name_33 (method VARCHAR, event VARCHAR)
SELECT category FROM table_28628309_9 WHERE player = "Olsen Racela"
What are the names of the categories when the player is olsen racela?
CREATE TABLE table_28628309_9 (category VARCHAR, player VARCHAR)
SELECT worldwide_gross FROM table_name_68 WHERE rank = 16
What is the Worldwide Gross of the Film with a Rank of 16?
CREATE TABLE table_name_68 (worldwide_gross VARCHAR, rank VARCHAR)
SELECT celebrity FROM table_name_64 WHERE exited = "day 12"
Who exited on Day 12?
CREATE TABLE table_name_64 (celebrity VARCHAR, exited VARCHAR)
SELECT score FROM table_name_47 WHERE tournament = "clearwater, florida"
What is the final score of the tournament played in Clearwater, Florida?
CREATE TABLE table_name_47 (score VARCHAR, tournament 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 COUNT(womens_doubles) FROM table_15001957_1 WHERE mens_singles = "Philippe Aulner"
How may women doubles winner were there when Philippe Aulner was mens singles winner?
CREATE TABLE table_15001957_1 (womens_doubles VARCHAR, mens_singles VARCHAR)
SELECT venue FROM table_name_88 WHERE date = "23 january 2009"
Name the venue for 23 january 2009
CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR)
SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite"
How many places named mongmong-toto-maite?
CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)
SELECT candidates FROM table_1341843_10 WHERE incumbent = "Charles Edward Bennett Redistricted from 2nd"
Who was featured in the election of charles edward bennett redistricted from 2nd?
CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR)