answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT result FROM table_name_37 WHERE competition = "2010 fifa world cup qualification" AND date = "10 september 2008"
What is Result, when Competition is 2010 FIFA World Cup Qualification, and when Date is 10 September 2008?
CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR, date VARCHAR)
SELECT score FROM table_name_16 WHERE home_team = "bath city"
What is the score of the home team, bath city?
CREATE TABLE table_name_16 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_74 WHERE money___$__ = "9,000" AND player = "leonard thompson"
What score did Leonard Thompson have when he won $9,000?
CREATE TABLE table_name_74 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT MAX(year) FROM table_name_52 WHERE opponent = "#2 syracuse"
What is the highest Year, when Opponent is #2 Syracuse?
CREATE TABLE table_name_52 (year INTEGER, opponent VARCHAR)
SELECT COUNT(gain) FROM table_name_55 WHERE name = "williams, jonathan" AND loss > 3
Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3?
CREATE TABLE table_name_55 (gain VARCHAR, name VARCHAR, loss VARCHAR)
SELECT COUNT(bruce_coulter_award) FROM table_228149_1 WHERE game = "9th"
Nam the total number for bruce coulter award for 9th game
CREATE TABLE table_228149_1 (bruce_coulter_award VARCHAR, game VARCHAR)
SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = "69g (4g in high oleic variety)"
What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)?
CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR)
SELECT result FROM table_name_90 WHERE game_site = "soldier field"
What is the result of the game that was played at Soldier Field?
CREATE TABLE table_name_90 (result VARCHAR, game_site VARCHAR)
SELECT MAX(played) FROM table_name_95 WHERE drawn = 5 AND team = "palmeiras" AND position < 6
Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6?
CREATE TABLE table_name_95 (played INTEGER, position VARCHAR, drawn VARCHAR, team VARCHAR)
SELECT cartridge FROM table_16010376_1 WHERE source = "Winchester"
What type of cartridge is used by a Winchester?
CREATE TABLE table_16010376_1 (cartridge VARCHAR, source VARCHAR)
SELECT MAX(rank) FROM table_22355_62 WHERE gold = 4
What is the maximum rank of the nation that won 4 gold medals?
CREATE TABLE table_22355_62 (rank INTEGER, gold VARCHAR)
SELECT SUM(attendance) FROM table_name_51 WHERE opponent = "dallas cowboys" AND week > 5
What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?
CREATE TABLE table_name_51 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT league FROM table_21602734_1 WHERE year = 2010
What league was involved in 2010?
CREATE TABLE table_21602734_1 (league VARCHAR, year VARCHAR)
SELECT award FROM table_name_32 WHERE year < 2001
What was the award before 2001?
CREATE TABLE table_name_32 (award VARCHAR, year INTEGER)
SELECT score FROM table_name_5 WHERE location = "brendan byrne arena"
Location of brendan byrne arena had what score?
CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)
SELECT AVG(student_capacity), SUM(student_capacity) FROM dorm WHERE gender = 'X'
Find the average and total capacity of dorms for the students with gender X.
CREATE TABLE dorm (student_capacity INTEGER, gender VARCHAR)
SELECT crowd FROM table_name_28 WHERE home_team = "south melbourne"
What was the crowd size in the match South Melbourne played at home?
CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)
SELECT country___endonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = "Irish English"
In which country (endonym) is Irish English the official or native language(s) (alphabet/script)?
CREATE TABLE table_1008653_9 (country___endonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)
SELECT original_name FROM table_name_91 WHERE film_title_used_in_nomination = "olympics 40"
What is the original name of the film that used the title Olympics 40 in nomination?
CREATE TABLE table_name_91 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT literacy_rate___percentage____2001_census FROM table_name_80 WHERE _percentage_increase = "12.66%"
What was the literacy rate published in the 2001 census for the state that saw a 12.66% increase?
CREATE TABLE table_name_80 (literacy_rate___percentage____2001_census VARCHAR, _percentage_increase VARCHAR)
SELECT SUM(lost) FROM table_name_5 WHERE match < 10
What is the sum of losses for teams with under 10 matches?
CREATE TABLE table_name_5 (lost INTEGER, match INTEGER)
SELECT edition FROM table_name_2 WHERE surface = "clay" AND opponent = "miho saeki"
What clay surface edition had an opponent of miho saeki?
CREATE TABLE table_name_2 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)
SELECT MIN(overall) FROM table_name_92 WHERE pick < 2
what is the lowest overall when the pick is less than 2?
CREATE TABLE table_name_92 (overall INTEGER, pick INTEGER)
SELECT year FROM table_name_47 WHERE english_title = "the ocean"
What is the year for the ocean?
CREATE TABLE table_name_47 (year VARCHAR, english_title VARCHAR)
SELECT purse___us$__ FROM table_name_32 WHERE race = "illinois derby"
What was the Illinois Derby purse?
CREATE TABLE table_name_32 (purse___us$__ VARCHAR, race VARCHAR)
SELECT T1.Location, T2.Nickname FROM school AS T1 JOIN school_details AS T2 ON T1.School_ID = T2.School_ID
Show locations and nicknames of schools.
CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE school_details (Nickname VARCHAR, School_ID VARCHAR)
SELECT MIN(tonnage__grt_) FROM table_name_44 WHERE nationality = "united kingdom" AND name = "king gruffydd"
Which Tonnage (GRT) has a Nationality of united kingdom, and a Name of king gruffydd?
CREATE TABLE table_name_44 (tonnage__grt_ INTEGER, nationality VARCHAR, name VARCHAR)
SELECT T2.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T3.name LIKE '%Smith%'
Find the name of the project for which a scientist whose name contains ‘Smith’ is assigned to.
CREATE TABLE scientists (SSN VARCHAR, name VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR)
SELECT T1.fault_log_entry_id, T1.fault_description, T1.fault_log_entry_datetime FROM Fault_Log AS T1 JOIN Fault_Log_Parts AS T2 ON T1.fault_log_entry_id = T2.fault_log_entry_id GROUP BY T1.fault_log_entry_id ORDER BY COUNT(*) DESC LIMIT 1
Which fault log included the most number of faulty parts? List the fault log id, description and record time.
CREATE TABLE Fault_Log (fault_log_entry_id VARCHAR, fault_description VARCHAR, fault_log_entry_datetime VARCHAR); CREATE TABLE Fault_Log_Parts (fault_log_entry_id VARCHAR)
SELECT finish FROM table_name_96 WHERE country = "united states" AND player = "hale irwin"
What was the finishing position of Hale Irwin, of the United states?
CREATE TABLE table_name_96 (finish VARCHAR, country VARCHAR, player VARCHAR)
SELECT COUNT(fsb__mhz_) FROM table_269920_3 WHERE model = "7140N"
How many different FSB are there for the 7140N model?
CREATE TABLE table_269920_3 (fsb__mhz_ VARCHAR, model VARCHAR)
SELECT date FROM table_name_48 WHERE goal = 3
What was the date of the game that had a goal of 3?
CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR)
SELECT lkf_cup FROM table_name_69 WHERE europe = "euroleague group stage" AND regional_competitions = "bbl elite division finalist"
WHAT IS THE LKF CUP WITH euroleague group stage AND bbl elite division finalist?
CREATE TABLE table_name_69 (lkf_cup VARCHAR, europe VARCHAR, regional_competitions VARCHAR)
SELECT time_retired FROM table_name_72 WHERE laps < 70 AND grid > 15 AND driver = "timo glock"
What is the time or retired time for timo glock with under 70 laps and a grid number greater than 15?
CREATE TABLE table_name_72 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT MIN(weekly_rank_virgin_media) FROM table_26826304_2 WHERE air_date = "May 20, 2010"
What was the weekly rank by Virgin media for the title aired on May 20, 2010?
CREATE TABLE table_26826304_2 (weekly_rank_virgin_media INTEGER, air_date VARCHAR)
SELECT open_cup FROM table_12002388_1 WHERE reg_season = "4th"
What was the result of the open cup when they finished 4th in the regular season?
CREATE TABLE table_12002388_1 (open_cup VARCHAR, reg_season VARCHAR)
SELECT original_manchester_performer FROM table_22460085_1 WHERE original_west_end_performer = "Lisa Davina Phillip"
Who was the Manchester performer of Lisa Davina Phillip's character?
CREATE TABLE table_22460085_1 (original_manchester_performer VARCHAR, original_west_end_performer VARCHAR)
SELECT COUNT(loses) FROM table_18018214_2 WHERE club = "Tauras Tauragė"
List total loses forh the tauras tauragė team.
CREATE TABLE table_18018214_2 (loses VARCHAR, club VARCHAR)
SELECT composer FROM table_name_36 WHERE track < 4
Who is the composer on the tracks less than 4?
CREATE TABLE table_name_36 (composer VARCHAR, track INTEGER)
SELECT date FROM table_name_45 WHERE home_team = "watford" AND tie_no = "2"
On what date does Watford have a Tie no of 2?
CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR, tie_no VARCHAR)
SELECT 1989 FROM table_name_35 WHERE 1992 = "0 / 1"
What is the result for 1989 that has a 1992 result of 0 / 1?
CREATE TABLE table_name_35 (Id VARCHAR)
SELECT COUNT(tariff_code) FROM table_10408617_5 WHERE bts_retail_price__regulated_ = "2.553p/min"
How many tariff codes have a bts retail price of 2.553p/min?
CREATE TABLE table_10408617_5 (tariff_code VARCHAR, bts_retail_price__regulated_ VARCHAR)
SELECT ntfa_div_1 FROM table_name_30 WHERE draws < 1 AND wins = 15
What is the NTFA Div 1 team that has 15 wins and less than 1 draw?
CREATE TABLE table_name_30 (ntfa_div_1 VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT date FROM table_name_79 WHERE winner = "aaron gustavson"
What is the Date, when the Winner is Aaron Gustavson?
CREATE TABLE table_name_79 (date VARCHAR, winner VARCHAR)
SELECT trade_name, COUNT(*) FROM medicine GROUP BY trade_name
find the number of medicines offered by each trade.
CREATE TABLE medicine (trade_name VARCHAR)
SELECT MAX(yards) FROM table_name_61 WHERE tckl > 51 AND sack < 2
What is the highest YARDS with a TCKL more than 51 and less than 2 SACK?
CREATE TABLE table_name_61 (yards INTEGER, tckl VARCHAR, sack VARCHAR)
SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = "Jay Sandrich" AND original_air_date = "October 23, 1986"
What is the series number for the episode directed by jay sandrich that aired October 23, 1986?
CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR)
SELECT opponent FROM table_name_44 WHERE city = "louisville"
Who was the opponent when the city was Louisville?
CREATE TABLE table_name_44 (opponent VARCHAR, city VARCHAR)
SELECT SUM(viewers) FROM table_name_71 WHERE rank < 2
How many Viewers have a Rank smaller than 2?
CREATE TABLE table_name_71 (viewers INTEGER, rank INTEGER)
SELECT longitude FROM table_18600760_13 WHERE water__sqmi_ = "0.068"
What longitudes associated with a water (sqmi) area of 0.068?
CREATE TABLE table_18600760_13 (longitude VARCHAR, water__sqmi_ VARCHAR)
SELECT score FROM table_name_13 WHERE country = "australia"
What did the golfer from Australia score?
CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR)
SELECT COUNT(round) FROM table_name_2 WHERE location = "quebec, canada" AND opponent = "david loiseau"
How many rounds in the fight in Quebec, Canada against David Loiseau?
CREATE TABLE table_name_2 (round VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT position FROM table_name_69 WHERE player = "tayshaun prince"
What is the position of Tayshaun Prince?
CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR)
SELECT lec_sport FROM table_1974545_2 WHERE institution = "Fitchburg State University"
What's Fitchburg State University's LEC sport?
CREATE TABLE table_1974545_2 (lec_sport VARCHAR, institution VARCHAR)
SELECT place FROM table_name_25 WHERE player = "tom watson"
What is the place of player tom watson?
CREATE TABLE table_name_25 (place VARCHAR, player VARCHAR)
SELECT MAX(silver) FROM table_name_71 WHERE total < 3 AND bronze = 1 AND gold > 0
How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0?
CREATE TABLE table_name_71 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT MAX(metropolitan_area) FROM table_2273738_1 WHERE city = "Manchester"
What is the total membership for the metropolitan area in the city of Manchester?
CREATE TABLE table_2273738_1 (metropolitan_area INTEGER, city VARCHAR)
SELECT results FROM table_name_73 WHERE district = "washington 2"
What were the Results in the Washington 2 District?
CREATE TABLE table_name_73 (results VARCHAR, district VARCHAR)
SELECT 1 AS st_ship_delivery_date FROM table_name_87 WHERE total_number_of_ways = "6 ways"
What is the 1st ship delivery date of 6 ways?
CREATE TABLE table_name_87 (total_number_of_ways VARCHAR)
SELECT release_date FROM table_name_15 WHERE product = "glassfish"
When was Glassfish released?
CREATE TABLE table_name_15 (release_date VARCHAR, product VARCHAR)
SELECT tournament FROM table_name_75 WHERE 1996 = "a" AND 1998 = "a" AND 1994 = "rr"
Which tournament had a 1994 finish of RR and 1996 and 1998 finishes of A?
CREATE TABLE table_name_75 (tournament VARCHAR)
SELECT 2 AS nd_leg FROM table_name_92 WHERE team_2 = "teram"
What is the 2nd leg in match with team 2 of Teram?
CREATE TABLE table_name_92 (team_2 VARCHAR)
SELECT MAX(poles) FROM table_26794530_1
What is the highest number of poles?
CREATE TABLE table_26794530_1 (poles INTEGER)
SELECT final_score FROM table_name_28 WHERE attendance = "65,309"
What was the final score for the game with 65,309 people in attendance?
CREATE TABLE table_name_28 (final_score VARCHAR, attendance VARCHAR)
SELECT COUNT(round) FROM table_name_10 WHERE time = "5:00" AND opponent = "drew fickett"
What is the total number of rounds when Drew Fickett was the opponent and the time is 5:00?
CREATE TABLE table_name_10 (round VARCHAR, time VARCHAR, opponent VARCHAR)
SELECT 2008 AS _09 FROM table_name_9 WHERE event = "autumn gold"
What is the value in 2008-09 for the Autumn Gold event?
CREATE TABLE table_name_9 (event VARCHAR)
SELECT AVG(decimal) FROM table_name_12 WHERE binary = 110010 AND glyph > 2
What is the average decimal with a 110010 binary and a glyph greater than 2?
CREATE TABLE table_name_12 (decimal INTEGER, binary VARCHAR, glyph VARCHAR)
SELECT branding FROM table_23394920_1 WHERE power_kw = "5kW" AND station_type = "Relay"
When relay is the station type and 5kw is the power kw what is the branding?
CREATE TABLE table_23394920_1 (branding VARCHAR, power_kw VARCHAR, station_type VARCHAR)
SELECT SUM(silver) FROM table_name_98 WHERE rank > 3 AND total < 2
What is the sum of silvers for teams with ranks over 3 and totals under 2?
CREATE TABLE table_name_98 (silver INTEGER, rank VARCHAR, total VARCHAR)
SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo'
Find the organisation type description of the organisation detailed as 'quo'.
CREATE TABLE Organisations (organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE organisation_Types (organisation_type_description VARCHAR, organisation_type VARCHAR)
SELECT time_retired FROM table_name_41 WHERE grid = 4
Tell me the time/retired for grid 4
CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR)
SELECT position FROM table_name_48 WHERE round > 6 AND pick__number < 25 AND college = "southern illinois"
Round larger than 6, and a Pick # smaller than 25, and a College of southern Illinois has what position?
CREATE TABLE table_name_48 (position VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT time_retired FROM table_17330069_1 WHERE points = "28"
If there are 28 points, what is the time/retired?
CREATE TABLE table_17330069_1 (time_retired VARCHAR, points VARCHAR)
SELECT last_match FROM table_name_96 WHERE manner_of_departure = "resigned" AND date_of_vacancy = "round 1"
What is the last match with a resigned manner of departure and a round 1 date of vacancy?
CREATE TABLE table_name_96 (last_match VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
SELECT profession FROM table_name_1 WHERE entered_the_house = "day 1" AND evicted = "day 29" AND name = "skaj vikler"
What is the profession of Skaj Vikler, who entered the house on day 1 and was evicted on day 29?
CREATE TABLE table_name_1 (profession VARCHAR, name VARCHAR, entered_the_house VARCHAR, evicted VARCHAR)
SELECT position FROM table_name_29 WHERE player = "farmar, jordan jordan farmar"
What position is played by farmar, jordan jordan farmar?
CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)
SELECT MIN(rank) FROM table_name_60 WHERE source_of_copper = "copper ore, concentrated and leached"
What's the lowest ranking source of copper, copper ore, concentrated and leached?
CREATE TABLE table_name_60 (rank INTEGER, source_of_copper VARCHAR)
SELECT model_number FROM table_name_70 WHERE part_number_s_ = "ay80609003987ab"
What is Model Number, when Part Number(s) is AY80609003987AB?
CREATE TABLE table_name_70 (model_number VARCHAR, part_number_s_ VARCHAR)
SELECT open_cup FROM table_1570003_2 WHERE year = 2003
During 2003 what was open cup qualifying status?
CREATE TABLE table_1570003_2 (open_cup VARCHAR, year VARCHAR)
SELECT tujunga FROM table_name_39 WHERE pasadena = "134,941"
What is the figure for Tujunga when Pasadena is 134,941?
CREATE TABLE table_name_39 (tujunga VARCHAR, pasadena VARCHAR)
SELECT SUM(lost) FROM table_name_69 WHERE points > 28 AND draw = 5 AND place < 1
What's the total of Lost that's got Points larger than 28, Draw of 5, and Place that's smaller than 1?
CREATE TABLE table_name_69 (lost INTEGER, place VARCHAR, points VARCHAR, draw VARCHAR)
SELECT COUNT(_percentage_of_total_deportees) FROM table_16048129_5 WHERE average_family_size = "2.8"
What is the total number of regions where the average family size is 2.8?
CREATE TABLE table_16048129_5 (_percentage_of_total_deportees VARCHAR, average_family_size VARCHAR)
SELECT candidates FROM table_1341973_6 WHERE incumbent = "John Shelley"
What candidates ran in the election that included john shelley?
CREATE TABLE table_1341973_6 (candidates VARCHAR, incumbent VARCHAR)
SELECT performer_4 FROM table_name_14 WHERE performer_3 = "ryan stiles" AND episode = 14
What was Performer 4's name when Performer 3 was Ryan Stiles on episode 14?
CREATE TABLE table_name_14 (performer_4 VARCHAR, performer_3 VARCHAR, episode VARCHAR)
SELECT COUNT(player) FROM table_15621965_7 WHERE school_club_team = "Notre Dame"
How many players belong to Notre Dame?
CREATE TABLE table_15621965_7 (player VARCHAR, school_club_team VARCHAR)
SELECT title FROM table_24781886_3 WHERE _number = 9
When 9 is the number what is the title?
CREATE TABLE table_24781886_3 (title VARCHAR, _number VARCHAR)
SELECT season FROM table_name_79 WHERE final_placing = "8th" AND podiums = "8"
Which Season has a Final Place of 8th and 8 Podiums?
CREATE TABLE table_name_79 (season VARCHAR, final_placing VARCHAR, podiums VARCHAR)
SELECT MIN(judges) FROM table_26375386_20 WHERE result = "Safe" AND vote_percentage = "10.7%"
How many judges were there when the result is safe with a vote percentage of 10.7%?
CREATE TABLE table_26375386_20 (judges INTEGER, result VARCHAR, vote_percentage VARCHAR)
SELECT source_language FROM table_name_31 WHERE meaning = "mahjong"
What language did the word mahjong originate from?
CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR)
SELECT director FROM table_name_4 WHERE language = "portuguese" AND original_name = "bye bye brazil"
Who directed the film originally named Bye Bye Brazil in Portuguese?
CREATE TABLE table_name_4 (director VARCHAR, language VARCHAR, original_name VARCHAR)
SELECT score FROM table_name_33 WHERE date = "october 23"
What was the score on october 23?
CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)
SELECT sspec_number FROM table_16729930_18 WHERE tdp = "3.6 W" AND model_number = "Atom E665C"
For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number?
CREATE TABLE table_16729930_18 (sspec_number VARCHAR, tdp VARCHAR, model_number VARCHAR)
SELECT result FROM table_name_30 WHERE scored > 1
What is the result of the contest with over 1 scored?
CREATE TABLE table_name_30 (result VARCHAR, scored INTEGER)
SELECT MAX(level) FROM table_1751142_2
What is the highest possible level?
CREATE TABLE table_1751142_2 (level INTEGER)
SELECT females FROM table_name_10 WHERE number = "706"
Which language do 706 females speak?
CREATE TABLE table_name_10 (females VARCHAR, number VARCHAR)
SELECT surface FROM table_name_34 WHERE date = "november 28, 2010"
Tell me the surface for november 28, 2010
CREATE TABLE table_name_34 (surface VARCHAR, date VARCHAR)
SELECT MAX(gold) FROM table_name_57 WHERE silver < 0
What is the highest number of gold medals when the silver is less than 0?
CREATE TABLE table_name_57 (gold INTEGER, silver INTEGER)
SELECT altitude__km_ FROM table_148578_1 WHERE date = "1962-07-09"
What was the altitude of the event on 1962-07-09?
CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, date VARCHAR)
SELECT Country FROM mountain WHERE Height > 5600 INTERSECT SELECT Country FROM mountain WHERE Height < 5200
Show the countries that have mountains with height more than 5600 stories and mountains with height less than 5200.
CREATE TABLE mountain (Country VARCHAR, Height INTEGER)
SELECT MAX(run_3) FROM table_name_86 WHERE run_2 = 55.44
What is the highest run 3 of the athlete with a 55.44 run 2?
CREATE TABLE table_name_86 (run_3 INTEGER, run_2 VARCHAR)