answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT percentage FROM table_23183195_2 WHERE road_record = "3-4" AND home_record = "7-0"
What is the percentage for the team with a road record of 3-4 and a home record of 7-0?
CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR)
SELECT SUM(played) FROM table_name_67 WHERE team = "c.d. luis ángel firpo" AND place > 3
Name the sum of played for c.d. luis ángel firpo and place more than 3
CREATE TABLE table_name_67 (played INTEGER, team VARCHAR, place VARCHAR)
SELECT airport FROM table_name_40 WHERE icao = "ulli"
What is the name of the airport with an ICAO of ULLI?
CREATE TABLE table_name_40 (airport VARCHAR, icao VARCHAR)
SELECT MAX(male_life_expectancy) FROM table_2701625_1 WHERE country = "Pakistan"
Name the most male life expectancy for pakistan
CREATE TABLE table_2701625_1 (male_life_expectancy INTEGER, country VARCHAR)
SELECT Double AS non_suited_match FROM table_name_99 WHERE non_suited_match = "3:1" AND house_edge = "3.53%"
With a house edge of 3.53% and a Non-Suited Matched of 3:1, name the Double Non-Suited Match.
CREATE TABLE table_name_99 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE week_of = "13 November" AND runner_up = "Pat Du Pré"
Who were the semifinalists in the week of 13 November when the runner-up was Pat Du Pré?
CREATE TABLE table_29302781_12 (semifinalists VARCHAR, week_of VARCHAR, runner_up VARCHAR)
SELECT money___$__ FROM table_name_40 WHERE place = "t6" AND player = "chris dimarco"
What is the Money ($) when the Place is t6, and Player is chris dimarco?
CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
SELECT headquarter FROM table_name_4 WHERE newspaper_magazine = "al-ayyam"
What is Headquarter, when Newspaper/Magazine is Al-Ayyam?
CREATE TABLE table_name_4 (headquarter VARCHAR, newspaper_magazine VARCHAR)
SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2
Which team has 1 as the drawn, with 2 as the lost?
CREATE TABLE table_name_37 (team VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT score FROM table_name_6 WHERE date = "september 20"
What is the score on september 20?
CREATE TABLE table_name_6 (score VARCHAR, date VARCHAR)
SELECT integrated FROM table_name_40 WHERE allied_related = "some shared"
Which integrated has an allied-related of some shared?
CREATE TABLE table_name_40 (integrated VARCHAR, allied_related VARCHAR)
SELECT MIN(best) FROM table_name_13 WHERE qual_2 = "49.887"
Who had the lowest Best time that also had a Qual 2 of 49.887?
CREATE TABLE table_name_13 (best INTEGER, qual_2 VARCHAR)
SELECT year FROM table_name_69 WHERE hungarian_top_40_album_charts = "3"
What year had the Hungarian top 40 album charts of 3?
CREATE TABLE table_name_69 (year VARCHAR, hungarian_top_40_album_charts VARCHAR)
SELECT COUNT(cash_prize) FROM table_25926120_3 WHERE language = "Hindi" AND name_of_film = "Jodhaa Akbar"
How many cash prizes were given for the hindi language film jodhaa akbar?
CREATE TABLE table_25926120_3 (cash_prize VARCHAR, language VARCHAR, name_of_film VARCHAR)
SELECT COUNT(*) FROM concert WHERE stadium_id = (SELECT stadium_id FROM stadium ORDER BY capacity DESC LIMIT 1)
Find the number of concerts happened in the stadium with the highest capacity .
CREATE TABLE concert (stadium_id VARCHAR, capacity VARCHAR); CREATE TABLE stadium (stadium_id VARCHAR, capacity VARCHAR)
SELECT tournament FROM table_name_98 WHERE opponent = "lu jiaxiang"
What is Tournament, when Opponent is "Lu Jiaxiang"?
CREATE TABLE table_name_98 (tournament VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_2 WHERE opponent = "gabriela paz-franco"
What date was gabriela paz-franco the opponent?
CREATE TABLE table_name_2 (date VARCHAR, opponent VARCHAR)
SELECT particle FROM table_name_85 WHERE makeup = "d s s" AND spin___parity___j_p = "3⁄2 +"
Which Particle has a Makeup of d s s and a Spin (Parity) J P of 3⁄2 +?
CREATE TABLE table_name_85 (particle VARCHAR, makeup VARCHAR, spin___parity___j_p VARCHAR)
SELECT position FROM table_24565004_14 WHERE name = "Thierry Morin"
What positions correspond to the name Thierry Morin?
CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR)
SELECT competition FROM table_name_8 WHERE year > 2009 AND notes = "team"
What competition took place in a year later than 2009 with team notes?
CREATE TABLE table_name_8 (competition VARCHAR, year VARCHAR, notes VARCHAR)
SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = "133"
june 10-11 when november 3 is 133?
CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR)
SELECT position FROM table_name_20 WHERE game_2 = "andrew farrar"
During Game 2, which position did Andrew Farrar play?
CREATE TABLE table_name_20 (position VARCHAR, game_2 VARCHAR)
SELECT builder FROM table_name_90 WHERE works_number > 199 AND date = "4/1906"
Name the builder for 4/1906 and works number more than 199
CREATE TABLE table_name_90 (builder VARCHAR, works_number VARCHAR, date VARCHAR)
SELECT end_date FROM table_name_50 WHERE minister = "robert goebbels"
Name the end date for robert goebbels
CREATE TABLE table_name_50 (end_date VARCHAR, minister VARCHAR)
SELECT place FROM table_name_87 WHERE player = "fredrik jacobson"
What place is Fredrik Jacobson from?
CREATE TABLE table_name_87 (place VARCHAR, player VARCHAR)
SELECT product_name, typical_buying_price FROM products
What are the names and buying prices of all the products?
CREATE TABLE products (product_name VARCHAR, typical_buying_price VARCHAR)
SELECT MIN(highest_score) FROM table_name_92 WHERE worst_dancer_s_ = "master p" AND best_dancer_s_ = "drew lachey" AND lowest_score < 8
What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?
CREATE TABLE table_name_92 (highest_score INTEGER, lowest_score VARCHAR, worst_dancer_s_ VARCHAR, best_dancer_s_ VARCHAR)
SELECT overweight__incl_obese__adults FROM table_18958648_1 WHERE obesity_rank = 21
What are all percentages of overweight or obese adults for obesity rank of 21?
CREATE TABLE table_18958648_1 (overweight__incl_obese__adults VARCHAR, obesity_rank VARCHAR)
SELECT german FROM table_name_85 WHERE macedonian = "беше слушнал/-а/-о"
What's the German Pluperfect when the Macedonian is беше слушнал/-а/-о?
CREATE TABLE table_name_85 (german VARCHAR, macedonian VARCHAR)
SELECT june FROM table_name_3 WHERE november = "lorraine olivia"
Who is the June playmate with the November playmate Lorraine Olivia?
CREATE TABLE table_name_3 (june VARCHAR, november VARCHAR)
SELECT surface FROM table_name_80 WHERE date = "13 february 1994"
On what type of surface did they play on 13 February 1994?
CREATE TABLE table_name_80 (surface VARCHAR, date VARCHAR)
SELECT time FROM table_name_17 WHERE event = "4x100 m relay" AND venue = "frankfurt"
What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt?
CREATE TABLE table_name_17 (time VARCHAR, event VARCHAR, venue VARCHAR)
SELECT tries_against FROM table_name_22 WHERE played = "22" AND drawn = "1" AND try_bonus = "13"
How many tries when 22 are played with 1 draw and a try bonus of 13?
CREATE TABLE table_name_22 (tries_against VARCHAR, try_bonus VARCHAR, played VARCHAR, drawn VARCHAR)
SELECT 2008 FROM table_name_44 WHERE tournament = "year end ranking"
What's was the 2008 during the Year End Ranking?
CREATE TABLE table_name_44 (tournament VARCHAR)
SELECT terry_kilrea__dropped_out_ FROM table_name_63 WHERE polling_firm = "holinshed" AND bob_chiarelli = "22.5%"
What are the polling dates for polling firm Holinshed when Terry Kilrea dropped out and Bob Chiarelli has 22.5%?
CREATE TABLE table_name_63 (terry_kilrea__dropped_out_ VARCHAR, polling_firm VARCHAR, bob_chiarelli VARCHAR)
SELECT MAX(pick__number) FROM table_name_86 WHERE name = "lawrence sidbury" AND round < 4
Which Pick # is the highest one that has a Name of lawrence sidbury, and a Round smaller than 4?
CREATE TABLE table_name_86 (pick__number INTEGER, name VARCHAR, round VARCHAR)
SELECT location_attendance FROM table_name_30 WHERE score = "l 92–116"
What location attendance had a score of l 92–116?
CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR)
SELECT league FROM table_name_18 WHERE year = "2010-11"
In 2010-11, what was the League name?
CREATE TABLE table_name_18 (league VARCHAR, year VARCHAR)
SELECT SUM(population) FROM table_name_38 WHERE name_of_city = "chimbote"
What is the population of Chimbote?
CREATE TABLE table_name_38 (population INTEGER, name_of_city VARCHAR)
SELECT MAX(matches) FROM table_21486890_1 WHERE name = "Mark Taylor Category:Articles with hCards"
Name the matches for mark taylor category:articles with hcards
CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR)
SELECT 2 AS nd_party FROM table_name_96 WHERE election = "1837"
Which 2nd Party has an Election of 1837?
CREATE TABLE table_name_96 (election VARCHAR)
SELECT winner FROM table_name_21 WHERE score = "199 (-14)" AND date = "oct 31"
who won with a score of 199 (-14) on oct 31?
CREATE TABLE table_name_21 (winner VARCHAR, score VARCHAR, date VARCHAR)
SELECT record FROM table_14954150_1 WHERE date = "September 22, 1974"
What was the record on September 22, 1974?
CREATE TABLE table_14954150_1 (record VARCHAR, date VARCHAR)
SELECT 1 AS st_round FROM table_name_33 WHERE team_1 = "lb châteauroux (d2)"
What shows for the 1st round when the team 1 was Lb Châteauroux (d2)?
CREATE TABLE table_name_33 (team_1 VARCHAR)
SELECT first_baseman FROM table_name_53 WHERE shortstop = "zoilo versalles"
Who was the First Baseman when the Shortstop was zoilo versalles?
CREATE TABLE table_name_53 (first_baseman VARCHAR, shortstop VARCHAR)
SELECT total_pld FROM table_22011138_7 WHERE pos = 4
If the POS is 4, what is the total PLD?
CREATE TABLE table_22011138_7 (total_pld VARCHAR, pos VARCHAR)
SELECT COUNT(year) FROM table_name_46 WHERE formula = "grand prix"
How many years had a formula of Grand Prix?
CREATE TABLE table_name_46 (year VARCHAR, formula VARCHAR)
SELECT score FROM table_name_25 WHERE player = "gary player"
What was gary player's score?
CREATE TABLE table_name_25 (score VARCHAR, player VARCHAR)
SELECT player FROM table_16494599_10 WHERE school_club_team = "Stanford"
Who are the players that have attended Stanford?
CREATE TABLE table_16494599_10 (player VARCHAR, school_club_team VARCHAR)
SELECT higgins FROM table_name_35 WHERE scallon = "2%"
What is the Higgins with a Scallon that is 2%?
CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR)
SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 16
Which rank has a team of Suzuki with under 16 points?
CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR)
SELECT COUNT(turbine_manufacturer) FROM table_24837750_1 WHERE installed_capacity__mw_ = "189"
How many turbine manufacturers installed a capacity of 189 MW?
CREATE TABLE table_24837750_1 (turbine_manufacturer VARCHAR, installed_capacity__mw_ VARCHAR)
SELECT opponent FROM table_name_43 WHERE venue = "a" AND date = "17 february 1900"
Who played against in venue a on 17 february 1900?
CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR)
SELECT away_team FROM table_name_68 WHERE home_team = "hawthorn"
Who was Hawthorn's away opponent?
CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)
SELECT genre FROM table_name_7 WHERE artist = "prince"
What is the Genre when the Artist is Prince?
CREATE TABLE table_name_7 (genre VARCHAR, artist VARCHAR)
SELECT AVG(october) FROM table_name_2 WHERE record = "5–1–0" AND game > 6
Which October has a Record of 5–1–0, and a Game larger than 6?
CREATE TABLE table_name_2 (october INTEGER, record VARCHAR, game VARCHAR)
SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'female'
Find the female friends of Alice.
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR)
SELECT animal FROM table_name_11 WHERE ap_duration__ms_ = "1.0" AND conduction_speed__m_s_ = "7–30"
Which animal has an AP duration of 1.0 and a conduction speed of 7–30?
CREATE TABLE table_name_11 (animal VARCHAR, ap_duration__ms_ VARCHAR, conduction_speed__m_s_ VARCHAR)
SELECT score FROM table_name_1 WHERE game > 11 AND october = 30
What score has a game greater than 11 on October 30?
CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR, october VARCHAR)
SELECT MAX(no_in_series) FROM table_27987768_1 WHERE written_by = "Eric Gilliland"
What number in series was the episode written by Eric Gilliland?
CREATE TABLE table_27987768_1 (no_in_series INTEGER, written_by VARCHAR)
SELECT T1.engineer_id, T1.first_name, T1.last_name FROM Maintenance_Engineers AS T1 JOIN Engineer_Visits AS T2 ON T1.engineer_id = T2.engineer_id GROUP BY T1.engineer_id ORDER BY COUNT(*) LIMIT 1
Among those engineers who have visited, which engineer makes the least number of visits? List the engineer id, first name and last name.
CREATE TABLE Engineer_Visits (engineer_id VARCHAR); CREATE TABLE Maintenance_Engineers (engineer_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT city FROM table_name_52 WHERE colony_name = "northeastern crescent colony"
Which City has a Colony Name of northeastern crescent colony?
CREATE TABLE table_name_52 (city VARCHAR, colony_name VARCHAR)
SELECT segment_a FROM table_15187735_8 WHERE series_ep = "8-08"
Name the segment a for 8-08
CREATE TABLE table_15187735_8 (segment_a VARCHAR, series_ep VARCHAR)
SELECT format_name FROM table_name_44 WHERE video_coding = "dv" AND color_sampling = "4:1:1"
What format name has dv as video coding and 4:1:1 as the color sampling?
CREATE TABLE table_name_44 (format_name VARCHAR, video_coding VARCHAR, color_sampling VARCHAR)
SELECT time FROM table_name_39 WHERE jockey = "isaac murphy" AND winner = "kingman"
Which time contains the jockery of isaac murphy as well as the winner of kingman?
CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR)
SELECT team FROM table_22654073_6 WHERE record = "3-2"
Name the team for record 3-2
CREATE TABLE table_22654073_6 (team VARCHAR, record VARCHAR)
SELECT tv_season FROM table_name_4 WHERE season > 2 AND ranking = "#5"
Which TV season has a Season larger than 2, and a Ranking of #5?
CREATE TABLE table_name_4 (tv_season VARCHAR, season VARCHAR, ranking VARCHAR)
SELECT SUM(points) FROM table_name_47 WHERE year < 1994 AND chassis = "lola lc89b"
Name the sumof points for year less than 1994 and chassis of lola lc89b
CREATE TABLE table_name_47 (points INTEGER, year VARCHAR, chassis VARCHAR)
SELECT college FROM table_name_67 WHERE school = "south medford high school"
Which college is the player from South Medford High School headed to?
CREATE TABLE table_name_67 (college VARCHAR, school VARCHAR)
SELECT mountain_pass FROM table_name_44 WHERE elevation = "10,001 feet 3048 m"
What Mountain Pass has an Elevation of 10,001 feet 3048 m?
CREATE TABLE table_name_44 (mountain_pass VARCHAR, elevation VARCHAR)
SELECT year FROM table_name_63 WHERE league_position = "8/12"
What year had a league position of 8/12?
CREATE TABLE table_name_63 (year VARCHAR, league_position VARCHAR)
SELECT city___state FROM table_name_93 WHERE winner = "mal rose" AND date = "20 jul"
What is City / State, when Winner is Mal Rose, and when Date is 20 Jul?
CREATE TABLE table_name_93 (city___state VARCHAR, winner VARCHAR, date VARCHAR)
SELECT MAX(attendance) FROM table_17360840_9 WHERE opponent = "Ottawa Senators" AND record = "24-35-17"
What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17?
CREATE TABLE table_17360840_9 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
SELECT COUNT(grid) FROM table_name_51 WHERE laps > 60 AND driver = "heinz-harald frentzen"
When driver heinz-harald frentzen has a number of laps greater than 60, what is the sum of grid?
CREATE TABLE table_name_51 (grid VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT home FROM table_name_49 WHERE attendance = 2709
Who was the home team during the match where there were 2709 in attendance?
CREATE TABLE table_name_49 (home VARCHAR, attendance VARCHAR)
SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE winners_from_previous_round = "16"
Which leagues entered in rounds where there were 16 winners from the previous round?
CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, winners_from_previous_round VARCHAR)
SELECT last_title FROM table_2454589_1 WHERE first_season_in_current_spell = 2012
Name the last title for 2012
CREATE TABLE table_2454589_1 (last_title VARCHAR, first_season_in_current_spell VARCHAR)
SELECT episode FROM table_29547777_1 WHERE original_performer = "Diana Ross"
What is the episode when the original performaer is diana ross?
CREATE TABLE table_29547777_1 (episode VARCHAR, original_performer VARCHAR)
SELECT SUM(number_of_clubs) FROM table_name_30 WHERE season < 1992 AND total_wins > 3
What is the sum of the number of clubs in seasons before 1992 with more than 3 total wins?
CREATE TABLE table_name_30 (number_of_clubs INTEGER, season VARCHAR, total_wins VARCHAR)
SELECT year FROM table_name_69 WHERE start = "25" AND qual = "141.105"
In what year did a Qual of 141.105 with a Start of 25 happen?
CREATE TABLE table_name_69 (year VARCHAR, start VARCHAR, qual VARCHAR)
SELECT poor_law_union FROM table_30120566_1 WHERE townland = "Lisladeen"
What is Lisladeen poor law union?
CREATE TABLE table_30120566_1 (poor_law_union VARCHAR, townland VARCHAR)
SELECT crew_chief FROM table_name_10 WHERE team = "chip ganassi racing with felix sabates" AND driver_s_ = "casey mears"
Who is the crew chief of team Chip Ganassi Racing with Felix Sabates, which has Casey Mears as the driver?
CREATE TABLE table_name_10 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR)
SELECT time FROM table_name_55 WHERE rank = 6
What is the Time of the Athlete with a Rank of 6?
CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR)
SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc"
How many wins for the team with points less than 6 and a 350cc class?
CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR)
SELECT date FROM table_name_40 WHERE location = "mexico city" AND winner = "vampiro"
What is the date of the match where vampiro was the winner in Mexico City?
CREATE TABLE table_name_40 (date VARCHAR, location VARCHAR, winner VARCHAR)
SELECT awards FROM table_name_33 WHERE year > 2005
Which awards happened more recently than 2005?
CREATE TABLE table_name_33 (awards VARCHAR, year INTEGER)
SELECT 2000 FROM table_name_4 WHERE 2012 = "4r"
what is 2000 when 2012 is 4r?
CREATE TABLE table_name_4 (Id VARCHAR)
SELECT manager FROM table_29250534_1 WHERE club = "FC Inter"
Who is the manager for the fc inter club?
CREATE TABLE table_29250534_1 (manager VARCHAR, club VARCHAR)
SELECT MAX(bronze) FROM table_name_66 WHERE gold > 22 AND rank < 2
How many bronzes for nations with over 22 golds and ranked under 2?
CREATE TABLE table_name_66 (bronze INTEGER, gold VARCHAR, rank VARCHAR)
SELECT parish__prestegjeld_ FROM table_name_44 WHERE church_name = "vangsnes kyrkje"
Which parish has a church named Vangsnes Kyrkje?
CREATE TABLE table_name_44 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
SELECT AVG(gold) FROM table_name_59 WHERE nation = "australia"
How many Gold medals did Australia receive?
CREATE TABLE table_name_59 (gold INTEGER, nation VARCHAR)
SELECT bowling_style FROM table_11950720_8 WHERE player = "Shivnarine Chanderpaul"
Shivnarine Chanderpaul used what bowling style?
CREATE TABLE table_11950720_8 (bowling_style VARCHAR, player VARCHAR)
SELECT song_s__—_weeks FROM table_19542477_9 WHERE artist_s_ = "One Direction"
What is the title of every song, and how many weeks was each song at #1 for One Direction?
CREATE TABLE table_19542477_9 (song_s__—_weeks VARCHAR, artist_s_ VARCHAR)
SELECT d_erp FROM table_name_12 WHERE city_of_license = "san martin texmelucan, puebla"
What's the D ERP in San Martin Texmelucan, Puebla?
CREATE TABLE table_name_12 (d_erp VARCHAR, city_of_license VARCHAR)
SELECT MIN(bronze) FROM table_name_61 WHERE nation = "united states" AND total > 25
When the united states won a total number of medals larger than 25, what was the lowest amount of Bronze medals won?
CREATE TABLE table_name_61 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT COUNT(innings) FROM table_name_68 WHERE runs = 1598 AND matches < 41
What's the total Innings that has Runs of 1598, and Matches less than 41?
CREATE TABLE table_name_68 (innings VARCHAR, runs VARCHAR, matches VARCHAR)
SELECT away_team FROM table_name_77 WHERE date = "4 june 1927" AND venue = "corio oval"
Which team was at Corio Oval on 4 June 1927?
CREATE TABLE table_name_77 (away_team VARCHAR, date VARCHAR, venue VARCHAR)
SELECT player FROM table_name_83 WHERE round > 9 AND overall = 464
Which player was drafted after round 9 and number 464 overall?
CREATE TABLE table_name_83 (player VARCHAR, round VARCHAR, overall VARCHAR)
SELECT entered FROM table_14345690_2 WHERE finished = "4th"
When did the 4th finisher enter?
CREATE TABLE table_14345690_2 (entered VARCHAR, finished VARCHAR)
SELECT name FROM table_name_38 WHERE reported_age = "111 years, 66 days"
Who has a reported age of 111 years, 66 days?
CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR)