answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT COUNT(rank) FROM table_name_71 WHERE fastest_time__s_ = "11.26" AND nation = "united states"
What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?
CREATE TABLE table_name_71 (rank VARCHAR, fastest_time__s_ VARCHAR, nation VARCHAR)
SELECT player FROM table_name_75 WHERE nationality = "canada" AND pick = "199"
Who is the player from Canada with a 199 pick?
CREATE TABLE table_name_75 (player VARCHAR, nationality VARCHAR, pick VARCHAR)
SELECT surface FROM table_name_86 WHERE score_in_the_final = "5–7, 6–7 (2–7)"
What is the Surface of the match with a Score in the final of 5–7, 6–7 (2–7)?
CREATE TABLE table_name_86 (surface VARCHAR, score_in_the_final VARCHAR)
SELECT position FROM table_name_72 WHERE nationality = "finland"
What position does the draft pick from Finland play?
CREATE TABLE table_name_72 (position VARCHAR, nationality VARCHAR)
SELECT pinyin FROM table_1216675_1 WHERE translation = "Explaining Beasts"
What is the pinyin for explaining beasts?
CREATE TABLE table_1216675_1 (pinyin VARCHAR, translation VARCHAR)
SELECT MAX(2011) FROM table_name_38 WHERE airport = "bole international airport"
Which 2011 has an Airport of bole international airport?
CREATE TABLE table_name_38 (airport VARCHAR)
SELECT COUNT(population) FROM table_22815568_12 WHERE county = "Craig"
Name the total number of population for craig
CREATE TABLE table_22815568_12 (population VARCHAR, county VARCHAR)
SELECT cbs_airdate FROM table_name_26 WHERE episode < 70 AND airdate__usa_ = "1 april 2005"
What is the CBS airdate of the episode with a number under 70 with a USA airdate of 1 April 2005?
CREATE TABLE table_name_26 (cbs_airdate VARCHAR, episode VARCHAR, airdate__usa_ VARCHAR)
SELECT away_team AS score FROM table_name_62 WHERE away_team = "richmond"
What was the score of Richmond when they were the away team?
CREATE TABLE table_name_62 (away_team VARCHAR)
SELECT avg_start FROM table_1637041_6 WHERE winnings = "$7,220"
What is the average start for the season with $7,220 in winnings?
CREATE TABLE table_1637041_6 (avg_start VARCHAR, winnings VARCHAR)
SELECT investor_id, COUNT(*) FROM TRANSACTIONS GROUP BY investor_id
Show the number of transactions for different investors.
CREATE TABLE TRANSACTIONS (investor_id VARCHAR)
SELECT MIN(_number) FROM table_27547668_3
What is the smallest numbered episode in the series listed?
CREATE TABLE table_27547668_3 (_number INTEGER)
SELECT stable FROM table_name_59 WHERE current_rank = "f1 jūryō 14 west"
What is Stable, when Current Rank is F1 Jūryō 14 West?
CREATE TABLE table_name_59 (stable VARCHAR, current_rank VARCHAR)
SELECT prize FROM table_name_11 WHERE winner = "benny spindler"
What was the prize for winner benny spindler?
CREATE TABLE table_name_11 (prize VARCHAR, winner VARCHAR)
SELECT COUNT(*), t1.network_name, t1.services FROM station AS t1 JOIN route AS t2 ON t1.id = t2.station_id GROUP BY t2.station_id
Find the number of trains for each station, as well as the station network name and services.
CREATE TABLE route (station_id VARCHAR); CREATE TABLE station (network_name VARCHAR, services VARCHAR, id VARCHAR)
SELECT event FROM table_18602462_21 WHERE final__bronze_medal_match = "Scheffers ( NED ) L 3-6, 1-6"
When scheffers ( ned ) l 3-6, 1-6 is the final/ bronze medal match what was the event?
CREATE TABLE table_18602462_21 (event VARCHAR, final__bronze_medal_match VARCHAR)
SELECT COUNT(color_system) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "5.734"
How many color systems has a bit rate of 5.734?
CREATE TABLE table_1926240_1 (color_system VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)
SELECT AVG(long) FROM table_name_28 WHERE gain < 0
What is the long figure when gain is less than 0?
CREATE TABLE table_name_28 (long INTEGER, gain INTEGER)
SELECT COUNT(first_elected) FROM table_2668405_17 WHERE candidates = "Leven Powell (F) 63.8% Roger West (DR) 36.4%"
How many times were the candidates leven powell (f) 63.8% roger west (dr) 36.4%?
CREATE TABLE table_2668405_17 (first_elected VARCHAR, candidates VARCHAR)
SELECT mountains_classification FROM table_name_60 WHERE winner = "mario cipollini" AND general_classification = "pavel tonkov"
What is the mountain classification of Mario Cipollini, who has a general classification of Pavel tonkov?
CREATE TABLE table_name_60 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR)
SELECT nationality FROM table_name_51 WHERE player = "rudolf vercik"
Tell me the nationality for rudolf vercik
CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)
SELECT AVG(points) FROM table_name_9 WHERE touchdowns = 1 AND field_goals < 0
Which Points have Touchdowns of 1, and a Field goals smaller than 0?
CREATE TABLE table_name_9 (points INTEGER, touchdowns VARCHAR, field_goals VARCHAR)
SELECT segment_a FROM table_name_31 WHERE segment_c = "paint chip cards"
What segment A is associated with a Segment C of paint chip cards?
CREATE TABLE table_name_31 (segment_a VARCHAR, segment_c VARCHAR)
SELECT centennial FROM table_15977768_1 WHERE akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river = "1992"
Name the centennial for 1992 akimel
CREATE TABLE table_15977768_1 (centennial VARCHAR, akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river VARCHAR)
SELECT finals_venue FROM table_name_23 WHERE number_of_delegates = "82"
What was the final venue for 82 delegates?
CREATE TABLE table_name_23 (finals_venue VARCHAR, number_of_delegates VARCHAR)
SELECT SUM(closed) FROM table_name_73 WHERE city = "pittsburgh" AND capacity > 59 OFFSET 000
Tell me the sum of closed for city of pittsburgh and capacity larger than 59,000
CREATE TABLE table_name_73 (closed INTEGER, city VARCHAR, capacity VARCHAR)
SELECT dimensions FROM table_298883_5 WHERE value = "₩200"
What are the dimensions of the coin worth ₩200?
CREATE TABLE table_298883_5 (dimensions VARCHAR, value VARCHAR)
SELECT eagle_riders FROM table_name_27 WHERE japanese_voice_actor = "katsuji mori"
What is the Eagle Riders character voiced by Japanese voice actor Katsuji Mori?
CREATE TABLE table_name_27 (eagle_riders VARCHAR, japanese_voice_actor VARCHAR)
SELECT MAX(peak) FROM table_name_81 WHERE track = "moño negro" AND year < 1996
What number did Moño Negro peak at before 1996?
CREATE TABLE table_name_81 (peak INTEGER, track VARCHAR, year VARCHAR)
SELECT opponent FROM table_name_67 WHERE record = "71-78"
Who was the opponent at the game when the record was 71-78?
CREATE TABLE table_name_67 (opponent VARCHAR, record VARCHAR)
SELECT Other_Details FROM LOCATIONS WHERE Location_Name = "UK Gallery"
What is the detail of the location UK Gallery?
CREATE TABLE LOCATIONS (Other_Details VARCHAR, Location_Name VARCHAR)
SELECT COUNT(nat) FROM table_22542179_3 WHERE total_g = 6
Name the number of nat for total g of 6
CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR)
SELECT name FROM table_name_4 WHERE nation = "soviet union" AND points = 185
what is the name when the nation is soviet union and the points is 185?
CREATE TABLE table_name_4 (name VARCHAR, nation VARCHAR, points VARCHAR)
SELECT motor FROM table_name_84 WHERE class = "bs 1910"
Which motor's class was bs 1910?
CREATE TABLE table_name_84 (motor VARCHAR, class VARCHAR)
SELECT format FROM table_name_40 WHERE date = "14 october 2008" AND label = "eagle eye media"
Which Format has a Date of 14 october 2008, and a Label of eagle eye media?
CREATE TABLE table_name_40 (format VARCHAR, date VARCHAR, label VARCHAR)
SELECT status FROM table_name_34 WHERE against = 18
What status has 18 as the against?
CREATE TABLE table_name_34 (status VARCHAR, against VARCHAR)
SELECT MAX(capacity) FROM table_name_93 WHERE head_coach = "ali asghar modir roosta"
What is the Capacity of the Venue of Head Coach Ali Asghar Modir Roosta?
CREATE TABLE table_name_93 (capacity INTEGER, head_coach VARCHAR)
SELECT city FROM table_name_26 WHERE year_joined > 1963 AND conference_joined = "independents"
What city joined the Independents conference after 1963?
CREATE TABLE table_name_26 (city VARCHAR, year_joined VARCHAR, conference_joined VARCHAR)
SELECT COUNT(french_voice_actor) FROM table_14960574_6 WHERE spanish_voice_actor = "Javier Romano"
Name the french actor with javier romano
CREATE TABLE table_14960574_6 (french_voice_actor VARCHAR, spanish_voice_actor VARCHAR)
SELECT director_s_ FROM table_16175064_3 WHERE writer_s_ = "Chris Hawkshaw"
Who is the director when Chris Hawkshaw is the writer?
CREATE TABLE table_16175064_3 (director_s_ VARCHAR, writer_s_ VARCHAR)
SELECT opponent FROM table_name_57 WHERE score = "1-6, 3-6"
What Opponent has a Score that is 1-6, 3-6?
CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR)
SELECT MIN(post) FROM table_name_31 WHERE jockey = "calvin borel"
What is the lowest post number for calvin borel?
CREATE TABLE table_name_31 (post INTEGER, jockey VARCHAR)
SELECT kitmaker FROM table_25129482_1 WHERE club = "TPS"
Who is the kitmaker for TPS?
CREATE TABLE table_25129482_1 (kitmaker VARCHAR, club VARCHAR)
SELECT position FROM table_name_81 WHERE school_club_team = "east carolina"
What's the position listed for the east carolina team?
CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR)
SELECT 2008 FROM table_name_1 WHERE 2012 = "1r" AND 2010 = "a" AND 2005 = "a"
What was the value in 2008 when 2012 was 1R, 2010 was A, and 2005 was A?
CREATE TABLE table_name_1 (Id VARCHAR)
SELECT MIN(no_in_season) FROM table_28561455_1
What's the smallest season number?
CREATE TABLE table_28561455_1 (no_in_season INTEGER)
SELECT result FROM table_name_26 WHERE date = "8 october 1961"
What was the result on 8 October 1961?
CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR)
SELECT original_number FROM table_21795986_1 WHERE withdrawn = "9/07/1999"
When 9/07/1999 is the date of withdrawn what is the original number?
CREATE TABLE table_21795986_1 (original_number VARCHAR, withdrawn VARCHAR)
SELECT pole_position FROM table_name_47 WHERE race_name = "marlboro challenge"
What is the pole position for marlboro challenge?
CREATE TABLE table_name_47 (pole_position VARCHAR, race_name VARCHAR)
SELECT COUNT(margin) FROM table_22753245_1 WHERE party = "Indian National Congress" AND winner = "L. Adaikalaraj c"
How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress?
CREATE TABLE table_22753245_1 (margin VARCHAR, party VARCHAR, winner VARCHAR)
SELECT state_ & _federal FROM table_11608735_3 WHERE property_taxes = "17,199,210"
Name the state and federal when property taxes is 17,199,210
CREATE TABLE table_11608735_3 (state_ VARCHAR, _federal VARCHAR, property_taxes VARCHAR)
SELECT event FROM table_name_36 WHERE round = "1" AND opponent = "dan spychalski"
Which event lasted 1 round and included an opponent of Dan Spychalski?
CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT gamecenter FROM table_name_48 WHERE attendance = "78,551"
Name the gamecenter with attendance of 78,551
CREATE TABLE table_name_48 (gamecenter VARCHAR, attendance VARCHAR)
SELECT margin_of_victory FROM table_275162_1 WHERE location = "Lake Forest, Illinois"
What was the margin of victory for the event in lake forest, illinois?
CREATE TABLE table_275162_1 (margin_of_victory VARCHAR, location VARCHAR)
SELECT location FROM table_name_96 WHERE club = "delfines ucv"
Which Location has a Club of delfines ucv?
CREATE TABLE table_name_96 (location VARCHAR, club VARCHAR)
SELECT engine FROM table_name_9 WHERE rounds = "all" AND driver = "tsugio matsuda"
Which engine is in all rounds with Tsugio Matsuda driving?
CREATE TABLE table_name_9 (engine VARCHAR, rounds VARCHAR, driver VARCHAR)
SELECT COUNT(miss_universe_philippines) FROM table_1825751_4 WHERE binibining_pilipinas_international = "Margaret Ann Bayot"
When Margaret Ann Bayot won binibining pilipinas-international, how many winners of Miss Universe Philippines were there?
CREATE TABLE table_1825751_4 (miss_universe_philippines VARCHAR, binibining_pilipinas_international VARCHAR)
SELECT beat_by FROM table_name_9 WHERE distance = "8fm"
Who beat Chic by 8fm?
CREATE TABLE table_name_9 (beat_by VARCHAR, distance VARCHAR)
SELECT director FROM table_name_50 WHERE title = "tequila"
Who directed Tequila?
CREATE TABLE table_name_50 (director VARCHAR, title VARCHAR)
SELECT SUM(silver) FROM table_name_21 WHERE gold < 1 AND rank = "8" AND total > 1
How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive?
CREATE TABLE table_name_21 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT position FROM table_25429986_1 WHERE handicap = "10-2"
what position has a handicap of 10-2?
CREATE TABLE table_25429986_1 (position VARCHAR, handicap VARCHAR)
SELECT MAX(pick__number) FROM table_2850912_12 WHERE college_junior_club_team = "Springfield Olympics (NEJHL)"
What selection was the springfield olympics (nejhl)?
CREATE TABLE table_2850912_12 (pick__number INTEGER, college_junior_club_team VARCHAR)
SELECT atheism FROM table_name_90 WHERE other = "0.08%"
What is the percentage of Atheism associated with an other percentage of 0.08%?
CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR)
SELECT height FROM table_name_69 WHERE name = "dylan postl"
How tall is Dylan Postl?
CREATE TABLE table_name_69 (height VARCHAR, name VARCHAR)
SELECT SUM(wins) FROM table_name_53 WHERE team = "ottawa hockey club" AND games_played < 10
what is the sum of wins for the ottawa hockey club when the games played is less than 10?
CREATE TABLE table_name_53 (wins INTEGER, team VARCHAR, games_played VARCHAR)
SELECT COUNT(basketball_arena) FROM table_1974545_3 WHERE capacity = "3,000"
How many basketball arenas are there that belong to a school with a capacity of 3,000?
CREATE TABLE table_1974545_3 (basketball_arena VARCHAR, capacity VARCHAR)
SELECT score FROM table_name_89 WHERE home_team = "york city"
What was the score when York City was home?
CREATE TABLE table_name_89 (score VARCHAR, home_team VARCHAR)
SELECT first_elected FROM table_name_87 WHERE constiuency = "territorial at-large" AND name = "myron walwyn"
What is Myron Walwyn with a Territorial at-large Constiuency's First Elected Date
CREATE TABLE table_name_87 (first_elected VARCHAR, constiuency VARCHAR, name VARCHAR)
SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair"
How long has Sebastian Telfair played for Toronto?
CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR)
SELECT COUNT(gold) FROM table_name_61 WHERE bronze > 1 AND silver > 1 AND rank = "total"
How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank?
CREATE TABLE table_name_61 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT score_in_final FROM table_name_21 WHERE tournament_name = "eckerd open"
What was the Score in Final of the Eckerd Open Tournament?
CREATE TABLE table_name_21 (score_in_final VARCHAR, tournament_name VARCHAR)
SELECT character FROM table_name_85 WHERE year > 2010 AND role = "lead role" AND chinese_title = "戀夏38℃"
What character has a Year larger than 2010 with a lead role, and Chinese Title of 戀夏38℃?
CREATE TABLE table_name_85 (character VARCHAR, chinese_title VARCHAR, year VARCHAR, role VARCHAR)
SELECT country FROM table_name_95 WHERE place = "t9" AND player = "jiyai shin"
Which country placed t9 and had the player jiyai shin?
CREATE TABLE table_name_95 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT competition FROM table_name_47 WHERE score = "1-3"
What competition has a score of 1-3?
CREATE TABLE table_name_47 (competition VARCHAR, score VARCHAR)
SELECT score FROM table_17058226_7 WHERE date = "January 26"
Name the score for january 26
CREATE TABLE table_17058226_7 (score VARCHAR, date VARCHAR)
SELECT result FROM table_name_32 WHERE recipient_s_ = "joe jonas" AND award = "kids' choice awards mexico"
What is Joe Jonas' result at the Kids' Choice Awards Mexico?
CREATE TABLE table_name_32 (result VARCHAR, recipient_s_ VARCHAR, award VARCHAR)
SELECT chassis FROM table_name_90 WHERE year > 1967
What is the chassis more recent than 1967?
CREATE TABLE table_name_90 (chassis VARCHAR, year INTEGER)
SELECT position FROM table_26141160_2 WHERE team = "Dallas Burn"
Dallas Burn's draft pick was which position?
CREATE TABLE table_26141160_2 (position VARCHAR, team VARCHAR)
SELECT MAX(ngc_number) FROM table_name_61 WHERE object_type = "open cluster" AND right_ascension___j2000__ = "06h01m06s"
Which NGC number has an Object type of open cluster, and a Right ascension (J2000) of 06h01m06s?
CREATE TABLE table_name_61 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT fips_code FROM table_name_36 WHERE county = "wyoming" AND cdp_name = "pike"
Name the FIPS code for county of wyoming and CDP name of pike
CREATE TABLE table_name_36 (fips_code VARCHAR, county VARCHAR, cdp_name VARCHAR)
SELECT college FROM table_name_45 WHERE player = "mark cannon"
What is Mark Cannon's College?
CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR)
SELECT MIN(average) FROM table_name_15 WHERE swimsuit < 8.966 AND state = "west virginia" AND evening_gown < 8.711
What is the lowest average that has a swimsuit less than 8.966, for west virginia and an evening gown less than 8.711?
CREATE TABLE table_name_15 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, state VARCHAR)
SELECT date FROM table_name_65 WHERE time = "7:00 pm"
When was a game played at 7:00 pm?
CREATE TABLE table_name_65 (date VARCHAR, time VARCHAR)
SELECT public_debt__percentage_of_gdp__2013_q1_ FROM table_1598533_8 WHERE gdp__percentage_of_eu__2012_ = "4.7%"
What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?
CREATE TABLE table_1598533_8 (public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR)
SELECT COUNT(rank) FROM table_name_84 WHERE school = "los alamos" AND sport = "girls cross country"
What is the total rank number for Los Alamos' girls cross country?
CREATE TABLE table_name_84 (rank VARCHAR, school VARCHAR, sport VARCHAR)
SELECT spectral_type FROM table_1820752_1 WHERE constellation = "Gemini"
If the constellation is Gemini, what is the spectral type?
CREATE TABLE table_1820752_1 (spectral_type VARCHAR, constellation VARCHAR)
SELECT method FROM table_name_61 WHERE record = "9-4"
Which method led to a record of 9-4?
CREATE TABLE table_name_61 (method VARCHAR, record VARCHAR)
SELECT result FROM table_25030512_41 WHERE incumbent = "Glenn Thompson"
Name the result for glenn thompson
CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR)
SELECT team_1 FROM table_name_43 WHERE team_2 = "mount cameroon fc"
What is the team 1 with team 2 Mount Cameroon FC?
CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR)
SELECT points FROM table_name_81 WHERE name = "ondrej starosta"
What is Points, when Name is Ondrej Starosta?
CREATE TABLE table_name_81 (points VARCHAR, name VARCHAR)
SELECT round FROM table_name_3 WHERE method = "submission (punches)"
How many rounds was the fight with a decision by submission (punches)?
CREATE TABLE table_name_3 (round VARCHAR, method VARCHAR)
SELECT SUM(crowd) FROM table_name_27 WHERE away_team = "north melbourne"
How many people were in the crowd when the away team was north melbourne?
CREATE TABLE table_name_27 (crowd INTEGER, away_team VARCHAR)
SELECT COUNT(proto_austronesian) FROM table_15568886_14 WHERE proto_oceanic = "*natu"
Name the number of proto austronesian for *natu
CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)
SELECT player FROM table_name_84 WHERE score = 68 - 71 = 139
Who is the player with a score of 68-71=139?
CREATE TABLE table_name_84 (player VARCHAR, score VARCHAR)
SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km²_ > 148825.6 AND state = "roraima"
Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima?
CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER, area__km²_ VARCHAR, state VARCHAR)
SELECT nationality FROM table_name_17 WHERE ship = "aracataca"
What is the Nationality of the Aracataca Ship?
CREATE TABLE table_name_17 (nationality VARCHAR, ship VARCHAR)
SELECT loera FROM table_name_47 WHERE source = "surveyusa" AND date = "may 16–may 18, 2008"
Which Loera has a Source of surveyusa, and a Date of may 16–may 18, 2008?
CREATE TABLE table_name_47 (loera VARCHAR, source VARCHAR, date VARCHAR)
SELECT SUM(losses) FROM table_name_15 WHERE scored > 15 AND points > 16 AND played > 9
What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9?
CREATE TABLE table_name_15 (losses INTEGER, played VARCHAR, scored VARCHAR, points VARCHAR)
SELECT SUM(pop__2010_) FROM table_name_64 WHERE latitude > 47.710905 AND longitude = -101.79876 AND land___sqmi__ < 35.695
What is the sum of the 2010 population with a latitude greater than 47.710905, a longitude of -101.79876, and less than 35.695 sq mi of land?
CREATE TABLE table_name_64 (pop__2010_ INTEGER, land___sqmi__ VARCHAR, latitude VARCHAR, longitude VARCHAR)
SELECT launch_date FROM table_name_58 WHERE institutional_authority = "ndc" AND launch_vehicle = "hatf-xi"
Tell me the launch date with Institutional authority of ndc and launch vehicle of hatf-xi
CREATE TABLE table_name_58 (launch_date VARCHAR, institutional_authority VARCHAR, launch_vehicle VARCHAR)