question
stringlengths
14
216
context
stringlengths
45
458
answer
stringlengths
18
463
When was the dvd release directed by Billy O'Brien?
create table table_19982699_1 (dvd_release varchar, director varchar, PRIMARY KEY (dvd_release))
select dvd_release from table_19982699_1 where director = "billy o'brien"
Whats the processor for p9xxx?
create table table_24100843_1 (processor varchar, model__list_ varchar, PRIMARY KEY (processor))
select processor from table_24100843_1 where model__list_ = "p9xxx"
What is the name of the baseball stadium for the school with the Murray Center basketball arena?
create table table_1974545_3 (baseball_stadium varchar, basketball_arena varchar, PRIMARY KEY (baseball_stadium))
select baseball_stadium from table_1974545_3 where basketball_arena = "the murray center"
What is the largest population count in any of the census divisions in 2006?
create table table_2134521_1 (pop__2006_ integer, PRIMARY KEY (pop__2006_))
select max(pop__2006_) from table_2134521_1
What is the largest number of tds scored for a player?
create table table_18064020_21 (td integer, PRIMARY KEY (td))
select max(td) from table_18064020_21
What is the adjusted GDP when the population is 5.141 million?
create table table_1610496_3 (gdp_adjusted__$_billions_ varchar, population__millions_ varchar, PRIMARY KEY (gdp_adjusted__$_billions_))
select gdp_adjusted__$_billions_ from table_1610496_3 where population__millions_ = "5.141"
When real holmesdale reserves is division four who is in division one?
create table table_24575253_4 (division_one varchar, division_four varchar, PRIMARY KEY (division_one))
select division_one from table_24575253_4 where division_four = "real holmesdale reserves"
How many original dance scores are listed in the event where the compulsory dance was 20.03?
create table table_22644589_4 (original_dance__od_ varchar, compulsory_dance__cd_ varchar, PRIMARY KEY (original_dance__od_))
select count(original_dance__od_) from table_22644589_4 where compulsory_dance__cd_ = "20.03"
Find the name of the teacher who teaches the largest number of students.
create table list (classroom varchar, PRIMARY KEY (classroom)); create table teachers (firstname varchar, lastname varchar, classroom varchar, PRIMARY KEY (firstname))
select t2.firstname, t2.lastname from list as t1 join teachers as t2 on t1.classroom = t2.classroom group by t2.firstname, t2.lastname order by count(*) desc limit 1
What is the catalog number named callanetics: 10 years younger in 10 hours
create table table_11222744_3 (catalog_number varchar, title varchar, PRIMARY KEY (catalog_number))
select catalog_number from table_11222744_3 where title = "callanetics: 10 years younger in 10 hours"
What was the high points when rebounds were Terrence Williams (8)?
create table table_22879323_10 (high_points varchar, high_rebounds varchar, PRIMARY KEY (high_points))
select high_points from table_22879323_10 where high_rebounds = "terrence williams (8)"
How many month names are there for the tenth numbered month?
create table table_28985631_1 (month_name varchar, numbered_month varchar, PRIMARY KEY (month_name))
select count(month_name) from table_28985631_1 where numbered_month = "tenth"
Who has high points when 50-26 is the record?
create table table_23284271_10 (high_points varchar, record varchar, PRIMARY KEY (high_points))
select high_points from table_23284271_10 where record = "50-26"
Name the release date xbox 360 for sea wolf
create table table_26631526_1 (release_date___xbox360__ varchar, artist varchar, PRIMARY KEY (release_date___xbox360__))
select release_date___xbox360__ from table_26631526_1 where artist = "sea wolf"
What are the name and typical buying and selling prices of the products that have color described as "yellow"?
create table ref_colors (color_code varchar, color_description varchar, PRIMARY KEY (color_code)); create table products (product_name varchar, typical_buying_price varchar, typical_selling_price varchar, color_code varchar, PRIMARY KEY (product_name))
select t1.product_name, t1.typical_buying_price, t1.typical_selling_price from products as t1 join ref_colors as t2 on t1.color_code = t2.color_code where t2.color_description = "yellow"
What are the songs in album "A Kiss Before You Go: Live in Hamburg"?
create table songs (title varchar, songid varchar, PRIMARY KEY (title)); create table albums (aid varchar, title varchar, PRIMARY KEY (aid)); create table tracklists (albumid varchar, songid varchar, PRIMARY KEY (albumid))
select t3.title from albums as t1 join tracklists as t2 on t1.aid = t2.albumid join songs as t3 on t2.songid = t3.songid where t1.title = "a kiss before you go: live in hamburg"
When 23% scott mcadams (d) what are the dates administered?
create table table_20597634_3 (dates_administered varchar, scott_mcadams__d_ varchar, PRIMARY KEY (dates_administered))
select dates_administered from table_20597634_3 where scott_mcadams__d_ = "23%"
Name the term ends for bethlehem
create table table_1979619_3 (term_ends varchar, residence varchar, PRIMARY KEY (term_ends))
select count(term_ends) from table_1979619_3 where residence = "bethlehem"
What is the title of the film that has the highest high market estimation.
create table film_market_estimation (film_id varchar, PRIMARY KEY (film_id)); create table film (film_id varchar, PRIMARY KEY (film_id))
select t1.title from film as t1 join film_market_estimation as t2 on t1.film_id = t2.film_id order by high_estimate desc limit 1
What opponent got 44 points in their game?
create table table_23243769_4 (opponent varchar, opp_points varchar, PRIMARY KEY (opponent))
select opponent from table_23243769_4 where opp_points = 44
What was the result for the cirtcuit where the LMPC winning team was #89 Intersport Racing?
create table table_27758427_2 (results varchar, lmpc_winning_team varchar, PRIMARY KEY (results))
select results from table_27758427_2 where lmpc_winning_team = "#89 intersport racing"
Which players scored the most points when the opposing team was Seattle and how many points did they score?
create table table_13619135_5 (high_points varchar, team varchar, PRIMARY KEY (high_points))
select high_points from table_13619135_5 where team = "seattle"
Where the fastest lap is Mike Rockenfeller, who is the winning driver?
create table table_26267607_2 (winning_driver varchar, fastest_lap varchar, PRIMARY KEY (winning_driver))
select winning_driver from table_26267607_2 where fastest_lap = "mike rockenfeller"
What numbered episode was directed by greg colton and written by patrick meighan?
create table table_28210383_1 (no__episode__number_ varchar, directed_by varchar, written_by varchar, PRIMARY KEY (no__episode__number_))
select no__episode__number_ from table_28210383_1 where directed_by = "greg colton" and written_by = "patrick meighan"
Name the gdp where gdp per capita 20200
create table table_1307842_7 (gdp__billion_us$_ varchar, gdp_per_capita__us$_ varchar, PRIMARY KEY (gdp__billion_us$_))
select gdp__billion_us$_ from table_1307842_7 where gdp_per_capita__us$_ = 20200
How many different types of rooms are there?
create table room (roomtype varchar, PRIMARY KEY (roomtype))
select count(distinct roomtype) from room
Name the poll winner for march 19, 2008
create table table_15781170_2 (poll_winner varchar, original_air_date varchar, PRIMARY KEY (poll_winner))
select count(poll_winner) from table_15781170_2 where original_air_date = "march 19, 2008"
What is the comissioned for 4 may 1943?
create table table_1220125_4 (commissioned varchar, laid_down varchar, PRIMARY KEY (commissioned))
select commissioned from table_1220125_4 where laid_down = "4 may 1943"
If the polling average in July 2009 was 7.2%, what was it in May 2009?
create table table_23680576_2 (may_2009 varchar, jul_2009 varchar, PRIMARY KEY (may_2009))
select may_2009 from table_23680576_2 where jul_2009 = "7.2%"
in which year was available the rubber as kickdrum pad
create table table_2889300_6 (years_available varchar, kickdrum_pad varchar, PRIMARY KEY (years_available))
select years_available from table_2889300_6 where kickdrum_pad = "rubber"
What is the date of vacancy for the person that left because of end of caretaker contract?
create table table_22133191_3 (date_of_vacancy varchar, manner_of_departure varchar, PRIMARY KEY (date_of_vacancy))
select date_of_vacancy from table_22133191_3 where manner_of_departure = "end of caretaker contract"
Name the numbers of the nba draft where the player went to kentucky
create table table_11677760_31 (nba_draft varchar, college varchar, PRIMARY KEY (nba_draft))
select nba_draft from table_11677760_31 where college = "kentucky"
What's the minimal number of population served?
create table table_18268930_1 (population_served integer, PRIMARY KEY (population_served))
select min(population_served) from table_18268930_1
Which school was in Toronto in 2001-02?
create table table_10015132_14 (school_club_team varchar, years_in_toronto varchar, PRIMARY KEY (school_club_team))
select school_club_team from table_10015132_14 where years_in_toronto = "2001-02"
Name the gene name for accession number bx897700.1
create table table_27155678_2 (gene_name varchar, accession_number varchar, PRIMARY KEY (gene_name))
select gene_name from table_27155678_2 where accession_number = "bx897700.1"
What is every value for %yes when type is ref?
create table table_256286_43 (_percentage_yes varchar, type varchar, PRIMARY KEY (_percentage_yes))
select _percentage_yes from table_256286_43 where type = "ref"
what's the time required for prices to double with highest monthly inflation rate being 29,500%
create table table_13681_2 (time_required_for_prices_to_double varchar, highest_monthly_inflation_rate varchar, PRIMARY KEY (time_required_for_prices_to_double))
select time_required_for_prices_to_double from table_13681_2 where highest_monthly_inflation_rate = "29,500%"
What is the name of the stadium which held the most events?
create table stadium (name varchar, id varchar, PRIMARY KEY (name)); create table event (stadium_id varchar, PRIMARY KEY (stadium_id))
select t1.name from stadium as t1 join event as t2 on t1.id = t2.stadium_id group by t2.stadium_id order by count(*) desc limit 1
What are the ids of the problems reported before the date of any problem reported by Lysanne Turcotte?
create table problems (problem_id varchar, reported_by_staff_id varchar, PRIMARY KEY (problem_id)); create table staff (staff_id varchar, staff_first_name varchar, staff_last_name varchar, PRIMARY KEY (staff_id)); create table problems (reported_by_staff_id varchar, PRIMARY KEY (reported_by_staff_id)); create table staff (staff_id varchar, PRIMARY KEY (staff_id))
select t1.problem_id from problems as t1 join staff as t2 on t1.reported_by_staff_id = t2.staff_id where date_problem_reported < (select min(date_problem_reported) from problems as t3 join staff as t4 on t3.reported_by_staff_id = t4.staff_id where t4.staff_first_name = "lysanne" and t4.staff_last_name = "turcotte")
In what year was the last last title received, by any of the countries?
create table table_10682862_68 (last_title integer, PRIMARY KEY (last_title))
select max(last_title) from table_10682862_68
What were the television air dates for the series that had a production start date of June 16?
create table table_1949994_8 (premiere_air_dates varchar, start_date varchar, PRIMARY KEY (premiere_air_dates))
select premiere_air_dates from table_1949994_8 where start_date = "june 16"
What are the title and issues of the books?
create table book (title varchar, issues varchar, PRIMARY KEY (title))
select title, issues from book
Who directed Dulcinea?
create table table_10798928_1 (director varchar, original_title varchar, PRIMARY KEY (director))
select director from table_10798928_1 where original_title = "dulcinea"
What programs were held at highland speedway?
create table table_16275828_4 (program varchar, track_name varchar, PRIMARY KEY (program))
select program from table_16275828_4 where track_name = "highland speedway"
How many dogs have not gone through any treatment?
create table dogs (dog_id varchar, PRIMARY KEY (dog_id)); create table treatments (dog_id varchar, PRIMARY KEY (dog_id))
select count(*) from dogs where not dog_id in (select dog_id from treatments)
What is the LMS number of the trains built by G&SWR Kilmarnock?
create table table_15412381_5 (lms_nos varchar, builder varchar, PRIMARY KEY (lms_nos))
select lms_nos from table_15412381_5 where builder = "g&swr kilmarnock"
How many locations have been used for ballparks named Memorial Stadium?
create table table_1987995_5 (location varchar, ballpark varchar, PRIMARY KEY (location))
select count(location) from table_1987995_5 where ballpark = "memorial stadium"
What is the sector is the establishment is 110313?
create table table_23802822_1 (sector varchar, establishments varchar, PRIMARY KEY (sector))
select sector from table_23802822_1 where establishments = 110313
what's the regionalliga west/südwest with regionalliga süd being stuttgarter kickers
create table table_14242137_11 (regionalliga_west_südwest varchar, regionalliga_süd varchar, PRIMARY KEY (regionalliga_west_südwest))
select regionalliga_west_südwest from table_14242137_11 where regionalliga_süd = "stuttgarter kickers"
What's the part 4 for the verb whose part 3 is borgen?
create table table_1745843_7 (part_4 varchar, part_3 varchar, PRIMARY KEY (part_4))
select part_4 from table_1745843_7 where part_3 = "borgen"
During what period were parliament 11th?
create table table_1889233_2 (period_in_office varchar, parliament varchar, PRIMARY KEY (period_in_office))
select period_in_office from table_1889233_2 where parliament = "11th"
who was the voice actor when the species is hedgehog?
create table table_26615633_1 (voice_actor varchar, species varchar, PRIMARY KEY (voice_actor))
select voice_actor from table_26615633_1 where species = "hedgehog"
What episode premier received 0.680 million viewers?
create table table_23392257_4 (original_airdate varchar, viewers__millions_ varchar, PRIMARY KEY (original_airdate))
select original_airdate from table_23392257_4 where viewers__millions_ = "0.680"
On what game sites are there where the team record is 0–5?
create table table_25380472_2 (game_site varchar, team_record varchar, PRIMARY KEY (game_site))
select game_site from table_25380472_2 where team_record = "0–5"
Which driver won the race xiv eläintarhanajot?
create table table_1140116_5 (winning_driver varchar, race_name varchar, PRIMARY KEY (winning_driver))
select winning_driver from table_1140116_5 where race_name = "xiv eläintarhanajot"
What is the manner of departure for the date of appointment 24 may 2010?
create table table_26998135_2 (manner_of_departure varchar, date_of_appointment varchar, PRIMARY KEY (manner_of_departure))
select manner_of_departure from table_26998135_2 where date_of_appointment = "24 may 2010"
When is the original airing on channel 4 with being alive as the title?
create table table_22170495_6 (original_airing_on_channel_4 varchar, title varchar, PRIMARY KEY (original_airing_on_channel_4))
select original_airing_on_channel_4 from table_22170495_6 where title = "being alive"
What date did the episode that was directed by Christian i. nyby ii originally air on?
create table table_29583441_1 (original_air_date varchar, directed_by varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_29583441_1 where directed_by = "christian i. nyby ii"
Find all the papers published by the institution "Google".
create table inst (instid varchar, name varchar, PRIMARY KEY (instid)); create table authorship (paperid varchar, instid varchar, PRIMARY KEY (paperid)); create table papers (title varchar, paperid varchar, PRIMARY KEY (title))
select distinct t1.title from papers as t1 join authorship as t2 on t1.paperid = t2.paperid join inst as t3 on t2.instid = t3.instid where t3.name = "google"
How many allergies are there?
create table allergy_type (allergy varchar, PRIMARY KEY (allergy))
select count(distinct allergy) from allergy_type
Find the login name of the course author that teaches the course with name "advanced database".
create table courses (author_id varchar, course_name varchar, PRIMARY KEY (author_id)); create table course_authors_and_tutors (login_name varchar, author_id varchar, PRIMARY KEY (login_name))
select t1.login_name from course_authors_and_tutors as t1 join courses as t2 on t1.author_id = t2.author_id where t2.course_name = "advanced database"
What are the home team scores when fremantle is the away team?
create table table_16388506_1 (home_team varchar, away_team varchar, PRIMARY KEY (home_team))
select home_team as score from table_16388506_1 where away_team = "fremantle"
what's the date where ships name is zeeland entered service
create table table_11662133_3 (date_entered_service varchar, ships_name varchar, PRIMARY KEY (date_entered_service))
select date_entered_service from table_11662133_3 where ships_name = "zeeland"
How many times was the catalog number cal04 / 0091037553546?
create table table_27303975_3 (title varchar, catalog_number varchar, PRIMARY KEY (title))
select count(title) from table_27303975_3 where catalog_number = "cal04 / 0091037553546"
What was the resultado when E.E.U.U was the country?
create table table_27501971_2 (resultado varchar, country varchar, PRIMARY KEY (resultado))
select resultado from table_27501971_2 where country = "e.e.u.u"
Which station has a license in Fort Collins, Colorado?
create table table_1353096_2 (station varchar, city_of_license_market varchar, PRIMARY KEY (station))
select station from table_1353096_2 where city_of_license_market = "fort collins, colorado"
When was the first asset acquired?
create table assets (asset_acquired_date varchar, PRIMARY KEY (asset_acquired_date))
select asset_acquired_date from assets order by asset_acquired_date limit 1
The head coach, steve radoslavic, is related to which websites?
create table table_11365528_2 (website varchar, head_coach varchar, PRIMARY KEY (website))
select website from table_11365528_2 where head_coach = "steve radoslavic"
what is the original air date of the episode directed by Ben Jones and written by Steven Melching?
create table table_20360535_4 (original_air_date varchar, directed_by varchar, written_by varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_20360535_4 where directed_by = "ben jones" and written_by = "steven melching"
What name was used for nomination for the film with an original title of "The Black Tulip"?
create table table_17155250_1 (film_title_used_in_nomination varchar, original_title varchar, PRIMARY KEY (film_title_used_in_nomination))
select film_title_used_in_nomination from table_17155250_1 where original_title = "the black tulip"
What is the population in millions when the adjusted GDP is 492 billion?
create table table_1610496_3 (population__millions_ varchar, gdp_adjusted__$_billions_ varchar, PRIMARY KEY (population__millions_))
select population__millions_ from table_1610496_3 where gdp_adjusted__$_billions_ = "492"
Name the kickoff for rheinstadion
create table table_27690037_2 (kickoff varchar, game_site varchar, PRIMARY KEY (kickoff))
select kickoff from table_27690037_2 where game_site = "rheinstadion"
Show the different headquarters and number of companies at each headquarter.
create table company (headquarters varchar, PRIMARY KEY (headquarters))
select headquarters, count(*) from company group by headquarters
Show the id and builder of the railway that are associated with the most trains.
create table train (railway_id varchar, PRIMARY KEY (railway_id)); create table railway (builder varchar, railway_id varchar, PRIMARY KEY (builder))
select t2.railway_id, t1.builder from railway as t1 join train as t2 on t1.railway_id = t2.railway_id group by t2.railway_id order by count(*) desc limit 1
What is the final weight for contestant Chris?
create table table_24370270_10 (final_weight__kg_ varchar, contestant varchar, PRIMARY KEY (final_weight__kg_))
select final_weight__kg_ from table_24370270_10 where contestant = "chris"
What type of school has the nickname the Oilers?
create table table_262560_2 (type varchar, nickname varchar, PRIMARY KEY (type))
select type from table_262560_2 where nickname = "oilers"
How many captains when the shirt sponsor is toshiba?
create table table_27631756_2 (captain varchar, shirt_sponsor varchar, PRIMARY KEY (captain))
select count(captain) from table_27631756_2 where shirt_sponsor = "toshiba"
How many players are listed for the school/club team Washington?
create table table_15463188_17 (name varchar, school_club_team varchar, PRIMARY KEY (name))
select count(name) from table_15463188_17 where school_club_team = "washington"
Show the parties that have both representatives in New York state and representatives in Pennsylvania state.
create table representative (party varchar, state varchar, PRIMARY KEY (party))
select party from representative where state = "new york" intersect select party from representative where state = "pennsylvania"
Name the location for illinois
create table table_1672976_7 (location varchar, big_ten_team varchar, PRIMARY KEY (location))
select location from table_1672976_7 where big_ten_team = "illinois"
How many type catagories are listed when the percentage of yes is 68.91%?
create table table_256286_61 (type varchar, _percentage_yes varchar, PRIMARY KEY (type))
select count(type) from table_256286_61 where _percentage_yes = "68.91%"
What are the names of tourist attraction that Alison visited but Rosalind did not visit?
create table visits (tourist_attraction_id varchar, tourist_id varchar, PRIMARY KEY (tourist_attraction_id)); create table visitors (tourist_details varchar, tourist_id varchar, PRIMARY KEY (tourist_details)); create table tourist_attractions (name varchar, tourist_attraction_id varchar, PRIMARY KEY (name))
select t1.name from tourist_attractions as t1 join visitors as t2 join visits as t3 on t1.tourist_attraction_id = t3.tourist_attraction_id and t2.tourist_id = t3.tourist_id where t2.tourist_details = "alison" except select t1.name from tourist_attractions as t1 join visitors as t2 join visits as t3 on t1.tourist_attraction_id = t3.tourist_attraction_id and t2.tourist_id = t3.tourist_id where t2.tourist_details = "rosalind"
Show the employee ids and the number of documents destroyed by each employee.
create table documents_to_be_destroyed (destroyed_by_employee_id varchar, PRIMARY KEY (destroyed_by_employee_id))
select destroyed_by_employee_id, count(*) from documents_to_be_destroyed group by destroyed_by_employee_id
How many episodes were directed by Arlene Sanford?
create table table_26429658_1 (written_by varchar, directed_by varchar, PRIMARY KEY (written_by))
select count(written_by) from table_26429658_1 where directed_by = "arlene sanford"
What is the reunion weight of the contestant that lost 52 lbs at the reunion?
create table table_28654454_5 (reunion_weight varchar, lbs_lost_reunion varchar, PRIMARY KEY (reunion_weight))
select reunion_weight from table_28654454_5 where lbs_lost_reunion = 52
When was the episode written by Albert Kim aired for the first time?
create table table_20704243_4 (original_air_date varchar, written_by varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_20704243_4 where written_by = "albert kim"
Find the name of customers who did not pay with Cash.
create table customers (customer_name varchar, payment_method varchar, PRIMARY KEY (customer_name))
select customer_name from customers where payment_method <> 'cash'
Find the name of all the clubs at "AKW".
create table club (clubname varchar, clublocation varchar, PRIMARY KEY (clubname))
select clubname from club where clublocation = "akw"
How many total songs has the order #1
create table table_21501518_1 (song_choice varchar, order__number varchar, PRIMARY KEY (song_choice))
select count(song_choice) from table_21501518_1 where order__number = "1"
Name the flight down for vladimir vasyutin , alexander volkov
create table table_245801_1 (flight_down varchar, crew varchar, PRIMARY KEY (flight_down))
select flight_down from table_245801_1 where crew = "vladimir vasyutin , alexander volkov"
What is the mass of the element with a nuclide that is 169 tm?
create table table_15366768_1 (isotopic_mass___u__ varchar, nuclide varchar, PRIMARY KEY (isotopic_mass___u__))
select isotopic_mass___u__ from table_15366768_1 where nuclide = "169 tm"
What is every party with a winner of P. Chidambaram?
create table table_22753439_1 (party varchar, winner varchar, PRIMARY KEY (party))
select party as a from table_22753439_1 where winner = "p. chidambaram"
What is the q1+q2 time in which q1 is 1:18.574?
create table table_1924975_1 (q1 varchar, q2_time varchar, q1_time varchar, PRIMARY KEY (q1))
select q1 + q2_time from table_1924975_1 where q1_time = "1:18.574"
Find the distinct last names of the students who have class president votes.
create table student (lname varchar, stuid varchar, PRIMARY KEY (lname)); create table voting_record (class_president_vote varchar, PRIMARY KEY (class_president_vote))
select distinct t1.lname from student as t1 join voting_record as t2 on t1.stuid = t2.class_president_vote
When the change is 8.8%, what is the density (pop/km²)?
create table table_1425958_1 (density__pop_km²_ varchar, _percentage_change varchar, PRIMARY KEY (density__pop_km²_))
select density__pop_km²_ from table_1425958_1 where _percentage_change = "8.8"
what's the extroverted, relationship-oriented where moderate is introverted sanguine
create table table_11256021_1 (extroverted varchar, _relationship_oriented varchar, moderate varchar, PRIMARY KEY (extroverted))
select extroverted, _relationship_oriented from table_11256021_1 where moderate = "introverted sanguine"
What launcher had spacecrafts that did 37 orbital flights?
create table table_179174_2 (launcher varchar, flights varchar, PRIMARY KEY (launcher))
select launcher from table_179174_2 where flights = "37 orbital"
When indianapolis, indiana is the location what is the institution?
create table table_28211213_2 (institution varchar, location varchar, PRIMARY KEY (institution))
select institution from table_28211213_2 where location = "indianapolis, indiana"
if 22km is the trekking route what is height from sea level in meters?
create table table_1430913_1 (height_from_sea_level_in_meters varchar, trekking_route varchar, PRIMARY KEY (height_from_sea_level_in_meters))
select height_from_sea_level_in_meters from table_1430913_1 where trekking_route = "22km"
Name the member countries for finnish swedish
create table table_26519486_1 (member_countries varchar, languages varchar, PRIMARY KEY (member_countries))
select member_countries from table_26519486_1 where languages = "finnish swedish"