output
stringlengths
18
557
instruction
stringlengths
22
540
SELECT MIN(goals_against) FROM table_name_58 WHERE points_1 = "18" AND drawn > 8
CREATE TABLE table_name_58 (goals_against INTEGER, points_1 VARCHAR, drawn VARCHAR), What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn?
SELECT COUNT(goals_for) FROM table_name_33 WHERE drawn < 7 AND lost < 21 AND points_1 = "33"
CREATE TABLE table_name_33 (goals_for VARCHAR, points_1 VARCHAR, drawn VARCHAR, lost VARCHAR), What is the total number of goals for when the drawn is less than 7, less than 21 games have been lost, and there are 1 of 33 points?
SELECT MAX(engine) FROM table_name_57 WHERE model = "sl500" AND year_from > 1999
CREATE TABLE table_name_57 (engine INTEGER, model VARCHAR, year_from VARCHAR), Which Engine has a Model of sl500, and a Year From larger than 1999?
SELECT MIN(engine) FROM table_name_60 WHERE model = "sl500" AND chassis < 129.067
CREATE TABLE table_name_60 (engine INTEGER, model VARCHAR, chassis VARCHAR), Which Engine has a Model of sl500, and a Chassis smaller than 129.067?
SELECT COUNT(engine) FROM table_name_82 WHERE model = "sl600" AND year_from = 1994 AND year_to < 1995
CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR), How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995?
SELECT MIN(year_to) FROM table_name_14 WHERE engine = 119.972 AND chassis < 129.067
CREATE TABLE table_name_14 (year_to INTEGER, engine VARCHAR, chassis VARCHAR), Which Year To has an Engine of 119.972, and a Chassis smaller than 129.067?
SELECT time FROM table_name_44 WHERE show_name = "mornings with neil mitchell"
CREATE TABLE table_name_44 (time VARCHAR, show_name VARCHAR), What Time has a Show Name of mornings with neil mitchell?
SELECT time FROM table_name_37 WHERE ad_freq = "15 minutes" AND show_name = "country today"
CREATE TABLE table_name_37 (time VARCHAR, ad_freq VARCHAR, show_name VARCHAR), What Time has Ad Freq of 15 minutes, and a Show Name of country today?
SELECT time FROM table_name_15 WHERE show_name = "mornings with neil mitchell"
CREATE TABLE table_name_15 (time VARCHAR, show_name VARCHAR), What Time has a Show Name of mornings with neil mitchell?
SELECT local_networked FROM table_name_99 WHERE show_name = "nightline"
CREATE TABLE table_name_99 (local_networked VARCHAR, show_name VARCHAR), What Local/Networked has a Show Name of nightline?
SELECT news_freq FROM table_name_90 WHERE time = "1:00pm–4:00pm"
CREATE TABLE table_name_90 (news_freq VARCHAR, time VARCHAR), What News Freq has a Time of 1:00pm–4:00pm?
SELECT erp_w FROM table_name_44 WHERE frequency_mhz = 96.7
CREATE TABLE table_name_44 (erp_w VARCHAR, frequency_mhz VARCHAR), What was the ERP W for 96.7 MHz?
SELECT class FROM table_name_96 WHERE city_of_license = "appleton, wisconsin"
CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR), What was the class for Appleton, Wisconsin?
SELECT transfers_in FROM table_name_36 WHERE country = "hungary"
CREATE TABLE table_name_36 (transfers_in VARCHAR, country VARCHAR), What are the transfers in for Hungary?
SELECT transfers_out FROM table_name_76 WHERE country = "peru"
CREATE TABLE table_name_76 (transfers_out VARCHAR, country VARCHAR), What are the Transfers out for Peru?
SELECT points_1 FROM table_name_88 WHERE lost = 22
CREATE TABLE table_name_88 (points_1 VARCHAR, lost VARCHAR), WHAT POINTS 1 HAD A 22 LOST?
SELECT SUM(goals_against) FROM table_name_85 WHERE goals_for = 46 AND played < 38
CREATE TABLE table_name_85 (goals_against INTEGER, goals_for VARCHAR, played VARCHAR), WHAT GOALS AGAINST HAD A GOAL FOR OF 46, AND PLAYED LESS THAN 38?
SELECT SUM(position) FROM table_name_29 WHERE lost = 6 AND team = "caernarfon town"
CREATE TABLE table_name_29 (position INTEGER, lost VARCHAR, team VARCHAR), WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN?
SELECT SUM(played) FROM table_name_81 WHERE points_1 = "53" AND position > 3
CREATE TABLE table_name_81 (played INTEGER, points_1 VARCHAR, position VARCHAR), WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3?
SELECT MAX(lost) FROM table_name_15 WHERE drawn = 11 AND team = "leek town"
CREATE TABLE table_name_15 (lost INTEGER, drawn VARCHAR, team VARCHAR), WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN?
SELECT player FROM table_name_59 WHERE subtotal > 3 AND round_1 > 8
CREATE TABLE table_name_59 (player VARCHAR, subtotal VARCHAR, round_1 VARCHAR), Which player has a subtotal of more than 3 and more than 8 in round 1?
SELECT place FROM table_name_52 WHERE country = "united states" AND money___$__ = "200"
CREATE TABLE table_name_52 (place VARCHAR, country VARCHAR, money___$__ VARCHAR), What is the ranking for the United States when the money is $200?
SELECT place FROM table_name_6 WHERE money___$__ = "73" AND player = "archie compston"
CREATE TABLE table_name_6 (place VARCHAR, money___$__ VARCHAR, player VARCHAR), What is the ranking when Archie Compston is the player and the money is $73?
SELECT country FROM table_name_92 WHERE to_par < 19 AND score = 75 - 79 - 77 - 73 = 304
CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR), Which country has a to par less than 19 and a score of 75-79-77-73=304?
SELECT score FROM table_name_23 WHERE country = "united states" AND money___$__ = "73" AND player = "harry hampton"
CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR), What is the score for the United States when Harry Hampton is the player and the money is $73?
SELECT MAX(2010) FROM table_name_94 WHERE state = "fl" AND major_city_served = "miami"
CREATE TABLE table_name_94 (state VARCHAR, major_city_served VARCHAR), What is the greatest 2010 for Miami, Fl?
SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = "2013-03-20"
CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date VARCHAR), What is the North American release date of the remake with a European release date on 2013-03-20?
SELECT series FROM table_name_12 WHERE north_american_release_date = "2013-09-03"
CREATE TABLE table_name_12 (series VARCHAR, north_american_release_date VARCHAR), What is the series with a North American release date on 2013-09-03?
SELECT us_cash_box FROM table_name_20 WHERE year < 1978 AND us_billboard = 35
CREATE TABLE table_name_20 (us_cash_box VARCHAR, year VARCHAR, us_billboard VARCHAR), What is the US cash box before 1978 with a US billboard of 35?
SELECT country FROM table_name_33 WHERE place = "t6"
CREATE TABLE table_name_33 (country VARCHAR, place VARCHAR), What is the country of the player with a t6 place?
SELECT place FROM table_name_33 WHERE score = 72 - 71 - 65 = 208
CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR), What is the place of the player with a 72-71-65=208 score?
SELECT country FROM table_name_96 WHERE player = "thomas bjørn"
CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR), What country is player thomas bjørn from?
SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204
CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR), What is the place of the player with a 66-68-70=204 score?
SELECT COUNT(wins) FROM table_name_53 WHERE goals_against > 41 AND points = 29 AND draws > 5
CREATE TABLE table_name_53 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, points VARCHAR), What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5?
SELECT COUNT(draws) FROM table_name_74 WHERE played < 30
CREATE TABLE table_name_74 (draws VARCHAR, played INTEGER), What is the number of draws when played is smaller than 30?
SELECT COUNT(losses) FROM table_name_37 WHERE goal_difference = -8 AND position < 10
CREATE TABLE table_name_37 (losses VARCHAR, goal_difference VARCHAR, position VARCHAR), What is the number of losses when the goal difference was -8, and position is smaller than 10?
SELECT SUM(wins) FROM table_name_76 WHERE points < 27 AND goals_against = 41
CREATE TABLE table_name_76 (wins INTEGER, points VARCHAR, goals_against VARCHAR), What is the wins number when the points were smaller than 27, and goals against was 41?
SELECT MAX(losses) FROM table_name_45 WHERE goal_difference > 26
CREATE TABLE table_name_45 (losses INTEGER, goal_difference INTEGER), What is the losses when the goal difference is larger than 26?
SELECT MIN(goals_for) FROM table_name_72 WHERE played > 30
CREATE TABLE table_name_72 (goals_for INTEGER, played INTEGER), What is the goals for when played is larger than 30?
SELECT score FROM table_name_72 WHERE date = "2 october 2011"
CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR), What is the score on 2 October 2011?
SELECT surface FROM table_name_59 WHERE outcome = "runner-up" AND opponent = "dudi sela"
CREATE TABLE table_name_59 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR), What is the surface of the tournament with a runner-up outcome and dudi sela as the opponent?
SELECT shooter FROM table_name_75 WHERE event = "wc beijing"
CREATE TABLE table_name_75 (shooter VARCHAR, event VARCHAR), Who was the shooter for the WC Beijing event?
SELECT score_points FROM table_name_65 WHERE total = "olympic bronze medalist"
CREATE TABLE table_name_65 (score_points VARCHAR, total VARCHAR), With Olympic Bronze Medalist as the total what are the score points?
SELECT score_points FROM table_name_25 WHERE rank_points = "10" AND total = "11"
CREATE TABLE table_name_25 (score_points VARCHAR, rank_points VARCHAR, total VARCHAR), With a total of 11, and 10 rank points, what are the score points?
SELECT shooter FROM table_name_56 WHERE rank_points = "15" AND score_points = "0"
CREATE TABLE table_name_56 (shooter VARCHAR, rank_points VARCHAR, score_points VARCHAR), Who is the shooter with 15 rank points, and 0 score points?
SELECT score_points FROM table_name_32 WHERE total = "11"
CREATE TABLE table_name_32 (score_points VARCHAR, total VARCHAR), With a total of 11, what is the score points?
SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = "branxholme-wallacedale" AND byes < 2
CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR), Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes?
SELECT AVG(draws) FROM table_name_89 WHERE wins = 14
CREATE TABLE table_name_89 (draws INTEGER, wins VARCHAR), Which draws have an average of 14 wins?
SELECT SUM(wins) FROM table_name_82 WHERE losses = 16 AND against < 3213
CREATE TABLE table_name_82 (wins INTEGER, losses VARCHAR, against VARCHAR), How many wins have 16 losses and an Against smaller than 3213?
SELECT SUM(draws) FROM table_name_83 WHERE south_west_dfl = "tyrendarra" AND wins < 10
CREATE TABLE table_name_83 (draws INTEGER, south_west_dfl VARCHAR, wins VARCHAR), How many Draws have a South West DFL of tyrendarra, and less than 10 wins?
SELECT circuit FROM table_name_20 WHERE winning_constructor = "bugatti" AND winning_driver = "edward bret"
CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR), What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret?
SELECT circuit FROM table_name_55 WHERE date = "25 july"
CREATE TABLE table_name_55 (circuit VARCHAR, date VARCHAR), What Circuit has a Date of 25 july?
SELECT date FROM table_name_26 WHERE name = "thuin circuit"
CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR), What Date has a Name of thuin circuit?
SELECT name FROM table_name_78 WHERE winning_constructor = "bugatti" AND winning_driver = "louis chiron"
CREATE TABLE table_name_78 (name VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR), What Name has a Winning constructor of bugatti, and a Winning driver of louis chiron?
SELECT winning_driver FROM table_name_55 WHERE name = "mugello circuit"
CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR), What Winning driver has a Name of mugello circuit?
SELECT winning_driver FROM table_name_59 WHERE winning_constructor = "talbot"
CREATE TABLE table_name_59 (winning_driver VARCHAR, winning_constructor VARCHAR), What Winning driver has a Winning constructor of talbot?
SELECT away_team FROM table_name_64 WHERE attendance = 356
CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR), What is the away team of the match with a 356 attendance?
SELECT player FROM table_name_21 WHERE year_s__won = "1993"
CREATE TABLE table_name_21 (player VARCHAR, year_s__won VARCHAR), Which player won in 1993?
SELECT COUNT(to_par) FROM table_name_86 WHERE year_s__won = "1993"
CREATE TABLE table_name_86 (to_par VARCHAR, year_s__won VARCHAR), How many to pars were won in 1993?
SELECT AVG(total) FROM table_name_34 WHERE country = "zimbabwe" AND to_par > 5
CREATE TABLE table_name_34 (total INTEGER, country VARCHAR, to_par VARCHAR), What is Zimbabwe's total with a to par higher than 5?
SELECT COUNT(total) FROM table_name_87 WHERE year_s__won = "1986" AND to_par > 6
CREATE TABLE table_name_87 (total VARCHAR, year_s__won VARCHAR, to_par VARCHAR), What is the total for 1986 with a to par higher than 6?
SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3
CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR), What is the total for 1984 for the team with 100 points total and more than 3 seasons?
SELECT COUNT(total_points) FROM table_name_99 WHERE 1982 = "n/a" AND points_average > 34 AND 1984 > 37
CREATE TABLE table_name_99 (total_points VARCHAR, points_average VARCHAR), What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982?
SELECT team FROM table_name_71 WHERE seasons = 3 AND 1984 < 27
CREATE TABLE table_name_71 (team VARCHAR, seasons VARCHAR), What team had 3 seasons and fewer than 27 in 1984?
SELECT SUM(seasons) FROM table_name_45 WHERE total_points < 24
CREATE TABLE table_name_45 (seasons INTEGER, total_points INTEGER), What is the number of seasons for the team with a total fewer than 24?
SELECT weight FROM table_name_70 WHERE club = "panionios g.c." AND date_of_birth = "1975-05-21"
CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR), What is the weight of the player from club panionios g.c. and was born on 1975-05-21?
SELECT COUNT(height_of_ground_station_m_) FROM table_name_35 WHERE name = "lutersee" AND height_of_mountain_station_m_ > 2398
CREATE TABLE table_name_35 (height_of_ground_station_m_ VARCHAR, name VARCHAR, height_of_mountain_station_m_ VARCHAR), How much Height of ground station(m) has a Name of lutersee, and a Height of mountain station(m) larger than 2398?
SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = "lager 1" AND slope_length < 336
CREATE TABLE table_name_68 (elevation_groundstation INTEGER, slope_length VARCHAR, capacity_in_persons_hour VARCHAR, name_or_route VARCHAR), Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336?
SELECT slope_length FROM table_name_43 WHERE type = "surface lift" AND elevation_groundstation < 1974 AND construction_year_s_ = "1971" AND name_or_route = "alpmatten 1"
CREATE TABLE table_name_43 (slope_length VARCHAR, name_or_route VARCHAR, construction_year_s_ VARCHAR, type VARCHAR, elevation_groundstation VARCHAR), Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name or route of alpmatten 1?
SELECT MIN(pick) FROM table_name_43 WHERE nfl_club = "arizona cardinals"
CREATE TABLE table_name_43 (pick INTEGER, nfl_club VARCHAR), What is the lowest pick that has arizona cardinals as the NFL club?
SELECT round FROM table_name_4 WHERE pick < 189 AND nfl_club = "arizona cardinals"
CREATE TABLE table_name_4 (round VARCHAR, pick VARCHAR, nfl_club VARCHAR), What round has a pick less than 189, with arizona cardinals as the NFL club?
SELECT player FROM table_name_19 WHERE position = "defensive back" AND round < 2
CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, round VARCHAR), What player has defensive back as the position, with a round less than 2?
SELECT MIN(round) FROM table_name_3 WHERE player = "orlando pace"
CREATE TABLE table_name_3 (round INTEGER, player VARCHAR), What lowest round has orlando pace as the player?
SELECT location_attendance FROM table_name_6 WHERE opponent = "seattle supersonics"
CREATE TABLE table_name_6 (location_attendance VARCHAR, opponent VARCHAR), What was the location when the opponent was Seattle Supersonics?
SELECT record FROM table_name_69 WHERE game < 78 AND score = "114–109 (ot)"
CREATE TABLE table_name_69 (record VARCHAR, game VARCHAR, score VARCHAR), What was the record for less than 78 games and a score of 114–109 (ot)?
SELECT opponent FROM table_name_96 WHERE game = 75
CREATE TABLE table_name_96 (opponent VARCHAR, game VARCHAR), Who was the opponent for game 75?
SELECT wrestler FROM table_name_3 WHERE team = "team batista" AND eliminated_by = "orton" AND elimination = "8"
CREATE TABLE table_name_3 (wrestler VARCHAR, elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR), Which Wrestler plays for Team Batista which was Elimated by Orton on Elimination 8?
SELECT time FROM table_name_12 WHERE eliminated_by = "batista" AND wrestler = "henry"
CREATE TABLE table_name_12 (time VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR), What time was the Wrestler Henry eliminated by Batista?
SELECT elimination AS Move FROM table_name_90 WHERE team = "team batista" AND elimination = "8"
CREATE TABLE table_name_90 (elimination VARCHAR, team VARCHAR), Which Elimination Move is listed at Elimination 8 for Team Batista?
SELECT elimination AS Move FROM table_name_25 WHERE team = "team orton" AND eliminated_by = "batista" AND elimination = "7"
CREATE TABLE table_name_25 (elimination VARCHAR, team VARCHAR, eliminated_by VARCHAR), Which Elimination move is listed against Team Orton, Eliminated by Batista against Elimination number 7?
SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry"
CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR), What Elimination Move is listed against Wrestler Henry, Eliminated by Batista?
SELECT elimination AS Move FROM table_name_28 WHERE wrestler = "regal"
CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR), What is the Elimination move listed against Regal?
SELECT AVG(total) FROM table_name_76 WHERE player = "jeff sluman"
CREATE TABLE table_name_76 (total INTEGER, player VARCHAR), Name the Total of jeff sluman?
SELECT MIN(total) FROM table_name_48 WHERE country = "australia" AND to_par < 7
CREATE TABLE table_name_48 (total INTEGER, country VARCHAR, to_par VARCHAR), Name the Total of australia and a To par smaller than 7?
SELECT MAX(to_par) FROM table_name_31 WHERE year_s__won = "1988" AND total < 148
CREATE TABLE table_name_31 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR), Name the To par that has a Year(s) won of 1988 and a Total smaller than 148?
SELECT MIN(number) FROM table_name_79 WHERE home_club = "broomstones" AND year_end < 1999
CREATE TABLE table_name_79 (number INTEGER, home_club VARCHAR, year_end VARCHAR), Which Number has a Home Club of broomstones, and a Year End smaller than 1999?
SELECT MAX(year_start) FROM table_name_41 WHERE number = 28
CREATE TABLE table_name_41 (year_start INTEGER, number VARCHAR), Which Year Start has a Number of 28?
SELECT MAX(number) FROM table_name_41 WHERE name = "hill, lucius t."
CREATE TABLE table_name_41 (number INTEGER, name VARCHAR), Which Number has a Name of hill, lucius t.?
SELECT MAX(number) FROM table_name_13 WHERE year_start < 1874 AND year_end > 1873
CREATE TABLE table_name_13 (number INTEGER, year_start VARCHAR, year_end VARCHAR), Which Number has a Year Start smaller than 1874, and a Year End larger than 1873?
SELECT AVG(number) FROM table_name_90 WHERE name = "cooper, c. kenneth" AND year_end > 1984
CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR), Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984?
SELECT venue FROM table_name_16 WHERE status = "test match" AND against = 12
CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR), What is Venue, when Status is "Test Match", and when Against is "12"?
SELECT opposing_teams FROM table_name_81 WHERE date = "11/10/1991"
CREATE TABLE table_name_81 (opposing_teams VARCHAR, date VARCHAR), What is Opposing Teams, when Date is "11/10/1991"?
SELECT date FROM table_name_79 WHERE opposing_teams = "australia" AND venue = "twickenham , london"
CREATE TABLE table_name_79 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR), What is Date, when Opposing Teams is "Australia", and when Venue is "Twickenham , London"?
SELECT against FROM table_name_12 WHERE opposing_teams = "australia" AND date = "27/07/1991"
CREATE TABLE table_name_12 (against VARCHAR, opposing_teams VARCHAR, date VARCHAR), What is Against, when Opposing Teams is "Australia", and when Date is "27/07/1991"?
SELECT tie_no FROM table_name_36 WHERE home_team = "exeter city"
CREATE TABLE table_name_36 (tie_no VARCHAR, home_team VARCHAR), What is the tie no of the game where exeter city was the home team?
SELECT score FROM table_name_70 WHERE date = "10 jan 1990" AND away_team = "exeter city"
CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR), What is the score of the game against away team exeter city on 10 jan 1990?
SELECT date FROM table_name_70 WHERE home_team = "liverpool"
CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR), What date did home team liverpool play?
SELECT score FROM table_name_3 WHERE away_team = "crewe alexandra"
CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR), What was the score of the game against away team crewe alexandra?
SELECT results FROM table_name_79 WHERE first_elected = 1996
CREATE TABLE table_name_79 (results VARCHAR, first_elected VARCHAR), What are the results of the incumbent who was first elected in 1996?
SELECT results FROM table_name_4 WHERE first_elected = 1996
CREATE TABLE table_name_4 (results VARCHAR, first_elected VARCHAR), What are the results of the incumbent who was first elected in 1996?