question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who was eliminated a person at 18:48?
CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR)
SELECT eliminated AS by FROM table_29692554_2 WHERE time = "18:48"
### Context: CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR) ### Question: Who was eliminated a person at 18:48? ### Answer: SELECT eliminated AS by FROM table_29692554_2 WHERE time = "18:48"
How many entries are shown for entered at 21:09?
CREATE TABLE table_29692554_2 (entered VARCHAR, time VARCHAR)
SELECT COUNT(entered) FROM table_29692554_2 WHERE time = "21:09"
### Context: CREATE TABLE table_29692554_2 (entered VARCHAR, time VARCHAR) ### Question: How many entries are shown for entered at 21:09? ### Answer: SELECT COUNT(entered) FROM table_29692554_2 WHERE time = "21:09"
Who was eliminated by being pinned after a spear at 22:50?
CREATE TABLE table_29692554_2 (wrestler VARCHAR, method_of_elimination VARCHAR, time VARCHAR)
SELECT wrestler FROM table_29692554_2 WHERE method_of_elimination = "Pinned after a spear" AND time = "22:50"
### Context: CREATE TABLE table_29692554_2 (wrestler VARCHAR, method_of_elimination VARCHAR, time VARCHAR) ### Question: Who was eliminated by being pinned after a spear at 22:50? ### Answer: SELECT wrestler FROM table_29692554_2 WHERE method_of_elimination = "Pinned after a spear" AND time = "22:50"
What number was the person eliminated at 22:50?
CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR)
SELECT eliminated FROM table_29692554_2 WHERE time = "22:50"
### Context: CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR) ### Question: What number was the person eliminated at 22:50? ### Answer: SELECT eliminated FROM table_29692554_2 WHERE time = "22:50"
what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa?
CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR)
SELECT circuit FROM table_29686983_1 WHERE fastest_lap = "Sam Lowes" AND winning_rider = "Luca Scassa"
### Context: CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR) ### Question: what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa? ### Answer: SELECT circuit FROM table_29686983_1 WHERE fastest_lap = "Sam Lowes" AND winning_rider = "Luca Scassa"
what is the round wher the fabien foret had the fastest lap and david salom was the pole position?
CREATE TABLE table_29686983_1 (round VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
SELECT round FROM table_29686983_1 WHERE fastest_lap = "Fabien Foret" AND pole_position = "David Salom"
### Context: CREATE TABLE table_29686983_1 (round VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### Question: what is the round wher the fabien foret had the fastest lap and david salom was the pole position? ### Answer: SELECT round FROM table_29686983_1 WHERE fastest_lap = "Fabien Foret" AND pole_position = "David Salom"
who had the fastest lap for round 1?
CREATE TABLE table_29686983_1 (fastest_lap VARCHAR, round VARCHAR)
SELECT fastest_lap FROM table_29686983_1 WHERE round = 1
### Context: CREATE TABLE table_29686983_1 (fastest_lap VARCHAR, round VARCHAR) ### Question: who had the fastest lap for round 1? ### Answer: SELECT fastest_lap FROM table_29686983_1 WHERE round = 1
what is the pole position for france?
CREATE TABLE table_29686983_1 (pole_position VARCHAR, country VARCHAR)
SELECT pole_position FROM table_29686983_1 WHERE country = "France"
### Context: CREATE TABLE table_29686983_1 (pole_position VARCHAR, country VARCHAR) ### Question: what is the pole position for france? ### Answer: SELECT pole_position FROM table_29686983_1 WHERE country = "France"
what is the maximum round and fabien foret had the pole position?
CREATE TABLE table_29686983_1 (round INTEGER, pole_position VARCHAR)
SELECT MAX(round) FROM table_29686983_1 WHERE pole_position = "Fabien Foret"
### Context: CREATE TABLE table_29686983_1 (round INTEGER, pole_position VARCHAR) ### Question: what is the maximum round and fabien foret had the pole position? ### Answer: SELECT MAX(round) FROM table_29686983_1 WHERE pole_position = "Fabien Foret"
How many values of attendance occur when ave. on previous season is +645?
CREATE TABLE table_2970978_1 (ave_attendance VARCHAR, ___ave_on_prev_season VARCHAR)
SELECT COUNT(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "+645"
### Context: CREATE TABLE table_2970978_1 (ave_attendance VARCHAR, ___ave_on_prev_season VARCHAR) ### Question: How many values of attendance occur when ave. on previous season is +645? ### Answer: SELECT COUNT(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "+645"
What is the lowest value of average attendance when average on previous season is -459?
CREATE TABLE table_2970978_1 (ave_attendance INTEGER, ___ave_on_prev_season VARCHAR)
SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "-459"
### Context: CREATE TABLE table_2970978_1 (ave_attendance INTEGER, ___ave_on_prev_season VARCHAR) ### Question: What is the lowest value of average attendance when average on previous season is -459? ### Answer: SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "-459"
What is the least value for average attendance when average on previous season is +644?
CREATE TABLE table_2970978_1 (ave_attendance INTEGER, ___ave_on_prev_season VARCHAR)
SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "+644"
### Context: CREATE TABLE table_2970978_1 (ave_attendance INTEGER, ___ave_on_prev_season VARCHAR) ### Question: What is the least value for average attendance when average on previous season is +644? ### Answer: SELECT MIN(ave_attendance) FROM table_2970978_1 WHERE ___ave_on_prev_season = "+644"
What is every value for average on previous season if the competition is league two?
CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR)
SELECT ___ave_on_prev_season FROM table_2970978_1 WHERE competition = "League Two"
### Context: CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR) ### Question: What is every value for average on previous season if the competition is league two? ### Answer: SELECT ___ave_on_prev_season FROM table_2970978_1 WHERE competition = "League Two"
What is the least w?
CREATE TABLE table_29704430_1 (w INTEGER)
SELECT MIN(w) FROM table_29704430_1
### Context: CREATE TABLE table_29704430_1 (w INTEGER) ### Question: What is the least w? ### Answer: SELECT MIN(w) FROM table_29704430_1
What is the most stolen ends?
CREATE TABLE table_29704430_1 (stolen_ends INTEGER)
SELECT MAX(stolen_ends) FROM table_29704430_1
### Context: CREATE TABLE table_29704430_1 (stolen_ends INTEGER) ### Question: What is the most stolen ends? ### Answer: SELECT MAX(stolen_ends) FROM table_29704430_1
What is the total appearances when the total goals is 289?
CREATE TABLE table_29701419_2 (total_appearances INTEGER, total_goals VARCHAR)
SELECT MIN(total_appearances) FROM table_29701419_2 WHERE total_goals = 289
### Context: CREATE TABLE table_29701419_2 (total_appearances INTEGER, total_goals VARCHAR) ### Question: What is the total appearances when the total goals is 289? ### Answer: SELECT MIN(total_appearances) FROM table_29701419_2 WHERE total_goals = 289
What is the league goals when the total goals is 179?
CREATE TABLE table_29701419_2 (league_goals INTEGER, total_goals VARCHAR)
SELECT MAX(league_goals) FROM table_29701419_2 WHERE total_goals = 179
### Context: CREATE TABLE table_29701419_2 (league_goals INTEGER, total_goals VARCHAR) ### Question: What is the league goals when the total goals is 179? ### Answer: SELECT MAX(league_goals) FROM table_29701419_2 WHERE total_goals = 179
How many total appearances are there when the league appearances is 192?
CREATE TABLE table_29701419_2 (total_appearances VARCHAR, league_appearances VARCHAR)
SELECT COUNT(total_appearances) FROM table_29701419_2 WHERE league_appearances = 192
### Context: CREATE TABLE table_29701419_2 (total_appearances VARCHAR, league_appearances VARCHAR) ### Question: How many total appearances are there when the league appearances is 192? ### Answer: SELECT COUNT(total_appearances) FROM table_29701419_2 WHERE league_appearances = 192
Who were the away teams when the competition was the 1st ``republic of srpska football day`` and the home team was u 14 republic of srpska?
CREATE TABLE table_29728596_2 (away_team VARCHAR, competition VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_29728596_2 WHERE competition = "1st ``Republic of Srpska Football Day``" AND home_team = "U 14 Republic of Srpska"
### Context: CREATE TABLE table_29728596_2 (away_team VARCHAR, competition VARCHAR, home_team VARCHAR) ### Question: Who were the away teams when the competition was the 1st ``republic of srpska football day`` and the home team was u 14 republic of srpska? ### Answer: SELECT away_team FROM table_29728596_2 WHERE competition = "1st ``Republic of Srpska Football Day``" AND home_team = "U 14 Republic of Srpska"
What were the competitions when the away team was fk kozara gradiska?
CREATE TABLE table_29728596_2 (competition VARCHAR, away_team VARCHAR)
SELECT competition FROM table_29728596_2 WHERE away_team = "FK Kozara Gradiska"
### Context: CREATE TABLE table_29728596_2 (competition VARCHAR, away_team VARCHAR) ### Question: What were the competitions when the away team was fk kozara gradiska? ### Answer: SELECT competition FROM table_29728596_2 WHERE away_team = "FK Kozara Gradiska"
What are the names of players from the dr congo?
CREATE TABLE table_29743928_3 (name VARCHAR, country VARCHAR)
SELECT name FROM table_29743928_3 WHERE country = "DR Congo"
### Context: CREATE TABLE table_29743928_3 (name VARCHAR, country VARCHAR) ### Question: What are the names of players from the dr congo? ### Answer: SELECT name FROM table_29743928_3 WHERE country = "DR Congo"
How many is the high assist total for players from panama?
CREATE TABLE table_29743928_3 (assists INTEGER, country VARCHAR)
SELECT MAX(assists) FROM table_29743928_3 WHERE country = "Panama"
### Context: CREATE TABLE table_29743928_3 (assists INTEGER, country VARCHAR) ### Question: How many is the high assist total for players from panama? ### Answer: SELECT MAX(assists) FROM table_29743928_3 WHERE country = "Panama"
What was the result of the home match against FK Rudar Ugljevik?
CREATE TABLE table_29728596_1 (result VARCHAR, away_team VARCHAR)
SELECT result FROM table_29728596_1 WHERE away_team = "FK Rudar Ugljevik"
### Context: CREATE TABLE table_29728596_1 (result VARCHAR, away_team VARCHAR) ### Question: What was the result of the home match against FK Rudar Ugljevik? ### Answer: SELECT result FROM table_29728596_1 WHERE away_team = "FK Rudar Ugljevik"
Where was the home match against FK Rudar Ugljevik played?
CREATE TABLE table_29728596_1 (location VARCHAR, away_team VARCHAR)
SELECT location FROM table_29728596_1 WHERE away_team = "FK Rudar Ugljevik"
### Context: CREATE TABLE table_29728596_1 (location VARCHAR, away_team VARCHAR) ### Question: Where was the home match against FK Rudar Ugljevik played? ### Answer: SELECT location FROM table_29728596_1 WHERE away_team = "FK Rudar Ugljevik"
When 1971 is the year what is the la roche?
CREATE TABLE table_29728787_1 (la_roche VARCHAR, year VARCHAR)
SELECT la_roche FROM table_29728787_1 WHERE year = "1971"
### Context: CREATE TABLE table_29728787_1 (la_roche VARCHAR, year VARCHAR) ### Question: When 1971 is the year what is the la roche? ### Answer: SELECT la_roche FROM table_29728787_1 WHERE year = "1971"
When deutsche grammophon is the label how many clairons are there?
CREATE TABLE table_29728787_1 (clairon VARCHAR, label VARCHAR)
SELECT COUNT(clairon) FROM table_29728787_1 WHERE label = "Deutsche Grammophon"
### Context: CREATE TABLE table_29728787_1 (clairon VARCHAR, label VARCHAR) ### Question: When deutsche grammophon is the label how many clairons are there? ### Answer: SELECT COUNT(clairon) FROM table_29728787_1 WHERE label = "Deutsche Grammophon"
When hermann uhde is the count who is the conductor?
CREATE TABLE table_29728787_1 (conductor VARCHAR, count VARCHAR)
SELECT conductor FROM table_29728787_1 WHERE count = "Hermann Uhde"
### Context: CREATE TABLE table_29728787_1 (conductor VARCHAR, count VARCHAR) ### Question: When hermann uhde is the count who is the conductor? ### Answer: SELECT conductor FROM table_29728787_1 WHERE count = "Hermann Uhde"
When dietrich fischer-dieskau is the olivier who is the conductor?
CREATE TABLE table_29728787_1 (conductor VARCHAR, olivier VARCHAR)
SELECT conductor FROM table_29728787_1 WHERE olivier = "Dietrich Fischer-Dieskau"
### Context: CREATE TABLE table_29728787_1 (conductor VARCHAR, olivier VARCHAR) ### Question: When dietrich fischer-dieskau is the olivier who is the conductor? ### Answer: SELECT conductor FROM table_29728787_1 WHERE olivier = "Dietrich Fischer-Dieskau"
When karl ridderbusch is the la roche who is the olivier?
CREATE TABLE table_29728787_1 (olivier VARCHAR, la_roche VARCHAR)
SELECT olivier FROM table_29728787_1 WHERE la_roche = "Karl Ridderbusch"
### Context: CREATE TABLE table_29728787_1 (olivier VARCHAR, la_roche VARCHAR) ### Question: When karl ridderbusch is the la roche who is the olivier? ### Answer: SELECT olivier FROM table_29728787_1 WHERE la_roche = "Karl Ridderbusch"
For what year is the SAR no. 874?
CREATE TABLE table_29753553_1 (year VARCHAR, sar_no VARCHAR)
SELECT year FROM table_29753553_1 WHERE sar_no = 874
### Context: CREATE TABLE table_29753553_1 (year VARCHAR, sar_no VARCHAR) ### Question: For what year is the SAR no. 874? ### Answer: SELECT year FROM table_29753553_1 WHERE sar_no = 874
Who is the writer when the director is bob berlinger?
CREATE TABLE table_29747178_2 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_29747178_2 WHERE directed_by = "Bob Berlinger"
### Context: CREATE TABLE table_29747178_2 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who is the writer when the director is bob berlinger? ### Answer: SELECT written_by FROM table_29747178_2 WHERE directed_by = "Bob Berlinger"
How many millions of U.S viewers are there when the director is andy wolk?
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"
### Context: CREATE TABLE table_29747178_2 (us_viewers__million_ VARCHAR, directed_by VARCHAR) ### Question: How many millions of U.S viewers are there when the director is andy wolk? ### Answer: SELECT us_viewers__million_ FROM table_29747178_2 WHERE directed_by = "Andy Wolk"
What is the series # when the director is john showalter?
CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR)
SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter"
### Context: CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR) ### Question: What is the series # when the director is john showalter? ### Answer: SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter"
What is the title when the series # is 7?
CREATE TABLE table_29747178_2 (title VARCHAR, series__number VARCHAR)
SELECT title FROM table_29747178_2 WHERE series__number = 7
### Context: CREATE TABLE table_29747178_2 (title VARCHAR, series__number VARCHAR) ### Question: What is the title when the series # is 7? ### Answer: SELECT title FROM table_29747178_2 WHERE series__number = 7
Which episode had a share 16-19 of 23,22%?
CREATE TABLE table_29773532_21 (episode INTEGER, share_16_39 VARCHAR)
SELECT MAX(episode) FROM table_29773532_21 WHERE share_16_39 = "23,22%"
### Context: CREATE TABLE table_29773532_21 (episode INTEGER, share_16_39 VARCHAR) ### Question: Which episode had a share 16-19 of 23,22%? ### Answer: SELECT MAX(episode) FROM table_29773532_21 WHERE share_16_39 = "23,22%"
What was the official rating 16-39 of episode 9?
CREATE TABLE table_29773532_21 (official_rating_16_39 VARCHAR, episode VARCHAR)
SELECT official_rating_16_39 FROM table_29773532_21 WHERE episode = 9
### Context: CREATE TABLE table_29773532_21 (official_rating_16_39 VARCHAR, episode VARCHAR) ### Question: What was the official rating 16-39 of episode 9? ### Answer: SELECT official_rating_16_39 FROM table_29773532_21 WHERE episode = 9
What is the intro date for the interface that equals pci?
CREATE TABLE table_29778616_1 (intro_date VARCHAR, interface VARCHAR)
SELECT intro_date FROM table_29778616_1 WHERE interface = "PCI"
### Context: CREATE TABLE table_29778616_1 (intro_date VARCHAR, interface VARCHAR) ### Question: What is the intro date for the interface that equals pci? ### Answer: SELECT intro_date FROM table_29778616_1 WHERE interface = "PCI"
What is the intro date for the throughput of 16 mbit/s?
CREATE TABLE table_29778616_1 (intro_date VARCHAR, throughput VARCHAR)
SELECT intro_date FROM table_29778616_1 WHERE throughput = "16 Mbit/s"
### Context: CREATE TABLE table_29778616_1 (intro_date VARCHAR, throughput VARCHAR) ### Question: What is the intro date for the throughput of 16 mbit/s? ### Answer: SELECT intro_date FROM table_29778616_1 WHERE throughput = "16 Mbit/s"
How many intro dates have the price of 686€?
CREATE TABLE table_29778616_1 (intro_date VARCHAR, price VARCHAR)
SELECT COUNT(intro_date) FROM table_29778616_1 WHERE price = "686€"
### Context: CREATE TABLE table_29778616_1 (intro_date VARCHAR, price VARCHAR) ### Question: How many intro dates have the price of 686€? ### Answer: SELECT COUNT(intro_date) FROM table_29778616_1 WHERE price = "686€"
What is the price for the manufacturer LETech?
CREATE TABLE table_29778616_1 (price VARCHAR, manufacturer VARCHAR)
SELECT price FROM table_29778616_1 WHERE manufacturer = "LETech"
### Context: CREATE TABLE table_29778616_1 (price VARCHAR, manufacturer VARCHAR) ### Question: What is the price for the manufacturer LETech? ### Answer: SELECT price FROM table_29778616_1 WHERE manufacturer = "LETech"
What is the price (usd) for the model pq32mu?
CREATE TABLE table_29778616_1 (price__usd_ INTEGER, model VARCHAR)
SELECT MIN(price__usd_) FROM table_29778616_1 WHERE model = "PQ32MU"
### Context: CREATE TABLE table_29778616_1 (price__usd_ INTEGER, model VARCHAR) ### Question: What is the price (usd) for the model pq32mu? ### Answer: SELECT MIN(price__usd_) FROM table_29778616_1 WHERE model = "PQ32MU"
Who is the manufacturer whose intro date is 2006 and their throughput is 4 mbit/s?
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"
### Context: CREATE TABLE table_29778616_1 (manufacturer VARCHAR, intro_date VARCHAR, throughput VARCHAR) ### Question: Who is the manufacturer whose intro date is 2006 and their throughput is 4 mbit/s? ### Answer: SELECT manufacturer FROM table_29778616_1 WHERE intro_date = "2006" AND throughput = "4 Mbit/s"
What was the Lok Sabha in Karakat (Vidhan Sabha Constituency)?
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)"
### Context: CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, vidhan_sabha_constituency VARCHAR) ### Question: What was the Lok Sabha in Karakat (Vidhan Sabha Constituency)? ### Answer: SELECT lok_sabha FROM table_29785324_5 WHERE vidhan_sabha_constituency = "Karakat (Vidhan Sabha constituency)"
How many were in the Kargahar (vidhan sabha constituency)?
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)"
### Context: CREATE TABLE table_29785324_5 (constituency_no INTEGER, vidhan_sabha_constituency VARCHAR) ### Question: How many were in the Kargahar (vidhan sabha constituency)? ### Answer: SELECT MIN(constituency_no) FROM table_29785324_5 WHERE vidhan_sabha_constituency = "Kargahar (Vidhan Sabha constituency)"
What district has 213 constituents?
CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR)
SELECT COUNT(district) FROM table_29785324_5 WHERE constituency_no = 213
### Context: CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR) ### Question: What district has 213 constituents? ### Answer: SELECT COUNT(district) FROM table_29785324_5 WHERE constituency_no = 213
How many Lok Sabha are in the one with 216 constituents?
CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, constituency_no VARCHAR)
SELECT lok_sabha FROM table_29785324_5 WHERE constituency_no = 216
### Context: CREATE TABLE table_29785324_5 (lok_sabha VARCHAR, constituency_no VARCHAR) ### Question: How many Lok Sabha are in the one with 216 constituents? ### Answer: SELECT lok_sabha FROM table_29785324_5 WHERE constituency_no = 216
How many countries spent at least $51.0 billion in international tourism in 2012?
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"
### Context: CREATE TABLE table_29789_3 (rank_2012 INTEGER, international_tourism_expenditure_2011 VARCHAR) ### Question: How many countries spent at least $51.0 billion in international tourism in 2012? ### Answer: SELECT MAX(rank_2012) FROM table_29789_3 WHERE international_tourism_expenditure_2011 = "$51.0 billion"
How many countries spent $83.7 billion on international tourism in 2012?
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"
### Context: CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2012 VARCHAR) ### Question: How many countries spent $83.7 billion on international tourism in 2012? ### Answer: SELECT COUNT(_percentage_change) FROM table_29789_3 WHERE international_tourism_expenditure_2012 = "$83.7 billion"
What was the percentage increase in spending on international tourism from 2011 to 2012 of the country that spent $85.9 billion in 2011?
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"
### Context: CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2011 VARCHAR) ### 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? ### Answer: SELECT _percentage_change FROM table_29789_3 WHERE international_tourism_expenditure_2011 = "$85.9 billion"
Which country saw a 5.7% increase in spending on international tourism between 2011 and 2012?
CREATE TABLE table_29789_3 (country VARCHAR, _percentage_change VARCHAR)
SELECT country FROM table_29789_3 WHERE _percentage_change = "5.7"
### Context: CREATE TABLE table_29789_3 (country VARCHAR, _percentage_change VARCHAR) ### Question: Which country saw a 5.7% increase in spending on international tourism between 2011 and 2012? ### Answer: SELECT country FROM table_29789_3 WHERE _percentage_change = "5.7"
Name the most other apps for league goals being 1
CREATE TABLE table_2979789_1 (other_apps INTEGER, league_goals VARCHAR)
SELECT MAX(other_apps) FROM table_2979789_1 WHERE league_goals = 1
### Context: CREATE TABLE table_2979789_1 (other_apps INTEGER, league_goals VARCHAR) ### Question: Name the most other apps for league goals being 1 ### Answer: SELECT MAX(other_apps) FROM table_2979789_1 WHERE league_goals = 1
Name the most fa cup apps for league apps being 27
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
### Context: CREATE TABLE table_2979789_1 (fa_cup_apps INTEGER, league_apps VARCHAR) ### Question: Name the most fa cup apps for league apps being 27 ### Answer: SELECT MAX(fa_cup_apps) FROM table_2979789_1 WHERE league_apps = 27
Name the total number of division for fa cups being 9
CREATE TABLE table_2979789_1 (division VARCHAR, fa_cup_apps VARCHAR)
SELECT COUNT(division) FROM table_2979789_1 WHERE fa_cup_apps = 9
### Context: CREATE TABLE table_2979789_1 (division VARCHAR, fa_cup_apps VARCHAR) ### Question: Name the total number of division for fa cups being 9 ### Answer: SELECT COUNT(division) FROM table_2979789_1 WHERE fa_cup_apps = 9
How many international tourists visited Russia in 2012?
CREATE TABLE table_29789_1 (international_tourist_arrivals__2012_ VARCHAR, country VARCHAR)
SELECT international_tourist_arrivals__2012_ FROM table_29789_1 WHERE country = "Russia"
### Context: CREATE TABLE table_29789_1 (international_tourist_arrivals__2012_ VARCHAR, country VARCHAR) ### Question: How many international tourists visited Russia in 2012? ### Answer: SELECT international_tourist_arrivals__2012_ FROM table_29789_1 WHERE country = "Russia"
What was the premiere date for the episode whose alternate title was miłość i przeznaczenie?
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"
### Context: CREATE TABLE table_29799700_2 (series_premiere VARCHAR, alternante_title VARCHAR) ### Question: What was the premiere date for the episode whose alternate title was miłość i przeznaczenie? ### Answer: SELECT series_premiere FROM table_29799700_2 WHERE alternante_title = "Miłość i przeznaczenie"
Which TV network had its series finale on May 7, 2012?
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"
### Context: CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, series_finale VARCHAR) ### Question: Which TV network had its series finale on May 7, 2012? ### Answer: SELECT tv_network_s_ FROM table_29799700_2 WHERE series_finale = "May 7, 2012"
What was the date of the series premiere whose TV network was TV3?
CREATE TABLE table_29799700_2 (series_premiere VARCHAR, tv_network_s_ VARCHAR)
SELECT series_premiere FROM table_29799700_2 WHERE tv_network_s_ = "TV3"
### Context: CREATE TABLE table_29799700_2 (series_premiere VARCHAR, tv_network_s_ VARCHAR) ### Question: What was the date of the series premiere whose TV network was TV3? ### Answer: SELECT series_premiere FROM table_29799700_2 WHERE tv_network_s_ = "TV3"
Which TV network has a country of origin of Iran?
CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, country VARCHAR)
SELECT tv_network_s_ FROM table_29799700_2 WHERE country = "Iran"
### Context: CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, country VARCHAR) ### Question: Which TV network has a country of origin of Iran? ### Answer: SELECT tv_network_s_ FROM table_29799700_2 WHERE country = "Iran"
What was the date of the series finale for Peru?
CREATE TABLE table_29799700_2 (series_finale VARCHAR, country VARCHAR)
SELECT series_finale FROM table_29799700_2 WHERE country = "Peru"
### Context: CREATE TABLE table_29799700_2 (series_finale VARCHAR, country VARCHAR) ### Question: What was the date of the series finale for Peru? ### Answer: SELECT series_finale FROM table_29799700_2 WHERE country = "Peru"
What is every original air date with U.S. viewers of 0.23 million?
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"
### Context: CREATE TABLE table_29803475_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is every original air date with U.S. viewers of 0.23 million? ### Answer: SELECT original_air_date FROM table_29803475_2 WHERE us_viewers__million_ = "0.23"
What is the lowest number in series when U.S. viewers is 0.23 million?
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"
### Context: CREATE TABLE table_29803475_2 (no_in_series INTEGER, us_viewers__million_ VARCHAR) ### Question: What is the lowest number in series when U.S. viewers is 0.23 million? ### Answer: SELECT MIN(no_in_series) FROM table_29803475_2 WHERE us_viewers__million_ = "0.23"
What were the total apps for Dunne in season where he had 0 league goals?
CREATE TABLE table_2980024_1 (total_apps VARCHAR, league_goals VARCHAR)
SELECT total_apps FROM table_2980024_1 WHERE league_goals = 0
### Context: CREATE TABLE table_2980024_1 (total_apps VARCHAR, league_goals VARCHAR) ### Question: What were the total apps for Dunne in season where he had 0 league goals? ### Answer: SELECT total_apps FROM table_2980024_1 WHERE league_goals = 0
How many league goals did Dunne have in the season where he had 2 league apps?
CREATE TABLE table_2980024_1 (league_goals VARCHAR, league_apps VARCHAR)
SELECT league_goals FROM table_2980024_1 WHERE league_apps = 2
### Context: CREATE TABLE table_2980024_1 (league_goals VARCHAR, league_apps VARCHAR) ### Question: How many league goals did Dunne have in the season where he had 2 league apps? ### Answer: SELECT league_goals FROM table_2980024_1 WHERE league_apps = 2
How many other goals did Dunne have in the season where he had 1 league goal?
CREATE TABLE table_2980024_1 (other_goals VARCHAR, league_goals VARCHAR)
SELECT other_goals FROM table_2980024_1 WHERE league_goals = 1
### Context: CREATE TABLE table_2980024_1 (other_goals VARCHAR, league_goals VARCHAR) ### Question: How many other goals did Dunne have in the season where he had 1 league goal? ### Answer: SELECT other_goals FROM table_2980024_1 WHERE league_goals = 1
When boston university is the team what is the record?
CREATE TABLE table_29846807_5 (record VARCHAR, team VARCHAR)
SELECT record FROM table_29846807_5 WHERE team = "Boston University"
### Context: CREATE TABLE table_29846807_5 (record VARCHAR, team VARCHAR) ### Question: When boston university is the team what is the record? ### Answer: SELECT record FROM table_29846807_5 WHERE team = "Boston University"
What is the subject when the highest mark is 79?
CREATE TABLE table_29842201_1 (subject VARCHAR, highest_mark VARCHAR)
SELECT subject FROM table_29842201_1 WHERE highest_mark = 79
### Context: CREATE TABLE table_29842201_1 (subject VARCHAR, highest_mark VARCHAR) ### Question: What is the subject when the highest mark is 79? ### Answer: SELECT subject FROM table_29842201_1 WHERE highest_mark = 79
How many lowest mark entries are there when % passed is 76?
CREATE TABLE table_29842201_1 (lowest_mark VARCHAR, _percentage_pass VARCHAR)
SELECT COUNT(lowest_mark) FROM table_29842201_1 WHERE _percentage_pass = 76
### Context: CREATE TABLE table_29842201_1 (lowest_mark VARCHAR, _percentage_pass VARCHAR) ### Question: How many lowest mark entries are there when % passed is 76? ### Answer: SELECT COUNT(lowest_mark) FROM table_29842201_1 WHERE _percentage_pass = 76
if the flm winning team is no. 99 jmb racing what is the name of the lmp2 winning team
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"
### Context: CREATE TABLE table_29826467_2 (lmp2_winning_team VARCHAR, flm_winning_team VARCHAR) ### Question: if the flm winning team is no. 99 jmb racing what is the name of the lmp2 winning team ### Answer: SELECT lmp2_winning_team FROM table_29826467_2 WHERE flm_winning_team = "No. 99 JMB Racing"
Who is every high rebound when the team is Mount St. Mary's?
CREATE TABLE table_29846807_4 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_29846807_4 WHERE team = "Mount St. Mary's"
### Context: CREATE TABLE table_29846807_4 (high_rebounds VARCHAR, team VARCHAR) ### Question: Who is every high rebound when the team is Mount St. Mary's? ### Answer: SELECT high_rebounds FROM table_29846807_4 WHERE team = "Mount St. Mary's"
What position was serena abrami in?
CREATE TABLE table_29857115_4 (position VARCHAR, singer VARCHAR)
SELECT position FROM table_29857115_4 WHERE singer = "Serena Abrami"
### Context: CREATE TABLE table_29857115_4 (position VARCHAR, singer VARCHAR) ### Question: What position was serena abrami in? ### Answer: SELECT position FROM table_29857115_4 WHERE singer = "Serena Abrami"
What was gabriella ferrone's result on the 5th evening?
CREATE TABLE table_29857115_4 (singer VARCHAR)
SELECT 5 AS th_evening FROM table_29857115_4 WHERE singer = "Gabriella Ferrone"
### Context: CREATE TABLE table_29857115_4 (singer VARCHAR) ### Question: What was gabriella ferrone's result on the 5th evening? ### Answer: SELECT 5 AS th_evening FROM table_29857115_4 WHERE singer = "Gabriella Ferrone"
What is the maximum overall number?
CREATE TABLE table_2985714_2 (_number INTEGER)
SELECT MAX(_number) FROM table_2985714_2
### Context: CREATE TABLE table_2985714_2 (_number INTEGER) ### Question: What is the maximum overall number? ### Answer: SELECT MAX(_number) FROM table_2985714_2
When the number is 2 what is the lowest amount of al-wedhat wins?
CREATE TABLE table_2985714_2 (al_wehdat_wins INTEGER, _number VARCHAR)
SELECT MIN(al_wehdat_wins) FROM table_2985714_2 WHERE _number = 2
### Context: CREATE TABLE table_2985714_2 (al_wehdat_wins INTEGER, _number VARCHAR) ### Question: When the number is 2 what is the lowest amount of al-wedhat wins? ### Answer: SELECT MIN(al_wehdat_wins) FROM table_2985714_2 WHERE _number = 2
When jordan fa cup is the tournament how many draws?
CREATE TABLE table_2985714_2 (draws VARCHAR, tournament VARCHAR)
SELECT COUNT(draws) FROM table_2985714_2 WHERE tournament = "Jordan FA Cup"
### Context: CREATE TABLE table_2985714_2 (draws VARCHAR, tournament VARCHAR) ### Question: When jordan fa cup is the tournament how many draws? ### Answer: SELECT COUNT(draws) FROM table_2985714_2 WHERE tournament = "Jordan FA Cup"
What is the highest value of area when capital is San Juan?
CREATE TABLE table_298550_1 (area__km²_ INTEGER, capital VARCHAR)
SELECT MAX(area__km²_) FROM table_298550_1 WHERE capital = "San Juan"
### Context: CREATE TABLE table_298550_1 (area__km²_ INTEGER, capital VARCHAR) ### Question: What is the highest value of area when capital is San Juan? ### Answer: SELECT MAX(area__km²_) FROM table_298550_1 WHERE capital = "San Juan"
How many entries for area correspond to a population density of 207.9?
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"
### Context: CREATE TABLE table_298550_1 (area__km²_ VARCHAR, population_density__per_km²_ VARCHAR) ### Question: How many entries for area correspond to a population density of 207.9? ### Answer: SELECT COUNT(area__km²_) FROM table_298550_1 WHERE population_density__per_km²_ = "207.9"
What is every entry for area if capital is Port-au-Prince?
CREATE TABLE table_298550_1 (area__km²_ VARCHAR, capital VARCHAR)
SELECT area__km²_ FROM table_298550_1 WHERE capital = "Port-au-Prince"
### Context: CREATE TABLE table_298550_1 (area__km²_ VARCHAR, capital VARCHAR) ### Question: What is every entry for area if capital is Port-au-Prince? ### Answer: SELECT area__km²_ FROM table_298550_1 WHERE capital = "Port-au-Prince"
What is every country with a flag with population of 11346670?
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
### Context: CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR) ### Question: What is every country with a flag with population of 11346670? ### Answer: SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670
What is the highest value for population when area is 9104?
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
### Context: CREATE TABLE table_298550_1 (population__1_july_2005_est_ INTEGER, area__km²_ VARCHAR) ### Question: What is the highest value for population when area is 9104? ### Answer: SELECT MAX(population__1_july_2005_est_) FROM table_298550_1 WHERE area__km²_ = 9104
What many times was the victoria derby raced?
CREATE TABLE table_2985987_2 (date VARCHAR, race VARCHAR)
SELECT COUNT(date) FROM table_2985987_2 WHERE race = "Victoria Derby"
### Context: CREATE TABLE table_2985987_2 (date VARCHAR, race VARCHAR) ### Question: What many times was the victoria derby raced? ### Answer: SELECT COUNT(date) FROM table_2985987_2 WHERE race = "Victoria Derby"
What is the autumn classic weight?
CREATE TABLE table_2985987_2 (weight__kg_ VARCHAR, race VARCHAR)
SELECT weight__kg_ FROM table_2985987_2 WHERE race = "Autumn Classic"
### Context: CREATE TABLE table_2985987_2 (weight__kg_ VARCHAR, race VARCHAR) ### Question: What is the autumn classic weight? ### Answer: SELECT weight__kg_ FROM table_2985987_2 WHERE race = "Autumn Classic"
Who directed the episode that had 3.55 million viewers?
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"
### Context: CREATE TABLE table_29897962_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed the episode that had 3.55 million viewers? ### Answer: SELECT directed_by FROM table_29897962_1 WHERE us_viewers__million_ = "3.55"
What are the dimensions of the coin worth ₩200?
CREATE TABLE table_298883_5 (dimensions VARCHAR, value VARCHAR)
SELECT dimensions FROM table_298883_5 WHERE value = "₩200"
### Context: CREATE TABLE table_298883_5 (dimensions VARCHAR, value VARCHAR) ### Question: What are the dimensions of the coin worth ₩200? ### Answer: SELECT dimensions FROM table_298883_5 WHERE value = "₩200"
How many different dates of issue are the for the coin with kumsusan memorial palace on the obverse?
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"
### Context: CREATE TABLE table_298883_5 (date_of_issue VARCHAR, obverse VARCHAR) ### Question: How many different dates of issue are the for the coin with kumsusan memorial palace on the obverse? ### Answer: SELECT COUNT(date_of_issue) FROM table_298883_5 WHERE obverse = "Kumsusan Memorial Palace"
What are the dimensions of the coin issued in 1992 with kim il-sung on the obverse?
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"
### Context: CREATE TABLE table_298883_5 (dimensions VARCHAR, obverse VARCHAR, date_of_issue VARCHAR) ### Question: What are the dimensions of the coin issued in 1992 with kim il-sung on the obverse? ### Answer: SELECT dimensions FROM table_298883_5 WHERE obverse = "Kim Il-sung" AND date_of_issue = "1992"
What is on the reverse side of the ₩500 coin?
CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)
SELECT reverse FROM table_298883_5 WHERE value = "₩500"
### Context: CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR) ### Question: What is on the reverse side of the ₩500 coin? ### Answer: SELECT reverse FROM table_298883_5 WHERE value = "₩500"
What is on the reverse side of the ₩100 coin?
CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR)
SELECT reverse FROM table_298883_5 WHERE value = "₩100"
### Context: CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR) ### Question: What is on the reverse side of the ₩100 coin? ### Answer: SELECT reverse FROM table_298883_5 WHERE value = "₩100"
What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side?
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"
### Context: CREATE TABLE table_298883_5 (dimensions VARCHAR, reverse VARCHAR) ### Question: What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side? ### Answer: SELECT dimensions FROM table_298883_5 WHERE reverse = "Western sea barrage and locks at Taedong Gang"
What are all the name(namesakes) for the entire chart?
CREATE TABLE table_29860752_11 (name__namesake_ VARCHAR)
SELECT name__namesake_ FROM table_29860752_11
### Context: CREATE TABLE table_29860752_11 (name__namesake_ VARCHAR) ### Question: What are all the name(namesakes) for the entire chart? ### Answer: SELECT name__namesake_ FROM table_29860752_11
What TV season was the 1st season?
CREATE TABLE table_299121_2 (tv_season VARCHAR, season VARCHAR)
SELECT tv_season FROM table_299121_2 WHERE season = "1st"
### Context: CREATE TABLE table_299121_2 (tv_season VARCHAR, season VARCHAR) ### Question: What TV season was the 1st season? ### Answer: SELECT tv_season FROM table_299121_2 WHERE season = "1st"
When was the 3rd season premiere originally aired?
CREATE TABLE table_299121_2 (season VARCHAR)
SELECT season AS premiere FROM table_299121_2 WHERE season = "3rd"
### Context: CREATE TABLE table_299121_2 (season VARCHAR) ### Question: When was the 3rd season premiere originally aired? ### Answer: SELECT season AS premiere FROM table_299121_2 WHERE season = "3rd"
What was the 2nd's season's ranking?
CREATE TABLE table_299121_2 (ranking VARCHAR, season VARCHAR)
SELECT ranking FROM table_299121_2 WHERE season = "2nd"
### Context: CREATE TABLE table_299121_2 (ranking VARCHAR, season VARCHAR) ### Question: What was the 2nd's season's ranking? ### Answer: SELECT ranking FROM table_299121_2 WHERE season = "2nd"
When did the season premiere that saw 8.4 million viewers first air?
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"
### Context: CREATE TABLE table_299121_2 (season VARCHAR, viewers__in_millions_ VARCHAR) ### Question: When did the season premiere that saw 8.4 million viewers first air? ### Answer: SELECT season AS premiere FROM table_299121_2 WHERE viewers__in_millions_ = "8.4"
Who directed the episode that was watched by 2.97 million U.S. viewers?
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"
### Context: CREATE TABLE table_29920800_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed the episode that was watched by 2.97 million U.S. viewers? ### Answer: SELECT directed_by FROM table_29920800_1 WHERE us_viewers__million_ = "2.97"
What is the original air date of the episode written by Liz Feldman?
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"
### Context: CREATE TABLE table_29920800_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the original air date of the episode written by Liz Feldman? ### Answer: SELECT original_air_date FROM table_29920800_1 WHERE written_by = "Liz Feldman"
Who wrote the episode that was watched by 2.97 million U.S. viewers?
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"
### Context: CREATE TABLE table_29920800_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote the episode that was watched by 2.97 million U.S. viewers? ### Answer: SELECT written_by FROM table_29920800_1 WHERE us_viewers__million_ = "2.97"
How many millions of U.S viewers watched the episode written by Liz Feldman?
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"
### Context: CREATE TABLE table_29920800_1 (us_viewers__million_ VARCHAR, written_by VARCHAR) ### Question: How many millions of U.S viewers watched the episode written by Liz Feldman? ### Answer: SELECT us_viewers__million_ FROM table_29920800_1 WHERE written_by = "Liz Feldman"
How many people attended the uefa champions league competition?
CREATE TABLE table_299271_2 (attendance VARCHAR, competition VARCHAR)
SELECT attendance FROM table_299271_2 WHERE competition = "UEFA Champions League"
### Context: CREATE TABLE table_299271_2 (attendance VARCHAR, competition VARCHAR) ### Question: How many people attended the uefa champions league competition? ### Answer: SELECT attendance FROM table_299271_2 WHERE competition = "UEFA Champions League"
How many women has reached the title of Miss International representing the country ranked as number 1?
CREATE TABLE table_29942205_1 (miss_international INTEGER, rank VARCHAR)
SELECT MIN(miss_international) FROM table_29942205_1 WHERE rank = 1
### Context: CREATE TABLE table_29942205_1 (miss_international INTEGER, rank VARCHAR) ### Question: How many women has reached the title of Miss International representing the country ranked as number 1? ### Answer: SELECT MIN(miss_international) FROM table_29942205_1 WHERE rank = 1
How many women has got the first runner-up position in representation of Philippines?
CREATE TABLE table_29942205_1 (country_territory VARCHAR)
SELECT 1 AS st_runner_up FROM table_29942205_1 WHERE country_territory = "Philippines"
### Context: CREATE TABLE table_29942205_1 (country_territory VARCHAR) ### Question: How many women has got the first runner-up position in representation of Philippines? ### Answer: SELECT 1 AS st_runner_up FROM table_29942205_1 WHERE country_territory = "Philippines"