question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the Population density that has a Change (%) higher than 10.4, and a Population (2011) less than 8574, in the County of Queens?
CREATE TABLE table_name_63 (population_density INTEGER, population__2011_ VARCHAR, change___percentage_ VARCHAR, county VARCHAR)
SELECT AVG(population_density) FROM table_name_63 WHERE change___percentage_ > 10.4 AND county = "queens" AND population__2011_ < 8574
Which Date performed has a Position of bottom 3, and Scores by each individual judge of 5 + 5 + 4 = 14?
CREATE TABLE table_name_12 (date_performed VARCHAR, position VARCHAR, scores_by_each_individual_judge VARCHAR)
SELECT date_performed FROM table_name_12 WHERE position = "bottom 3" AND scores_by_each_individual_judge = 5 + 5 + 4 = 14
What's the home ground of the Lions?
CREATE TABLE table_name_15 (home_ground VARCHAR, nickname VARCHAR)
SELECT home_ground FROM table_name_15 WHERE nickname = "lions"
Where was the match with a score of 18.6 (114) - 21.14 (140)?
CREATE TABLE table_name_62 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_62 WHERE score = "18.6 (114) - 21.14 (140)"
How many locations have been used for ballparks named Memorial Stadium?
CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR)
SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = "Memorial Stadium"
Name the number of direction for debrecen
CREATE TABLE table_197286_4 (direction VARCHAR, further_cities VARCHAR)
SELECT COUNT(direction) FROM table_197286_4 WHERE further_cities = "Debrecen"
Who are the Runner(s)-up with a Margin of 1 stroke?
CREATE TABLE table_name_12 (runner_s__up VARCHAR, margin VARCHAR)
SELECT runner_s__up FROM table_name_12 WHERE margin = "1 stroke"
How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?
CREATE TABLE table_name_97 (Id VARCHAR)
SELECT SUM(2003) FROM table_name_97 WHERE 2001 = 0 AND 2009 > 0 AND 1999 < 0
Who had the high points on April 8?
CREATE TABLE table_17355408_9 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17355408_9 WHERE date = "April 8"
What is average Overall, when Pick is 19?
CREATE TABLE table_name_80 (overall INTEGER, pick VARCHAR)
SELECT AVG(overall) FROM table_name_80 WHERE pick = 19
What's the average number of wins for those with less than 2 byes?
CREATE TABLE table_name_62 (wins INTEGER, byes INTEGER)
SELECT AVG(wins) FROM table_name_62 WHERE byes < 2
What is the total react number with a time less than 20.05 and a lane less than 6?
CREATE TABLE table_name_53 (react VARCHAR, time VARCHAR, lane VARCHAR)
SELECT COUNT(react) FROM table_name_53 WHERE time < 20.05 AND lane < 6
Which Opponent has a Record of 65-95?
CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_12 WHERE record = "65-95"
List names of conductors in descending order of years of work.
CREATE TABLE conductor (Name VARCHAR, Year_of_Work VARCHAR)
SELECT Name FROM conductor ORDER BY Year_of_Work DESC
On what date did the away team Fremantle play?
CREATE TABLE table_16388478_3 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_16388478_3 WHERE away_team = "Fremantle"
When did Julie gets Validated originally air?
CREATE TABLE table_name_84 (original_air_date VARCHAR, title VARCHAR)
SELECT original_air_date FROM table_name_84 WHERE title = "julie gets validated"
what's the minimum rnd with race  italian grand prix
CREATE TABLE table_1140080_2 (rnd INTEGER, race VARCHAR)
SELECT MIN(rnd) FROM table_1140080_2 WHERE race = "Italian Grand Prix"
What was the record of the game after Week 6 with an attendance larger than 52,560?
CREATE TABLE table_name_21 (record VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_21 WHERE week > 6 AND attendance > 52 OFFSET 560
What is the score of player bill rogers?
CREATE TABLE table_name_30 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_30 WHERE player = "bill rogers"
Show the names and genders of players with a coach starting after 2011.
CREATE TABLE player (Player_name VARCHAR, gender VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR, Starting_year INTEGER); CREATE TABLE coach (Coach_ID VARCHAR)
SELECT T3.Player_name, T3.gender FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID WHERE T1.Starting_year > 2011
In what Year is the Gauge 2 ft 6 in?
CREATE TABLE table_name_22 (year VARCHAR, gauge VARCHAR)
SELECT year FROM table_name_22 WHERE gauge = "2 ft 6 in"
What is Hasan Shah's hometown?
CREATE TABLE table_name_40 (hometown VARCHAR, name VARCHAR)
SELECT hometown FROM table_name_40 WHERE name = "hasan shah"
What is the Label of the release on June 12, 2008 in Cyprus?
CREATE TABLE table_name_62 (label VARCHAR, date VARCHAR, region VARCHAR)
SELECT label FROM table_name_62 WHERE date = "june 12, 2008" AND region = "cyprus"
What is the name of the game whose team is Waterford and debuted later than 1995?
CREATE TABLE table_name_60 (game VARCHAR, team VARCHAR, début VARCHAR)
SELECT game FROM table_name_60 WHERE team = "waterford" AND début > 1995
what team scored 17
CREATE TABLE table_name_71 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_71 WHERE game = 17
Which tracking method has a latest stable release of 6.0?
CREATE TABLE table_name_23 (tracking_method VARCHAR, latest_stable_release VARCHAR)
SELECT tracking_method FROM table_name_23 WHERE latest_stable_release = "6.0"
What is Score, when Name is Nicole 赖淞凤?
CREATE TABLE table_name_38 (score VARCHAR, name VARCHAR)
SELECT score FROM table_name_38 WHERE name = "nicole 赖淞凤"
What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?
CREATE TABLE table_name_80 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT AVG(bronze) FROM table_name_80 WHERE silver = 0 AND rank = "17" AND gold < 1
Who wrote the episode with the production code 2j5153?
CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153"
Name the location when control is private and founded is 1870
CREATE TABLE table_15851155_1 (location VARCHAR, control VARCHAR, founded VARCHAR)
SELECT location FROM table_15851155_1 WHERE control = "Private" AND founded = 1870
What was Tom Weiskopf's Finish?
CREATE TABLE table_name_54 (finish VARCHAR, player VARCHAR)
SELECT finish FROM table_name_54 WHERE player = "tom weiskopf"
How many games did the team lose that played 7 games and has a GA of less than 27?
CREATE TABLE table_name_1 (losses VARCHAR, games_played VARCHAR, goals_against VARCHAR)
SELECT COUNT(losses) FROM table_name_1 WHERE games_played = 7 AND goals_against < 27
What is the best fit (WMAP, extra parameter)when the best fit (all data) is .0224 ± .0009?
CREATE TABLE table_name_92 (best_fit__wmap VARCHAR, _extra_parameter_ VARCHAR, best_fit__all_data_ VARCHAR)
SELECT best_fit__wmap, _extra_parameter_ FROM table_name_92 WHERE best_fit__all_data_ = ".0224 ± .0009"
What was the score of the game wehre the deportes savio were the home team?
CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_78 WHERE home = "deportes savio"
Which Capacity has a School of windlehurst school, and an Ofsted smaller than 131889?
CREATE TABLE table_name_63 (capacity INTEGER, school VARCHAR, ofsted VARCHAR)
SELECT SUM(capacity) FROM table_name_63 WHERE school = "windlehurst school" AND ofsted < 131889
Which artist speaks croatian?
CREATE TABLE table_name_32 (artist VARCHAR, language VARCHAR)
SELECT artist FROM table_name_32 WHERE language = "croatian"
Find the name and city of the airport which is the destination of the most number of routes.
CREATE TABLE airports (name VARCHAR, city VARCHAR, apid VARCHAR); CREATE TABLE routes (dst_apid VARCHAR)
SELECT T1.name, T1.city, T2.dst_apid FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid GROUP BY T2.dst_apid ORDER BY COUNT(*) DESC LIMIT 1
How many cities are there that have more than 3 airports?
CREATE TABLE airports (city VARCHAR)
SELECT COUNT(*) FROM (SELECT city FROM airports GROUP BY city HAVING COUNT(*) > 3)
Name the class when position is rt
CREATE TABLE table_14624447_39 (class VARCHAR, position VARCHAR)
SELECT class FROM table_14624447_39 WHERE position = "RT"
Which Object type has a Constellation of orion, and an NGC number larger than 2174, and a Declination (J2000) of °48′06″?
CREATE TABLE table_name_32 (object_type VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)
SELECT object_type FROM table_name_32 WHERE constellation = "orion" AND ngc_number > 2174 AND declination___j2000__ = "°48′06″"
When the Score was 4-10, what was the Attendance?
CREATE TABLE table_name_13 (attendance VARCHAR, score VARCHAR)
SELECT attendance FROM table_name_13 WHERE score = "4-10"
Who was the supporting actress in a film with Diane Keaton as the leading actress?
CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, leading_actress VARCHAR)
SELECT supporting_actress FROM table_24225238_1 WHERE leading_actress = "Diane Keaton"
What is the netflix code where the series and episode are 4-11?
CREATE TABLE table_15187735_4 (netflix VARCHAR, series_ep VARCHAR)
SELECT netflix FROM table_15187735_4 WHERE series_ep = "4-11"
what is the sum of spartak when played is 102 and draw is less than 19?
CREATE TABLE table_name_54 (spartak INTEGER, played VARCHAR, draw VARCHAR)
SELECT SUM(spartak) FROM table_name_54 WHERE played = 102 AND draw < 19
What game took place on April 28?
CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_33 WHERE date = "april 28"
What's the season number of the episode originally seen by 6.64 million people in the US?
CREATE TABLE table_23242950_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
SELECT MIN(no_in_season) FROM table_23242950_1 WHERE us_viewers__millions_ = "6.64"
What is the smallest number of points with an Engine of climax v8, and a Year of 1966?
CREATE TABLE table_name_87 (points INTEGER, engine VARCHAR, year VARCHAR)
SELECT MIN(points) FROM table_name_87 WHERE engine = "climax v8" AND year = 1966
What is the position in table when the date of vacancy was 4 january 2011?
CREATE TABLE table_26914854_3 (position_in_table VARCHAR, date_of_vacancy VARCHAR)
SELECT position_in_table FROM table_26914854_3 WHERE date_of_vacancy = "4 January 2011"
what is the mountain peak when the location is 37.5775°n 105.4856°w?
CREATE TABLE table_name_73 (mountain_peak VARCHAR, location VARCHAR)
SELECT mountain_peak FROM table_name_73 WHERE location = "37.5775°n 105.4856°w"
What is the venue where the home team is Footscray?
CREATE TABLE table_name_57 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_57 WHERE home_team = "footscray"
What are the distinct classes that races can have?
CREATE TABLE race (CLASS VARCHAR)
SELECT DISTINCT CLASS FROM race
What was the Population (2011) when the Population (2006) was less than 7083, and the Population density less than 342.8, and the Change (%) of 5, and an Area (km²) larger than 4.5?
CREATE TABLE table_name_2 (population__2011_ VARCHAR, area__km²_ VARCHAR, change___percentage_ VARCHAR, population__2006_ VARCHAR, population_density VARCHAR)
SELECT COUNT(population__2011_) FROM table_name_2 WHERE population__2006_ < 7083 AND population_density < 342.8 AND change___percentage_ = 5 AND area__km²_ > 4.5
what's the capacity with team being berwick rangers
CREATE TABLE table_14003108_1 (capacity VARCHAR, team VARCHAR)
SELECT capacity FROM table_14003108_1 WHERE team = "Berwick Rangers"
Which level is quarterfinals domestic cup?
CREATE TABLE table_name_22 (level VARCHAR, domestic_cup VARCHAR)
SELECT level FROM table_name_22 WHERE domestic_cup = "quarterfinals"
What is the attendance number for December 2, 1979?
CREATE TABLE table_name_52 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_52 WHERE date = "december 2, 1979"
What is the Venue for Goal number 1?
CREATE TABLE table_name_24 (venue VARCHAR, goal VARCHAR)
SELECT venue FROM table_name_24 WHERE goal = 1
What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine?
CREATE TABLE table_name_19 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT MAX(laps) FROM table_name_19 WHERE grid > 13 AND time_retired = "engine" AND driver = "luigi piotti"
which country won swimming track & field when lexington won swimming and madison won volleyball
CREATE TABLE table_16423070_4 (track_ VARCHAR, _field VARCHAR, swimming VARCHAR, volleyball VARCHAR)
SELECT track_ & _field FROM table_16423070_4 WHERE swimming = "Lexington" AND volleyball = "Madison"
What team is Frank Hulbert on?
CREATE TABLE table_name_26 (team VARCHAR, rider VARCHAR)
SELECT team FROM table_name_26 WHERE rider = "frank hulbert"
How many donors have endowment for school named "Glenn"?
CREATE TABLE school (school_id VARCHAR, school_name VARCHAR); CREATE TABLE endowment (donator_name VARCHAR, school_id VARCHAR)
SELECT COUNT(DISTINCT T1.donator_name) FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = "Glenn"
Which text has traditional characters of 心如猨猴?
CREATE TABLE table_name_47 (text VARCHAR, traditional_characters VARCHAR)
SELECT text FROM table_name_47 WHERE traditional_characters = "心如猨猴"
During the Big Seven Conference which team was the regular season winner?
CREATE TABLE table_28365816_2 (regular_season_winner VARCHAR, conference VARCHAR)
SELECT regular_season_winner FROM table_28365816_2 WHERE conference = "Big Seven conference"
In what year was Terry Johnson nominated for a Tony award?
CREATE TABLE table_name_63 (year VARCHAR, award VARCHAR, nominee VARCHAR)
SELECT COUNT(year) FROM table_name_63 WHERE award = "tony award" AND nominee = "terry johnson"
who is the away team when the home team is sydney spirit?
CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_28 WHERE home_team = "sydney spirit"
The original air date of 29November2007 has what total no.?
CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR)
SELECT total_no FROM table_11642945_1 WHERE original_air_date = "29November2007"
What is the rank for Omni nashville hotel?
CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)
SELECT SUM(rank) FROM table_name_89 WHERE name = "omni nashville hotel"
What was the location and the crowd attendance on December 9?
CREATE TABLE table_17311759_5 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17311759_5 WHERE date = "December 9"
What rank was the swimmer in lane 4?
CREATE TABLE table_name_41 (rank VARCHAR, lane VARCHAR)
SELECT rank FROM table_name_41 WHERE lane = 4
In which Tournament was Mansour Bahrami Eric Winogradsky
CREATE TABLE table_name_9 (tournament VARCHAR, opponent_in_final VARCHAR)
SELECT tournament FROM table_name_9 WHERE opponent_in_final = "mansour bahrami eric winogradsky"
Show me the departure date and arrival date for all flights from Los Angeles to Honolulu.
CREATE TABLE Flight (departure_date VARCHAR, arrival_date VARCHAR, origin VARCHAR, destination VARCHAR)
SELECT departure_date, arrival_date FROM Flight WHERE origin = "Los Angeles" AND destination = "Honolulu"
What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0?
CREATE TABLE table_name_81 (gold INTEGER, participants VARCHAR, silver VARCHAR)
SELECT SUM(gold) FROM table_name_81 WHERE participants = 4 AND silver < 0
What is the date Listed of the Bridge Built CA.1876?
CREATE TABLE table_name_46 (listed VARCHAR, built VARCHAR)
SELECT listed FROM table_name_46 WHERE built = "ca.1876"
In what year was the winner a soccer player from Virginia?
CREATE TABLE table_name_81 (year INTEGER, sport VARCHAR, college VARCHAR)
SELECT SUM(year) FROM table_name_81 WHERE sport = "soccer" AND college = "virginia"
What is the power of an engine of 1972?
CREATE TABLE table_name_73 (power VARCHAR, years VARCHAR)
SELECT power FROM table_name_73 WHERE years = "1972"
What is the location for the 23-17 record?
CREATE TABLE table_name_67 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_67 WHERE record = "23-17"
How many stages are in a distance of 2,192 km?
CREATE TABLE table_name_11 (stages VARCHAR, distance VARCHAR)
SELECT stages FROM table_name_11 WHERE distance = "2,192 km"
How many laps does grid 4 have?
CREATE TABLE table_name_74 (laps VARCHAR, grid VARCHAR)
SELECT laps FROM table_name_74 WHERE grid = "4"
What was the score on may 21?
CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_43 WHERE date = "may 21"
What is the Mayor of Riva del Garda in 2010?
CREATE TABLE table_name_37 (mayor VARCHAR, election VARCHAR, municipality VARCHAR)
SELECT mayor FROM table_name_37 WHERE election = 2010 AND municipality = "riva del garda"
What is the average of all Heats of competitors with a Time of 59.11 and a lane higher than 3?
CREATE TABLE table_name_43 (heat INTEGER, time VARCHAR, lane VARCHAR)
SELECT AVG(heat) FROM table_name_43 WHERE time = "59.11" AND lane > 3
what is the event when the result is loss and the record is 7-5?
CREATE TABLE table_name_50 (event VARCHAR, result VARCHAR, record VARCHAR)
SELECT event FROM table_name_50 WHERE result = "loss" AND record = "7-5"
Who was the winner when Niki Lauda held pole position?
CREATE TABLE table_name_48 (race VARCHAR, pole_position VARCHAR)
SELECT race AS Winner FROM table_name_48 WHERE pole_position = "niki lauda"
Who were the builders of the boat designed by Botin Carkeek?
CREATE TABLE table_19872699_1 (builder VARCHAR, design_firm VARCHAR)
SELECT builder FROM table_19872699_1 WHERE design_firm = "Botin Carkeek"
What team is in the city of Rock Island?
CREATE TABLE table_27961684_1 (team_name VARCHAR, city VARCHAR)
SELECT team_name FROM table_27961684_1 WHERE city = "Rock Island"
Name the para for 1.5% commewijne
CREATE TABLE table_16886076_1 (para VARCHAR, commewijne VARCHAR)
SELECT para FROM table_16886076_1 WHERE commewijne = "1.5%"
How many team numbers have john keane as the player?
CREATE TABLE table_name_93 (team_number VARCHAR, player VARCHAR)
SELECT COUNT(team_number) FROM table_name_93 WHERE player = "john keane"
What is Senyi N'Diaye's Position?
CREATE TABLE table_name_35 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_35 WHERE name = "senyi n'diaye"
What date was a game played at Headingley Stadium?
CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_67 WHERE venue = "headingley stadium"
what is the district where the candidates are charles edward bennett (d) unopposed?
CREATE TABLE table_1341663_10 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_1341663_10 WHERE candidates = "Charles Edward Bennett (D) Unopposed"
Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?
CREATE TABLE table_name_71 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR)
SELECT winner FROM table_name_71 WHERE points_classification = "giuseppe saronni" AND trofeo_fast_team = "bianchi" AND stage = "3"
What is the Pinyin name for Dingyuan County?
CREATE TABLE table_1982739_2 (pinyin VARCHAR, english_name VARCHAR)
SELECT pinyin FROM table_1982739_2 WHERE english_name = "Dingyuan County"
Who won the Northumberland Senior Benevolent Bowl, when the Northumberland Minor Cup was won by Whitley Bay 'a'?
CREATE TABLE table_name_25 (northumberland_senior_benevolent_bowl VARCHAR, northumberland_minor_cup VARCHAR)
SELECT northumberland_senior_benevolent_bowl FROM table_name_25 WHERE northumberland_minor_cup = "whitley bay 'a'"
What was the final score of the game on June 17?
CREATE TABLE table_name_74 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_74 WHERE date = "june 17"
Which Network is on a Vidéotron (Gatineau) channel lower than 8 and a Rogers Cable (Ottawa) channel lower than 8 and has a Call Sign of cjoh-dt?
CREATE TABLE table_name_26 (network VARCHAR, call_sign VARCHAR, vidéotron__gatineau_ VARCHAR, rogers_cable__ottawa_ VARCHAR)
SELECT network FROM table_name_26 WHERE vidéotron__gatineau_ < 8 AND rogers_cable__ottawa_ < 8 AND call_sign = "cjoh-dt"
what's the state with highest point being mount katahdin
CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR)
SELECT state FROM table_1416612_1 WHERE highest_point = "Mount Katahdin"
How many innings for the player with an average of 22.61?
CREATE TABLE table_28846752_12 (innings VARCHAR, average VARCHAR)
SELECT innings FROM table_28846752_12 WHERE average = "22.61"
What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts?
CREATE TABLE table_name_52 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
SELECT MIN(wins) FROM table_name_52 WHERE top_25 > 5 AND cuts_made > 38
Who had the most rebounds in the game against Phoenix with a number over 76?
CREATE TABLE table_name_16 (high_rebounds VARCHAR, game VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_name_16 WHERE game > 76 AND team = "phoenix"
for the tournament of world amateur championship what was the result in 2010?
CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT result FROM table_name_81 WHERE year = 2010 AND tournament = "world amateur championship"
What is the title of Senusret I?
CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)
SELECT title FROM table_name_78 WHERE name = "senusret i"