answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT 2002 AS _2003_season FROM table_name_20 WHERE city = "aveiro"
What place is listed in the 2002-2003 season for the City of Aveiro?
CREATE TABLE table_name_20 (city VARCHAR)
SELECT game FROM table_27713583_8 WHERE date = "January 14"
What game number was on January 14?
CREATE TABLE table_27713583_8 (game VARCHAR, date VARCHAR)
SELECT player FROM table_name_62 WHERE place = "t4"
Which player had a place of T4?
CREATE TABLE table_name_62 (player VARCHAR, place VARCHAR)
SELECT rider FROM table_name_65 WHERE total > 16.615 AND round_1_points = "7.465"
Tell me the rider that had round 1 points of 7.465 and total more than 16.615
CREATE TABLE table_name_65 (rider VARCHAR, total VARCHAR, round_1_points VARCHAR)
SELECT lead FROM table_name_76 WHERE country = "canada"
Who was Canada's lead?
CREATE TABLE table_name_76 (lead VARCHAR, country VARCHAR)
SELECT AVG(bronze) FROM table_name_12 WHERE total = 19 AND silver = 8 AND rank = "31"
I want the average bronze for total of 19 and silver of 8 with rank of 31
CREATE TABLE table_name_12 (bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT season FROM table_name_90 WHERE date = "may 11, 2002"
During which Season did the may 11, 2002 event take place?
CREATE TABLE table_name_90 (season VARCHAR, date VARCHAR)
SELECT city_of_license FROM table_name_64 WHERE call_sign = "w220ba"
Which City of license has a Call sign of w220ba?
CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT partner FROM table_28979895_4 WHERE score = "w/o"
Name the parter for w/o
CREATE TABLE table_28979895_4 (partner VARCHAR, score VARCHAR)
SELECT win_loss FROM table_26847237_1 WHERE location = "Paeroa"
Was it a win or a loss for Wanganui in Paeroa?
CREATE TABLE table_26847237_1 (win_loss VARCHAR, location VARCHAR)
SELECT AVG(round) FROM table_name_84 WHERE player = "gurnest brown" AND pick__number > 180
What is the average Round, when Player is "Gurnest Brown", and when Pick # is greater than 180?
CREATE TABLE table_name_84 (round INTEGER, player VARCHAR, pick__number VARCHAR)
SELECT order__number FROM table_26250253_1 WHERE week__number = "Top 10"
The order # is what for the week # Top 10?
CREATE TABLE table_26250253_1 (order__number VARCHAR, week__number VARCHAR)
SELECT chassis FROM table_name_5 WHERE constructor = "simca-gordini" AND driver = "max de terra"
what was the chassis built by simca-gordini and driven by max de terra?
CREATE TABLE table_name_5 (chassis VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT record FROM table_27882867_8 WHERE team = "Philadelphia"
What was the team's record against philadelphia?
CREATE TABLE table_27882867_8 (record VARCHAR, team VARCHAR)
SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number2 = "Panionios"
What's the 2nd leg result in the round where Panionios is team #2?
CREATE TABLE table_19130829_4 (team__number2 VARCHAR)
SELECT MAX(season) FROM table_name_61 WHERE position = "7th"
What is the highest season for the 7th position?
CREATE TABLE table_name_61 (season INTEGER, position VARCHAR)
SELECT date FROM table_name_17 WHERE competition = "1998 asian games"
what is the date when the competition is 1998 asian games?
CREATE TABLE table_name_17 (date VARCHAR, competition VARCHAR)
SELECT MAX(total) FROM table_28068645_8 WHERE position = "DF"
List the number of assists for the DF.
CREATE TABLE table_28068645_8 (total INTEGER, position VARCHAR)
SELECT score FROM table_name_27 WHERE partner = "katie o'brien"
What was the score of the final in which Melanie South played with partner Katie O'Brien?
CREATE TABLE table_name_27 (score VARCHAR, partner VARCHAR)
SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = "33.3"
Who owns the station on channel 33.3?
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR)
SELECT boiling_point FROM table_name_46 WHERE density = "1.092 g/ml"
What's the boiling point when the density is 1.092 g/ml?
CREATE TABLE table_name_46 (boiling_point VARCHAR, density VARCHAR)
SELECT frequency_mhz FROM table_name_7 WHERE call_sign = "k218be"
Which Frequency MHz has a Call Sign of K218BE?
CREATE TABLE table_name_7 (frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT kickoff__et_ FROM table_name_67 WHERE result = "w 34–23"
Which Kickoff (ET) has a Result of w 34–23?
CREATE TABLE table_name_67 (kickoff__et_ VARCHAR, result VARCHAR)
SELECT COUNT(written_by) FROM table_2618061_1 WHERE directed_by = "James Quinn"
How many episodes were directed by james quinn?
CREATE TABLE table_2618061_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT club_province FROM table_name_44 WHERE caps > 9 AND player = "ben franks"
Which club/province has more than 9 caps and Ben Franks as a player?
CREATE TABLE table_name_44 (club_province VARCHAR, caps VARCHAR, player VARCHAR)
SELECT COUNT(material) FROM table_30057479_1 WHERE output_power = "~0.1 pW per cycle (calculated)"
How many materials are there for output power of ~0.1 pw per cycle (calculated)?
CREATE TABLE table_30057479_1 (material VARCHAR, output_power VARCHAR)
SELECT result FROM table_15162503_1 WHERE viewers_selection = "Ejay"
What was the final result when the viewers selected ejay?
CREATE TABLE table_15162503_1 (result VARCHAR, viewers_selection VARCHAR)
SELECT no_in_season FROM table_23483182_1 WHERE us_viewers__million_ = "6.01"
What number was there 6.01 million u.s. drivers?
CREATE TABLE table_23483182_1 (no_in_season VARCHAR, us_viewers__million_ VARCHAR)
SELECT alliance FROM table_2651755_2 WHERE democratic_coalition = "Eduardo Frei ( PDC )"
where democratic coalition is eduardo frei ( pdc ) what are all the alliance
CREATE TABLE table_2651755_2 (alliance VARCHAR, democratic_coalition VARCHAR)
SELECT COUNT(result) FROM table_20319085_2 WHERE conference_record = "4-3"
How many different results are there for the season with a 4-3 conference record?
CREATE TABLE table_20319085_2 (result VARCHAR, conference_record VARCHAR)
SELECT weekday FROM table_name_86 WHERE away = "perth glory"
On what weekday was the match that had Perth Glory as the away team?
CREATE TABLE table_name_86 (weekday VARCHAR, away VARCHAR)
SELECT total FROM table_name_88 WHERE rank = "4"
what is the total when the rank is 4?
CREATE TABLE table_name_88 (total VARCHAR, rank VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_18 WHERE position = "defence" AND nationality = "canada" AND round < 5 AND player = "josiah didier"
What is College/Junior/Club Team (League), when Position is "Defence", when Nationality is "Canada", when Round is less than 5, and when Player is "Josiah Didier"?
CREATE TABLE table_name_18 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT network FROM table_name_30 WHERE korean_title = "mbc 베스트극장 - 작은 도둑"
What network is the Korean title of mbc 베스트극장 - 작은 도둑 on?
CREATE TABLE table_name_30 (network VARCHAR, korean_title VARCHAR)
SELECT MIN(rank) FROM table_name_10 WHERE reb_avg > 9 AND total_rebounds = 920 AND games > 79
Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games?
CREATE TABLE table_name_10 (rank INTEGER, games VARCHAR, reb_avg VARCHAR, total_rebounds VARCHAR)
SELECT replaced_by FROM table_name_58 WHERE outgoing_manager = "istván sándor"
Who replaced István Sándor?
CREATE TABLE table_name_58 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT winner FROM table_name_15 WHERE season = "2005–06"
Which Winner has a Season of 2005–06?
CREATE TABLE table_name_15 (winner VARCHAR, season VARCHAR)
SELECT COUNT(county) FROM table_20524090_1 WHERE mccain_percentage = "41.62%"
In how many counties di McCain win 41.62% of the vote?
CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR)
SELECT tie_no FROM table_19294812_2 WHERE team_1 = "Borac Banja Luka"
How many tie no have team 1 as borac banja luka?
CREATE TABLE table_19294812_2 (tie_no VARCHAR, team_1 VARCHAR)
SELECT nation FROM table_name_87 WHERE bronze < 1 AND silver < 1 AND gold > 1
Which nation has a Bronze and Silver smaller than 1 and a Gold larger than 1?
CREATE TABLE table_name_87 (nation VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT general_classification FROM table_18733814_2 WHERE points_classification = "Alessandro Petacchi" AND young_rider_classification = "Thomas Löfkvist"
When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications?
CREATE TABLE table_18733814_2 (general_classification VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)
SELECT mountain_range FROM table_name_68 WHERE mountain_peak = "sierra blanca peak"
Which mountain range contains Sierra Blanca Peak?
CREATE TABLE table_name_68 (mountain_range VARCHAR, mountain_peak VARCHAR)
SELECT result FROM table_name_98 WHERE week > 2 AND date = "november 30, 1958"
Which result happened more recently than week 2, and had a date of November 30, 1958?
CREATE TABLE table_name_98 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT COUNT(*) FROM Companies
How many companies are there?
CREATE TABLE Companies (Id VARCHAR)
SELECT COUNT(total) FROM table_name_1 WHERE gold = 1 AND rank > 4 AND bronze = 0
What is the total when gold is 1, and rank is more than 4, and bronze is 0?
CREATE TABLE table_name_1 (total VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT MAX(points) FROM table_23308178_7 WHERE record = "28-12-6"
Calculate the highest points where the win,loss, tie ratio is 28-12-6
CREATE TABLE table_23308178_7 (points INTEGER, record VARCHAR)
SELECT kickoff_time FROM table_name_82 WHERE date = "december 14, 2003"
What was the kickoff time for the December 14, 2003 game?
CREATE TABLE table_name_82 (kickoff_time VARCHAR, date VARCHAR)
SELECT cast FROM table_2570269_2 WHERE episode_title = "Pressures"
If the episode title is Pressures, what are the names of the cast?
CREATE TABLE table_2570269_2 (cast VARCHAR, episode_title VARCHAR)
SELECT qual FROM table_name_4 WHERE laps < 200 AND start = "11"
Which Qual with laps less than 200 and an 11 start?
CREATE TABLE table_name_4 (qual VARCHAR, laps VARCHAR, start VARCHAR)
SELECT MAX(points) FROM table_name_91 WHERE drawn < 2 AND name = "esc holzkirchen" AND played < 14
Which Points is the highest one that has a Drawn smaller than 2, and a Name of esc holzkirchen, and Played smaller than 14?
CREATE TABLE table_name_91 (points INTEGER, played VARCHAR, drawn VARCHAR, name VARCHAR)
SELECT meaning FROM table_29997112_3 WHERE transliteration = "semërka"
What are the meanings of the flag whose name transliterates to semërka?
CREATE TABLE table_29997112_3 (meaning VARCHAR, transliteration VARCHAR)
SELECT T1.Name, AVG(T2.Speed) FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID GROUP BY T1.Name
Show the names of countries and the average speed of roller coasters from each country.
CREATE TABLE roller_coaster (Speed INTEGER, Country_ID VARCHAR); CREATE TABLE country (Name VARCHAR, Country_ID VARCHAR)
SELECT position FROM table_name_92 WHERE year > 1983 AND venue = "seoul, south korea"
After 1983, what was the Position in Seoul, South Korea?
CREATE TABLE table_name_92 (position VARCHAR, year VARCHAR, venue VARCHAR)
SELECT locomotive FROM table_name_9 WHERE type = "2-8-2t" AND entered_service < 1915 AND built > 1911
Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911?
CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR)
SELECT district FROM table_name_31 WHERE first_elected = 1904 AND incumbent = "duncan e. mckinlay"
Which District has a First Elected of 1904 and an Incumbent of Duncan E. Mckinlay?
CREATE TABLE table_name_31 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT points_against FROM table_name_99 WHERE played = "correct as of 2009-05-16"
What were the points against in a game that was played correct as of 2009-05-16?
CREATE TABLE table_name_99 (points_against VARCHAR, played VARCHAR)
SELECT points_jury FROM table_name_39 WHERE dance = "pop"
What is the Points Jury for Dance pop?
CREATE TABLE table_name_39 (points_jury VARCHAR, dance VARCHAR)
SELECT height_in_ft FROM table_11734041_11 WHERE years_for_rockets = "1968-72"
What is the height for the player in 1968-72?
CREATE TABLE table_11734041_11 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
SELECT AVG(enrollment), MAX(enrollment), MIN(enrollment) FROM school
Show the average, maximum, minimum enrollment of all schools.
CREATE TABLE school (enrollment INTEGER)
SELECT player FROM table_name_73 WHERE round < 3 AND position = "(g)"
Which player has fewer than 3 rounds and the position of (g)?
CREATE TABLE table_name_73 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT AVG(erp_w) FROM table_name_6 WHERE frequency_mhz > 100.1
What is the average value for ERP W when frequency is more than 100.1?
CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER)
SELECT supplier FROM table_name_16 WHERE basic_shape = "flat" AND wrist_pad = "no" AND keys__x_modes_ = "25+"
Which Supplier have a Basic shape of flat, a Wrist pad of no, and Keys (x modes) of 25+?
CREATE TABLE table_name_16 (supplier VARCHAR, keys__x_modes_ VARCHAR, basic_shape VARCHAR, wrist_pad VARCHAR)
SELECT COUNT(rank__week_) FROM table_28026156_1 WHERE written_by = "Seth Hoffman, Russel Friend & Garrett Lerner"
How many episodes were written by seth hoffman, russel friend & garrett lerner?
CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)
SELECT location_attendance FROM table_27713030_16 WHERE high_assists = "LeBron James (10)"
What was the location and attendance when lebron james (10) had the high assists?
CREATE TABLE table_27713030_16 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT _number FROM table_18888159_1 WHERE country = "Fiji"
Name the number for fiji
CREATE TABLE table_18888159_1 (_number VARCHAR, country VARCHAR)
SELECT date FROM table_name_3 WHERE week = 6
What day did the play on week 6?
CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR)
SELECT country FROM table_name_92 WHERE name = "dmitriy karpov"
What country did Dmitriy Karpov represent?
CREATE TABLE table_name_92 (country VARCHAR, name VARCHAR)
SELECT subsidiaries FROM table_1756264_2 WHERE company_name = "F M MEDIA LIMITED"
How many subsidiaries of company F M Media Limited?
CREATE TABLE table_1756264_2 (subsidiaries VARCHAR, company_name VARCHAR)
SELECT notes FROM table_name_94 WHERE year = 2008 AND position = "19th"
What is the note result when the runner finished 19th in 2008?
CREATE TABLE table_name_94 (notes VARCHAR, year VARCHAR, position VARCHAR)
SELECT COUNT(prefecture) FROM table_221398_1 WHERE area__km²_ = "361.719"
How many prefectures have an area of 361.719 kilometers squared?
CREATE TABLE table_221398_1 (prefecture VARCHAR, area__km²_ VARCHAR)
SELECT COUNT(country) FROM table_2764267_2 WHERE currency = "US dollar"
Name the number of countries that have the us dollar
CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)
SELECT result FROM table_name_31 WHERE week > 7 AND attendance = "66,251"
Where week is greater than 7 and attendance is 66,251 what is the result?
CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID
What are the names of gymnasts?
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
SELECT rank FROM table_name_77 WHERE points < 408.8 AND placings = 160
What is the Rank of the couple with less than 408.8 Points and Placings of 160?
CREATE TABLE table_name_77 (rank VARCHAR, points VARCHAR, placings VARCHAR)
SELECT score FROM table_name_44 WHERE date = "november 15, 2011"
What is the score of the match on November 15, 2011?
CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR)
SELECT qualifying_end_date FROM table_23995075_2 WHERE "qualifying_start_date" = "qualifying_start_date"
What is the qualifying end date when the qualifying start date is qualifying start date?
CREATE TABLE table_23995075_2 (qualifying_end_date VARCHAR)
SELECT mens_singles FROM table_13857700_1 WHERE mens_doubles = "Kaj Lindfors Kaj Osterberg"
who is the the mens singles with mens doubles being kaj lindfors kaj osterberg
CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)
SELECT original_air_date FROM table_11630008_8 WHERE written_by = "Karen Felix and Don Woodard"
What is the original air date of the episode written by Karen Felix and Don Woodard?
CREATE TABLE table_11630008_8 (original_air_date VARCHAR, written_by VARCHAR)
SELECT AVG(rank) FROM table_name_29 WHERE notes = "fa"
What is the Rank of the Rowers with FA as Notes?
CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR)
SELECT AVG(vertical_relief__ft_) FROM table_name_87 WHERE peak_name = "tower near mead wood road entrance" AND elevation__ft_ > 1 OFFSET 410
What is the mean vertical relief in feet when the Peak Name is Tower near mead wood road entrance and the elevation in feet is more than 1,410?
CREATE TABLE table_name_87 (vertical_relief__ft_ INTEGER, peak_name VARCHAR, elevation__ft_ VARCHAR)
SELECT COUNT(week) FROM table_name_25 WHERE opponent = "dallas cowboys"
What is the total number of weeks that the Giants played against the Dallas Cowboys?
CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR)
SELECT AVG(points) FROM table_name_15 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "53.05%"
What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?
CREATE TABLE table_name_15 (points INTEGER, driver VARCHAR, percentage_of_possible_points VARCHAR)
SELECT visitor FROM table_name_90 WHERE attendance > 18 OFFSET 680
What Visiting Team(s) had an Attendance of over 18,680
CREATE TABLE table_name_90 (visitor VARCHAR, attendance INTEGER)
SELECT intercontinental_cup_1999 FROM table_name_63 WHERE copa_conmebol_1999 = "runner-up"
What is the Intercontinental Cup 1999 result for the team with a Copa Conmebol 1999 result of runner-up?
CREATE TABLE table_name_63 (intercontinental_cup_1999 VARCHAR, copa_conmebol_1999 VARCHAR)
SELECT money___$__ FROM table_name_20 WHERE player = "cary middlecoff"
What was the Money ($) amount for Cary Middlecoff?
CREATE TABLE table_name_20 (money___$__ VARCHAR, player VARCHAR)
SELECT 2 AS nd_round FROM table_name_60 WHERE score = "3 - 3" AND team_2 = "fc lorient (d2)"
What is the 2nd round with a score of 3 - 3, and a team 2 fc lorient (d2)?
CREATE TABLE table_name_60 (score VARCHAR, team_2 VARCHAR)
SELECT _percentage_asian_american FROM table_18963843_1 WHERE indian_american_population__2010_ = 23526
Name the % asian american for 23526
CREATE TABLE table_18963843_1 (_percentage_asian_american VARCHAR, indian_american_population__2010_ VARCHAR)
SELECT date FROM table_name_10 WHERE tournament = "the tour championship"
When did the Tournament of the Tour Championship take place?
CREATE TABLE table_name_10 (date VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_24 WHERE runner_s__up = "jonas blixt"
Name the margin of victory for jonas blixt
CREATE TABLE table_name_24 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT poor_law_union FROM table_30121082_1 WHERE area__acres__ = 142
What are the Poor Law Unions when the area (in acres) is 142?
CREATE TABLE table_30121082_1 (poor_law_union VARCHAR, area__acres__ VARCHAR)
SELECT state FROM table_name_19 WHERE swimsuit < 9.277 AND evening_gown > 8.944 AND preliminary < 8.483
What state has a swimsuit less than 9.277, gown more than 8.944 and preliminary greater than 8.483?
CREATE TABLE table_name_19 (state VARCHAR, preliminary VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)
SELECT score FROM table_name_34 WHERE date = "september 12, 1993"
Name the score for september 12, 1993
CREATE TABLE table_name_34 (score VARCHAR, date VARCHAR)
SELECT venue FROM table_name_5 WHERE state = "california" AND year = 2011
What is the venue in 2011, when the state is California?
CREATE TABLE table_name_5 (venue VARCHAR, state VARCHAR, year VARCHAR)
SELECT COUNT(2006) FROM table_name_95 WHERE 2010 > 417.9
What is the 2006 total with a 2010 value greater than 417.9?
CREATE TABLE table_name_95 (Id VARCHAR)
SELECT hometown FROM table_11677691_10 WHERE school = "Muscle Shoals High school"
What town is Muscle Shoals High School located in?
CREATE TABLE table_11677691_10 (hometown VARCHAR, school VARCHAR)
SELECT callsign FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region"
when coverage is dumaguete central visayas region, what is the callsign?
CREATE TABLE table_24418525_1 (callsign VARCHAR, coverage VARCHAR)
SELECT result FROM table_1341930_40 WHERE district = "South Carolina 4"
Name the result for south carolina 4
CREATE TABLE table_1341930_40 (result VARCHAR, district VARCHAR)
SELECT student_id FROM Friend INTERSECT SELECT liked_id FROM Likes
Show the ids of high schoolers who have friends and are also liked by someone else.
CREATE TABLE Likes (student_id VARCHAR, liked_id VARCHAR); CREATE TABLE Friend (student_id VARCHAR, liked_id VARCHAR)
SELECT pdt___7_utc_ FROM table_name_69 WHERE cdt___5_utc_ = "6:38 a.m."
What is the time for PDT when CDT is 6:38 a.m.?
CREATE TABLE table_name_69 (pdt___7_utc_ VARCHAR, cdt___5_utc_ VARCHAR)
SELECT left_office FROM table_name_83 WHERE minister = "enrico la loggia"
Tell me the left office for enrico la loggia
CREATE TABLE table_name_83 (left_office VARCHAR, minister VARCHAR)