answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT date FROM table_17360840_4 WHERE record = "1-2-3"
State the dates of games with record 1-2-3
CREATE TABLE table_17360840_4 (date VARCHAR, record VARCHAR)
SELECT SUM(rank) FROM table_name_86 WHERE total > 2 AND gold < 0
What is the total rank with a total larger than 2, and less than 0 gold
CREATE TABLE table_name_86 (rank INTEGER, total VARCHAR, gold VARCHAR)
SELECT T1.fname, T1.lname, COUNT(*), T1.FacID FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID GROUP BY T1.FacID
Show the first and last name of all the faculty members who participated in some activity, together with the number of activities they participated in.
CREATE TABLE Faculty_participates_in (facID VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR, facID VARCHAR)
SELECT founded FROM table_11658094_1 WHERE institution = "Erskine College"
When was erskine college founded
CREATE TABLE table_11658094_1 (founded VARCHAR, institution VARCHAR)
SELECT 54 AS _holes FROM table_name_7 WHERE championship = "the open championship (4)"
What is the 54 holes for The Open Championship (4)?
CREATE TABLE table_name_7 (championship VARCHAR)
SELECT country FROM table_28281704_1 WHERE stadium = "Lusail National stadium"
Name the country for lusail national stadium
CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR)
SELECT AVG(frequency_mhz) FROM table_name_72 WHERE city_of_license = "farwell, texas"
What is the average Frequency MHz that is on farwell, texas?
CREATE TABLE table_name_72 (frequency_mhz INTEGER, city_of_license VARCHAR)
SELECT opponent FROM table_name_51 WHERE surface = "clay" AND outcome = "winner" AND tournament = "bogotá" AND score = "6–0, 6–4"
Which opponent has a Surface of clay, an Outcome of winner, a Tournament of bogotá, and a Score of 6–0, 6–4?
CREATE TABLE table_name_51 (opponent VARCHAR, score VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT score FROM table_1028356_3 WHERE opponents = "Gretchen Magers Kelly Jones"
What is the score of the match with opponents Gretchen Magers Kelly Jones?
CREATE TABLE table_1028356_3 (score VARCHAR, opponents VARCHAR)
SELECT AVG(total) FROM table_name_88 WHERE league = 18 AND player = "richard logan" AND play_offs < 1
What mean total had a league number of 18, Richard Logan as a player, and a play-offs number smaller than 1?
CREATE TABLE table_name_88 (total INTEGER, play_offs VARCHAR, league VARCHAR, player VARCHAR)
SELECT manufacturer FROM table_name_26 WHERE grid > 18 AND laps > 1 AND time_retired = "+1 lap"
Name the manufacturer for grid more than 18 and laps more than 1 with tired/retired of +1 lap
CREATE TABLE table_name_26 (manufacturer VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT venue FROM table_name_23 WHERE date = "11 september 2012"
What venue was the 11 September 2012 game?
CREATE TABLE table_name_23 (venue VARCHAR, date VARCHAR)
SELECT MIN(mark) FROM table_name_34 WHERE rank = 8
What is the lowest mark of the rank 8 record?
CREATE TABLE table_name_34 (mark INTEGER, rank VARCHAR)
SELECT position FROM table_name_85 WHERE pick < 29 AND school_club_team = "arizona"
Which Position has a Pick smaller than 29, and a School/Club Team of arizona?
CREATE TABLE table_name_85 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR)
SELECT record FROM table_name_39 WHERE team = "boston celtics"
What is the boston celtics' record?
CREATE TABLE table_name_39 (record VARCHAR, team VARCHAR)
SELECT cubic_inches__exact_ FROM table_name_9 WHERE metric_value = "104.955 l"
What are the exact Cubic inches of the Metric value of 104.955 L?
CREATE TABLE table_name_9 (cubic_inches__exact_ VARCHAR, metric_value VARCHAR)
SELECT part_1 FROM table_name_36 WHERE class = "7d"
Which part one is class 7d?
CREATE TABLE table_name_36 (part_1 VARCHAR, class VARCHAR)
SELECT lead_envoy FROM table_name_10 WHERE ryūkyūan_king = "shō kei" AND mission_type = "congratulation" AND year = 1718
Who was the lead envoy of the congratulation mission in 1718 with the Ryūkyūan King shō kei?
CREATE TABLE table_name_10 (lead_envoy VARCHAR, year VARCHAR, ryūkyūan_king VARCHAR, mission_type VARCHAR)
SELECT MAX(season__number) FROM table_25131572_3 WHERE written_by = "Daegan Fryklind"
What is the highest season# for the writer Daegan Fryklind?
CREATE TABLE table_25131572_3 (season__number INTEGER, written_by VARCHAR)
SELECT lastname FROM teachers WHERE classroom = 109
Find the last names of teachers teaching in classroom 109.
CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)
SELECT result FROM table_name_40 WHERE date = "19 august 1992"
What is Result, when Date is 19 August 1992?
CREATE TABLE table_name_40 (result VARCHAR, date VARCHAR)
SELECT COUNT(lane) FROM table_name_75 WHERE country = "austria"
What is the total number of lanes used for races with winners from Austria?
CREATE TABLE table_name_75 (lane VARCHAR, country VARCHAR)
SELECT position FROM table_name_22 WHERE pick__number < 278 AND player = "charles benson"
Which Position has a Pick # lower than 278 for Player Charles Benson?
CREATE TABLE table_name_22 (position VARCHAR, pick__number VARCHAR, player VARCHAR)
SELECT qual FROM table_name_63 WHERE rank = "2"
What was the qual when the rank was 2?
CREATE TABLE table_name_63 (qual VARCHAR, rank VARCHAR)
SELECT player FROM table_name_97 WHERE pick < 110 AND college = "duke"
WHAT PLAYER HAS A PICK SMALLER THAN 110, AND DUKE AS COLLEGE?
CREATE TABLE table_name_97 (player VARCHAR, pick VARCHAR, college VARCHAR)
SELECT AVG(established) FROM table_name_86 WHERE country_territory = "dominican republic"
What is the average year that the medical school in dominican republic was established?
CREATE TABLE table_name_86 (established INTEGER, country_territory VARCHAR)
SELECT stu_gpa, stu_phone, stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5
What is the first name, gpa and phone number of the top 5 students with highest gpa?
CREATE TABLE student (stu_gpa VARCHAR, stu_phone VARCHAR, stu_fname VARCHAR)
SELECT MIN(total) FROM table_name_90 WHERE bronze < 7 AND silver = 1 AND rank > 9
What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger?
CREATE TABLE table_name_90 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(swimsuit) FROM table_name_54 WHERE interview < 9.09 AND evening_gown < 8.21 AND average = 8.453
Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09
CREATE TABLE table_name_54 (swimsuit VARCHAR, average VARCHAR, interview VARCHAR, evening_gown VARCHAR)
SELECT catalogue FROM table_name_48 WHERE date = "october 15, 2004"
Name the october 15, 2004 catalogue
CREATE TABLE table_name_48 (catalogue VARCHAR, date VARCHAR)
SELECT COUNT(*) FROM camera_lens WHERE focal_length_mm > 15
How many camera lenses have a focal length longer than 15 mm?
CREATE TABLE camera_lens (focal_length_mm INTEGER)
SELECT title FROM table_name_18 WHERE format = "mono lp" AND label = "pye"
What is the Title of the Pye Label mono LP release?
CREATE TABLE table_name_18 (title VARCHAR, format VARCHAR, label VARCHAR)
SELECT airport FROM table_13836704_4 WHERE aircraft_movements_2009 < 238223.1659471435 AND change_2008_09 = "0.5%"
what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5%
CREATE TABLE table_13836704_4 (airport VARCHAR, aircraft_movements_2009 VARCHAR, change_2008_09 VARCHAR)
SELECT points FROM table_22056184_1 WHERE poles = 1
How many points when pole are 1?
CREATE TABLE table_22056184_1 (points VARCHAR, poles VARCHAR)
SELECT score FROM table_name_83 WHERE away_team = "bolton wanderers"
When the away team was Bolton Wanderers, what was the score?
CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)
SELECT AVG(round) FROM table_name_16 WHERE position = "wide receiver" AND name = "r. jay soward" AND overall < 29
What is the average Round for wide receiver r. jay soward and Overall smaller than 29?
CREATE TABLE table_name_16 (round INTEGER, overall VARCHAR, position VARCHAR, name VARCHAR)
SELECT title FROM table_18481791_3 WHERE us_viewers__in_millions_ = "3.97"
What is the title when u.s. viewers (millions) is 3.97?
CREATE TABLE table_18481791_3 (title VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT class AS pos FROM table_name_25 WHERE year > 1997 AND team = "corvette racing" AND class = "gt1" AND laps = 327
Which Class Pos has a Year larger than 1997, a Team of corvette racing, a Class of gt1, and 327 laps?
CREATE TABLE table_name_25 (class VARCHAR, laps VARCHAR, year VARCHAR, team VARCHAR)
SELECT college_junior_club_team FROM table_1965650_10 WHERE player = "Lee Palmer"
What team does Lee Palmer play for?
CREATE TABLE table_1965650_10 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT COUNT(founded) FROM table_24195232_1 WHERE location = "Springfield, Ohio"
How many entries are there for founded when the location was springfield, ohio?
CREATE TABLE table_24195232_1 (founded VARCHAR, location VARCHAR)
SELECT record FROM table_name_80 WHERE week > 16
What's the record after week 16?
CREATE TABLE table_name_80 (record VARCHAR, week INTEGER)
SELECT ceased_to_be_duke_of_girona FROM table_name_91 WHERE heir_of = "peter iv"
WHAT IS THE Ceased to be Duke of Girona THAT HAS PETER IV?
CREATE TABLE table_name_91 (ceased_to_be_duke_of_girona VARCHAR, heir_of VARCHAR)
SELECT home FROM table_name_40 WHERE date = "march 5, 2008"
Who was the home team on March 5, 2008?
CREATE TABLE table_name_40 (home VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_42 WHERE date = "march 16"
Which Opponent has a Date of march 16?
CREATE TABLE table_name_42 (opponent VARCHAR, date VARCHAR)
SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"
What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?
CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)
SELECT MAX(swimsuit) FROM table_name_91 WHERE evening_gown > 9.175 AND interview < 8.425
What is the highest swimsuit score of the contestant with an evening gown larger than 9.175 and an interview score less than 8.425?
CREATE TABLE table_name_91 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)
SELECT fcc_info FROM table_name_39 WHERE city_of_license = "harmony township, new jersey"
Can you tell me what is FCC info for harmony township, new jersey?
CREATE TABLE table_name_39 (fcc_info VARCHAR, city_of_license VARCHAR)
SELECT third FROM table_name_14 WHERE nation = "scotland"
Which Third has a Nation of scotland?
CREATE TABLE table_name_14 (third VARCHAR, nation VARCHAR)
SELECT region FROM table_name_36 WHERE city = "austin"
In what region is the city of Austin?
CREATE TABLE table_name_36 (region VARCHAR, city VARCHAR)
SELECT COUNT(womens_singles) FROM table_12194021_1 WHERE mens_doubles = "Rupesh Kumar Sanave Thomas" AND womens_doubles = "Jwala Gutta Ashwini Ponnappa"
How many total titles did Rupesh Kumar Sanave Thomas and Jwala Gutta Ashwini Ponnappa win total?
CREATE TABLE table_12194021_1 (womens_singles VARCHAR, mens_doubles VARCHAR, womens_doubles VARCHAR)
SELECT venue FROM table_name_1 WHERE position = "27th"
Name the venue for 27th position
CREATE TABLE table_name_1 (venue VARCHAR, position VARCHAR)
SELECT mID, AVG(stars) FROM Rating WHERE NOT mID IN (SELECT T1.mID FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T2.name = "Brittany Harris") GROUP BY mID
Find the average rating star for each movie that are not reviewed by Brittany Harris.
CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)
SELECT COUNT(property_crime) FROM table_1818254_1 WHERE burglary = "224.8"
How many cities were there in 2012 where the rate of burglary was 224.8?
CREATE TABLE table_1818254_1 (property_crime VARCHAR, burglary VARCHAR)
SELECT event FROM table_name_71 WHERE athlete = "ali ekranpour"
What is the event result for athlete Ali Ekranpour?
CREATE TABLE table_name_71 (event VARCHAR, athlete VARCHAR)
SELECT COUNT(type) FROM table_22673956_1 WHERE track = "Phoenix International Raceway"
How many types of tracks are there on the Phoenix International raceway?
CREATE TABLE table_22673956_1 (type VARCHAR, track VARCHAR)
SELECT event FROM table_name_4 WHERE date = "april 20, 2013"
What is Event, when Date is April 20, 2013?
CREATE TABLE table_name_4 (event VARCHAR, date VARCHAR)
SELECT instrument FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
What instruments does the the song "Le Pop" use?
CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)
SELECT MIN(number) FROM table_name_32 WHERE western_name = "aquarius"
What is the lowest number for the english word Aquarius?
CREATE TABLE table_name_32 (number INTEGER, western_name VARCHAR)
SELECT AVG(mintage) FROM table_name_42 WHERE animal = "red breasted nuthatch" AND year < 2007
How many Red Breasted Nuthatch coins created before 2007 were minted, on average?
CREATE TABLE table_name_42 (mintage INTEGER, animal VARCHAR, year VARCHAR)
SELECT score FROM table_name_97 WHERE scorers = "match report"
What is the score when the scorers show match report?
CREATE TABLE table_name_97 (score VARCHAR, scorers VARCHAR)
SELECT candidates FROM table_1342379_5 WHERE incumbent = "Henry E. Barbour"
Who was the incumbent when henry e. barbour ran?
CREATE TABLE table_1342379_5 (candidates VARCHAR, incumbent VARCHAR)
SELECT score FROM table_name_6 WHERE date = "2005-10-29"
What is the Score that has a Date of 2005-10-29?
CREATE TABLE table_name_6 (score VARCHAR, date VARCHAR)
SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = "San Diego State University"
how many types of organization were founded in san diego state university?
CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)
SELECT MAX(run_ratio) FROM table_name_36 WHERE runs_allowed < 58 AND wins = 5 AND team = "japan"
What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have?
CREATE TABLE table_name_36 (run_ratio INTEGER, team VARCHAR, runs_allowed VARCHAR, wins VARCHAR)
SELECT race_name FROM table_name_36 WHERE sanctioning = "cart" AND city_location = "brooklyn, michigan"
What was the name of the race that occurred in Brooklyn, Michigan with a sanctioning of cart?
CREATE TABLE table_name_36 (race_name VARCHAR, sanctioning VARCHAR, city_location VARCHAR)
SELECT tournament FROM table_name_32 WHERE winning_score = –7(66 - 72 - 69 - 74 = 281)
Which tournament has a winning score at –7 (66-72-69-74=281)?
CREATE TABLE table_name_32 (tournament VARCHAR, winning_score VARCHAR)
SELECT MIN(field_goals) FROM table_name_53 WHERE points < 5
What is the lowest number of field goals when the points were less than 5?
CREATE TABLE table_name_53 (field_goals INTEGER, points INTEGER)
SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = "Tim Matheson"
How many episodes were directed by Tim Matheson?
CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT AVG(stolen_ends) FROM table_name_89 WHERE ends_lost < 35
Name the average Stolen Ends which has an Ends Lost smaller than 35?
CREATE TABLE table_name_89 (stolen_ends INTEGER, ends_lost INTEGER)
SELECT 2012 FROM table_name_44 WHERE 2009 = "a"
What is 2012, when 2009 is "A"?
CREATE TABLE table_name_44 (Id VARCHAR)
SELECT 2 AS nd_member FROM table_name_34 WHERE elected = "1555"
Who is the second member that was elected in 1555?
CREATE TABLE table_name_34 (elected VARCHAR)
SELECT place FROM table_name_17 WHERE race = "downhill" AND season < 1996 AND date = "11-mar-1995"
What is the place result of the downhill race before the 1996 season on 11-Mar-1995?
CREATE TABLE table_name_17 (place VARCHAR, date VARCHAR, race VARCHAR, season VARCHAR)
SELECT MIN(march) FROM table_name_88 WHERE score = "5–6" AND points < 100
Which March is the lowest one that has a Score of 5–6, and Points smaller than 100?
CREATE TABLE table_name_88 (march INTEGER, score VARCHAR, points VARCHAR)
SELECT state___territory FROM table_name_85 WHERE building = "lovett tower"
What state/territory has lovett tower as the building?
CREATE TABLE table_name_85 (state___territory VARCHAR, building VARCHAR)
SELECT final FROM table_name_78 WHERE athlete = "rouhollah hosseini"
What was the final for rouhollah hosseini?
CREATE TABLE table_name_78 (final VARCHAR, athlete VARCHAR)
SELECT COUNT(laps) FROM table_name_31 WHERE time = "+56.977"
Total number of laps at a time of +56.977?
CREATE TABLE table_name_31 (laps VARCHAR, time VARCHAR)
SELECT MAX(goals_against) FROM table_name_79 WHERE wins = 19 AND goals_for > 53
Which highest 'goals against' number had wins of 19 and a 'goals for' number that was bigger than 53?
CREATE TABLE table_name_79 (goals_against INTEGER, wins VARCHAR, goals_for VARCHAR)
SELECT phone FROM table_name_46 WHERE address = "53 dayton road"
What is the phone number of the station located at 53 Dayton Road?
CREATE TABLE table_name_46 (phone VARCHAR, address VARCHAR)
SELECT candidates FROM table_1341453_12 WHERE incumbent = "Saxby Chambliss"
Who were the candidates in the election where Saxby Chambliss was the incumbent?
CREATE TABLE table_1341453_12 (candidates VARCHAR, incumbent VARCHAR)
SELECT city_of_license FROM table_name_22 WHERE frequency_mhz > 89.5 AND call_sign = "k213el"
Which City of license has a Frequency MHz larger than 89.5, and a Call sign of k213el?
CREATE TABLE table_name_22 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT AVG(attendance) FROM table_name_33 WHERE date = "october 30, 1938"
What was the average attendance on October 30, 1938?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
SELECT deficit___surplus_ FROM table_15624586_2 WHERE _percentage_of_world_demand = "5.2%"
What is the deficit (-surplus) of the country who use 5.2% of the world demand of uranium?
CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, _percentage_of_world_demand VARCHAR)
SELECT candidates FROM table_2668199_2 WHERE district = "Pennsylvania 12"
Who were the candidates in districk Pennsylvania 12?
CREATE TABLE table_2668199_2 (candidates VARCHAR, district VARCHAR)
SELECT speed FROM table_name_59 WHERE rank = 2
WHich Speed has a Rank of 2?
CREATE TABLE table_name_59 (speed VARCHAR, rank VARCHAR)
SELECT high_assists FROM table_name_6 WHERE record = "33–15"
Who had the high assists when the record was 33–15?
CREATE TABLE table_name_6 (high_assists VARCHAR, record VARCHAR)
SELECT SUM(points) FROM table_name_67 WHERE score = "2–7"
What were the Points in the game with a Score of 2–7?
CREATE TABLE table_name_67 (points INTEGER, score VARCHAR)
SELECT MAX(maidens) FROM table_15893020_2 WHERE best_bowling = "1/13"
What is the highest number of maidens when the bowling best was 1/13?
CREATE TABLE table_15893020_2 (maidens INTEGER, best_bowling VARCHAR)
SELECT COUNT(sunk_by_u_boat) FROM table_name_4 WHERE german_submarines_lost < 2 AND sunk_by_aircraft = 56328 AND sunk_by_mines > 8269
What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines?
CREATE TABLE table_name_4 (sunk_by_u_boat VARCHAR, sunk_by_mines VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR)
SELECT score FROM table_name_20 WHERE high_points = "donyell marshall (26)"
What is the Score when Donyell Marshall (26) had the high points?
CREATE TABLE table_name_20 (score VARCHAR, high_points VARCHAR)
SELECT away_team FROM table_name_3 WHERE home_team = "swindon town"
What is Away Team, when Home Team is "Swindon Town"?
CREATE TABLE table_name_3 (away_team VARCHAR, home_team VARCHAR)
SELECT hometown FROM table_name_31 WHERE country = "indonesia"
What is the hometown of the player from Indonesia?
CREATE TABLE table_name_31 (hometown VARCHAR, country VARCHAR)
SELECT rounds FROM table_name_87 WHERE chassis = "thl2"
How many rounds have a chassis of thl2?
CREATE TABLE table_name_87 (rounds VARCHAR, chassis VARCHAR)
SELECT party FROM table_1342370_17 WHERE incumbent = "Riley Joseph Wilson"
To which party does Riley Joseph Wilson belong?
CREATE TABLE table_1342370_17 (party VARCHAR, incumbent VARCHAR)
SELECT language FROM table_16278349_1 WHERE province = "Kunar"
Name the language for kunar
CREATE TABLE table_16278349_1 (language VARCHAR, province VARCHAR)
SELECT complement FROM table_2596811_12 WHERE killed = "0 off 3 men" AND wounded = "0 off 2 men"
What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?
CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR, wounded VARCHAR)
SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0
How many touchdowns were made where field goals were less than 0?
CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER)
SELECT AVG(year) FROM table_name_81 WHERE time = "1:42.85"
What is the average year with a 1:42.85 time?
CREATE TABLE table_name_81 (year INTEGER, time VARCHAR)
SELECT result FROM table_14928423_1 WHERE original_title = "Γолемата Вода"
is γолемата вода nominated for anything?
CREATE TABLE table_14928423_1 (result VARCHAR, original_title VARCHAR)
SELECT 1999 FROM table_name_80 WHERE 1998 = "grand slam tournaments"
What is the 1999 answer when 1998 is Grand Slam Tournaments?
CREATE TABLE table_name_80 (Id VARCHAR)
SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE region = "Maule"
What is the median income of Maule?
CREATE TABLE table_25042332_16 (median_income___intl INTEGER, region VARCHAR)