answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT first_party FROM table_name_50 WHERE second_member = "charles robert colvile" AND second_party = "liberal" | CREATE TABLE table_name_50 (first_party VARCHAR, second_member VARCHAR, second_party VARCHAR) | Which of the first parties has second member as Charles Robert Colvile, and a liberal second party? |
SELECT election FROM table_name_40 WHERE second_member = "charles robert colvile" AND first_party = "conservative" AND first_member = "william mundy" | CREATE TABLE table_name_40 (election VARCHAR, first_member VARCHAR, second_member VARCHAR, first_party VARCHAR) | Which election has second member Charles Robert Colvile, a conservative first party, and first member William Mundy? |
SELECT second_party FROM table_name_31 WHERE second_member = "charles robert colvile" AND first_party = "conservative" AND first_member = "william mundy" | CREATE TABLE table_name_31 (second_party VARCHAR, first_member VARCHAR, second_member VARCHAR, first_party VARCHAR) | Which of the second parties has second member Charles Robert Colvile, a conservative first party, and first member William Mundy? |
SELECT first_member FROM table_name_79 WHERE election = "1868" | CREATE TABLE table_name_79 (first_member VARCHAR, election VARCHAR) | Who is the first member in the 1868 election? |
SELECT source FROM table_name_14 WHERE type = "transfer" AND nat = "mex" | CREATE TABLE table_name_14 (source VARCHAR, type VARCHAR, nat VARCHAR) | WHAT IS THE SOURCE WITH A TYPE OF TRANSFER AND MEX? |
SELECT name FROM table_name_53 WHERE moving_to = "bayer leverkusen" | CREATE TABLE table_name_53 (name VARCHAR, moving_to VARCHAR) | WHAT IS THE NAME WITH BAYER LEVERKUSEN? |
SELECT name FROM table_name_74 WHERE transfer_fee = "free" AND moving_to = "retired" | CREATE TABLE table_name_74 (name VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR) | WHAT NAME HAS A FREE TRANSFER FREE AND RETIRED? |
SELECT transfer_fee FROM table_name_62 WHERE type = "transfer" AND name = "dos santos" | CREATE TABLE table_name_62 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR) | WHAT TRANSFER FEE HAS A TYPE OF TRANSFER FOR DOS SANTOS? |
SELECT SUM(all_around) FROM table_name_68 WHERE total = 37.75 | CREATE TABLE table_name_68 (all_around INTEGER, total VARCHAR) | What is the sum of the all around with a 37.75 total? |
SELECT AVG(final) FROM table_name_12 WHERE all_around > 19.4 AND total > 39.9 | CREATE TABLE table_name_12 (final INTEGER, all_around VARCHAR, total VARCHAR) | What is the average final with an all around larger than 19.4 and total more than 39.9? |
SELECT name FROM table_name_48 WHERE dates_active = "season aggregates" | CREATE TABLE table_name_48 (name VARCHAR, dates_active VARCHAR) | What is the name of the storm active during season aggregates? |
SELECT report FROM table_name_92 WHERE status = "tour match" AND against < 22 | CREATE TABLE table_name_92 (report VARCHAR, status VARCHAR, against VARCHAR) | What report has tour match as the status, with an against less than 22? |
SELECT SUM(against) FROM table_name_66 WHERE venue = "asba park, kimberley" | CREATE TABLE table_name_66 (against INTEGER, venue VARCHAR) | How many againsts have asba park, kimberley as the venue? |
SELECT status FROM table_name_2 WHERE opposing_team = "gauteng falcons" | CREATE TABLE table_name_2 (status VARCHAR, opposing_team VARCHAR) | What status has gauteng falcons as the opposing team? |
SELECT opposing_team FROM table_name_12 WHERE status = "second test" | CREATE TABLE table_name_12 (opposing_team VARCHAR, status VARCHAR) | What opposing team has second test as the status? |
SELECT report FROM table_name_81 WHERE opposing_team = "gauteng falcons" | CREATE TABLE table_name_81 (report VARCHAR, opposing_team VARCHAR) | What report has gauteng falcons as the opposing team? |
SELECT status FROM table_name_34 WHERE against = 18 | CREATE TABLE table_name_34 (status VARCHAR, against VARCHAR) | What status has 18 as the against? |
SELECT receipts_per_arrival_2010__col_2___col_1____usd__ FROM table_name_71 WHERE selected_caribbean_and_n_latin_america_countries = "colombia (1)" | CREATE TABLE table_name_71 (receipts_per_arrival_2010__col_2___col_1____usd__ VARCHAR, selected_caribbean_and_n_latin_america_countries VARCHAR) | What is the number of recepits per arrival in 2010 (col 2)/(col 1) USD with colombia (1) as the selected carribean and latin american country? |
SELECT 17 AS th_c FROM table_name_76 WHERE initial_syllable_open_semi_open_unstressed_vowels = "o /ɵ/" | CREATE TABLE table_name_76 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR) | What is 17th c., when Initial-Syllable Open/Semi-Open Unstressed Vowels is "o /ɵ/"? |
SELECT british FROM table_name_12 WHERE examples = "november, rotunda, colossus, proscenium" | CREATE TABLE table_name_12 (british VARCHAR, examples VARCHAR) | What is British, when Examples is "November, rotunda, colossus, proscenium"? |
SELECT american FROM table_name_23 WHERE british = "ɪ, ə" AND initial_syllable_open_semi_open_unstressed_vowels = "æ /ɨ/" | CREATE TABLE table_name_23 (american VARCHAR, british VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR) | What is American, when British is "ɪ, ə", and when Initial-Syllable Open/Semi-Open Unstressed Vowels is "æ /ɨ/"? |
SELECT initial_syllable_open_semi_open_unstressed_vowels FROM table_name_15 WHERE australian = "ə" | CREATE TABLE table_name_15 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR, australian VARCHAR) | What is Initial-Syllable Open/Semi-Open Unstresses Vowels, when Australian is "ə"? |
SELECT australian FROM table_name_12 WHERE british = "aɪ, ɪ, ə" | CREATE TABLE table_name_12 (australian VARCHAR, british VARCHAR) | What is Australian, when British is "aɪ, ɪ, ə"? |
SELECT american FROM table_name_7 WHERE initial_syllable_open_semi_open_unstressed_vowels = "y /aɪ, ɨ/" | CREATE TABLE table_name_7 (american VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR) | What is American, when Initial-Syllable Open/Semi-Open Unstressed Vowels is "y /aɪ, ɨ/"? |
SELECT date FROM table_name_15 WHERE catalog = "rcd 10160" | CREATE TABLE table_name_15 (date VARCHAR, catalog VARCHAR) | What is the date for catalog RCD 10160? |
SELECT country FROM table_name_45 WHERE format = "cd" AND catalog = "rcd 10523" | CREATE TABLE table_name_45 (country VARCHAR, format VARCHAR, catalog VARCHAR) | What country has CD format and catalog RCD 10523? |
SELECT country FROM table_name_83 WHERE date = "october 20, 1976" | CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR) | Which country is dated October 20, 1976? |
SELECT label FROM table_name_65 WHERE catalog = "cdzap22" | CREATE TABLE table_name_65 (label VARCHAR, catalog VARCHAR) | Which label has the catalog CDZAP22? |
SELECT date FROM table_name_69 WHERE country = "united kingdom" AND catalog = "cdzap22" | CREATE TABLE table_name_69 (date VARCHAR, country VARCHAR, catalog VARCHAR) | What is the date for the catalog CDZAP22 in the United Kingdom? |
SELECT place FROM table_name_84 WHERE score = 66 AND country = "united states" AND player = "dudley hart" | CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR, score VARCHAR, country VARCHAR) | What is Place, when Score is "66", when Country is "United States", and when Player is "Dudley Hart"? |
SELECT MIN(score) FROM table_name_32 WHERE place = "1" | CREATE TABLE table_name_32 (score INTEGER, place VARCHAR) | What is the lowest Score, when Place is "1"? |
SELECT to_par FROM table_name_25 WHERE score = 66 AND player = "brad faxon" | CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR, player VARCHAR) | What is To Par, when Score is "66", and when Player is "Brad Faxon"? |
SELECT opponent_in_the_final FROM table_name_1 WHERE year > 2008 AND championship = "paul hunter classic" | CREATE TABLE table_name_1 (opponent_in_the_final VARCHAR, year VARCHAR, championship VARCHAR) | What is the Opponent in the final after 2008 at the Paul Hunter Classic? |
SELECT MAX(first_elected) FROM table_name_40 WHERE results = "lost re-election democratic gain" AND incumbent = "john hostettler" | CREATE TABLE table_name_40 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR) | What is the latest year for first elected with john hostettler as incumbent and a result of lost re-election democratic gain? |
SELECT owner_operator FROM table_name_18 WHERE from_to = "kambalda to esperance" | CREATE TABLE table_name_18 (owner_operator VARCHAR, from_to VARCHAR) | Who is the owner/operator of the line from Kambalda to Esperance? |
SELECT name__year_commissioned_ FROM table_name_74 WHERE from_to = "karratha to port hedland" | CREATE TABLE table_name_74 (name__year_commissioned_ VARCHAR, from_to VARCHAR) | What is the name of the line from Karratha to Port Hedland? |
SELECT maximum_diameter FROM table_name_57 WHERE name__year_commissioned_ = "mid west gas pipeline (1999)" | CREATE TABLE table_name_57 (maximum_diameter VARCHAR, name__year_commissioned_ VARCHAR) | What is the maximum diameter of the Mid West Gas Pipeline (1999)? |
SELECT owner_operator FROM table_name_85 WHERE licence_number = "pl 59" | CREATE TABLE table_name_85 (owner_operator VARCHAR, licence_number VARCHAR) | Who is the owner operator who has license number PL 59? |
SELECT licence_number FROM table_name_14 WHERE maximum_diameter = "400 mm" | CREATE TABLE table_name_14 (licence_number VARCHAR, maximum_diameter VARCHAR) | What is the license number where the maximum diameter is 400 mm? |
SELECT name__year_commissioned_ FROM table_name_7 WHERE licence_number = "pl 22" | CREATE TABLE table_name_7 (name__year_commissioned_ VARCHAR, licence_number VARCHAR) | What is the name where the license number is PL 22? |
SELECT venue FROM table_name_5 WHERE against = 16 | CREATE TABLE table_name_5 (venue VARCHAR, against VARCHAR) | Which venue has 16 against? |
SELECT AVG(against) FROM table_name_52 WHERE status = "five nations" AND opposing_teams = "wales" | CREATE TABLE table_name_52 (against INTEGER, status VARCHAR, opposing_teams VARCHAR) | What is the against for the opposing team of Wales with the status of Five Nations? |
SELECT AVG(average) FROM table_name_77 WHERE rank > 4 AND player = "dean minors" | CREATE TABLE table_name_77 (average INTEGER, rank VARCHAR, player VARCHAR) | Can you tell me the average Average that has the Rank larger than 4, and the Player of dean minors? |
SELECT venue FROM table_name_54 WHERE runner_up = "john zibnack" | CREATE TABLE table_name_54 (venue VARCHAR, runner_up VARCHAR) | What is the venue where john zibnack was the runner-up? |
SELECT winner FROM table_name_14 WHERE location = "des moines, iowa" AND runner_up = "p.h. finkbank" | CREATE TABLE table_name_14 (winner VARCHAR, location VARCHAR, runner_up VARCHAR) | Who is the winner in des moines, iowa where p.h. finkbank was the runner-up? |
SELECT location FROM table_name_63 WHERE runner_up = "ed c. kingsley" AND year = "1939" | CREATE TABLE table_name_63 (location VARCHAR, runner_up VARCHAR, year VARCHAR) | What is the location where ed c. kingsley was the runner-up in 1939? |
SELECT winner FROM table_name_81 WHERE runner_up = "mark fuller" | CREATE TABLE table_name_81 (winner VARCHAR, runner_up VARCHAR) | Who is the winner when mark fuller was the runner-up? |
SELECT venue FROM table_name_86 WHERE year = "2002" | CREATE TABLE table_name_86 (venue VARCHAR, year VARCHAR) | What is the venue in 2002? |
SELECT runner_up FROM table_name_78 WHERE year = "1901" | CREATE TABLE table_name_78 (runner_up VARCHAR, year VARCHAR) | Who is the runner-up in 1901? |
SELECT australian FROM table_name_81 WHERE short_vowels = "e /ɛ/" | CREATE TABLE table_name_81 (australian VARCHAR, short_vowels VARCHAR) | What Australian sound is equivalent to e /ɛ/? |
SELECT score FROM table_name_99 WHERE home = "new york islanders" | CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR) | What was the score of the game when they played at new york islanders? |
SELECT r_epp FROM table_name_90 WHERE j_thiessen = "tjoatj" | CREATE TABLE table_name_90 (r_epp VARCHAR, j_thiessen VARCHAR) | Which of the R. Epp, has J Thiessen of Tjoatj? |
SELECT r_epp FROM table_name_97 WHERE ed_zacharias = "rollen, jerolt, golt" | CREATE TABLE table_name_97 (r_epp VARCHAR, ed_zacharias VARCHAR) | Which of the R. Epp, has Ed Zacharias from Rollen, Jerolt, Golt? |
SELECT a_dyck FROM table_name_68 WHERE j_thiessen = "du" | CREATE TABLE table_name_68 (a_dyck VARCHAR, j_thiessen VARCHAR) | Which of the A. Dyck has J. Thiessen of Du? |
SELECT h_rempel FROM table_name_31 WHERE j_j_neufeld = "sajen" | CREATE TABLE table_name_31 (h_rempel VARCHAR, j_j_neufeld VARCHAR) | Which of the H. Rempel has J. J. Neufeld of Sajen? |
SELECT SUM(against) FROM table_name_20 WHERE status = "six nations" AND date = "30/03/2003" | CREATE TABLE table_name_20 (against INTEGER, status VARCHAR, date VARCHAR) | What is the sum of Against, when Status is "Six Nations", and when Date is "30/03/2003"? |
SELECT opposing_teams FROM table_name_86 WHERE against < 6 | CREATE TABLE table_name_86 (opposing_teams VARCHAR, against INTEGER) | What is Opposing Teams, when Against is less than 6? |
SELECT date FROM table_name_87 WHERE against = 22 | CREATE TABLE table_name_87 (date VARCHAR, against VARCHAR) | What is Date, when Against is "22"? |
SELECT MAX(money___) AS £__ FROM table_name_44 WHERE country = "south africa" | CREATE TABLE table_name_44 (money___ INTEGER, country VARCHAR) | What shows for money (£) when South Africa is the country? |
SELECT to_par FROM table_name_66 WHERE player = "lanny wadkins" | CREATE TABLE table_name_66 (to_par VARCHAR, player VARCHAR) | What is the To par when Lanny Wadkins is the player? |
SELECT score FROM table_name_91 WHERE outcome = "runner-up" AND tournament = "marco island" | CREATE TABLE table_name_91 (score VARCHAR, outcome VARCHAR, tournament VARCHAR) | What was the score of the marco island tournament match when Kathleen Horvath won runner-up? |
SELECT tournament FROM table_name_55 WHERE date = "july 6, 1987" | CREATE TABLE table_name_55 (tournament VARCHAR, date VARCHAR) | What was the tournament that was on july 6, 1987? |
SELECT position FROM table_name_94 WHERE pick = 246 | CREATE TABLE table_name_94 (position VARCHAR, pick VARCHAR) | What is pick 246's position? |
SELECT pick FROM table_name_58 WHERE player = "chuck bryant" AND nfl_club = "san diego chargers" | CREATE TABLE table_name_58 (pick VARCHAR, player VARCHAR, nfl_club VARCHAR) | Which Pick has a Player of chuck bryant, and an NFL Club of san diego chargers? |
SELECT position FROM table_name_29 WHERE nfl_club = "pittsburgh steelers" | CREATE TABLE table_name_29 (position VARCHAR, nfl_club VARCHAR) | What is the position of the pittsburgh steelers? |
SELECT nfl_club FROM table_name_43 WHERE player = "sam tidmore" AND pick = 81 | CREATE TABLE table_name_43 (nfl_club VARCHAR, player VARCHAR, pick VARCHAR) | Which NFL Club has a Player of sam tidmore, and a Pick of 81? |
SELECT club FROM table_name_1 WHERE round = "group stage round 1 and 5" | CREATE TABLE table_name_1 (club VARCHAR, round VARCHAR) | Which club had round of group stage round 1 and 5? |
SELECT aggregate FROM table_name_54 WHERE round = "first round" AND club = "k.s.v. waregem" | CREATE TABLE table_name_54 (aggregate VARCHAR, round VARCHAR, club VARCHAR) | What is the aggregate for the first round for K.S.V. Waregem? |
SELECT away FROM table_name_40 WHERE round = "second round" | CREATE TABLE table_name_40 (away VARCHAR, round VARCHAR) | What is the away where the round is the second round? |
SELECT broadcast_date FROM table_name_60 WHERE run_time = "24:44" | CREATE TABLE table_name_60 (broadcast_date VARCHAR, run_time VARCHAR) | What was the broadcaste date for the episode with a run time of 24:44? |
SELECT episode FROM table_name_65 WHERE viewers__in_millions_ = "9.1" | CREATE TABLE table_name_65 (episode VARCHAR, viewers__in_millions_ VARCHAR) | Which Episode had 9.1 million viewers? |
SELECT country FROM table_name_45 WHERE previous_team__league_ = "kingston frontenacs ( ohl )" AND player = "anthony stewart category:articles with hcards" | CREATE TABLE table_name_45 (country VARCHAR, previous_team__league_ VARCHAR, player VARCHAR) | What is Country, when Previous Team (League) is "Kingston Frontenacs ( OHL )", and when Player is "Anthony Stewart Category:Articles with hCards"? |
SELECT player FROM table_name_80 WHERE pick = "3" AND position = "defense" AND year < 2010 | CREATE TABLE table_name_80 (player VARCHAR, year VARCHAR, pick VARCHAR, position VARCHAR) | What is Player, when Pick is "3", when Position is "Defense", and when Year is less than 2010? |
SELECT position FROM table_name_81 WHERE year < 2000 AND player = "radek dvorak category:articles with hcards" | CREATE TABLE table_name_81 (position VARCHAR, year VARCHAR, player VARCHAR) | What is Position, when Year is less than 2000, and when Player is "Radek Dvorak Category:Articles with hCards"? |
SELECT player FROM table_name_90 WHERE previous_team__league_ = "medicine hat tigers ( whl )" AND year < 2002 | CREATE TABLE table_name_90 (player VARCHAR, previous_team__league_ VARCHAR, year VARCHAR) | What is Player, when Previous Team (League) is "Medicine Hat Tigers ( WHL )", and when Year is less than 2002? |
SELECT country FROM table_name_93 WHERE year = 1994 | CREATE TABLE table_name_93 (country VARCHAR, year VARCHAR) | What is Country, when Year is "1994"? |
SELECT episode FROM table_name_13 WHERE viewers__in_millions_ = "7.8" | CREATE TABLE table_name_13 (episode VARCHAR, viewers__in_millions_ VARCHAR) | What episode has 7.8 million viewers? |
SELECT episode FROM table_name_51 WHERE run_time = "25:12" | CREATE TABLE table_name_51 (episode VARCHAR, run_time VARCHAR) | What episode has a run time of 25:12? |
SELECT broadcast_date FROM table_name_46 WHERE viewers__in_millions_ = "7.0" | CREATE TABLE table_name_46 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR) | What is the broadcast date with 7.0 million viewers? |
SELECT AVG(total) FROM table_name_66 WHERE player = "dave stockton" | CREATE TABLE table_name_66 (total INTEGER, player VARCHAR) | What is the average total for Dave Stockton? |
SELECT SUM(to_par) FROM table_name_38 WHERE country = "united states" AND year_s__won = "1967" AND total > 146 | CREATE TABLE table_name_38 (to_par INTEGER, total VARCHAR, country VARCHAR, year_s__won VARCHAR) | What is the sum of the to par for the United States in the winning year of 1967, and has a total of more than 146? |
SELECT score FROM table_name_42 WHERE away_team = "arsenal" | CREATE TABLE table_name_42 (score VARCHAR, away_team VARCHAR) | What is the score for the game in which Arsenal was the away team? |
SELECT score FROM table_name_13 WHERE tie_no = "15" | CREATE TABLE table_name_13 (score VARCHAR, tie_no VARCHAR) | What is the score for the tie number 15? |
SELECT outgoing_manager FROM table_name_78 WHERE manner_of_departure = "end of tenure as caretaker" AND replaced_by = "jesper hansen" | CREATE TABLE table_name_78 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR) | What Outgoing manager left at his end of tenure as caretaker and was Replaced by Jesper Hansen? |
SELECT team FROM table_name_52 WHERE position_in_table = "pre-season" AND manner_of_departure = "end of tenure as caretaker" | CREATE TABLE table_name_52 (team VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR) | What Team's Pre-Season Manager's manner of departure was the end of tenure as caretaker? |
SELECT place FROM table_name_87 WHERE player = "fredrik jacobson" | CREATE TABLE table_name_87 (place VARCHAR, player VARCHAR) | What place is Fredrik Jacobson from? |
SELECT to_par FROM table_name_98 WHERE score < 67 AND place = "t1" AND player = "tiger woods" | CREATE TABLE table_name_98 (to_par VARCHAR, player VARCHAR, score VARCHAR, place VARCHAR) | What is the to par of Tiger Woods, where his score was less than 67, and he was in t1 place? |
SELECT place FROM table_name_33 WHERE player = "brad faxon" | CREATE TABLE table_name_33 (place VARCHAR, player VARCHAR) | What place is player Brad Faxon from? |
SELECT MIN(score) FROM table_name_90 WHERE country = "sweden" | CREATE TABLE table_name_90 (score INTEGER, country VARCHAR) | What is Sweden's lowest score? |
SELECT sub_parish__sogn_ FROM table_name_92 WHERE year_built > 1894 AND parish__prestegjeld_ = "jostedal parish" | CREATE TABLE table_name_92 (sub_parish__sogn_ VARCHAR, year_built VARCHAR, parish__prestegjeld_ VARCHAR) | Which Sub-Parish (Sogn) was built after 1894 in the Parish (Prestegjeld) of jostedal parish? |
SELECT sub_parish__sogn_ FROM table_name_30 WHERE parish__prestegjeld_ = "hafslo parish" AND church_name = "hafslo kyrkje" | CREATE TABLE table_name_30 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, church_name VARCHAR) | Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and has a church called Hafslo Kyrkje? |
SELECT sub_parish__sogn_ FROM table_name_52 WHERE parish__prestegjeld_ = "hafslo parish" AND location_of_the_church = "urnes" | CREATE TABLE table_name_52 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR) | Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and is located in the Church of Urnes? |
SELECT sub_parish__sogn_ FROM table_name_66 WHERE year_built < 1883 AND parish__prestegjeld_ = "jostedal parish" AND location_of_the_church = "gaupne" | CREATE TABLE table_name_66 (sub_parish__sogn_ VARCHAR, location_of_the_church VARCHAR, year_built VARCHAR, parish__prestegjeld_ VARCHAR) | Which Sub-Parish (Sogn) was built before 1883 in the Parish (Prestegjeld) of jostedal parish and is located in the Church of Gaupne? |
SELECT sub_parish__sogn_ FROM table_name_99 WHERE church_name = "jostedal kyrkje" | CREATE TABLE table_name_99 (sub_parish__sogn_ VARCHAR, church_name VARCHAR) | Which Sub-Parish (Sogn) has a church named Jostedal Kyrkje? |
SELECT national_title FROM table_name_11 WHERE miss_international = "ikumi yoshimatsu" | CREATE TABLE table_name_11 (national_title VARCHAR, miss_international VARCHAR) | What's the national title of miss international ikumi yoshimatsu? |
SELECT MIN(year) FROM table_name_6 WHERE country_territory = "philippines" | CREATE TABLE table_name_6 (year INTEGER, country_territory VARCHAR) | What's the earliest year the philippines won? |
SELECT AVG(year) FROM table_name_51 WHERE country_territory = "lebanon" | CREATE TABLE table_name_51 (year INTEGER, country_territory VARCHAR) | What's the average year lebanon won? |
SELECT country_territory FROM table_name_33 WHERE miss_international = "małgorzata rożniecka" | CREATE TABLE table_name_33 (country_territory VARCHAR, miss_international VARCHAR) | What country or territory is małgorzata rożniecka from? |
SELECT teams FROM table_name_84 WHERE league = "regionalliga süd" | CREATE TABLE table_name_84 (teams VARCHAR, league VARCHAR) | Which team had a league of regionalliga süd? |
SELECT home FROM table_name_79 WHERE season = "1949-50" | CREATE TABLE table_name_79 (home VARCHAR, season VARCHAR) | What was the home for season 1949-50? |
Subsets and Splits