question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
That is the total year that Neal Baer is a nominee?
CREATE TABLE table_name_91 (year INTEGER, nominee_s_ VARCHAR)
SELECT SUM(year) FROM table_name_91 WHERE nominee_s_ = "neal baer"
For what episode was the nominee (s) Walon Green, Joe Sachs nominated as a result?
CREATE TABLE table_name_52 (episode VARCHAR, result VARCHAR, nominee_s_ VARCHAR)
SELECT episode FROM table_name_52 WHERE result = "nominated" AND nominee_s_ = "walon green, joe sachs"
Nominee Neal Baer had what result?
CREATE TABLE table_name_23 (result VARCHAR, nominee_s_ VARCHAR)
SELECT result FROM table_name_23 WHERE nominee_s_ = "neal baer"
What episode after 1998 had John Wells as the nominee?
CREATE TABLE table_name_25 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
SELECT episode FROM table_name_25 WHERE year > 1998 AND nominee_s_ = "john wells"
Who has the world record of 153kg in the clean & jerk?
CREATE TABLE table_name_27 (world_record VARCHAR)
SELECT 153 AS kg FROM table_name_27 WHERE world_record = "clean & jerk"
What's the release date for the processor spec number SLBEQ(d0)?
CREATE TABLE table_name_29 (release_date VARCHAR, sspec_number VARCHAR)
SELECT release_date FROM table_name_29 WHERE sspec_number = "slbeq(d0)"
What's the release date of model number CORE I7-940?
CREATE TABLE table_name_27 (release_date VARCHAR, model_number VARCHAR)
SELECT release_date FROM table_name_27 WHERE model_number = "core i7-940"
What's the release price of the processor with the part number bx80601975at80601002274aa, and has 1 × 6.4 gt/s qpi I/O?
CREATE TABLE table_name_12 (release_price___usd__ VARCHAR, i_o_bus VARCHAR, part_number_s_ VARCHAR)
SELECT release_price___usd__ FROM table_name_12 WHERE i_o_bus = "1 × 6.4 gt/s qpi" AND part_number_s_ = "bx80601975at80601002274aa"
What's the release price of a processor that has a frequency of 3.2 ghz and 1 × 6.4 gt/s qpi I/O?
CREATE TABLE table_name_76 (release_price___usd__ VARCHAR, frequency VARCHAR, i_o_bus VARCHAR)
SELECT release_price___usd__ FROM table_name_76 WHERE frequency = "3.2 ghz" AND i_o_bus = "1 × 6.4 gt/s qpi"
What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000?
CREATE TABLE table_name_41 (aids_orphans_as__percentage_of_orphans INTEGER, double__aids_related_ VARCHAR, paternal__total_ VARCHAR)
SELECT SUM(aids_orphans_as__percentage_of_orphans) FROM table_name_41 WHERE double__aids_related_ = "41,000" AND paternal__total_ > 442 OFFSET 000
What is the Total Orphans number when the number of Total Orphans (AIDS Related) is < 100, and the Maternal (Total) is smaller than 31,000?
CREATE TABLE table_name_66 (total_orphans__total_ INTEGER, total_orphans__aids_related_ VARCHAR, maternal__total_ VARCHAR)
SELECT MIN(total_orphans__total_) FROM table_name_66 WHERE total_orphans__aids_related_ = "< 100" AND maternal__total_ < 31 OFFSET 000
What's the term start date for Meretz?
CREATE TABLE table_name_94 (term_start VARCHAR, party VARCHAR)
SELECT term_start FROM table_name_94 WHERE party = "meretz"
How many clubs are involved when the clubs remaining are 2?
CREATE TABLE table_name_88 (clubs_involved INTEGER, clubs_remaining VARCHAR)
SELECT SUM(clubs_involved) FROM table_name_88 WHERE clubs_remaining = 2
How many new entries when the leagues entering in the round are tff third league & turkish regional amateur league?
CREATE TABLE table_name_87 (new_entries_this_round VARCHAR, leagues_entering_at_this_round VARCHAR)
SELECT new_entries_this_round FROM table_name_87 WHERE leagues_entering_at_this_round = "tff third league & turkish regional amateur league"
What is the number of clubs remaining in the second round?
CREATE TABLE table_name_65 (clubs_remaining INTEGER, round VARCHAR)
SELECT MIN(clubs_remaining) FROM table_name_65 WHERE round = "second round"
Which round has 4 clubs involved?
CREATE TABLE table_name_51 (round VARCHAR, clubs_involved VARCHAR)
SELECT round FROM table_name_51 WHERE clubs_involved = 4
How many clubs are involved when there are 4 winners from the previous rounds and more than 4 clubs remaining?
CREATE TABLE table_name_59 (clubs_involved INTEGER, winners_from_previous_round VARCHAR, clubs_remaining VARCHAR)
SELECT MIN(clubs_involved) FROM table_name_59 WHERE winners_from_previous_round = "4" AND clubs_remaining > 4
What is the Away team at the game with a Score of 4 – 2?
CREATE TABLE table_name_29 (away_team VARCHAR, score VARCHAR)
SELECT away_team FROM table_name_29 WHERE score = "4 – 2"
What is the Tie no of the game with an Attendance of 4,658?
CREATE TABLE table_name_34 (tie_no VARCHAR, attendance VARCHAR)
SELECT tie_no FROM table_name_34 WHERE attendance = "4,658"
What is the Home team at the Lincoln City Away game?
CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_80 WHERE away_team = "lincoln city"
What is the Away team at the game with a Score of 1 – 0 and Attendance of 1,791?
CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR, attendance VARCHAR)
SELECT away_team FROM table_name_4 WHERE score = "1 – 0" AND attendance = "1,791"
What is the Home team of the game with a Score of 2 – 2?
CREATE TABLE table_name_98 (home_team VARCHAR, score VARCHAR)
SELECT home_team FROM table_name_98 WHERE score = "2 – 2"
What is the Attendance of the game with a Score of 0 – 0?
CREATE TABLE table_name_94 (attendance VARCHAR, score VARCHAR)
SELECT attendance FROM table_name_94 WHERE score = "0 – 0"
What year had Nintendo EAD, Monolith Soft as developers?
CREATE TABLE table_name_36 (year INTEGER, developer_s_ VARCHAR)
SELECT SUM(year) FROM table_name_36 WHERE developer_s_ = "nintendo ead, monolith soft"
what is the location when the designer is glen peloso and the restaurant is joe boo's cookoos?
CREATE TABLE table_name_48 (location VARCHAR, designer VARCHAR, restaurant_name VARCHAR)
SELECT location FROM table_name_48 WHERE designer = "glen peloso" AND restaurant_name = "joe boo's cookoos"
What year did the team from City of Aurora join?
CREATE TABLE table_name_57 (year_joined__or_joining_ INTEGER, city VARCHAR)
SELECT AVG(year_joined__or_joining_) FROM table_name_57 WHERE city = "aurora"
What was the total enrollment 08-09 of Franklin County?
CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR)
SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = "franklin county"
What school has a team called the Pirates?
CREATE TABLE table_name_79 (school VARCHAR, team_name VARCHAR)
SELECT school FROM table_name_79 WHERE team_name = "pirates"
What is the rank of the team with a time of 1:00.61?
CREATE TABLE table_name_1 (rank INTEGER, time VARCHAR)
SELECT AVG(rank) FROM table_name_1 WHERE time = "1:00.61"
What's the lane with a time of 1:00.66?
CREATE TABLE table_name_93 (lane INTEGER, time VARCHAR)
SELECT AVG(lane) FROM table_name_93 WHERE time = "1:00.66"
What's the rank when the time was 59.65?
CREATE TABLE table_name_43 (rank VARCHAR, time VARCHAR)
SELECT rank FROM table_name_43 WHERE time = "59.65"
What is the record when they played New York?
CREATE TABLE table_name_64 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_64 WHERE opponent = "new york"
Can you tell me the County that has the Year Joined of 1964, and the Location of montezuma?
CREATE TABLE table_name_24 (county VARCHAR, year_joined VARCHAR, location VARCHAR)
SELECT county FROM table_name_24 WHERE year_joined = 1964 AND location = "montezuma"
Can you tell me the Conference Joined that has the Location of terre haute, and the Mascot of golden bears?
CREATE TABLE table_name_67 (conference_joined VARCHAR, location VARCHAR, mascot VARCHAR)
SELECT conference_joined FROM table_name_67 WHERE location = "terre haute" AND mascot = "golden bears"
Can you tell me the Mascot that has the School of rosedale?
CREATE TABLE table_name_70 (mascot VARCHAR, school VARCHAR)
SELECT mascot FROM table_name_70 WHERE school = "rosedale"
Can you tell me the Conference Joined that has the Mascot of little sycamores?
CREATE TABLE table_name_88 (conference_joined VARCHAR, mascot VARCHAR)
SELECT conference_joined FROM table_name_88 WHERE mascot = "little sycamores"
Can you tell me the Location that has the Mascot of lakers?
CREATE TABLE table_name_69 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_69 WHERE mascot = "lakers"
What is the time of the rider from the 348cc K4 Honda team with a speed of 97.743mph?
CREATE TABLE table_name_55 (time VARCHAR, team VARCHAR, speed VARCHAR)
SELECT time FROM table_name_55 WHERE team = "348cc k4 honda" AND speed = "97.743mph"
What is the Lane of the swimmer with a Time of 8:34.25?
CREATE TABLE table_name_30 (lane VARCHAR, time VARCHAR)
SELECT lane FROM table_name_30 WHERE time = "8:34.25"
What is the Name of the swimmer with a Time of 9:04.86 in Heat 2?
CREATE TABLE table_name_40 (name VARCHAR, heat VARCHAR, time VARCHAR)
SELECT name FROM table_name_40 WHERE heat = 2 AND time = "9:04.86"
What is the Location of the Event in Round 1 with a Time of 1:25?
CREATE TABLE table_name_21 (location VARCHAR, round VARCHAR, time VARCHAR)
SELECT location FROM table_name_21 WHERE round = 1 AND time = "1:25"
What is the average goals when the last appearance was before 1984, there were more than 17 appearances, the first appearance was before 1961 and the position was mf?
CREATE TABLE table_name_52 (goals INTEGER, position VARCHAR, first_appearance VARCHAR, last_appearance VARCHAR, appearances VARCHAR)
SELECT AVG(goals) FROM table_name_52 WHERE last_appearance < 1984 AND appearances > 17 AND first_appearance < 1961 AND position = "mf"
what is the school that left in 1966?
CREATE TABLE table_name_18 (school VARCHAR, year_left VARCHAR)
SELECT school FROM table_name_18 WHERE year_left = 1966
what is the mascot for moores hill that joined later than 1952?
CREATE TABLE table_name_19 (mascot VARCHAR, year_joined VARCHAR, school VARCHAR)
SELECT mascot FROM table_name_19 WHERE year_joined > 1952 AND school = "moores hill"
what is the conference joined for the county 69 ripley in 1952 in versailles?
CREATE TABLE table_name_58 (conference_joined VARCHAR, location VARCHAR, county VARCHAR, year_joined VARCHAR)
SELECT conference_joined FROM table_name_58 WHERE county = "69 ripley" AND year_joined = 1952 AND location = "versailles"
who is the mascot of the county 78 switzerland?
CREATE TABLE table_name_91 (mascot VARCHAR, county VARCHAR)
SELECT mascot FROM table_name_91 WHERE county = "78 switzerland"
What is the total time of the athlete from Canada with a lane less than 8 and a rank less than 8?
CREATE TABLE table_name_52 (time VARCHAR, rank VARCHAR, lane VARCHAR, nationality VARCHAR)
SELECT COUNT(time) FROM table_name_52 WHERE lane < 8 AND nationality = "canada" AND rank < 8
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
What is the average react of bryan barnett, who has a lane less than 2?
CREATE TABLE table_name_59 (react INTEGER, name VARCHAR, lane VARCHAR)
SELECT AVG(react) FROM table_name_59 WHERE name = "bryan barnett" AND lane < 2
What year did the Hornets leave the conference?
CREATE TABLE table_name_68 (year_left VARCHAR, team_name VARCHAR)
SELECT year_left FROM table_name_68 WHERE team_name = "hornets"
In what city was the team that left the conference in 1949 based?
CREATE TABLE table_name_65 (city VARCHAR, year_left VARCHAR)
SELECT city FROM table_name_65 WHERE year_left = "1949"
What year did the team based in the city of Winamac join the conference?
CREATE TABLE table_name_6 (year_joined VARCHAR, city VARCHAR)
SELECT year_joined FROM table_name_6 WHERE city = "winamac"
From what county was the team that left the conference in 1993?
CREATE TABLE table_name_3 (county VARCHAR, year_left VARCHAR)
SELECT county FROM table_name_3 WHERE year_left = "1993"
From what school was the team that left the conference in 1992?
CREATE TABLE table_name_63 (school VARCHAR, year_left VARCHAR)
SELECT school FROM table_name_63 WHERE year_left = "1992"
In what year did the team from the Western school join the conference?
CREATE TABLE table_name_10 (year_joined VARCHAR, school VARCHAR)
SELECT year_joined FROM table_name_10 WHERE school = "western"
What is the place when less than 1 point is scored?
CREATE TABLE table_name_77 (place INTEGER, points INTEGER)
SELECT AVG(place) FROM table_name_77 WHERE points < 1
What is the highest draw number when 23 points are scored?
CREATE TABLE table_name_36 (draw INTEGER, points VARCHAR)
SELECT MAX(draw) FROM table_name_36 WHERE points = 23
What is the lowest heat that had a time of 1:02.85 in a lane larger than 7?
CREATE TABLE table_name_40 (heat INTEGER, time VARCHAR, lane VARCHAR)
SELECT MIN(heat) FROM table_name_40 WHERE time = "1:02.85" AND lane > 7
What is the sum of the lanes before heat 7 that elizabeth simmonds swam?
CREATE TABLE table_name_75 (lane INTEGER, heat VARCHAR, name VARCHAR)
SELECT SUM(lane) FROM table_name_75 WHERE heat < 7 AND name = "elizabeth simmonds"
What's the Südbayern in 1928?
CREATE TABLE table_name_27 (südbayern VARCHAR, year VARCHAR)
SELECT südbayern FROM table_name_27 WHERE year = 1928
What's the Württemberg for Karlsruher FV happening after 1931?
CREATE TABLE table_name_51 (württemberg VARCHAR, baden VARCHAR, year VARCHAR)
SELECT württemberg FROM table_name_51 WHERE baden = "karlsruher fv" AND year > 1931
What's the year that has a Baden Freiburger FC?
CREATE TABLE table_name_78 (year VARCHAR, baden VARCHAR)
SELECT COUNT(year) FROM table_name_78 WHERE baden = "freiburger fc"
What's the Württemberg in the year before 1929?
CREATE TABLE table_name_42 (württemberg VARCHAR, year INTEGER)
SELECT württemberg FROM table_name_42 WHERE year < 1929
What's the Nordbayern with a Württemberg of Union Böckingen in the year before 1932?
CREATE TABLE table_name_92 (nordbayern VARCHAR, year VARCHAR, württemberg VARCHAR)
SELECT nordbayern FROM table_name_92 WHERE year < 1932 AND württemberg = "union böckingen"
What was the high rebounds for the game that had a score of w 76-66?
CREATE TABLE table_name_83 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_83 WHERE score = "w 76-66"
What was the location/attendance for the game with a record of 16-6?
CREATE TABLE table_name_79 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_name_79 WHERE record = "16-6"
What is the nationality with a lane larger than 1, and a rank larger than 5, for Hsu Chi-Chieh?
CREATE TABLE table_name_24 (nationality VARCHAR, name VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT nationality FROM table_name_24 WHERE lane > 1 AND rank > 5 AND name = "hsu chi-chieh"
What is the lane with a time of 1:56.64, and a tank smaller than 7?
CREATE TABLE table_name_31 (lane VARCHAR, time VARCHAR, rank VARCHAR)
SELECT COUNT(lane) FROM table_name_31 WHERE time = "1:56.64" AND rank < 7
What is the rank of Japan?
CREATE TABLE table_name_84 (rank VARCHAR, nationality VARCHAR)
SELECT rank FROM table_name_84 WHERE nationality = "japan"
What is the time for Russia?
CREATE TABLE table_name_54 (time VARCHAR, nationality VARCHAR)
SELECT time FROM table_name_54 WHERE nationality = "russia"
What nation has more than 0 silver medals and is ranked 1?
CREATE TABLE table_name_27 (nation VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT nation FROM table_name_27 WHERE silver > 0 AND rank = "1"
What is the rank of the country with total more than 3 and more than 6 silver?
CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT rank FROM table_name_66 WHERE total > 3 AND silver > 6
What is the most silver won by the country with more than 1 gold, 3 bronze, ranked 1, and less than 12 as the total?
CREATE TABLE table_name_54 (silver INTEGER, total VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT MAX(silver) FROM table_name_54 WHERE gold > "1" AND bronze = 3 AND rank = "1" AND total < 12
What nation has a total less than 11, more than 1 silver and less than 1 bronze?
CREATE TABLE table_name_58 (nation VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT nation FROM table_name_58 WHERE total < 11 AND silver < 1 AND bronze < 1
What is the most silver won by Norway?
CREATE TABLE table_name_76 (silver INTEGER, nation VARCHAR)
SELECT MAX(silver) FROM table_name_76 WHERE nation = "norway"
What district has a constituency of 60?
CREATE TABLE table_name_27 (district VARCHAR, constituency_number VARCHAR)
SELECT district FROM table_name_27 WHERE constituency_number = "60"
What is district has a name of Rajnagar?
CREATE TABLE table_name_88 (district VARCHAR, name VARCHAR)
SELECT district FROM table_name_88 WHERE name = "rajnagar"
What was the score for the away team of Brentford?
CREATE TABLE table_name_25 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_25 WHERE away_team = "brentford"
What was the score of the tied game or the away team of Crewe Alexandra?
CREATE TABLE table_name_13 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_13 WHERE away_team = "crewe alexandra"
What was the date of the game for the Wrexham away team?
CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_17 WHERE away_team = "wrexham"
What was the date of the game for the HartlePool United team?
CREATE TABLE table_name_27 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_27 WHERE home_team = "hartlepool united"
What is the number of tickets sold and available for the concert at Long Beach Arena?
CREATE TABLE table_name_18 (tickets_sold___available VARCHAR, venue VARCHAR)
SELECT tickets_sold___available FROM table_name_18 WHERE venue = "long beach arena"
Which city has a venue of the Arco Arena?
CREATE TABLE table_name_42 (city VARCHAR, venue VARCHAR)
SELECT city FROM table_name_42 WHERE venue = "arco arena"
What is the lowest round that has kazushi sakuraba as the opponent?
CREATE TABLE table_name_92 (round INTEGER, opponent VARCHAR)
SELECT MIN(round) FROM table_name_92 WHERE opponent = "kazushi sakuraba"
Japan (JPN) with a total of less than 5, has what average gold medals?
CREATE TABLE table_name_51 (gold INTEGER, nation VARCHAR, total VARCHAR)
SELECT AVG(gold) FROM table_name_51 WHERE nation = "japan (jpn)" AND total < 5
What is the average bronze medal when gold is greater than 0, and there is less than 0 silver medals?
CREATE TABLE table_name_86 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
SELECT AVG(bronze) FROM table_name_86 WHERE gold > 0 AND silver < 0
What is the sum of bronze medals when the rank is greater than 2, and less than 2 total medals with silver medals being more than 0?
CREATE TABLE table_name_2 (bronze VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR)
SELECT COUNT(bronze) FROM table_name_2 WHERE rank > 2 AND total < 2 AND silver > 0
With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total?
CREATE TABLE table_name_23 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR)
SELECT AVG(total) FROM table_name_23 WHERE rank > 4 AND silver > 0 AND bronze < 1
What is the fewest gold medals when the bronze medals is greater than 5?
CREATE TABLE table_name_49 (gold INTEGER, bronze INTEGER)
SELECT MIN(gold) FROM table_name_49 WHERE bronze > 5
What is the player when the team is oakland raiders?
CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR)
SELECT player FROM table_name_89 WHERE team = "oakland raiders"
What is the team when the college is virginia tech?
CREATE TABLE table_name_30 (team VARCHAR, college VARCHAR)
SELECT team FROM table_name_30 WHERE college = "virginia tech"
What college has a team of new york jets?
CREATE TABLE table_name_74 (college VARCHAR, team VARCHAR)
SELECT college FROM table_name_74 WHERE team = "new york jets"
What team has a pick larger than 30, when the college is saginaw valley state?
CREATE TABLE table_name_74 (team VARCHAR, pick VARCHAR, college VARCHAR)
SELECT team FROM table_name_74 WHERE pick > 30 AND college = "saginaw valley state"
What is the highest pick when the college is saginaw valley state?
CREATE TABLE table_name_61 (pick INTEGER, college VARCHAR)
SELECT MAX(pick) FROM table_name_61 WHERE college = "saginaw valley state"
what is the record when the opponent is akiko inoue?
CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_37 WHERE opponent = "akiko inoue"
what is the even when the location is tokyo, japan and the record is 6-1?
CREATE TABLE table_name_7 (event VARCHAR, location VARCHAR, record VARCHAR)
SELECT event FROM table_name_7 WHERE location = "tokyo, japan" AND record = "6-1"
Which range includes Mount Fukushima, and is ranked 38?
CREATE TABLE table_name_7 (range VARCHAR, name VARCHAR, rank VARCHAR)
SELECT range FROM table_name_7 WHERE name = "mount fukushima" AND rank = 38
What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?
CREATE TABLE table_name_93 (altitude__meters_ INTEGER, range VARCHAR, name VARCHAR)
SELECT SUM(altitude__meters_) FROM table_name_93 WHERE range = "belgica mountains" AND name = "mount launoit"
What is the Altitude (meters) associated with a rank smaller than 10, and the range Mühlig-Hofmann Mountains?
CREATE TABLE table_name_72 (altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR)
SELECT COUNT(altitude__meters_) FROM table_name_72 WHERE range = "mühlig-hofmann mountains" AND rank < 10
What name is associated with a rank greater than 69, an altitude (meters) smaller than 2154, and a range of Sivorgfjella?
CREATE TABLE table_name_79 (name VARCHAR, altitude__meters_ VARCHAR, range VARCHAR, rank VARCHAR)
SELECT name FROM table_name_79 WHERE range = "sivorgfjella" AND rank > 69 AND altitude__meters_ < 2154