answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT pilot FROM table_221315_3 WHERE max_altitude__miles_ = "55.9"
|
CREATE TABLE table_221315_3 (pilot VARCHAR, max_altitude__miles_ VARCHAR)
|
Who was the pilot of max altitude of 55.9 miles?
|
SELECT MAX(fai_space_flights) FROM table_221315_3 WHERE max_mach = "5.65"
|
CREATE TABLE table_221315_3 (fai_space_flights INTEGER, max_mach VARCHAR)
|
What is the highest number of fai space flights when max mach is 5.65?
|
SELECT max_altitude__miles_ FROM table_221315_3 WHERE pilot = "Neil Armstrong"
|
CREATE TABLE table_221315_3 (max_altitude__miles_ VARCHAR, pilot VARCHAR)
|
What was the maximum altitude for Neil Armstrong?
|
SELECT COUNT(max_speed__mph_) FROM table_221315_3 WHERE usaf_space_flights = 1 AND total_flights = 34
|
CREATE TABLE table_221315_3 (max_speed__mph_ VARCHAR, usaf_space_flights VARCHAR, total_flights VARCHAR)
|
How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?
|
SELECT usaf_space_flights FROM table_221315_3 WHERE max_speed__mph_ = 3822
|
CREATE TABLE table_221315_3 (usaf_space_flights VARCHAR, max_speed__mph_ VARCHAR)
|
What were all USAF space flights when the aximum speed was 3822?
|
SELECT max_mach FROM table_221315_3 WHERE max_speed__mph_ = 3887
|
CREATE TABLE table_221315_3 (max_mach VARCHAR, max_speed__mph_ VARCHAR)
|
What was the max mach when the maximum speed was 3887?
|
SELECT away_leg FROM table_2214582_1 WHERE round = 1 AND aggregate = "2-0"
|
CREATE TABLE table_2214582_1 (away_leg VARCHAR, round VARCHAR, aggregate VARCHAR)
|
What is the record for the away leg in round 1 and aggregate 2-0?
|
SELECT COUNT(parishes) FROM table_221375_1 WHERE province_of_1936 = "Beira Baixa Province"
|
CREATE TABLE table_221375_1 (parishes VARCHAR, province_of_1936 VARCHAR)
|
Name the parishes for beira baixa province
|
SELECT MAX(municipalities) FROM table_221375_1 WHERE province_of_1936 = "Alto Alentejo Province (partly Ribatejo)"
|
CREATE TABLE table_221375_1 (municipalities INTEGER, province_of_1936 VARCHAR)
|
Name the most municipalities for alto alentejo province (partly ribatejo)
|
SELECT province_of_1936 FROM table_221375_1 WHERE district = "Viana do Castelo"
|
CREATE TABLE table_221375_1 (province_of_1936 VARCHAR, district VARCHAR)
|
Name province of 1936 viana do castelo
|
SELECT score FROM table_2215159_2 WHERE partner = "Rafael Osuna"
|
CREATE TABLE table_2215159_2 (score VARCHAR, partner VARCHAR)
|
What was the score when the partner is Rafael Osuna?
|
SELECT outcome FROM table_2215159_2 WHERE partner = "Rafael Osuna"
|
CREATE TABLE table_2215159_2 (outcome VARCHAR, partner VARCHAR)
|
What was the outcome of the game when the partner is Rafael Osuna?
|
SELECT surface FROM table_2215159_2 WHERE championship = "French championships"
|
CREATE TABLE table_2215159_2 (surface VARCHAR, championship VARCHAR)
|
What is the surface of the French Championships?
|
SELECT COUNT(outcome) FROM table_2215159_2 WHERE surface = "Grass" AND partner = "Chuck McKinley" AND year = 1962
|
CREATE TABLE table_2215159_2 (outcome VARCHAR, year VARCHAR, surface VARCHAR, partner VARCHAR)
|
How many outcomes were there for matches played with Chuck McKinley on grass in 1962?
|
SELECT home_leg FROM table_2214582_3 WHERE opponents = "Partizani Tirana"
|
CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)
|
What was the home leg score against partizani tirana?
|
SELECT COUNT(round) FROM table_2214582_3 WHERE opponents = "FC St. Gallen"
|
CREATE TABLE table_2214582_3 (round VARCHAR, opponents VARCHAR)
|
What round did they face fc st. gallen?
|
SELECT home_leg FROM table_2214582_3 WHERE opponents = "FC Schalke 04"
|
CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)
|
What was the home leg score against fc schalke 04?
|
SELECT COUNT(dfb_pokal) FROM table_22167196_1 WHERE player = "Kevin-Prince Boateng"
|
CREATE TABLE table_22167196_1 (dfb_pokal VARCHAR, player VARCHAR)
|
How many dfb-pokal did kevin-prince boateng have?
|
SELECT head_coach FROM table_22165661_3 WHERE championship_game_opponent = "Miami University"
|
CREATE TABLE table_22165661_3 (head_coach VARCHAR, championship_game_opponent VARCHAR)
|
Who is the head coach when Miami University is the championship game opponent?
|
SELECT location FROM table_22165661_3 WHERE score = "2-1"
|
CREATE TABLE table_22165661_3 (location VARCHAR, score VARCHAR)
|
What is the location when 2-1 is the score?
|
SELECT conference FROM table_22165661_3 WHERE championship_game_opponent = "Ferris State"
|
CREATE TABLE table_22165661_3 (conference VARCHAR, championship_game_opponent VARCHAR)
|
What is the conference when Ferris State is the championship game opponent?
|
SELECT location FROM table_22165661_3 WHERE tournament = 1999
|
CREATE TABLE table_22165661_3 (location VARCHAR, tournament VARCHAR)
|
What is the location of the 1999 tournament?
|
SELECT COUNT(score) FROM table_22165661_3 WHERE championship_game_opponent = "Miami University"
|
CREATE TABLE table_22165661_3 (score VARCHAR, championship_game_opponent VARCHAR)
|
How many scores are there when the championship game opponent is Miami University?
|
SELECT head_coach FROM table_22165661_3 WHERE score = "4-3"
|
CREATE TABLE table_22165661_3 (head_coach VARCHAR, score VARCHAR)
|
Who is the head coach for the score of 4-3?
|
SELECT bleeding_time FROM table_221653_1 WHERE platelet_count = "Decreased or unaffected"
|
CREATE TABLE table_221653_1 (bleeding_time VARCHAR, platelet_count VARCHAR)
|
What is the bleeding time when the platelet count is decreased or unaffected?
|
SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"
|
CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)
|
What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura?
|
SELECT COUNT(platelet_count) FROM table_221653_1 WHERE prothrombin_time = "Prolonged" AND bleeding_time = "Prolonged"
|
CREATE TABLE table_221653_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
|
How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?
|
SELECT COUNT(bleeding_time) FROM table_221653_1 WHERE condition = "Disseminated intravascular coagulation"
|
CREATE TABLE table_221653_1 (bleeding_time VARCHAR, condition VARCHAR)
|
What is the bleeding time for the disseminated intravascular coagulation condition?
|
SELECT partial_thromboplastin_time FROM table_221653_1 WHERE prothrombin_time = "Prolonged" AND bleeding_time = "Prolonged"
|
CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
|
What is the result for partial thromboplastin time when prothrombin time and bleeding time are prolonged?
|
SELECT platelet_count FROM table_221653_1 WHERE partial_thromboplastin_time = "Unaffected" AND bleeding_time = "Unaffected"
|
CREATE TABLE table_221653_1 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
|
What is the platelet count when partial thromboplastin time and bleeding time are unaffected?
|
SELECT MIN(top_50_ranking) FROM table_22170495_7 WHERE title = "The God-Why-Don't-You-Love-Me Blues"
|
CREATE TABLE table_22170495_7 (top_50_ranking INTEGER, title VARCHAR)
|
What is the lowest top 50 ranking that the episode titled "the god-why-don't-you-love-me blues" received?
|
SELECT title FROM table_22170495_7 WHERE original_airing = "April 19, 2010"
|
CREATE TABLE table_22170495_7 (title VARCHAR, original_airing VARCHAR)
|
Which episodes originally aired on April 19, 2010?
|
SELECT MIN(scripted_show_ranking) FROM table_22170495_7 WHERE title = "Epiphany"
|
CREATE TABLE table_22170495_7 (scripted_show_ranking INTEGER, title VARCHAR)
|
The episode titled "Epiphany" received what scripted show ranking?
|
SELECT COUNT(top_50_ranking) FROM table_22170495_7 WHERE original_airing = "June 28, 2010"
|
CREATE TABLE table_22170495_7 (top_50_ranking VARCHAR, original_airing VARCHAR)
|
How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?
|
SELECT athletic_nickname FROM table_22171978_1 WHERE location = "Quezon City , Metro Manila"
|
CREATE TABLE table_22171978_1 (athletic_nickname VARCHAR, location VARCHAR)
|
For the location of quezon city , metro manila what is the athletic nickname?
|
SELECT COUNT(location) FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders"
|
CREATE TABLE table_22171978_1 (location VARCHAR, athletic_nickname VARCHAR)
|
How many locations are there for the athletic nickname is blue crusaders?
|
SELECT COUNT(school_colors) FROM table_22171978_1 WHERE location = "Naga , Camarines Sur"
|
CREATE TABLE table_22171978_1 (school_colors VARCHAR, location VARCHAR)
|
How many entries are shown for school colors for the location of naga , camarines sur?
|
SELECT COUNT(enrollment) FROM table_22171978_1 WHERE athletic_nickname = "Golden Knights"
|
CREATE TABLE table_22171978_1 (enrollment VARCHAR, athletic_nickname VARCHAR)
|
For the athletic nickname of golden knights how many entries are shown for enrollment?
|
SELECT founded FROM table_22171978_1 WHERE institution = "Ateneo de Manila University"
|
CREATE TABLE table_22171978_1 (founded VARCHAR, institution VARCHAR)
|
What year was the ateneo de manila university founded?
|
SELECT founded FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders"
|
CREATE TABLE table_22171978_1 (founded VARCHAR, athletic_nickname VARCHAR)
|
What year was the athletic nickname blue crusaders founded?
|
SELECT COUNT(original_air_date) FROM table_22181917_2 WHERE season__number = 20
|
CREATE TABLE table_22181917_2 (original_air_date VARCHAR, season__number VARCHAR)
|
How many original airdates did season 20 have?
|
SELECT directed_by FROM table_22181917_2 WHERE us_viewers__millions_ = "6.62"
|
CREATE TABLE table_22181917_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
|
Who directed the episode that was watched by 6.62 million U.S. viewers?
|
SELECT production_code FROM table_22181917_2 WHERE us_viewers__millions_ = "8.56"
|
CREATE TABLE table_22181917_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
|
What is the production code for the episode with 8.56 million U.S. viewers?
|
SELECT title FROM table_22181917_2 WHERE us_viewers__millions_ = "9.76"
|
CREATE TABLE table_22181917_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
|
What is the title of the episode that had 9.76 million U.S. viewers?
|
SELECT title FROM table_22170495_6 WHERE original_airing_on_e4 = "May 2, 2010"
|
CREATE TABLE table_22170495_6 (title VARCHAR, original_airing_on_e4 VARCHAR)
|
What is the title of the original airing on e4 May 2, 2010?
|
SELECT COUNT(total_viewers) FROM table_22170495_6 WHERE original_airing_on_channel_4 = "April 21, 2010"
|
CREATE TABLE table_22170495_6 (total_viewers VARCHAR, original_airing_on_channel_4 VARCHAR)
|
How many total viewers have April 21, 2010 as the original airing on channel 4?
|
SELECT position_in_e4s_ratings_b FROM table_22170495_6 WHERE original_airing_on_channel_4 = "June 30, 2010"
|
CREATE TABLE table_22170495_6 (position_in_e4s_ratings_b VARCHAR, original_airing_on_channel_4 VARCHAR)
|
What is the position in e4s ratings b when June 30, 2010 is the original airing on channel 4?
|
SELECT original_airing_on_channel_4 FROM table_22170495_6 WHERE title = "Being Alive"
|
CREATE TABLE table_22170495_6 (original_airing_on_channel_4 VARCHAR, title VARCHAR)
|
When is the original airing on channel 4 with being alive as the title?
|
SELECT COUNT(position_in_channel_4s_ratings_a) FROM table_22170495_6 WHERE original_airing_on_channel_4 = "February 24, 2010"
|
CREATE TABLE table_22170495_6 (position_in_channel_4s_ratings_a VARCHAR, original_airing_on_channel_4 VARCHAR)
|
How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4?
|
SELECT type FROM table_22180353_1 WHERE registration = "HB-OPU"
|
CREATE TABLE table_22180353_1 (type VARCHAR, registration VARCHAR)
|
What are all types where registration is HB-OPU?
|
SELECT registration FROM table_22180353_1 WHERE type = "T 6 G"
|
CREATE TABLE table_22180353_1 (registration VARCHAR, type VARCHAR)
|
What is every registration for the type of T 6 G?
|
SELECT construction AS date FROM table_22180353_1 WHERE registration = "HB-HOS"
|
CREATE TABLE table_22180353_1 (construction VARCHAR, registration VARCHAR)
|
What is every construction date for the registration of HB-HOS?
|
SELECT conformity_to_original_design FROM table_22180353_1 WHERE registration = "HB-DAI"
|
CREATE TABLE table_22180353_1 (conformity_to_original_design VARCHAR, registration VARCHAR)
|
What is every conformity to original design if registration is HB-DAI?
|
SELECT MAX(season__number) FROM table_2219961_2 WHERE director = "Eric Tuchman"
|
CREATE TABLE table_2219961_2 (season__number INTEGER, director VARCHAR)
|
What is the latest season number that Eric Tuchman directed?
|
SELECT COUNT(season__number) FROM table_2219961_2 WHERE nbc_airdate = "October 2, 2001"
|
CREATE TABLE table_2219961_2 (season__number VARCHAR, nbc_airdate VARCHAR)
|
How man seasons have the air date of October 2, 2001?
|
SELECT report FROM table_2220432_1 WHERE team = "Roush Fenway Racing"
|
CREATE TABLE table_2220432_1 (report VARCHAR, team VARCHAR)
|
What was the report in the race where the winning team was Roush Fenway Racing?
|
SELECT miles__km_ FROM table_2220432_1 WHERE average_speed__mph_ = "136.117"
|
CREATE TABLE table_2220432_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)
|
What was the miles (km) for the race that had an average speed of 136.117 MPH?
|
SELECT miles__km_ FROM table_2226343_1 WHERE date = "February 25"
|
CREATE TABLE table_2226343_1 (miles__km_ VARCHAR, date VARCHAR)
|
What are the miles when February 25 is the date?
|
SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "141.911"
|
CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)
|
How many laps have an average speed of 141.911?
|
SELECT manufacturer FROM table_2226343_1 WHERE average_speed__mph_ = "150.088"
|
CREATE TABLE table_2226343_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR)
|
Who is the manufacturer when 150.088 is the average speed (mph)?
|
SELECT manufacturer FROM table_2226343_1 WHERE date = "June 22"
|
CREATE TABLE table_2226343_1 (manufacturer VARCHAR, date VARCHAR)
|
Who is the manufacturer for the date of June 22?
|
SELECT laps FROM table_2226343_1 WHERE race_time = "3:31:24"
|
CREATE TABLE table_2226343_1 (laps VARCHAR, race_time VARCHAR)
|
How many laps have a race time of 3:31:24?
|
SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "140.22"
|
CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)
|
How many laps have an average speed (mph) of 140.22?
|
SELECT director FROM table_22265716_1 WHERE original_title = "Три летња дана"
|
CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)
|
Who directed the film with the original title of три летња дана?
|
SELECT director FROM table_22265716_1 WHERE film_title_used_in_nomination = "Three Summer Days"
|
CREATE TABLE table_22265716_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
|
Who directed the film with the title three summer days?
|
SELECT director FROM table_22265716_1 WHERE original_title = "Лепа села лепо горе"
|
CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)
|
Who is the director of the film with the title лепа села лепо горе?
|
SELECT us_viewers__million_ FROM table_22261877_1 WHERE production_code = "6ACX16"
|
CREATE TABLE table_22261877_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
|
How many viewers in millions watched the episode with the production code 6acx16?
|
SELECT original_air_date FROM table_22261877_1 WHERE production_code = "6ACX19"
|
CREATE TABLE table_22261877_1 (original_air_date VARCHAR, production_code VARCHAR)
|
What is the air date of the episode with the production code 6acx19?
|
SELECT original_air_date FROM table_2226817_2 WHERE production_code = "1.12"
|
CREATE TABLE table_2226817_2 (original_air_date VARCHAR, production_code VARCHAR)
|
What is the original air date for the production code of 1.12?
|
SELECT no_in_series FROM table_2226817_2 WHERE production_code = "1.11"
|
CREATE TABLE table_2226817_2 (no_in_series VARCHAR, production_code VARCHAR)
|
How many number of series have a production code of 1.11?
|
SELECT MAX(no_in_series) FROM table_2226817_2 WHERE production_code = "1.11"
|
CREATE TABLE table_2226817_2 (no_in_series INTEGER, production_code VARCHAR)
|
How many number of series have the production code of 1.11?
|
SELECT written_by FROM table_2226817_2 WHERE original_air_date = "April 5, 1987"
|
CREATE TABLE table_2226817_2 (written_by VARCHAR, original_air_date VARCHAR)
|
Who wrote when the original airdate is April 5, 1987?
|
SELECT directed_by FROM table_2226817_2 WHERE production_code = "1.02"
|
CREATE TABLE table_2226817_2 (directed_by VARCHAR, production_code VARCHAR)
|
Who directed when the production code is 1.02?
|
SELECT production_code FROM table_2226817_4 WHERE original_air_date = "November 27, 1988"
|
CREATE TABLE table_2226817_4 (production_code VARCHAR, original_air_date VARCHAR)
|
Name the production code for november 27, 1988
|
SELECT original_air_date FROM table_2226817_4 WHERE production_code = "3.04"
|
CREATE TABLE table_2226817_4 (original_air_date VARCHAR, production_code VARCHAR)
|
Name the original air date for 3.04 production code
|
SELECT written_by FROM table_2226817_4 WHERE original_air_date = "April 9, 1989"
|
CREATE TABLE table_2226817_4 (written_by VARCHAR, original_air_date VARCHAR)
|
Name who wrote the episode that aired april 9, 1989
|
SELECT COUNT(no_in_season) FROM table_2226817_4 WHERE production_code = "3.09"
|
CREATE TABLE table_2226817_4 (no_in_season VARCHAR, production_code VARCHAR)
|
Name the number of number in season for 3.09
|
SELECT COUNT(original_air_date) FROM table_2226817_12 WHERE production_code = "11.19"
|
CREATE TABLE table_2226817_12 (original_air_date VARCHAR, production_code VARCHAR)
|
when was the episode premiere if the production code is 11.19?
|
SELECT title FROM table_2226817_12 WHERE original_air_date = "March 2, 1997"
|
CREATE TABLE table_2226817_12 (title VARCHAR, original_air_date VARCHAR)
|
what is the name of the episode whose premiere was in march 2, 1997?
|
SELECT title FROM table_2226817_12 WHERE production_code = "11.01"
|
CREATE TABLE table_2226817_12 (title VARCHAR, production_code VARCHAR)
|
what is the name of the episode when the production code is 11.01?
|
SELECT title FROM table_2226817_12 WHERE production_code = "11.12"
|
CREATE TABLE table_2226817_12 (title VARCHAR, production_code VARCHAR)
|
what is the name of the episode if the production code is 11.12?
|
SELECT COUNT(no_in_series) FROM table_2226817_12 WHERE directed_by = "Mark K. Samuels"
|
CREATE TABLE table_2226817_12 (no_in_series VARCHAR, directed_by VARCHAR)
|
how many episodes has been directed by Mark K. Samuels ?
|
SELECT directed_by FROM table_2226817_3 WHERE written_by = "Michael G. Moye & Ron Leavitt & J. Stanford Parker"
|
CREATE TABLE table_2226817_3 (directed_by VARCHAR, written_by VARCHAR)
|
Who directed what was written by Michael G. Moye & Ron Leavitt & J. Stanford Parker?
|
SELECT production_code FROM table_2226817_8 WHERE written_by = "Michael G. Moye"
|
CREATE TABLE table_2226817_8 (production_code VARCHAR, written_by VARCHAR)
|
What are all the production codes of episodes written by Michael G. Moye?
|
SELECT COUNT(written_by) FROM table_2226817_8 WHERE no_in_season = 13
|
CREATE TABLE table_2226817_8 (written_by VARCHAR, no_in_season VARCHAR)
|
Who is the writer of episode 13?
|
SELECT COUNT(no_in_series) FROM table_2226817_8 WHERE production_code = "7.07"
|
CREATE TABLE table_2226817_8 (no_in_series VARCHAR, production_code VARCHAR)
|
Which series number has the production code 7.07?
|
SELECT MAX(no_in_season) FROM table_2226817_8 WHERE production_code = "7.01"
|
CREATE TABLE table_2226817_8 (no_in_season INTEGER, production_code VARCHAR)
|
How many seasons have the production code 7.01 for an episode?
|
SELECT no_in_series FROM table_2226817_8 WHERE no_in_season = 12
|
CREATE TABLE table_2226817_8 (no_in_series VARCHAR, no_in_season VARCHAR)
|
How many episodes in the series are from season 12?
|
SELECT MIN(no_in_season) FROM table_2226817_9 WHERE no_in_series = 158
|
CREATE TABLE table_2226817_9 (no_in_season INTEGER, no_in_series VARCHAR)
|
How many seasons had episode 158?
|
SELECT production_code FROM table_2226817_9 WHERE written_by = "Stacie Lipp"
|
CREATE TABLE table_2226817_9 (production_code VARCHAR, written_by VARCHAR)
|
What is the production code of the episode directed by Stacie Lipp?
|
SELECT title FROM table_2226817_9 WHERE no_in_series = 165
|
CREATE TABLE table_2226817_9 (title VARCHAR, no_in_series VARCHAR)
|
What is the name of episode 165?
|
SELECT COUNT(directed_by) FROM table_2226817_9 WHERE production_code = "8.04"
|
CREATE TABLE table_2226817_9 (directed_by VARCHAR, production_code VARCHAR)
|
How many episodes have the production code 8.04
|
SELECT alpha_2_code FROM table_222771_1 WHERE alpha_3_code = "TCA"
|
CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, alpha_3_code VARCHAR)
|
What is the Alpha 2 code for the area also known as TCA?
|
SELECT alpha_3_code FROM table_222771_1 WHERE alpha_2_code = "FO"
|
CREATE TABLE table_222771_1 (alpha_3_code VARCHAR, alpha_2_code VARCHAR)
|
What is the Alpha 3 code for the area also known as FO?
|
SELECT alpha_2_code FROM table_222771_1 WHERE alpha_3_code = "NZL"
|
CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, alpha_3_code VARCHAR)
|
What is the alpha 2 code for the area also known as NZL?
|
SELECT iso_3166_2_codes FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = "South Sudan"
|
CREATE TABLE table_222771_1 (iso_3166_2_codes VARCHAR, english_short_name__upper_lower_case_ VARCHAR)
|
What is the ISO for South Sudan?
|
SELECT alpha_2_code FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = "Papua New Guinea"
|
CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, english_short_name__upper_lower_case_ VARCHAR)
|
What is the Alpha 2 code for Papua New Guinea?
|
SELECT numeric_code FROM table_222771_1 WHERE alpha_3_code = "LIE"
|
CREATE TABLE table_222771_1 (numeric_code VARCHAR, alpha_3_code VARCHAR)
|
What is the number reference for LIE?
|
SELECT COUNT(launch_date) FROM table_22274142_1 WHERE transmission = "Digital"
|
CREATE TABLE table_22274142_1 (launch_date VARCHAR, transmission VARCHAR)
|
How many launch dates are there for digital transmission?
|
SELECT written_by FROM table_22269839_1 WHERE production_code = "7ACX14"
|
CREATE TABLE table_22269839_1 (written_by VARCHAR, production_code VARCHAR)
|
Who wrote the title with production code 7acx14?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.