combined_text
stringlengths
106
1.05k
###question:What is the lowest Perigee with a Launch date of 1970-08-26?###answer:SELECT MIN(perigee__km_) FROM table_name_30 WHERE launch_date = "1970-08-26"###context:CREATE TABLE table_name_30 (perigee__km_ INTEGER, launch_date VARCHAR)
###question:How many total appearances did Grant Brebner have?###answer:SELECT total FROM table_name_5 WHERE name = "grant brebner"###context:CREATE TABLE table_name_5 (total VARCHAR, name VARCHAR)
###question:Which player has an A-League of 150 (4)?###answer:SELECT name FROM table_name_1 WHERE a_league = "150 (4)"###context:CREATE TABLE table_name_1 (name VARCHAR, a_league VARCHAR)
###question:Which player had a total of 116 (22)?###answer:SELECT name FROM table_name_3 WHERE total = "116 (22)"###context:CREATE TABLE table_name_3 (name VARCHAR, total VARCHAR)
###question:Which player has an A-League of 150 (4)?###answer:SELECT name FROM table_name_40 WHERE a_league = "150 (4)"###context:CREATE TABLE table_name_40 (name VARCHAR, a_league VARCHAR)
###question:Which player has an A-League of 113 (0)?###answer:SELECT name FROM table_name_6 WHERE a_league = "113 (0)"###context:CREATE TABLE table_name_6 (name VARCHAR, a_league VARCHAR)
###question:What is the data limit for a T-Mobile internet basic plan?###answer:SELECT data_limit__gb FROM table_name_18 WHERE company = "t-mobile" AND plan_name = "internet basic"###context:CREATE TABLE table_name_18 (data_limit__gb VARCHAR, company VARCHAR, plan_name VARCHAR)
###question:What is the data limit for vodafone?###answer:SELECT data_limit__gb FROM table_name_8 WHERE company = "vodafone"###context:CREATE TABLE table_name_8 (data_limit__gb VARCHAR, company VARCHAR)
###question:What plan has monthly prices of 300, 500, 750, 1000?###answer:SELECT plan_name FROM table_name_14 WHERE monthly_price_incl_vat__czk = "300, 500, 750, 1000"###context:CREATE TABLE table_name_14 (plan_name VARCHAR, monthly_price_incl_vat__czk VARCHAR)
###question:What is the maximum download speed for the Internet premium 3G plan?###answer:SELECT maximum_download_speed__kbps FROM table_name_5 WHERE technology = "3g" AND plan_name = "internet premium"###context:CREATE TABLE table_name_5 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)
###question:What is the maximum download speed for the Internet basic plan with 3G?###answer:SELECT maximum_download_speed__kbps FROM table_name_24 WHERE technology = "3g" AND plan_name = "internet basic"###context:CREATE TABLE table_name_24 (maximum_download_speed__kbps VARCHAR, technology VARCHAR, plan_name VARCHAR)
###question:What is the to par for Gene Littler?###answer:SELECT to_par FROM table_name_42 WHERE player = "gene littler"###context:CREATE TABLE table_name_42 (to_par VARCHAR, player VARCHAR)
###question:What is the country that placed 4?###answer:SELECT country FROM table_name_91 WHERE place = "4"###context:CREATE TABLE table_name_91 (country VARCHAR, place VARCHAR)
###question:Which school has a decile of 8 and a roll of 705?###answer:SELECT name FROM table_name_27 WHERE decile = 8 AND roll = 705###context:CREATE TABLE table_name_27 (name VARCHAR, decile VARCHAR, roll VARCHAR)
###question:What is the roll of the school in Oakura?###answer:SELECT SUM(roll) FROM table_name_59 WHERE area = "oakura"###context:CREATE TABLE table_name_59 (roll INTEGER, area VARCHAR)
###question:What is the avererage decile of Francis Douglas Memorial College?###answer:SELECT AVG(decile) FROM table_name_74 WHERE name = "francis douglas memorial college"###context:CREATE TABLE table_name_74 (decile INTEGER, name VARCHAR)
###question:What was the final score in a 2002 fifa world cup qualification that was less than 10?###answer:SELECT result FROM table_name_98 WHERE competition = "2002 fifa world cup qualification" AND goal < 10###context:CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR, goal VARCHAR)
###question:What is the earliest year with points more than 8?###answer:SELECT MIN(year) FROM table_name_38 WHERE pts > 8###context:CREATE TABLE table_name_38 (year INTEGER, pts INTEGER)
###question:What are the points for a chassis of march 811?###answer:SELECT SUM(pts) FROM table_name_7 WHERE chassis = "march 811"###context:CREATE TABLE table_name_7 (pts INTEGER, chassis VARCHAR)
###question:Who had 8 points, later than 1980, and a theodore ty02 chassis?###answer:SELECT entrant FROM table_name_73 WHERE year > 1980 AND pts = 8 AND chassis = "theodore ty02"###context:CREATE TABLE table_name_73 (entrant VARCHAR, chassis VARCHAR, year VARCHAR, pts VARCHAR)
###question:Which United States player has a To par of 14?###answer:SELECT player FROM table_name_2 WHERE country = "united states" AND to_par = 14###context:CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR, to_par VARCHAR)
###question:Which year averaged less than 9 points?###answer:SELECT AVG(year) FROM table_name_32 WHERE points < 9###context:CREATE TABLE table_name_32 (year INTEGER, points INTEGER)
###question:What is the total points of teams using a ligier js11/15 chassis?###answer:SELECT COUNT(points) FROM table_name_18 WHERE chassis = "ligier js11/15"###context:CREATE TABLE table_name_18 (points VARCHAR, chassis VARCHAR)
###question:What is the highest year team tyrrell earned more than 14 points?###answer:SELECT MAX(year) FROM table_name_20 WHERE entrant = "team tyrrell" AND points > 14###context:CREATE TABLE table_name_20 (year INTEGER, entrant VARCHAR, points VARCHAR)
###question:Which club had 1, draw, 11 lost, and a try bonus of 7?###answer:SELECT club FROM table_name_65 WHERE drawn = "1" AND lost = "11" AND try_bonus = "7"###context:CREATE TABLE table_name_65 (club VARCHAR, try_bonus VARCHAR, drawn VARCHAR, lost VARCHAR)
###question:How many tries against were there when there was 961 points against?###answer:SELECT tries_against FROM table_name_29 WHERE points_against = "961"###context:CREATE TABLE table_name_29 (tries_against VARCHAR, points_against VARCHAR)
###question:Which of the clubs had 556 points against?###answer:SELECT club FROM table_name_75 WHERE points_against = "556"###context:CREATE TABLE table_name_75 (club VARCHAR, points_against VARCHAR)
###question:How many tries against were there with 17 losses?###answer:SELECT tries_against FROM table_name_2 WHERE lost = "17"###context:CREATE TABLE table_name_2 (tries_against VARCHAR, lost VARCHAR)
###question:How many losses were there with 103 tries for?###answer:SELECT lost FROM table_name_84 WHERE tries_for = "103"###context:CREATE TABLE table_name_84 (lost VARCHAR, tries_for VARCHAR)
###question:Name the highest revenue for schalke 04 with rank less than 10###answer:SELECT MAX(revenue__) AS $m_ FROM table_name_44 WHERE team = "schalke 04" AND rank < 10###context:CREATE TABLE table_name_44 (revenue__ INTEGER, team VARCHAR, rank VARCHAR)
###question:Name the rank for tottenham hotspur###answer:SELECT rank FROM table_name_7 WHERE team = "tottenham hotspur"###context:CREATE TABLE table_name_7 (rank VARCHAR, team VARCHAR)
###question:Name the least revenue for chelsea of england with rank less than 7###answer:SELECT MIN(revenue__) AS $m_ FROM table_name_73 WHERE country = "england" AND team = "chelsea" AND rank < 7###context:CREATE TABLE table_name_73 (revenue__ INTEGER, rank VARCHAR, country VARCHAR, team VARCHAR)
###question:Name the total number of value for revenue more than 193 and rank less than 12 for manchester united###answer:SELECT COUNT(value__) AS $m_ FROM table_name_21 WHERE revenue__$m_ > 193 AND rank < 12 AND team = "manchester united"###context:CREATE TABLE table_name_21 (value__ VARCHAR, team VARCHAR, revenue__$m...
###question:What is the lowest rank of Qaanaaq, which has a population greater than 231?###answer:SELECT MIN(rank) FROM table_name_28 WHERE population > 231 AND name = "qaanaaq"###context:CREATE TABLE table_name_28 (rank INTEGER, population VARCHAR, name VARCHAR)
###question:What is the rank of the town with a population of 258?###answer:SELECT COUNT(rank) FROM table_name_4 WHERE population = 258###context:CREATE TABLE table_name_4 (rank VARCHAR, population VARCHAR)
###question:When is a Decision of osgood, and a Score of 6 – 7?###answer:SELECT date FROM table_name_76 WHERE decision = "osgood" AND score = "6 – 7"###context:CREATE TABLE table_name_76 (date VARCHAR, decision VARCHAR, score VARCHAR)
###question:What date has a Decision of osgood, and a Score of 3 – 4?###answer:SELECT date FROM table_name_63 WHERE decision = "osgood" AND score = "3 – 4"###context:CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)
###question:List a name that has a heat of at least 3 and a Lane of exactly 5.###answer:SELECT name FROM table_name_54 WHERE heat > 3 AND lane = 5###context:CREATE TABLE table_name_54 (name VARCHAR, heat VARCHAR, lane VARCHAR)
###question:Name the sum of time for lane of 1 and rank less than 8###answer:SELECT SUM(time) FROM table_name_17 WHERE lane = 1 AND rank < 8###context:CREATE TABLE table_name_17 (time INTEGER, lane VARCHAR, rank VARCHAR)
###question:Name the championship with reign of 8###answer:SELECT championship FROM table_name_36 WHERE reign = "8"###context:CREATE TABLE table_name_36 (championship VARCHAR, reign VARCHAR)
###question:Name the days for current champions of dean ambrose###answer:SELECT days_held FROM table_name_33 WHERE current_champion_s_ = "dean ambrose"###context:CREATE TABLE table_name_33 (days_held VARCHAR, current_champion_s_ VARCHAR)
###question:Name the location of reign 3###answer:SELECT location FROM table_name_76 WHERE reign = "3"###context:CREATE TABLE table_name_76 (location VARCHAR, reign VARCHAR)
###question:Name the date won for wwe intercontinental championship###answer:SELECT date_won FROM table_name_10 WHERE championship = "wwe intercontinental championship"###context:CREATE TABLE table_name_10 (date_won VARCHAR, championship VARCHAR)
###question:When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?###answer:SELECT initial_release_date FROM table_name_41 WHERE publisher = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"###context:CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_titl...
###question:In what genre did Microvision develop a game?###answer:SELECT genre FROM table_name_49 WHERE developer = "microvision"###context:CREATE TABLE table_name_49 (genre VARCHAR, developer VARCHAR)
###question:What genre is the Banpresto game tittled Ranma ½: netsuretsu kakutouhen?###answer:SELECT genre FROM table_name_34 WHERE developer = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"###context:CREATE TABLE table_name_34 (genre VARCHAR, developer VARCHAR, japanese_title VARCHAR)
###question:Position of defensive back, and an Overall smaller than 69 is what lowest pick #?###answer:SELECT MIN(pick__number) FROM table_name_7 WHERE position = "defensive back" AND overall < 69###context:CREATE TABLE table_name_7 (pick__number INTEGER, position VARCHAR, overall VARCHAR)
###question:Round of 11, and a Pick # larger than 14 is the highest overall pick?###answer:SELECT MAX(overall) FROM table_name_64 WHERE round = 11 AND pick__number > 14###context:CREATE TABLE table_name_64 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
###question:Overall of 208 occurred in what round?###answer:SELECT round FROM table_name_67 WHERE overall = 208###context:CREATE TABLE table_name_67 (round VARCHAR, overall VARCHAR)
###question:what player has To par of –3, and a Score of 73-68=141?###answer:SELECT player FROM table_name_62 WHERE to_par = "–3" AND score = 73 - 68 = 141###context:CREATE TABLE table_name_62 (player VARCHAR, to_par VARCHAR, score VARCHAR)
###question:what was steve flesch's to par when he was placed at t3 in the united states?###answer:SELECT to_par FROM table_name_71 WHERE place = "t3" AND country = "united states" AND player = "steve flesch"###context:CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
###question:where did arron oberholser play?###answer:SELECT country FROM table_name_84 WHERE player = "arron oberholser"###context:CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)
###question:what's the score in canada with place of t8?###answer:SELECT score FROM table_name_83 WHERE country = "canada" AND place = "t8"###context:CREATE TABLE table_name_83 (score VARCHAR, country VARCHAR, place VARCHAR)
###question:How many people attended the game on June 18?###answer:SELECT COUNT(attendance) FROM table_name_85 WHERE date = "june 18"###context:CREATE TABLE table_name_85 (attendance VARCHAR, date VARCHAR)
###question:When was the earliest first game with 11 played and 12 games lost?###answer:SELECT MIN(first_game) FROM table_name_60 WHERE played > 11 AND lost = 12###context:CREATE TABLE table_name_60 (first_game INTEGER, played VARCHAR, lost VARCHAR)
###question:What is the average number of games played associated with a first game in 1997 and over 0 games drawn?###answer:SELECT AVG(played) FROM table_name_48 WHERE first_game = 1997 AND drawn > 0###context:CREATE TABLE table_name_48 (played INTEGER, first_game VARCHAR, drawn VARCHAR)
###question:How many first games are associated with 5 games played and under 3 games lost?###answer:SELECT SUM(first_game) FROM table_name_85 WHERE played = 5 AND lost < 3###context:CREATE TABLE table_name_85 (first_game INTEGER, played VARCHAR, lost VARCHAR)
###question:How many games drawn when there are 78 losses and over 121 games played?###answer:SELECT COUNT(drawn) FROM table_name_41 WHERE lost = 78 AND played > 121###context:CREATE TABLE table_name_41 (drawn VARCHAR, lost VARCHAR, played VARCHAR)
###question:How many times was there a draw when played is more than 4 and the first game is in 2000?###answer:SELECT drawn FROM table_name_24 WHERE played > 4 AND first_game = 2000###context:CREATE TABLE table_name_24 (drawn VARCHAR, played VARCHAR, first_game VARCHAR)
###question:what is the most games lost when there were 0 draws?###answer:SELECT MAX(lost) FROM table_name_15 WHERE drawn < 0###context:CREATE TABLE table_name_15 (lost INTEGER, drawn INTEGER)
###question:what is the highest number of games played when there was 2 losses, percentage was 0.00% and more than 0 draws?###answer:SELECT MAX(played) FROM table_name_2 WHERE lost = 2 AND percentage = "0.00%" AND drawn > 0###context:CREATE TABLE table_name_2 (played INTEGER, drawn VARCHAR, lost VARCHAR, percentage VAR...
###question:what is the most lost games when the percentage is 50.00% and games played is less than 2?###answer:SELECT MAX(lost) FROM table_name_95 WHERE percentage = "50.00%" AND played < 2###context:CREATE TABLE table_name_95 (lost INTEGER, percentage VARCHAR, played VARCHAR)
###question:how many draws are there when percentage is 100.00% and played is 7?###answer:SELECT drawn FROM table_name_54 WHERE percentage = "100.00%" AND played = 7###context:CREATE TABLE table_name_54 (drawn VARCHAR, percentage VARCHAR, played VARCHAR)
###question:how many times is there more than 0 draws and more than 0 losses?###answer:SELECT COUNT(played) FROM table_name_5 WHERE drawn > 0 AND lost > 0###context:CREATE TABLE table_name_5 (played VARCHAR, drawn VARCHAR, lost VARCHAR)
###question:Which Club has a Not winning editions of 1992, 2003?###answer:SELECT club FROM table_name_9 WHERE not_winning_editions = "1992, 2003"###context:CREATE TABLE table_name_9 (club VARCHAR, not_winning_editions VARCHAR)
###question:Who Finalists has a Club of győri?###answer:SELECT finalists FROM table_name_22 WHERE club = "győri"###context:CREATE TABLE table_name_22 (finalists VARCHAR, club VARCHAR)
###question:Who is Winners that has editions of 1992, 2003 as Not Winning###answer:SELECT winners FROM table_name_77 WHERE not_winning_editions = "1992, 2003"###context:CREATE TABLE table_name_77 (winners VARCHAR, not_winning_editions VARCHAR)
###question:What is the Finalists that has 2008, 2012, 2013 as Not winning editions###answer:SELECT finalists FROM table_name_88 WHERE not_winning_editions = "2008, 2012, 2013"###context:CREATE TABLE table_name_88 (finalists VARCHAR, not_winning_editions VARCHAR)
###question:What engine was in the Theodore n183?###answer:SELECT engine FROM table_name_9 WHERE chassis = "theodore n183"###context:CREATE TABLE table_name_9 (engine VARCHAR, chassis VARCHAR)
###question:Who is listed as the Winners with a Year of 2005?###answer:SELECT winners FROM table_name_79 WHERE year = "2005"###context:CREATE TABLE table_name_79 (winners VARCHAR, year VARCHAR)
###question:Which Venue has a Year of 2005?###answer:SELECT venue FROM table_name_37 WHERE year = "2005"###context:CREATE TABLE table_name_37 (venue VARCHAR, year VARCHAR)
###question:What is the score when november 15 is the date?###answer:SELECT score FROM table_name_86 WHERE date = "november 15"###context:CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)
###question:What record has November 15 as the date?###answer:SELECT record FROM table_name_32 WHERE date = "november 15"###context:CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)
###question:What tournament what held in Cincinnati in 2009?###answer:SELECT 2009 FROM table_name_53 WHERE tournament = "cincinnati"###context:CREATE TABLE table_name_53 (tournament VARCHAR)
###question:How many games played when the points for is 369?###answer:SELECT played FROM table_name_89 WHERE points_for = "369"###context:CREATE TABLE table_name_89 (played VARCHAR, points_for VARCHAR)
###question:what is the club that as 100 tries?###answer:SELECT club FROM table_name_48 WHERE tries_for = "100"###context:CREATE TABLE table_name_48 (club VARCHAR, tries_for VARCHAR)
###question:what is the points for when the club has 0 drawn and 60 tries against?###answer:SELECT points_for FROM table_name_71 WHERE drawn = "0" AND tries_against = "60"###context:CREATE TABLE table_name_71 (points_for VARCHAR, drawn VARCHAR, tries_against VARCHAR)
###question:How many draws are for the club senghenydd rfc?###answer:SELECT drawn FROM table_name_5 WHERE club = "senghenydd rfc"###context:CREATE TABLE table_name_5 (drawn VARCHAR, club VARCHAR)
###question:What is senghenydd rfc's points for?###answer:SELECT points_for FROM table_name_37 WHERE club = "senghenydd rfc"###context:CREATE TABLE table_name_37 (points_for VARCHAR, club VARCHAR)
###question:what is the amount lost when there is 1 draw and 515 points?###answer:SELECT lost FROM table_name_72 WHERE drawn = "1" AND points_for = "515"###context:CREATE TABLE table_name_72 (lost VARCHAR, drawn VARCHAR, points_for VARCHAR)
###question:In which year was Angélica Rivera a nominee?###answer:SELECT AVG(year) FROM table_name_66 WHERE nominee = "angélica rivera"###context:CREATE TABLE table_name_66 (year INTEGER, nominee VARCHAR)
###question:What is the average lap of the race with a 23 finish?###answer:SELECT AVG(laps) FROM table_name_49 WHERE finish = "23"###context:CREATE TABLE table_name_49 (laps INTEGER, finish VARCHAR)
###question:What is the lowest lap with a 145.926 qual?###answer:SELECT MIN(laps) FROM table_name_6 WHERE qual = "145.926"###context:CREATE TABLE table_name_6 (laps INTEGER, qual VARCHAR)
###question:What is the finish with 51 laps?###answer:SELECT finish FROM table_name_98 WHERE laps = 51###context:CREATE TABLE table_name_98 (finish VARCHAR, laps VARCHAR)
###question:How many laps were in 1958?###answer:SELECT SUM(laps) FROM table_name_80 WHERE year = "1958"###context:CREATE TABLE table_name_80 (laps INTEGER, year VARCHAR)
###question:What is the smallest area (sq mi) that has 160 as it rank?###answer:SELECT MIN(area__sq_mi_) FROM table_name_82 WHERE rank = 160###context:CREATE TABLE table_name_82 (area__sq_mi_ INTEGER, rank VARCHAR)
###question:Which rank has a smaller area (sq mi) than 48, and an area (km2) greater than 104, and an island of sula, sogn og fjordane?###answer:SELECT rank FROM table_name_12 WHERE area__sq_mi_ < 48 AND area__km²_ > 104 AND island = "sula, sogn og fjordane"###context:CREATE TABLE table_name_12 (rank VARCHAR, island VA...
###question:with Distribution of 10.6% what is the average api level?###answer:SELECT AVG(api_level) FROM table_name_7 WHERE distribution = "10.6%"###context:CREATE TABLE table_name_7 (api_level INTEGER, distribution VARCHAR)
###question:with release date of february 9, 2011, what is the api level?###answer:SELECT AVG(api_level) FROM table_name_74 WHERE release_date = "february 9, 2011"###context:CREATE TABLE table_name_74 (api_level INTEGER, release_date VARCHAR)
###question:with api level 3, what is the code name?###answer:SELECT code_name FROM table_name_12 WHERE api_level = 3###context:CREATE TABLE table_name_12 (code_name VARCHAR, api_level VARCHAR)
###question:with distribution of 20.6% what is the code name?###answer:SELECT code_name FROM table_name_90 WHERE distribution = "20.6%"###context:CREATE TABLE table_name_90 (code_name VARCHAR, distribution VARCHAR)
###question:with api level of 18, what's the code name?###answer:SELECT code_name FROM table_name_71 WHERE api_level = 18###context:CREATE TABLE table_name_71 (code_name VARCHAR, api_level VARCHAR)
###question:Which entrant had fewer than 33 points in 1999?###answer:SELECT entrant FROM table_name_83 WHERE points < 33 AND year = 1999###context:CREATE TABLE table_name_83 (entrant VARCHAR, points VARCHAR, year VARCHAR)
###question:Which chassis had 16 points?###answer:SELECT chassis FROM table_name_43 WHERE points = 16###context:CREATE TABLE table_name_43 (chassis VARCHAR, points VARCHAR)
###question:Which gc37-01 v10 engine has the fewest points?###answer:SELECT MIN(points) FROM table_name_23 WHERE engine = "gc37-01 v10"###context:CREATE TABLE table_name_23 (points INTEGER, engine VARCHAR)
###question:What was Kerry's lowest number of votes where Other received 0.8% and Kerry 70.4%?###answer:SELECT MIN(kerry__number) FROM table_name_65 WHERE others__percentage = "0.8%" AND kerry__percentage = "70.4%"###context:CREATE TABLE table_name_65 (kerry__number INTEGER, others__percentage VARCHAR, kerry__percentag...
###question:How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?###answer:SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = "44.6%" AND bush__number > 163 OFFSET 650###context:CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bus...
###question:Which Title has a Termination of Mission of current?###answer:SELECT title FROM table_name_94 WHERE termination_of_mission = "current"###context:CREATE TABLE table_name_94 (title VARCHAR, termination_of_mission VARCHAR)
###question:Which Appointed has Termination of Mission on april 7, 2005?###answer:SELECT appointed_by FROM table_name_40 WHERE termination_of_mission = "april 7, 2005"###context:CREATE TABLE table_name_40 (appointed_by VARCHAR, termination_of_mission VARCHAR)
###question:Which Appointed has a Presentation of Credentials on November 22, 1990###answer:SELECT appointed_by FROM table_name_45 WHERE presentation_of_credentials = "november 22, 1990"###context:CREATE TABLE table_name_45 (appointed_by VARCHAR, presentation_of_credentials VARCHAR)