answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT COUNT(enrollment) FROM table_name_74 WHERE _number___county = "49 marion" AND mascot = "warriors"
How many are enrolled at 49 Marion with the Warriors as their mascot?
CREATE TABLE table_name_74 (enrollment VARCHAR, _number___county VARCHAR, mascot VARCHAR)
SELECT name FROM table_name_81 WHERE laps = 46 AND points < 9 AND grid < 12
What is the name of the driver who went 46 laps had less than 9 points and had a grid number under 12?
CREATE TABLE table_name_81 (name VARCHAR, grid VARCHAR, laps VARCHAR, points VARCHAR)
SELECT appointment FROM table_name_79 WHERE credentials_presented = "jul 2, 1969"
What day was the appointment when Credentials Presented was jul 2, 1969?
CREATE TABLE table_name_79 (appointment VARCHAR, credentials_presented VARCHAR)
SELECT MAX(against) FROM table_name_86 WHERE drawn < 1 AND lost < 5
How many Against has a Drawn smaller than 1, and a Lost smaller than 5?
CREATE TABLE table_name_86 (against INTEGER, drawn VARCHAR, lost VARCHAR)
SELECT ship FROM table_name_91 WHERE built = 2012
What ship was built in 2012?
CREATE TABLE table_name_91 (ship VARCHAR, built VARCHAR)
SELECT score FROM table_name_81 WHERE visitor = "bucks" AND leading_scorer = "maurice williams (25)"
What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?
CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
SELECT country FROM table_20036882_2 WHERE winning_pilot = "Hannes Arch"
Name the country for hannes arch
CREATE TABLE table_20036882_2 (country VARCHAR, winning_pilot VARCHAR)
SELECT COUNT(*) FROM airport WHERE NOT id IN (SELECT airport_id FROM flight WHERE pilot = 'Thompson')
How many airports haven't the pilot 'Thompson' driven an aircraft?
CREATE TABLE airport (id VARCHAR, airport_id VARCHAR, pilot VARCHAR); CREATE TABLE flight (id VARCHAR, airport_id VARCHAR, pilot VARCHAR)
SELECT T1.course_name, T1.course_id FROM Courses AS T1 JOIN Sections AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_id HAVING COUNT(*) <= 2
What are the names and id of courses having at most 2 sections?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Sections (course_id VARCHAR)
SELECT week FROM table_name_87 WHERE date = "november 19, 1995"
What week was it on November 19, 1995?
CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR)
SELECT time FROM table_name_21 WHERE nationality = "russia" AND heat > 3
What is Russia's time with a heat higher than 3?
CREATE TABLE table_name_21 (time VARCHAR, nationality VARCHAR, heat VARCHAR)
SELECT surface FROM table_name_79 WHERE date = "23 january 2011"
Which Surface is on 23 january 2011?
CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)
SELECT rnd FROM table_24865763_2 WHERE lmp2_winning_team = "Mike Newton Thomas Erdos Ben Collins"
In what round did Mike Newton Thomas Erdos Ben Collins won the LMP2?
CREATE TABLE table_24865763_2 (rnd VARCHAR, lmp2_winning_team VARCHAR)
SELECT founded FROM table_27816698_2 WHERE location = "Boise, Idaho"
When was the institution in boise, idaho founded?
CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR)
SELECT insurgents FROM table_21636599_2 WHERE total_per_period = 156
How many insurgents are there when the total per period is 156?
CREATE TABLE table_21636599_2 (insurgents VARCHAR, total_per_period VARCHAR)
SELECT 2009 AS _season FROM table_name_17 WHERE group = "group b" AND stadium = "cancha del mystic" AND club = "el tecal"
When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal?
CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR)
SELECT MAX(bronze) FROM table_name_48 WHERE rank = "26" AND total > 1
Which Bronze is the highest one that has a Rank of 26, and a Total larger than 1?
CREATE TABLE table_name_48 (bronze INTEGER, rank VARCHAR, total VARCHAR)
SELECT COUNT(fox_int_channels_air_date) FROM table_25131572_2 WHERE series__number = 5
How many times was episode 5 in the series aired on Fox int.?
CREATE TABLE table_25131572_2 (fox_int_channels_air_date VARCHAR, series__number VARCHAR)
SELECT COUNT(laps) FROM table_name_87 WHERE grid > 9 AND time_retired = "+32.354"
How many Laps have a Grid larger than 9, and a Time/Retired of +32.354?
CREATE TABLE table_name_87 (laps VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT attendance FROM table_name_74 WHERE home_team = "witton albion"
How many people attended the game with home team Witton Albion?
CREATE TABLE table_name_74 (attendance VARCHAR, home_team VARCHAR)
SELECT Code FROM country WHERE GovernmentForm <> "Republic" EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = "English"
What are the codes of the countries that do not speak English and whose government forms are not Republic?
CREATE TABLE countrylanguage (Code VARCHAR, CountryCode VARCHAR, GovernmentForm VARCHAR, LANGUAGE VARCHAR); CREATE TABLE country (Code VARCHAR, CountryCode VARCHAR, GovernmentForm VARCHAR, LANGUAGE VARCHAR)
SELECT fluency FROM table_2088_1 WHERE type_of_aphasia = "Transcortical sensory aphasia"
Name the fluency for transcortical sensory aphasia
CREATE TABLE table_2088_1 (fluency VARCHAR, type_of_aphasia VARCHAR)
SELECT opponent FROM table_23612439_2 WHERE date = "July 22"
Which opponents are on the date July 22?
CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR)
SELECT date FROM table_name_26 WHERE score = "103-94"
What date was the game score 103-94?
CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)
SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x10"
When was the episode 2x10 aired for the first time?
CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)
SELECT score FROM table_name_38 WHERE date = "june 1"
What was the score of the game on June 1?
CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR)
SELECT nfl_club FROM table_name_39 WHERE pick < 74 AND round > 2
What is the NFL club with a pick less than 74 and a round greater than 2?
CREATE TABLE table_name_39 (nfl_club VARCHAR, pick VARCHAR, round VARCHAR)
SELECT team FROM table_26914854_3 WHERE date_of_appointment = "11 June 2010"
what is the date of appointment 11 june 2010?
CREATE TABLE table_26914854_3 (team VARCHAR, date_of_appointment VARCHAR)
SELECT MIN(last_year) FROM table_name_87 WHERE hosted > 176
What is the lowest attendance last year when more than 176 were hosted?
CREATE TABLE table_name_87 (last_year INTEGER, hosted INTEGER)
SELECT opponent FROM table_name_57 WHERE record = "1-3"
Who is the opponent the Seattle Seahawks played when their record was 1-3?
CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR)
SELECT FacID FROM Faculty EXCEPT SELECT advisor FROM Student
Show ids for the faculty members who don't advise any student.
CREATE TABLE Faculty (FacID VARCHAR, advisor VARCHAR); CREATE TABLE Student (FacID VARCHAR, advisor VARCHAR)
SELECT alternate FROM table_name_97 WHERE second = "hubert gründhammer"
What is the alternate of the nation with hubert gründhammer as the second?
CREATE TABLE table_name_97 (alternate VARCHAR, second VARCHAR)
SELECT MIN(silver) FROM table_22355_20
Who has the minimum number of silver?
CREATE TABLE table_22355_20 (silver INTEGER)
SELECT COUNT(results) FROM table_24865763_2 WHERE circuit = "Algarve" AND gt1_winning_team = "No. 50 Larbre Compétition"
How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit?
CREATE TABLE table_24865763_2 (results VARCHAR, circuit VARCHAR, gt1_winning_team VARCHAR)
SELECT runner_s__up FROM table_name_70 WHERE tournament = "kemper open"
What is the Runner(s)-up of the Kemper Open Tournament?
CREATE TABLE table_name_70 (runner_s__up VARCHAR, tournament VARCHAR)
SELECT death FROM table_name_86 WHERE spouse = "charles ii"
When was the date of death for the person married to Charles II?
CREATE TABLE table_name_86 (death VARCHAR, spouse VARCHAR)
SELECT licensed_location FROM table_name_44 WHERE frequency__khz_ > 1370
What is the location with a frequency (kHz) greater than 1370?
CREATE TABLE table_name_44 (licensed_location VARCHAR, frequency__khz_ INTEGER)
SELECT third_place FROM table_name_75 WHERE runner_up = "anders järryd"
Name the third place for anders järryd
CREATE TABLE table_name_75 (third_place VARCHAR, runner_up VARCHAR)
SELECT MIN(silver) FROM table_name_43 WHERE rank < 5 AND nation = "france" AND total > 19
What is the lowest silver for France with a rank less than 5 and a total larger than 19?
CREATE TABLE table_name_43 (silver INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT location FROM table_name_95 WHERE record = "9-0-0"
What was the location that led to a record of 9-0-0?
CREATE TABLE table_name_95 (location VARCHAR, record VARCHAR)
SELECT series FROM table_name_12 WHERE north_american_release_date = "2013-09-03"
What is the series with a North American release date on 2013-09-03?
CREATE TABLE table_name_12 (series VARCHAR, north_american_release_date VARCHAR)
SELECT location_attendance FROM table_27539808_5 WHERE december = 1
What is the location and attendance total from the game on December 1?
CREATE TABLE table_27539808_5 (location_attendance VARCHAR, december VARCHAR)
SELECT category FROM table_name_28 WHERE team = "cannondale vredestein"
Which category has a team of Cannondale Vredestein?
CREATE TABLE table_name_28 (category VARCHAR, team VARCHAR)
SELECT AVG(extras) FROM table_name_38 WHERE name = "muttiah muralitharan" AND runs_conceded < 353
What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded?
CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR)
SELECT entrant FROM table_name_67 WHERE year < 1953
Which entrant was present prior to 1953?
CREATE TABLE table_name_67 (entrant VARCHAR, year INTEGER)
SELECT round FROM table_name_92 WHERE club_team = "brandon wheat kings (whl)"
Which Round has a Club team of brandon wheat kings (whl)?
CREATE TABLE table_name_92 (round VARCHAR, club_team VARCHAR)
SELECT name FROM table_name_76 WHERE club = "dinamo moscow" AND pos = "d"
What is the Name of the D Player from the Dinamo Moscow Club?
CREATE TABLE table_name_76 (name VARCHAR, club VARCHAR, pos VARCHAR)
SELECT MIN(gold) FROM table_name_94 WHERE silver < 0
Which was the lowest gold when silver was smaller than 0?
CREATE TABLE table_name_94 (gold INTEGER, silver INTEGER)
SELECT MIN(kazakhstan) FROM table_name_20 WHERE kyrghizstan = 4.62 AND belarus < 2.46
Tell me the lowest kazakhstan for kyrghizstan of 4.62 and belarus less than 2.46
CREATE TABLE table_name_20 (kazakhstan INTEGER, kyrghizstan VARCHAR, belarus VARCHAR)
SELECT status FROM table_name_46 WHERE venue = "sydney sports ground , sydney"
Name the Status of Venue of sydney sports ground , sydney?
CREATE TABLE table_name_46 (status VARCHAR, venue VARCHAR)
SELECT score FROM table_name_17 WHERE date = "november 10, 2006"
What is the score of the game on November 10, 2006?
CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)
SELECT winning_constructor FROM table_name_96 WHERE date = "31 may" AND circuit = "madonie"
Name the Winning constructor on 31 may and a Circuit of madonie?
CREATE TABLE table_name_96 (winning_constructor VARCHAR, date VARCHAR, circuit VARCHAR)
SELECT won FROM table_13940275_5 WHERE points_against = "304"
what's the won with points against being 304
CREATE TABLE table_13940275_5 (won VARCHAR, points_against VARCHAR)
SELECT host_s_ FROM table_name_78 WHERE market = "new york"
What is the Host of the Show with a Market of New York?
CREATE TABLE table_name_78 (host_s_ VARCHAR, market VARCHAR)
SELECT MIN(production_code) FROM table_20098479_1
What is the lowest production code
CREATE TABLE table_20098479_1 (production_code INTEGER)
SELECT character_name FROM table_name_50 WHERE voice_actor__english_1998___pioneer_ = "laara sadiq"
what character did Laara sadiq play
CREATE TABLE table_name_50 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR)
SELECT title FROM table_name_78 WHERE end_term = 1825
Which Title has an 1825 end term?
CREATE TABLE table_name_78 (title VARCHAR, end_term VARCHAR)
SELECT MIN(total) FROM table_name_75 WHERE silver > 0 AND gold = 9 AND bronze < 9
With a silver greater than 0, gold of 9 and a bronze less than 9, what is the lowest total listed?
CREATE TABLE table_name_75 (total INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT venue FROM table_name_14 WHERE date = "29 april 2007"
Tell me the venue of 29 april 2007
CREATE TABLE table_name_14 (venue VARCHAR, date VARCHAR)
SELECT MAX(points) FROM table_name_62 WHERE year > 1953
Which of the biggest points numbers had a year more recent than 1953?
CREATE TABLE table_name_62 (points INTEGER, year INTEGER)
SELECT country FROM table_name_61 WHERE name = "azeri tv tower"
Which Country has azeri tv tower?
CREATE TABLE table_name_61 (country VARCHAR, name VARCHAR)
SELECT MAX(3 AS rd_throw) FROM table_17265535_7 WHERE equation = "6 × 9² + 6 × 9 + 6"
If the equation is 6 × 9² + 6 × 9 + 6, what is the 3rd throw?
CREATE TABLE table_17265535_7 (equation VARCHAR)
SELECT nationality FROM table_name_17 WHERE round = "1" AND position = "c"
What is the nationality of the player in Position C from Round 1?
CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, position VARCHAR)
SELECT bowler FROM table_22962745_35 WHERE batsmen = "Dwaraka Ravi Teja RP Singh Pragyan Ojha"
Who was the bowler when the batsmen was dwaraka ravi teja rp singh pragyan ojha?
CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)
SELECT enrollment FROM table_262476_1 WHERE nickname = "Tomcats"
Name the enrollment for tomcats
CREATE TABLE table_262476_1 (enrollment VARCHAR, nickname VARCHAR)
SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID WHERE T1.dept_name = 'Art'
Find the names of all instructors in the Art department who have taught some course and the course_id.
CREATE TABLE instructor (ID VARCHAR, dept_name VARCHAR); CREATE TABLE teaches (ID VARCHAR)
SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars"
how many managers left sunshine stars?
CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR)
SELECT date FROM table_name_39 WHERE shooter = "new targets from 1989"
What is the Date of Shooter New Targets from 1989's record?
CREATE TABLE table_name_39 (date VARCHAR, shooter VARCHAR)
SELECT position FROM table_name_27 WHERE round = 7
Which position is round 7?
CREATE TABLE table_name_27 (position VARCHAR, round VARCHAR)
SELECT MIN(lost) FROM table_name_46 WHERE team = "são paulo railway" AND points > 21
What is the lowest Lost for são paulo railway, Points more than 21?
CREATE TABLE table_name_46 (lost INTEGER, team VARCHAR, points VARCHAR)
SELECT award_name FROM table_15584199_3 WHERE team_name = "BLACK OCEAN CURRENT"
Name the award name for black ocean current
CREATE TABLE table_15584199_3 (award_name VARCHAR, team_name VARCHAR)
SELECT AVG(points) FROM table_name_5 WHERE wins < 0
What is the average points won when Carlos had 0 wins?
CREATE TABLE table_name_5 (points INTEGER, wins INTEGER)
SELECT last_win FROM table_name_89 WHERE club = "celtic"
When was the last win of Celtic?
CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR)
SELECT 1 AS st_leg FROM table_name_48 WHERE team_1 = "c.d. plaza amador"
What is the 1st leg where Team 1 is C.D. Plaza Amador?
CREATE TABLE table_name_48 (team_1 VARCHAR)
SELECT SUM(assists) FROM table_name_29 WHERE games = 13 AND rank < 3
How many Assists for the Player with 13 Games and a Rank less than 3?
CREATE TABLE table_name_29 (assists INTEGER, games VARCHAR, rank VARCHAR)
SELECT wed_1_june FROM table_29218221_3 WHERE thurs_2_june = "21' 05.87 107.300mph"
What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?
CREATE TABLE table_29218221_3 (wed_1_june VARCHAR, thurs_2_june VARCHAR)
SELECT COUNT(area__km_2__) FROM table_name_32 WHERE name = "drakenstein" AND population__2011_ < 251 OFFSET 262
What is the total area of drakenstein and a population less than 251,262?
CREATE TABLE table_name_32 (area__km_2__ VARCHAR, name VARCHAR, population__2011_ VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_15 WHERE object_type = "spiral galaxy" AND apparent_magnitude > 12.2
What is the Right ascension of the Object type spiral galaxy that has an Apparent magnitude larger that 12.2
CREATE TABLE table_name_15 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR)
SELECT points_against FROM table_name_58 WHERE club = "ystradgynlais rfc"
What is the Points against for the ystradgynlais rfc club?
CREATE TABLE table_name_58 (points_against VARCHAR, club VARCHAR)
SELECT democratic_coalition FROM table_2651755_1 WHERE together_we_can_do_more = "Sergio Castro ( PC )"
What is the democratic coalation when together we can do more is sergio castro ( pc )?
CREATE TABLE table_2651755_1 (democratic_coalition VARCHAR, together_we_can_do_more VARCHAR)
SELECT weight FROM table_name_2 WHERE player = "jonathan bender"
How much does Jonathan Bender weigh?
CREATE TABLE table_name_2 (weight VARCHAR, player VARCHAR)
SELECT others_percentage FROM table_20693870_1 WHERE mccain_percentage = "52.9%" AND mccain_number < 45205.0
What percentage was the others vote when McCain had 52.9% and less than 45205.0 voters?
CREATE TABLE table_20693870_1 (others_percentage VARCHAR, mccain_percentage VARCHAR, mccain_number VARCHAR)
SELECT MAX(competition_finish) FROM table_1354805_6 WHERE average = "31.1"
what is the highest number where people got done at 31.1
CREATE TABLE table_1354805_6 (competition_finish INTEGER, average VARCHAR)
SELECT rank FROM table_name_38 WHERE silver = 1 AND gold > 1
Which rank has 1 silver medal and more than 1 gold medal?
CREATE TABLE table_name_38 (rank VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT player FROM table_name_32 WHERE round = "7" AND mwehl_team = "detroit honeybaked" AND nhl_team = "philadelphia flyers"
Who was the player in Round 7, on the MWEHL Team Detroit Honeybaked, and the NHL Team, Philadelphia Flyers teams?
CREATE TABLE table_name_32 (player VARCHAR, nhl_team VARCHAR, round VARCHAR, mwehl_team VARCHAR)
SELECT position FROM table_30073089_2 WHERE fis_points = 3495
Name the position for fis points being 3495
CREATE TABLE table_30073089_2 (position VARCHAR, fis_points VARCHAR)
SELECT COUNT(outcome) FROM table_2201724_2 WHERE championship = "French championships"
How many different outcomes of the French Championships were there?
CREATE TABLE table_2201724_2 (outcome VARCHAR, championship VARCHAR)
SELECT location FROM table_name_90 WHERE time = "1:54:21"
At what location was the time 1:54:21?
CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)
SELECT COUNT(DISTINCT cName) FROM tryout
How many different colleges do attend the tryout test?
CREATE TABLE tryout (cName VARCHAR)
SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = "Miami Orange Bowl"
How many games or records were played on the Miami Orange Bowl?
CREATE TABLE table_17386066_2 (record VARCHAR, stadium VARCHAR)
SELECT film_name FROM table_name_60 WHERE language = "hindi" AND lyricist = "ravindra jain" AND music_director = "ravindra jain" AND year = 1979
What 1979 Hindi film had Ravindra Jain directing music?
CREATE TABLE table_name_60 (film_name VARCHAR, year VARCHAR, music_director VARCHAR, language VARCHAR, lyricist VARCHAR)
SELECT place FROM table_name_44 WHERE score < 70
What is Place, when Score is less than 70?
CREATE TABLE table_name_44 (place VARCHAR, score INTEGER)
SELECT MIN(losses) FROM table_name_39 WHERE wins < 6 AND south_west_dfl = "sandford"
Which Losses have Wins smaller than 6, and a South West DFL of sandford?
CREATE TABLE table_name_39 (losses INTEGER, wins VARCHAR, south_west_dfl VARCHAR)
SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland
What are all the school years where class AAAA is in Gregory-Portland?
CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR)
SELECT AVG(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'
What is the average gpa of the students enrolled in the course with code ACCT-211?
CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_gpa INTEGER, stu_num VARCHAR)
SELECT role FROM table_name_49 WHERE closing_date = "feb 4, 1961"
Name the role for Feb 4, 1961 closing date
CREATE TABLE table_name_49 (role VARCHAR, closing_date VARCHAR)
SELECT runner_up FROM table_name_26 WHERE winning_score = −16(68 - 70 - 65 - 65 = 268)
who is the runner-up when the winning score is −16 (68-70-65-65=268)?
CREATE TABLE table_name_26 (runner_up VARCHAR, winning_score VARCHAR)
SELECT AVG(points) FROM table_name_23 WHERE tyres = "b" AND chassis = "tf109"
Tell me the average points with tyres of b and chassis of tf109
CREATE TABLE table_name_23 (points INTEGER, tyres VARCHAR, chassis VARCHAR)
SELECT game_site FROM table_name_83 WHERE record = "bye"
Where did they play on their bye week?
CREATE TABLE table_name_83 (game_site VARCHAR, record VARCHAR)
SELECT reason_for_change FROM table_224840_3 WHERE vacator = "Henry Latimer (F)"
when the vacator was Henry Latimer (f), what were the causes for modification?
CREATE TABLE table_224840_3 (reason_for_change VARCHAR, vacator VARCHAR)