instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: How many is the high assist total for players from panama?
The relevant table was constructed using the following SQL : CREATE TABLE table_29743928_3 (assists INTEGER, country VARCHAR)
SELECT MAX(assists) FROM table_29743928_3 WHERE country = "Panama"
Write a SQL query that answers the following question: What was the result of the home match against FK Rudar Ugljevik?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728596_1 (result VARCHAR, away_team VARCHAR)
SELECT result FROM table_29728596_1 WHERE away_team = "FK Rudar Ugljevik"
Write a SQL query that answers the following question: Where was the home match against FK Rudar Ugljevik played?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728596_1 (location VARCHAR, away_team VARCHAR)
SELECT location FROM table_29728596_1 WHERE away_team = "FK Rudar Ugljevik"
Write a SQL query that answers the following question: When 1971 is the year what is the la roche?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728787_1 (la_roche VARCHAR, year VARCHAR)
SELECT la_roche FROM table_29728787_1 WHERE year = "1971"
Write a SQL query that answers the following question: When deutsche grammophon is the label how many clairons are there?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728787_1 (clairon VARCHAR, label VARCHAR)
SELECT COUNT(clairon) FROM table_29728787_1 WHERE label = "Deutsche Grammophon"
Write a SQL query that answers the following question: When hermann uhde is the count who is the conductor?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728787_1 (conductor VARCHAR, count VARCHAR)
SELECT conductor FROM table_29728787_1 WHERE count = "Hermann Uhde"
Write a SQL query that answers the following question: When dietrich fischer-dieskau is the olivier who is the conductor?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728787_1 (conductor VARCHAR, olivier VARCHAR)
SELECT conductor FROM table_29728787_1 WHERE olivier = "Dietrich Fischer-Dieskau"
Write a SQL query that answers the following question: When karl ridderbusch is the la roche who is the olivier?
The relevant table was constructed using the following SQL : CREATE TABLE table_29728787_1 (olivier VARCHAR, la_roche VARCHAR)
SELECT olivier FROM table_29728787_1 WHERE la_roche = "Karl Ridderbusch"
Write a SQL query that answers the following question: For what year is the SAR no. 874?
The relevant table was constructed using the following SQL : CREATE TABLE table_29753553_1 (year VARCHAR, sar_no VARCHAR)
SELECT year FROM table_29753553_1 WHERE sar_no = 874
Write a SQL query that answers the following question: Who is the writer when the director is bob berlinger?
The relevant table was constructed using the following SQL : CREATE TABLE table_29747178_2 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_29747178_2 WHERE directed_by = "Bob Berlinger"
Write a SQL query that answers the following question: How many millions of U.S viewers are there when the director is andy wolk?
The relevant table was constructed using the following SQL : CREATE TABLE table_29747178_2 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__million_ FROM table_29747178_2 WHERE directed_by = "Andy Wolk"
Write a SQL query that answers the following question: What is the series # when the director is john showalter?
The relevant table was constructed using the following SQL : CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR)
SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter"
Write a SQL query that answers the following question: What is the title when the series # is 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_29747178_2 (title VARCHAR, series__number VARCHAR)
SELECT title FROM table_29747178_2 WHERE series__number = 7
Write a SQL query that answers the following question: Which episode had a share 16-19 of 23,22%?
The relevant table was constructed using the following SQL : CREATE TABLE table_29773532_21 (episode INTEGER, share_16_39 VARCHAR)
SELECT MAX(episode) FROM table_29773532_21 WHERE share_16_39 = "23,22%"
Write a SQL query that answers the following question: What was the official rating 16-39 of episode 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_29773532_21 (official_rating_16_39 VARCHAR, episode VARCHAR)
SELECT official_rating_16_39 FROM table_29773532_21 WHERE episode = 9
Write a SQL query that answers the following question: What is the intro date for the interface that equals pci?
The relevant table was constructed using the following SQL : CREATE TABLE table_29778616_1 (intro_date VARCHAR, interface VARCHAR)
SELECT intro_date FROM table_29778616_1 WHERE interface = "PCI"
Write a SQL query that answers the following question: What is the intro date for the throughput of 16 mbit/s?
The relevant table was constructed using the following SQL : CREATE TABLE table_29778616_1 (intro_date VARCHAR, throughput VARCHAR)
SELECT intro_date FROM table_29778616_1 WHERE throughput = "16 Mbit/s"
Write a SQL query that answers the following question: How many intro dates have the price of 686€?
The relevant table was constructed using the following SQL : CREATE TABLE table_29778616_1 (intro_date VARCHAR, price VARCHAR)
SELECT COUNT(intro_date) FROM table_29778616_1 WHERE price = "686€"
Write a SQL query that answers the following question: What is the price for the manufacturer LETech?
The relevant table was constructed using the following SQL : CREATE TABLE table_29778616_1 (price VARCHAR, manufacturer VARCHAR)
SELECT price FROM table_29778616_1 WHERE manufacturer = "LETech"
Write a SQL query that answers the following question: What is the price (usd) for the model pq32mu?
The relevant table was constructed using the following SQL : CREATE TABLE table_29778616_1 (price__usd_ INTEGER, model VARCHAR)
SELECT MIN(price__usd_) FROM table_29778616_1 WHERE model = "PQ32MU"
Write a SQL query that answers the following question: Who is the manufacturer whose intro date is 2006 and their throughput is 4 mbit/s?
The relevant table was constructed using the following SQL : CREATE TABLE table_29778616_1 (manufacturer VARCHAR, intro_date VARCHAR, throughput VARCHAR)
SELECT manufacturer FROM table_29778616_1 WHERE intro_date = "2006" AND throughput = "4 Mbit/s"
Write a SQL query that answers the following question: What was the Lok Sabha in Karakat (Vidhan Sabha Constituency)?
The relevant table was constructed using the following SQL : CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, vidhan_sabha_constituency VARCHAR)
SELECT lok_sabha FROM table_29785324_5 WHERE vidhan_sabha_constituency = "Karakat (Vidhan Sabha constituency)"
Write a SQL query that answers the following question: How many were in the Kargahar (vidhan sabha constituency)?
The relevant table was constructed using the following SQL : CREATE TABLE table_29785324_5 (constituency_no INTEGER, vidhan_sabha_constituency VARCHAR)
SELECT MIN(constituency_no) FROM table_29785324_5 WHERE vidhan_sabha_constituency = "Kargahar (Vidhan Sabha constituency)"
Write a SQL query that answers the following question: What district has 213 constituents?
The relevant table was constructed using the following SQL : CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR)
SELECT COUNT(district) FROM table_29785324_5 WHERE constituency_no = 213
Write a SQL query that answers the following question: How many Lok Sabha are in the one with 216 constituents?
The relevant table was constructed using the following SQL : CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, constituency_no VARCHAR)
SELECT lok_sabha FROM table_29785324_5 WHERE constituency_no = 216
Write a SQL query that answers the following question: How many countries spent at least $51.0 billion in international tourism in 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_29789_3 (rank_2012 INTEGER, international_tourism_expenditure_2011 VARCHAR)
SELECT MAX(rank_2012) FROM table_29789_3 WHERE international_tourism_expenditure_2011 = "$51.0 billion"
Write a SQL query that answers the following question: How many countries spent $83.7 billion on international tourism in 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2012 VARCHAR)
SELECT COUNT(_percentage_change) FROM table_29789_3 WHERE international_tourism_expenditure_2012 = "$83.7 billion"
Write a SQL query that answers the following question: What was the percentage increase in spending on international tourism from 2011 to 2012 of the country that spent $85.9 billion in 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2011 VARCHAR)
SELECT _percentage_change FROM table_29789_3 WHERE international_tourism_expenditure_2011 = "$85.9 billion"
Write a SQL query that answers the following question: Which country saw a 5.7% increase in spending on international tourism between 2011 and 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_29789_3 (country VARCHAR, _percentage_change VARCHAR)
SELECT country FROM table_29789_3 WHERE _percentage_change = "5.7"
Write a SQL query that answers the following question: Name the most other apps for league goals being 1
The relevant table was constructed using the following SQL : CREATE TABLE table_2979789_1 (other_apps INTEGER, league_goals VARCHAR)
SELECT MAX(other_apps) FROM table_2979789_1 WHERE league_goals = 1
Write a SQL query that answers the following question: Name the most fa cup apps for league apps being 27
The relevant table was constructed using the following SQL : CREATE TABLE table_2979789_1 (fa_cup_apps INTEGER, league_apps VARCHAR)
SELECT MAX(fa_cup_apps) FROM table_2979789_1 WHERE league_apps = 27
Write a SQL query that answers the following question: Name the total number of division for fa cups being 9
The relevant table was constructed using the following SQL : CREATE TABLE table_2979789_1 (division VARCHAR, fa_cup_apps VARCHAR)
SELECT COUNT(division) FROM table_2979789_1 WHERE fa_cup_apps = 9
Write a SQL query that answers the following question: How many international tourists visited Russia in 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_29789_1 (international_tourist_arrivals__2012_ VARCHAR, country VARCHAR)
SELECT international_tourist_arrivals__2012_ FROM table_29789_1 WHERE country = "Russia"
Write a SQL query that answers the following question: What was the premiere date for the episode whose alternate title was miłość i przeznaczenie?
The relevant table was constructed using the following SQL : CREATE TABLE table_29799700_2 (series_premiere VARCHAR, alternante_title VARCHAR)
SELECT series_premiere FROM table_29799700_2 WHERE alternante_title = "Miłość i przeznaczenie"
Write a SQL query that answers the following question: Which TV network had its series finale on May 7, 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, series_finale VARCHAR)
SELECT tv_network_s_ FROM table_29799700_2 WHERE series_finale = "May 7, 2012"
Write a SQL query that answers the following question: What was the date of the series premiere whose TV network was TV3?
The relevant table was constructed using the following SQL : CREATE TABLE table_29799700_2 (series_premiere VARCHAR, tv_network_s_ VARCHAR)
SELECT series_premiere FROM table_29799700_2 WHERE tv_network_s_ = "TV3"
Write a SQL query that answers the following question: Which TV network has a country of origin of Iran?
The relevant table was constructed using the following SQL : CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, country VARCHAR)
SELECT tv_network_s_ FROM table_29799700_2 WHERE country = "Iran"
Write a SQL query that answers the following question: What was the date of the series finale for Peru?
The relevant table was constructed using the following SQL : CREATE TABLE table_29799700_2 (series_finale VARCHAR, country VARCHAR)
SELECT series_finale FROM table_29799700_2 WHERE country = "Peru"
Write a SQL query that answers the following question: What is every original air date with U.S. viewers of 0.23 million?
The relevant table was constructed using the following SQL : CREATE TABLE table_29803475_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_29803475_2 WHERE us_viewers__million_ = "0.23"
Write a SQL query that answers the following question: What is the lowest number in series when U.S. viewers is 0.23 million?
The relevant table was constructed using the following SQL : CREATE TABLE table_29803475_2 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
SELECT MIN(no_in_series) FROM table_29803475_2 WHERE us_viewers__million_ = "0.23"
Write a SQL query that answers the following question: What were the total apps for Dunne in season where he had 0 league goals?
The relevant table was constructed using the following SQL : CREATE TABLE table_2980024_1 (total_apps VARCHAR, league_goals VARCHAR)
SELECT total_apps FROM table_2980024_1 WHERE league_goals = 0
Write a SQL query that answers the following question: How many league goals did Dunne have in the season where he had 2 league apps?
The relevant table was constructed using the following SQL : CREATE TABLE table_2980024_1 (league_goals VARCHAR, league_apps VARCHAR)
SELECT league_goals FROM table_2980024_1 WHERE league_apps = 2
Write a SQL query that answers the following question: How many other goals did Dunne have in the season where he had 1 league goal?
The relevant table was constructed using the following SQL : CREATE TABLE table_2980024_1 (other_goals VARCHAR, league_goals VARCHAR)
SELECT other_goals FROM table_2980024_1 WHERE league_goals = 1
Write a SQL query that answers the following question: When boston university is the team what is the record?
The relevant table was constructed using the following SQL : CREATE TABLE table_29846807_5 (record VARCHAR, team VARCHAR)
SELECT record FROM table_29846807_5 WHERE team = "Boston University"
Write a SQL query that answers the following question: What is the subject when the highest mark is 79?
The relevant table was constructed using the following SQL : CREATE TABLE table_29842201_1 (subject VARCHAR, highest_mark VARCHAR)
SELECT subject FROM table_29842201_1 WHERE highest_mark = 79
Write a SQL query that answers the following question: How many lowest mark entries are there when % passed is 76?
The relevant table was constructed using the following SQL : CREATE TABLE table_29842201_1 (lowest_mark VARCHAR, _percentage_pass VARCHAR)
SELECT COUNT(lowest_mark) FROM table_29842201_1 WHERE _percentage_pass = 76
Write a SQL query that answers the following question: if the flm winning team is no. 99 jmb racing what is the name of the lmp2 winning team
The relevant table was constructed using the following SQL : CREATE TABLE table_29826467_2 (lmp2_winning_team VARCHAR, flm_winning_team VARCHAR)
SELECT lmp2_winning_team FROM table_29826467_2 WHERE flm_winning_team = "No. 99 JMB Racing"
Write a SQL query that answers the following question: Who is every high rebound when the team is Mount St. Mary's?
The relevant table was constructed using the following SQL : CREATE TABLE table_29846807_4 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_29846807_4 WHERE team = "Mount St. Mary's"
Write a SQL query that answers the following question: What position was serena abrami in?
The relevant table was constructed using the following SQL : CREATE TABLE table_29857115_4 (position VARCHAR, singer VARCHAR)
SELECT position FROM table_29857115_4 WHERE singer = "Serena Abrami"
Write a SQL query that answers the following question: What was gabriella ferrone's result on the 5th evening?
The relevant table was constructed using the following SQL : CREATE TABLE table_29857115_4 (singer VARCHAR)
SELECT 5 AS th_evening FROM table_29857115_4 WHERE singer = "Gabriella Ferrone"
Write a SQL query that answers the following question: What is the maximum overall number?
The relevant table was constructed using the following SQL : CREATE TABLE table_2985714_2 (_number INTEGER)
SELECT MAX(_number) FROM table_2985714_2
Write a SQL query that answers the following question: When the number is 2 what is the lowest amount of al-wedhat wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_2985714_2 (al_wehdat_wins INTEGER, _number VARCHAR)
SELECT MIN(al_wehdat_wins) FROM table_2985714_2 WHERE _number = 2
Write a SQL query that answers the following question: When jordan fa cup is the tournament how many draws?
The relevant table was constructed using the following SQL : CREATE TABLE table_2985714_2 (draws VARCHAR, tournament VARCHAR)
SELECT COUNT(draws) FROM table_2985714_2 WHERE tournament = "Jordan FA Cup"
Write a SQL query that answers the following question: What is the highest value of area when capital is San Juan?
The relevant table was constructed using the following SQL : CREATE TABLE table_298550_1 (area__km²_ INTEGER, capital VARCHAR)
SELECT MAX(area__km²_) FROM table_298550_1 WHERE capital = "San Juan"
Write a SQL query that answers the following question: How many entries for area correspond to a population density of 207.9?
The relevant table was constructed using the following SQL : CREATE TABLE table_298550_1 (area__km²_ VARCHAR, population_density__per_km²_ VARCHAR)
SELECT COUNT(area__km²_) FROM table_298550_1 WHERE population_density__per_km²_ = "207.9"
Write a SQL query that answers the following question: What is every entry for area if capital is Port-au-Prince?
The relevant table was constructed using the following SQL : CREATE TABLE table_298550_1 (area__km²_ VARCHAR, capital VARCHAR)
SELECT area__km²_ FROM table_298550_1 WHERE capital = "Port-au-Prince"
Write a SQL query that answers the following question: What is every country with a flag with population of 11346670?
The relevant table was constructed using the following SQL : CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR)
SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670
Write a SQL query that answers the following question: What is the highest value for population when area is 9104?
The relevant table was constructed using the following SQL : CREATE TABLE table_298550_1 (population__1_july_2005_est_ INTEGER, area__km²_ VARCHAR)
SELECT MAX(population__1_july_2005_est_) FROM table_298550_1 WHERE area__km²_ = 9104
Write a SQL query that answers the following question: What many times was the victoria derby raced?
The relevant table was constructed using the following SQL : CREATE TABLE table_2985987_2 (date VARCHAR, race VARCHAR)
SELECT COUNT(date) FROM table_2985987_2 WHERE race = "Victoria Derby"
Write a SQL query that answers the following question: What is the autumn classic weight?
The relevant table was constructed using the following SQL : CREATE TABLE table_2985987_2 (weight__kg_ VARCHAR, race VARCHAR)
SELECT weight__kg_ FROM table_2985987_2 WHERE race = "Autumn Classic"
Write a SQL query that answers the following question: Who directed the episode that had 3.55 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_29897962_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_29897962_1 WHERE us_viewers__million_ = "3.55"
Write a SQL query that answers the following question: What are the dimensions of the coin worth ₩200?
The relevant table was constructed using the following SQL : CREATE TABLE table_298883_5 (dimensions VARCHAR, value VARCHAR)
SELECT dimensions FROM table_298883_5 WHERE value = "₩200"
Write a SQL query that answers the following question: How many different dates of issue are the for the coin with kumsusan memorial palace on the obverse?
The relevant table was constructed using the following SQL : CREATE TABLE table_298883_5 (date_of_issue VARCHAR, obverse VARCHAR)
SELECT COUNT(date_of_issue) FROM table_298883_5 WHERE obverse = "Kumsusan Memorial Palace"
Write a SQL query that answers the following question: What are the dimensions of the coin issued in 1992 with kim il-sung on the obverse?
The relevant table was constructed using the following SQL : CREATE TABLE table_298883_5 (dimensions VARCHAR, obverse VARCHAR, date_of_issue VARCHAR)
SELECT dimensions FROM table_298883_5 WHERE obverse = "Kim Il-sung" AND date_of_issue = "1992"
Write a SQL query that answers the following question: What is on the reverse side of the ₩500 coin?
The relevant table was constructed using the following SQL : CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)
SELECT reverse FROM table_298883_5 WHERE value = "₩500"
Write a SQL query that answers the following question: What is on the reverse side of the ₩100 coin?
The relevant table was constructed using the following SQL : CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)
SELECT reverse FROM table_298883_5 WHERE value = "₩100"
Write a SQL query that answers the following question: What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side?
The relevant table was constructed using the following SQL : CREATE TABLE table_298883_5 (dimensions VARCHAR, reverse VARCHAR)
SELECT dimensions FROM table_298883_5 WHERE reverse = "Western sea barrage and locks at Taedong Gang"
Write a SQL query that answers the following question: What are all the name(namesakes) for the entire chart?
The relevant table was constructed using the following SQL : CREATE TABLE table_29860752_11 (name__namesake_ VARCHAR)
SELECT name__namesake_ FROM table_29860752_11
Write a SQL query that answers the following question: What TV season was the 1st season?
The relevant table was constructed using the following SQL : CREATE TABLE table_299121_2 (tv_season VARCHAR, season VARCHAR)
SELECT tv_season FROM table_299121_2 WHERE season = "1st"
Write a SQL query that answers the following question: When was the 3rd season premiere originally aired?
The relevant table was constructed using the following SQL : CREATE TABLE table_299121_2 (season VARCHAR)
SELECT season AS premiere FROM table_299121_2 WHERE season = "3rd"
Write a SQL query that answers the following question: What was the 2nd's season's ranking?
The relevant table was constructed using the following SQL : CREATE TABLE table_299121_2 (ranking VARCHAR, season VARCHAR)
SELECT ranking FROM table_299121_2 WHERE season = "2nd"
Write a SQL query that answers the following question: When did the season premiere that saw 8.4 million viewers first air?
The relevant table was constructed using the following SQL : CREATE TABLE table_299121_2 (season VARCHAR, viewers__in_millions_ VARCHAR)
SELECT season AS premiere FROM table_299121_2 WHERE viewers__in_millions_ = "8.4"
Write a SQL query that answers the following question: Who directed the episode that was watched by 2.97 million U.S. viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_29920800_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_29920800_1 WHERE us_viewers__million_ = "2.97"
Write a SQL query that answers the following question: What is the original air date of the episode written by Liz Feldman?
The relevant table was constructed using the following SQL : CREATE TABLE table_29920800_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_29920800_1 WHERE written_by = "Liz Feldman"
Write a SQL query that answers the following question: Who wrote the episode that was watched by 2.97 million U.S. viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_29920800_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_29920800_1 WHERE us_viewers__million_ = "2.97"
Write a SQL query that answers the following question: How many millions of U.S viewers watched the episode written by Liz Feldman?
The relevant table was constructed using the following SQL : CREATE TABLE table_29920800_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__million_ FROM table_29920800_1 WHERE written_by = "Liz Feldman"
Write a SQL query that answers the following question: How many people attended the uefa champions league competition?
The relevant table was constructed using the following SQL : CREATE TABLE table_299271_2 (attendance VARCHAR, competition VARCHAR)
SELECT attendance FROM table_299271_2 WHERE competition = "UEFA Champions League"
Write a SQL query that answers the following question: How many women has reached the title of Miss International representing the country ranked as number 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_29942205_1 (miss_international INTEGER, rank VARCHAR)
SELECT MIN(miss_international) FROM table_29942205_1 WHERE rank = 1
Write a SQL query that answers the following question: How many women has got the first runner-up position in representation of Philippines?
The relevant table was constructed using the following SQL : CREATE TABLE table_29942205_1 (country_territory VARCHAR)
SELECT 1 AS st_runner_up FROM table_29942205_1 WHERE country_territory = "Philippines"
Write a SQL query that answers the following question: What is the lowest value in the miss international column?
The relevant table was constructed using the following SQL : CREATE TABLE table_29942205_1 (miss_international INTEGER)
SELECT MIN(miss_international) FROM table_29942205_1
Write a SQL query that answers the following question: What is the smallest quantity displayed under the title "first runner-up"?
The relevant table was constructed using the following SQL : CREATE TABLE table_29942205_1 (Id VARCHAR)
SELECT MIN(1 AS st_runner_up) FROM table_29942205_1
Write a SQL query that answers the following question: How many women from Uruguay has become third runner-up in this pageant?
The relevant table was constructed using the following SQL : CREATE TABLE table_29942205_1 (country_territory VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_29942205_1 WHERE country_territory = "Uruguay"
Write a SQL query that answers the following question: What year was player number 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_29970488_2 (year VARCHAR, _number VARCHAR)
SELECT year FROM table_29970488_2 WHERE _number = 10
Write a SQL query that answers the following question: How many hometowns are there when Charis Prep was the previous school?
The relevant table was constructed using the following SQL : CREATE TABLE table_29970488_2 (hometown VARCHAR, previous_school VARCHAR)
SELECT COUNT(hometown) FROM table_29970488_2 WHERE previous_school = "Charis Prep"
Write a SQL query that answers the following question: How many different items appear in the weight column when Pittsburgh, PA is the hometown?
The relevant table was constructed using the following SQL : CREATE TABLE table_29970488_2 (weight___lb__ VARCHAR, hometown VARCHAR)
SELECT COUNT(weight___lb__) FROM table_29970488_2 WHERE hometown = "Pittsburgh, PA"
Write a SQL query that answers the following question: Which episode is number 3 in the season?
The relevant table was constructed using the following SQL : CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_season VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_season = 3
Write a SQL query that answers the following question: What is the episode name for series number 45?
The relevant table was constructed using the following SQL : CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_series = 45
Write a SQL query that answers the following question: What is the highest total for any country/territory?
The relevant table was constructed using the following SQL : CREATE TABLE table_30008638_1 (total INTEGER)
SELECT MAX(total) FROM table_30008638_1
Write a SQL query that answers the following question: How many semifinalists has Romania had?
The relevant table was constructed using the following SQL : CREATE TABLE table_30008638_1 (semifinalists VARCHAR, country_territory VARCHAR)
SELECT semifinalists FROM table_30008638_1 WHERE country_territory = "Romania"
Write a SQL query that answers the following question: How many Miss Waters has Canada had?
The relevant table was constructed using the following SQL : CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR)
SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = "Canada"
Write a SQL query that answers the following question: What is the most Miss Fires any country has had?
The relevant table was constructed using the following SQL : CREATE TABLE table_30008638_1 (miss_fire INTEGER)
SELECT MAX(miss_fire) FROM table_30008638_1
Write a SQL query that answers the following question: What is the least amount of Miss Airs any country has had?
The relevant table was constructed using the following SQL : CREATE TABLE table_30008638_1 (miss_air INTEGER)
SELECT MIN(miss_air) FROM table_30008638_1
Write a SQL query that answers the following question: what re the high assists for january 29?
The relevant table was constructed using the following SQL : CREATE TABLE table_29982187_4 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_29982187_4 WHERE date = "January 29"
Write a SQL query that answers the following question: What team did the suns play on April 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_29997127_4 (team VARCHAR, date VARCHAR)
SELECT team FROM table_29997127_4 WHERE date = "April 21"
Write a SQL query that answers the following question: In what game was the attendance at the America West Arena 18,756?
The relevant table was constructed using the following SQL : CREATE TABLE table_29997127_4 (game INTEGER, location_attendance VARCHAR)
SELECT MAX(game) FROM table_29997127_4 WHERE location_attendance = "America West Arena 18,756"
Write a SQL query that answers the following question: What is the official name of the municipality whose name in Basque is Bilar?
The relevant table was constructed using the following SQL : CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_basque VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_basque = "Bilar"
Write a SQL query that answers the following question: What is the official name of the municipality whose name in Spanish is Cripán?
The relevant table was constructed using the following SQL : CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Cripán"
Write a SQL query that answers the following question: What is the official name of the municipality whose name in Spanish is Vitoria?
The relevant table was constructed using the following SQL : CREATE TABLE table_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR)
SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Vitoria"
Write a SQL query that answers the following question: What is the name in Basque of the municipality whose official name is Kuartango?
The relevant table was constructed using the following SQL : CREATE TABLE table_300283_1 (name_in_basque VARCHAR, official_name VARCHAR)
SELECT name_in_basque FROM table_300283_1 WHERE official_name = "Kuartango"
Write a SQL query that answers the following question: What is the INE code of the municipality whose official name is Berantevilla?
The relevant table was constructed using the following SQL : CREATE TABLE table_300283_1 (ine_code INTEGER, official_name VARCHAR)
SELECT MAX(ine_code) FROM table_300283_1 WHERE official_name = "Berantevilla"