question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who was the under-15 when Moises Galvez was the under-17? | CREATE TABLE table_26368963_1 (under_15 VARCHAR, under_17 VARCHAR) | SELECT under_15 FROM table_26368963_1 WHERE under_17 = "Moises Galvez" | ### Context: CREATE TABLE table_26368963_1 (under_15 VARCHAR, under_17 VARCHAR) ### Question: Who was the under-15 when Moises Galvez was the under-17? ### Answer: SELECT under_15 FROM table_26368963_1 WHERE under_17 = "Moises Galvez" |
How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez? | CREATE TABLE table_26368963_1 (year VARCHAR, under_15 VARCHAR, under_19 VARCHAR) | SELECT COUNT(year) FROM table_26368963_1 WHERE under_15 = "Arturo Salazar Martinez" AND under_19 = "Moises Galvez" | ### Context: CREATE TABLE table_26368963_1 (year VARCHAR, under_15 VARCHAR, under_19 VARCHAR) ### Question: How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez? ### Answer: SELECT COUNT(year) FROM table_26368963_1 WHERE under_15 = "Arturo Salazar Martinez" AND under_19 = "Moises Galvez" |
When the under-11 was Aly Abou El Einen, who was the under-13? | CREATE TABLE table_26368963_1 (under_13 VARCHAR, under_11 VARCHAR) | SELECT under_13 FROM table_26368963_1 WHERE under_11 = "Aly Abou El Einen" | ### Context: CREATE TABLE table_26368963_1 (under_13 VARCHAR, under_11 VARCHAR) ### Question: When the under-11 was Aly Abou El Einen, who was the under-13? ### Answer: SELECT under_13 FROM table_26368963_1 WHERE under_11 = "Aly Abou El Einen" |
What is the election date for those politicians who left office on 1850-11-15? | CREATE TABLE table_26362472_1 (election_date VARCHAR, left_office VARCHAR) | SELECT COUNT(election_date) FROM table_26362472_1 WHERE left_office = "1850-11-15" | ### Context: CREATE TABLE table_26362472_1 (election_date VARCHAR, left_office VARCHAR) ### Question: What is the election date for those politicians who left office on 1850-11-15? ### Answer: SELECT COUNT(election_date) FROM table_26362472_1 WHERE left_office = "1850-11-15" |
What are the election date for elections held in the province of Albacete? | CREATE TABLE table_26362472_1 (election_date VARCHAR, province VARCHAR) | SELECT election_date FROM table_26362472_1 WHERE province = "Albacete" | ### Context: CREATE TABLE table_26362472_1 (election_date VARCHAR, province VARCHAR) ### Question: What are the election date for elections held in the province of Albacete? ### Answer: SELECT election_date FROM table_26362472_1 WHERE province = "Albacete" |
What is the date in which a politician who left office on 1840-10-11 for a politician whose election number was 11? | CREATE TABLE table_26362472_1 (left_office VARCHAR, election_number VARCHAR) | SELECT left_office FROM table_26362472_1 WHERE election_number = 11 | ### Context: CREATE TABLE table_26362472_1 (left_office VARCHAR, election_number VARCHAR) ### Question: What is the date in which a politician who left office on 1840-10-11 for a politician whose election number was 11? ### Answer: SELECT left_office FROM table_26362472_1 WHERE election_number = 11 |
In how many district has a politician took office on 1844-10-14? | CREATE TABLE table_26362472_1 (district VARCHAR, took_office VARCHAR) | SELECT district FROM table_26362472_1 WHERE took_office = "1844-10-14" | ### Context: CREATE TABLE table_26362472_1 (district VARCHAR, took_office VARCHAR) ### Question: In how many district has a politician took office on 1844-10-14? ### Answer: SELECT district FROM table_26362472_1 WHERE took_office = "1844-10-14" |
What are the dates of leaving office for politician from the province of Seville? | CREATE TABLE table_26362472_1 (left_office VARCHAR, province VARCHAR) | SELECT left_office FROM table_26362472_1 WHERE province = "Seville" | ### Context: CREATE TABLE table_26362472_1 (left_office VARCHAR, province VARCHAR) ### Question: What are the dates of leaving office for politician from the province of Seville? ### Answer: SELECT left_office FROM table_26362472_1 WHERE province = "Seville" |
When united arab emirates is the country how many fastest qualifying are there? | CREATE TABLE table_26358264_2 (fastest_qualifying VARCHAR, country VARCHAR) | SELECT COUNT(fastest_qualifying) FROM table_26358264_2 WHERE country = "United Arab Emirates" | ### Context: CREATE TABLE table_26358264_2 (fastest_qualifying VARCHAR, country VARCHAR) ### Question: When united arab emirates is the country how many fastest qualifying are there? ### Answer: SELECT COUNT(fastest_qualifying) FROM table_26358264_2 WHERE country = "United Arab Emirates" |
When cancelled is the fastest qualifying where is the location? | CREATE TABLE table_26358264_2 (location VARCHAR, fastest_qualifying VARCHAR) | SELECT location FROM table_26358264_2 WHERE fastest_qualifying = "Cancelled" | ### Context: CREATE TABLE table_26358264_2 (location VARCHAR, fastest_qualifying VARCHAR) ### Question: When cancelled is the fastest qualifying where is the location? ### Answer: SELECT location FROM table_26358264_2 WHERE fastest_qualifying = "Cancelled" |
When united arab emirates is the country what is the winning aircraft? | CREATE TABLE table_26358264_2 (winning_aircraft VARCHAR, country VARCHAR) | SELECT winning_aircraft FROM table_26358264_2 WHERE country = "United Arab Emirates" | ### Context: CREATE TABLE table_26358264_2 (winning_aircraft VARCHAR, country VARCHAR) ### Question: When united arab emirates is the country what is the winning aircraft? ### Answer: SELECT winning_aircraft FROM table_26358264_2 WHERE country = "United Arab Emirates" |
List the number of assists against illinois-chicago. | CREATE TABLE table_26360571_2 (assists VARCHAR, opponent VARCHAR) | SELECT assists FROM table_26360571_2 WHERE opponent = "Illinois-Chicago" | ### Context: CREATE TABLE table_26360571_2 (assists VARCHAR, opponent VARCHAR) ### Question: List the number of assists against illinois-chicago. ### Answer: SELECT assists FROM table_26360571_2 WHERE opponent = "Illinois-Chicago" |
List the opposing team on february 15, 2003. | CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_26360571_2 WHERE date = "February 15, 2003" | ### Context: CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR) ### Question: List the opposing team on february 15, 2003. ### Answer: SELECT opponent FROM table_26360571_2 WHERE date = "February 15, 2003" |
List the number of recovers for player #2. | CREATE TABLE table_26360571_2 (rebounds VARCHAR, _number VARCHAR) | SELECT rebounds FROM table_26360571_2 WHERE _number = 2 | ### Context: CREATE TABLE table_26360571_2 (rebounds VARCHAR, _number VARCHAR) ### Question: List the number of recovers for player #2. ### Answer: SELECT rebounds FROM table_26360571_2 WHERE _number = 2 |
List the opposing team from february 22, 1983. | CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_26360571_2 WHERE date = "February 22, 1983" | ### Context: CREATE TABLE table_26360571_2 (opponent VARCHAR, date VARCHAR) ### Question: List the opposing team from february 22, 1983. ### Answer: SELECT opponent FROM table_26360571_2 WHERE date = "February 22, 1983" |
List the lowest number of assists. | CREATE TABLE table_26360571_2 (assists INTEGER) | SELECT MIN(assists) FROM table_26360571_2 | ### Context: CREATE TABLE table_26360571_2 (assists INTEGER) ### Question: List the lowest number of assists. ### Answer: SELECT MIN(assists) FROM table_26360571_2 |
What is every value for Under-11 when value of under-17 is Salma Nassar? | CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_17 VARCHAR) | SELECT under_11 FROM table_26368963_2 WHERE under_17 = "Salma Nassar" | ### Context: CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_17 VARCHAR) ### Question: What is every value for Under-11 when value of under-17 is Salma Nassar? ### Answer: SELECT under_11 FROM table_26368963_2 WHERE under_17 = "Salma Nassar" |
What is every value for Under-13 when value for Under-15 is Maria Elena Ubina? | CREATE TABLE table_26368963_2 (under_13 VARCHAR, under_15 VARCHAR) | SELECT under_13 FROM table_26368963_2 WHERE under_15 = "Maria Elena Ubina" | ### Context: CREATE TABLE table_26368963_2 (under_13 VARCHAR, under_15 VARCHAR) ### Question: What is every value for Under-13 when value for Under-15 is Maria Elena Ubina? ### Answer: SELECT under_13 FROM table_26368963_2 WHERE under_15 = "Maria Elena Ubina" |
What is every value for Under-17 if Under-15 is Maria Elena Ubina? | CREATE TABLE table_26368963_2 (under_17 VARCHAR, under_15 VARCHAR) | SELECT under_17 FROM table_26368963_2 WHERE under_15 = "Maria Elena Ubina" | ### Context: CREATE TABLE table_26368963_2 (under_17 VARCHAR, under_15 VARCHAR) ### Question: What is every value for Under-17 if Under-15 is Maria Elena Ubina? ### Answer: SELECT under_17 FROM table_26368963_2 WHERE under_15 = "Maria Elena Ubina" |
What is every value for Under-11 if Under-19 is Leong Siu Lynn? | CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_19 VARCHAR) | SELECT under_11 FROM table_26368963_2 WHERE under_19 = "Leong Siu Lynn" | ### Context: CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_19 VARCHAR) ### Question: What is every value for Under-11 if Under-19 is Leong Siu Lynn? ### Answer: SELECT under_11 FROM table_26368963_2 WHERE under_19 = "Leong Siu Lynn" |
Who is every Under-15 if Under-11 is Reeham Sedky? | CREATE TABLE table_26368963_2 (under_15 VARCHAR, under_11 VARCHAR) | SELECT under_15 FROM table_26368963_2 WHERE under_11 = "Reeham Sedky" | ### Context: CREATE TABLE table_26368963_2 (under_15 VARCHAR, under_11 VARCHAR) ### Question: Who is every Under-15 if Under-11 is Reeham Sedky? ### Answer: SELECT under_15 FROM table_26368963_2 WHERE under_11 = "Reeham Sedky" |
How many couples had a vote percentage of 9.5%? | CREATE TABLE table_26375386_16 (rank VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(rank) FROM table_26375386_16 WHERE vote_percentage = "9.5%" | ### Context: CREATE TABLE table_26375386_16 (rank VARCHAR, vote_percentage VARCHAR) ### Question: How many couples had a vote percentage of 9.5%? ### Answer: SELECT COUNT(rank) FROM table_26375386_16 WHERE vote_percentage = "9.5%" |
What was the lowest judge rank for danny and frankie? | CREATE TABLE table_26375386_16 (judges INTEGER, couple VARCHAR) | SELECT MIN(judges) FROM table_26375386_16 WHERE couple = "Danny and Frankie" | ### Context: CREATE TABLE table_26375386_16 (judges INTEGER, couple VARCHAR) ### Question: What was the lowest judge rank for danny and frankie? ### Answer: SELECT MIN(judges) FROM table_26375386_16 WHERE couple = "Danny and Frankie" |
What couple had a total of 8? | CREATE TABLE table_26375386_16 (couple VARCHAR, total VARCHAR) | SELECT couple FROM table_26375386_16 WHERE total = 8 | ### Context: CREATE TABLE table_26375386_16 (couple VARCHAR, total VARCHAR) ### Question: What couple had a total of 8? ### Answer: SELECT couple FROM table_26375386_16 WHERE total = 8 |
What is the change in population since 1993 in the region where the % of country's population was 4.2? | CREATE TABLE table_2637317_1 (change_in_population_since_1993 VARCHAR, _percentage_of_countrys_population VARCHAR) | SELECT COUNT(change_in_population_since_1993) FROM table_2637317_1 WHERE _percentage_of_countrys_population = "4.2" | ### Context: CREATE TABLE table_2637317_1 (change_in_population_since_1993 VARCHAR, _percentage_of_countrys_population VARCHAR) ### Question: What is the change in population since 1993 in the region where the % of country's population was 4.2? ### Answer: SELECT COUNT(change_in_population_since_1993) FROM table_2637317_1 WHERE _percentage_of_countrys_population = "4.2" |
What is the broadcast are for channel 1? | CREATE TABLE table_2638104_1 (broadcast_area VARCHAR, channel VARCHAR) | SELECT broadcast_area FROM table_2638104_1 WHERE channel = 1 | ### Context: CREATE TABLE table_2638104_1 (broadcast_area VARCHAR, channel VARCHAR) ### Question: What is the broadcast are for channel 1? ### Answer: SELECT broadcast_area FROM table_2638104_1 WHERE channel = 1 |
What is the call sign for channel 6? | CREATE TABLE table_2638104_1 (callsign VARCHAR, channel VARCHAR) | SELECT callsign FROM table_2638104_1 WHERE channel = 6 | ### Context: CREATE TABLE table_2638104_1 (callsign VARCHAR, channel VARCHAR) ### Question: What is the call sign for channel 6? ### Answer: SELECT callsign FROM table_2638104_1 WHERE channel = 6 |
How many channels are there in the Greater Tokyo area? | CREATE TABLE table_2638104_1 (channel VARCHAR, broadcast_area VARCHAR) | SELECT COUNT(channel) FROM table_2638104_1 WHERE broadcast_area = "Greater Tokyo" | ### Context: CREATE TABLE table_2638104_1 (channel VARCHAR, broadcast_area VARCHAR) ### Question: How many channels are there in the Greater Tokyo area? ### Answer: SELECT COUNT(channel) FROM table_2638104_1 WHERE broadcast_area = "Greater Tokyo" |
What is the signal power for JOAB-DTV? | CREATE TABLE table_2638104_1 (signal_power VARCHAR, callsign VARCHAR) | SELECT signal_power FROM table_2638104_1 WHERE callsign = "JOAB-DTV" | ### Context: CREATE TABLE table_2638104_1 (signal_power VARCHAR, callsign VARCHAR) ### Question: What is the signal power for JOAB-DTV? ### Answer: SELECT signal_power FROM table_2638104_1 WHERE callsign = "JOAB-DTV" |
How many times is the voting percentage 10.7% | CREATE TABLE table_26375386_20 (rank VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(rank) FROM table_26375386_20 WHERE vote_percentage = "10.7%" | ### Context: CREATE TABLE table_26375386_20 (rank VARCHAR, vote_percentage VARCHAR) ### Question: How many times is the voting percentage 10.7% ### Answer: SELECT COUNT(rank) FROM table_26375386_20 WHERE vote_percentage = "10.7%" |
What is the vote percentage for the couple gary and maria? | CREATE TABLE table_26375386_20 (vote_percentage VARCHAR, couple VARCHAR) | SELECT vote_percentage FROM table_26375386_20 WHERE couple = "Gary and Maria" | ### Context: CREATE TABLE table_26375386_20 (vote_percentage VARCHAR, couple VARCHAR) ### Question: What is the vote percentage for the couple gary and maria? ### Answer: SELECT vote_percentage FROM table_26375386_20 WHERE couple = "Gary and Maria" |
what couple had a vote percentage of 5.8%? | CREATE TABLE table_26375386_20 (couple VARCHAR, vote_percentage VARCHAR) | SELECT couple FROM table_26375386_20 WHERE vote_percentage = "5.8%" | ### Context: CREATE TABLE table_26375386_20 (couple VARCHAR, vote_percentage VARCHAR) ### Question: what couple had a vote percentage of 5.8%? ### Answer: SELECT couple FROM table_26375386_20 WHERE vote_percentage = "5.8%" |
What is the public when the vote percentage is 16.0% | CREATE TABLE table_26375386_20 (public VARCHAR, vote_percentage VARCHAR) | SELECT public FROM table_26375386_20 WHERE vote_percentage = "16.0%" | ### Context: CREATE TABLE table_26375386_20 (public VARCHAR, vote_percentage VARCHAR) ### Question: What is the public when the vote percentage is 16.0% ### Answer: SELECT public FROM table_26375386_20 WHERE vote_percentage = "16.0%" |
How many judges were there when the result is safe with a vote percentage of 10.7%? | CREATE TABLE table_26375386_20 (judges INTEGER, result VARCHAR, vote_percentage VARCHAR) | SELECT MIN(judges) FROM table_26375386_20 WHERE result = "Safe" AND vote_percentage = "10.7%" | ### Context: CREATE TABLE table_26375386_20 (judges INTEGER, result VARCHAR, vote_percentage VARCHAR) ### Question: How many judges were there when the result is safe with a vote percentage of 10.7%? ### Answer: SELECT MIN(judges) FROM table_26375386_20 WHERE result = "Safe" AND vote_percentage = "10.7%" |
How many times was the vote percentage 15.0%? | CREATE TABLE table_26375386_20 (total VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(total) FROM table_26375386_20 WHERE vote_percentage = "15.0%" | ### Context: CREATE TABLE table_26375386_20 (total VARCHAR, vote_percentage VARCHAR) ### Question: How many times was the vote percentage 15.0%? ### Answer: SELECT COUNT(total) FROM table_26375386_20 WHERE vote_percentage = "15.0%" |
What is the least place when the couple is Keiron & Brianne? | CREATE TABLE table_26375386_28 (place INTEGER, couple VARCHAR) | SELECT MIN(place) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" | ### Context: CREATE TABLE table_26375386_28 (place INTEGER, couple VARCHAR) ### Question: What is the least place when the couple is Keiron & Brianne? ### Answer: SELECT MIN(place) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" |
How many numbers of dances for place 1? | CREATE TABLE table_26375386_28 (number_of_dances VARCHAR, place VARCHAR) | SELECT COUNT(number_of_dances) FROM table_26375386_28 WHERE place = 1 | ### Context: CREATE TABLE table_26375386_28 (number_of_dances VARCHAR, place VARCHAR) ### Question: How many numbers of dances for place 1? ### Answer: SELECT COUNT(number_of_dances) FROM table_26375386_28 WHERE place = 1 |
How many ranks by average when Keiron & Brianne are the couple? | CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR) | SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" | ### Context: CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR) ### Question: How many ranks by average when Keiron & Brianne are the couple? ### Answer: SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" |
What is every average when number of dances is 1? | CREATE TABLE table_26375386_28 (average VARCHAR, number_of_dances VARCHAR) | SELECT average FROM table_26375386_28 WHERE number_of_dances = 1 | ### Context: CREATE TABLE table_26375386_28 (average VARCHAR, number_of_dances VARCHAR) ### Question: What is every average when number of dances is 1? ### Answer: SELECT average FROM table_26375386_28 WHERE number_of_dances = 1 |
How many ranks by average for the couple Tana and Stuart? | CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR) | SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = "Tana and Stuart" | ### Context: CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR) ### Question: How many ranks by average for the couple Tana and Stuart? ### Answer: SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = "Tana and Stuart" |
Name the rank for mikey and melanie | CREATE TABLE table_26375386_22 (rank VARCHAR, couple VARCHAR) | SELECT rank FROM table_26375386_22 WHERE couple = "Mikey and Melanie" | ### Context: CREATE TABLE table_26375386_22 (rank VARCHAR, couple VARCHAR) ### Question: Name the rank for mikey and melanie ### Answer: SELECT rank FROM table_26375386_22 WHERE couple = "Mikey and Melanie" |
Name the public for mikey and melanie | CREATE TABLE table_26375386_22 (public VARCHAR, couple VARCHAR) | SELECT public FROM table_26375386_22 WHERE couple = "Mikey and Melanie" | ### Context: CREATE TABLE table_26375386_22 (public VARCHAR, couple VARCHAR) ### Question: Name the public for mikey and melanie ### Answer: SELECT public FROM table_26375386_22 WHERE couple = "Mikey and Melanie" |
Name the judges for 4 public | CREATE TABLE table_26375386_22 (judges VARCHAR, public VARCHAR) | SELECT judges FROM table_26375386_22 WHERE public = 4 | ### Context: CREATE TABLE table_26375386_22 (judges VARCHAR, public VARCHAR) ### Question: Name the judges for 4 public ### Answer: SELECT judges FROM table_26375386_22 WHERE public = 4 |
Name the total number for 3 public | CREATE TABLE table_26375386_22 (total VARCHAR, public VARCHAR) | SELECT COUNT(total) FROM table_26375386_22 WHERE public = 3 | ### Context: CREATE TABLE table_26375386_22 (total VARCHAR, public VARCHAR) ### Question: Name the total number for 3 public ### Answer: SELECT COUNT(total) FROM table_26375386_22 WHERE public = 3 |
What is the number of directors for the film title Eldra? | CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR) | SELECT COUNT(director) FROM table_26385848_1 WHERE film_title = "Eldra" | ### Context: CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR) ### Question: What is the number of directors for the film title Eldra? ### Answer: SELECT COUNT(director) FROM table_26385848_1 WHERE film_title = "Eldra" |
What is the year (ceremony) for the film title Eldra? | CREATE TABLE table_26385848_1 (year__ceremony_ VARCHAR, film_title VARCHAR) | SELECT year__ceremony_ FROM table_26385848_1 WHERE film_title = "Eldra" | ### Context: CREATE TABLE table_26385848_1 (year__ceremony_ VARCHAR, film_title VARCHAR) ### Question: What is the year (ceremony) for the film title Eldra? ### Answer: SELECT year__ceremony_ FROM table_26385848_1 WHERE film_title = "Eldra" |
Who is the director for the film title Eldra? | CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR) | SELECT director FROM table_26385848_1 WHERE film_title = "Eldra" | ### Context: CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR) ### Question: Who is the director for the film title Eldra? ### Answer: SELECT director FROM table_26385848_1 WHERE film_title = "Eldra" |
In the year (ceremony) 1998 (71st), what are all the main languages? | CREATE TABLE table_26385848_1 (main_language_s_ VARCHAR, year__ceremony_ VARCHAR) | SELECT main_language_s_ FROM table_26385848_1 WHERE year__ceremony_ = "1998 (71st)" | ### Context: CREATE TABLE table_26385848_1 (main_language_s_ VARCHAR, year__ceremony_ VARCHAR) ### Question: In the year (ceremony) 1998 (71st), what are all the main languages? ### Answer: SELECT main_language_s_ FROM table_26385848_1 WHERE year__ceremony_ = "1998 (71st)" |
In the year (ceremony) 2009 (82nd), who are all the directors? | CREATE TABLE table_26385848_1 (director VARCHAR, year__ceremony_ VARCHAR) | SELECT director FROM table_26385848_1 WHERE year__ceremony_ = "2009 (82nd)" | ### Context: CREATE TABLE table_26385848_1 (director VARCHAR, year__ceremony_ VARCHAR) ### Question: In the year (ceremony) 2009 (82nd), who are all the directors? ### Answer: SELECT director FROM table_26385848_1 WHERE year__ceremony_ = "2009 (82nd)" |
In the year (ceremony) 1995 (68th), what is the film title? | CREATE TABLE table_26385848_1 (film_title VARCHAR, year__ceremony_ VARCHAR) | SELECT film_title FROM table_26385848_1 WHERE year__ceremony_ = "1995 (68th)" | ### Context: CREATE TABLE table_26385848_1 (film_title VARCHAR, year__ceremony_ VARCHAR) ### Question: In the year (ceremony) 1995 (68th), what is the film title? ### Answer: SELECT film_title FROM table_26385848_1 WHERE year__ceremony_ = "1995 (68th)" |
If the country of Origin is South Africa, who is the primary user? | CREATE TABLE table_26389588_1 (primary_user VARCHAR, country_of_origin VARCHAR) | SELECT primary_user FROM table_26389588_1 WHERE country_of_origin = "South Africa" | ### Context: CREATE TABLE table_26389588_1 (primary_user VARCHAR, country_of_origin VARCHAR) ### Question: If the country of Origin is South Africa, who is the primary user? ### Answer: SELECT primary_user FROM table_26389588_1 WHERE country_of_origin = "South Africa" |
If the Country of Origin is Denmark and the year of introduction is 1962, what is the primary cartridge? | CREATE TABLE table_26389588_1 (primary_cartridge VARCHAR, year_of_introduction VARCHAR, country_of_origin VARCHAR) | SELECT primary_cartridge FROM table_26389588_1 WHERE year_of_introduction = "1962" AND country_of_origin = "Denmark" | ### Context: CREATE TABLE table_26389588_1 (primary_cartridge VARCHAR, year_of_introduction VARCHAR, country_of_origin VARCHAR) ### Question: If the Country of Origin is Denmark and the year of introduction is 1962, what is the primary cartridge? ### Answer: SELECT primary_cartridge FROM table_26389588_1 WHERE year_of_introduction = "1962" AND country_of_origin = "Denmark" |
How many different years was the name/designation cetme? | CREATE TABLE table_26389588_1 (year_of_introduction VARCHAR, name___designation VARCHAR) | SELECT COUNT(year_of_introduction) FROM table_26389588_1 WHERE name___designation = "CETME" | ### Context: CREATE TABLE table_26389588_1 (year_of_introduction VARCHAR, name___designation VARCHAR) ### Question: How many different years was the name/designation cetme? ### Answer: SELECT COUNT(year_of_introduction) FROM table_26389588_1 WHERE name___designation = "CETME" |
If the country of origin is switzerland, what is the name/ designation? | CREATE TABLE table_26389588_1 (name___designation VARCHAR, country_of_origin VARCHAR) | SELECT name___designation FROM table_26389588_1 WHERE country_of_origin = "Switzerland" | ### Context: CREATE TABLE table_26389588_1 (name___designation VARCHAR, country_of_origin VARCHAR) ### Question: If the country of origin is switzerland, what is the name/ designation? ### Answer: SELECT name___designation FROM table_26389588_1 WHERE country_of_origin = "Switzerland" |
How many singles does Lisa Stansfield have? | CREATE TABLE table_26400075_2 (single VARCHAR, artist VARCHAR) | SELECT COUNT(single) FROM table_26400075_2 WHERE artist = "Lisa Stansfield" | ### Context: CREATE TABLE table_26400075_2 (single VARCHAR, artist VARCHAR) ### Question: How many singles does Lisa Stansfield have? ### Answer: SELECT COUNT(single) FROM table_26400075_2 WHERE artist = "Lisa Stansfield" |
How many weeks in the top-10 did Beats International have? | CREATE TABLE table_26400075_2 (weeks_in_top_10 VARCHAR, artist VARCHAR) | SELECT weeks_in_top_10 FROM table_26400075_2 WHERE artist = "Beats International" | ### Context: CREATE TABLE table_26400075_2 (weeks_in_top_10 VARCHAR, artist VARCHAR) ### Question: How many weeks in the top-10 did Beats International have? ### Answer: SELECT weeks_in_top_10 FROM table_26400075_2 WHERE artist = "Beats International" |
Name the final score for barcelona dragons | CREATE TABLE table_26401898_2 (final_score VARCHAR, opponent VARCHAR) | SELECT final_score FROM table_26401898_2 WHERE opponent = "Barcelona Dragons" | ### Context: CREATE TABLE table_26401898_2 (final_score VARCHAR, opponent VARCHAR) ### Question: Name the final score for barcelona dragons ### Answer: SELECT final_score FROM table_26401898_2 WHERE opponent = "Barcelona Dragons" |
Name the least week for l 26–42 | CREATE TABLE table_26401898_2 (week INTEGER, final_score VARCHAR) | SELECT MIN(week) FROM table_26401898_2 WHERE final_score = "L 26–42" | ### Context: CREATE TABLE table_26401898_2 (week INTEGER, final_score VARCHAR) ### Question: Name the least week for l 26–42 ### Answer: SELECT MIN(week) FROM table_26401898_2 WHERE final_score = "L 26–42" |
Name the game site for l 26–42 | CREATE TABLE table_26401898_2 (game_site VARCHAR, final_score VARCHAR) | SELECT game_site FROM table_26401898_2 WHERE final_score = "L 26–42" | ### Context: CREATE TABLE table_26401898_2 (game_site VARCHAR, final_score VARCHAR) ### Question: Name the game site for l 26–42 ### Answer: SELECT game_site FROM table_26401898_2 WHERE final_score = "L 26–42" |
Name the most attendance | CREATE TABLE table_26401898_2 (attendance INTEGER) | SELECT MIN(attendance) FROM table_26401898_2 | ### Context: CREATE TABLE table_26401898_2 (attendance INTEGER) ### Question: Name the most attendance ### Answer: SELECT MIN(attendance) FROM table_26401898_2 |
Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican? | CREATE TABLE table_26416704_1 (incumbent VARCHAR, party VARCHAR, elected VARCHAR, status VARCHAR) | SELECT incumbent FROM table_26416704_1 WHERE elected = "2004" AND status = "Re-elected" AND party = "Republican" | ### Context: CREATE TABLE table_26416704_1 (incumbent VARCHAR, party VARCHAR, elected VARCHAR, status VARCHAR) ### Question: Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican? ### Answer: SELECT incumbent FROM table_26416704_1 WHERE elected = "2004" AND status = "Re-elected" AND party = "Republican" |
who wrote the episode having joe daniello as director with production code 6ajn05? | CREATE TABLE table_26409328_1 (written_by VARCHAR, directed_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_26409328_1 WHERE directed_by = "Joe Daniello" AND production_code = "6AJN05" | ### Context: CREATE TABLE table_26409328_1 (written_by VARCHAR, directed_by VARCHAR, production_code VARCHAR) ### Question: who wrote the episode having joe daniello as director with production code 6ajn05? ### Answer: SELECT written_by FROM table_26409328_1 WHERE directed_by = "Joe Daniello" AND production_code = "6AJN05" |
what title was given to the episode with production code 6ajn08? | CREATE TABLE table_26409328_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_26409328_1 WHERE production_code = "6AJN08" | ### Context: CREATE TABLE table_26409328_1 (title VARCHAR, production_code VARCHAR) ### Question: what title was given to the episode with production code 6ajn08? ### Answer: SELECT title FROM table_26409328_1 WHERE production_code = "6AJN08" |
what is the production code of the episode viewed by 5.36 million u.s. people? | CREATE TABLE table_26409328_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) | SELECT production_code FROM table_26409328_1 WHERE us_viewers__millions_ = "5.36" | ### Context: CREATE TABLE table_26409328_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) ### Question: what is the production code of the episode viewed by 5.36 million u.s. people? ### Answer: SELECT production_code FROM table_26409328_1 WHERE us_viewers__millions_ = "5.36" |
How many cast members had sydney walker as their fresh meat partner? | CREATE TABLE table_26419467_1 (hometown VARCHAR, fresh_meat_partner VARCHAR) | SELECT COUNT(hometown) FROM table_26419467_1 WHERE fresh_meat_partner = "Sydney Walker" | ### Context: CREATE TABLE table_26419467_1 (hometown VARCHAR, fresh_meat_partner VARCHAR) ### Question: How many cast members had sydney walker as their fresh meat partner? ### Answer: SELECT COUNT(hometown) FROM table_26419467_1 WHERE fresh_meat_partner = "Sydney Walker" |
What alumni had noor jehangir as their fresh meat partner? | CREATE TABLE table_26419467_1 (alumni VARCHAR, fresh_meat_partner VARCHAR) | SELECT alumni FROM table_26419467_1 WHERE fresh_meat_partner = "Noor Jehangir" | ### Context: CREATE TABLE table_26419467_1 (alumni VARCHAR, fresh_meat_partner VARCHAR) ### Question: What alumni had noor jehangir as their fresh meat partner? ### Answer: SELECT alumni FROM table_26419467_1 WHERE fresh_meat_partner = "Noor Jehangir" |
What alumni were in rw: cancun as their original season? | CREATE TABLE table_26419467_1 (alumni VARCHAR, original_season VARCHAR) | SELECT alumni FROM table_26419467_1 WHERE original_season = "RW: Cancun" | ### Context: CREATE TABLE table_26419467_1 (alumni VARCHAR, original_season VARCHAR) ### Question: What alumni were in rw: cancun as their original season? ### Answer: SELECT alumni FROM table_26419467_1 WHERE original_season = "RW: Cancun" |
How many people were from portland, or? | CREATE TABLE table_26419467_1 (age VARCHAR, hometown VARCHAR) | SELECT COUNT(age) FROM table_26419467_1 WHERE hometown = "Portland, OR" | ### Context: CREATE TABLE table_26419467_1 (age VARCHAR, hometown VARCHAR) ### Question: How many people were from portland, or? ### Answer: SELECT COUNT(age) FROM table_26419467_1 WHERE hometown = "Portland, OR" |
What conference is Tennessee? | CREATE TABLE table_26423157_2 (conference VARCHAR, school VARCHAR) | SELECT conference FROM table_26423157_2 WHERE school = "Tennessee" | ### Context: CREATE TABLE table_26423157_2 (conference VARCHAR, school VARCHAR) ### Question: What conference is Tennessee? ### Answer: SELECT conference FROM table_26423157_2 WHERE school = "Tennessee" |
What seed was California? | CREATE TABLE table_26423157_2 (seed VARCHAR, school VARCHAR) | SELECT seed FROM table_26423157_2 WHERE school = "California" | ### Context: CREATE TABLE table_26423157_2 (seed VARCHAR, school VARCHAR) ### Question: What seed was California? ### Answer: SELECT seed FROM table_26423157_2 WHERE school = "California" |
What is the ε (m −1 cm −1 ) of the red dye? | CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR) | SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "red" | ### Context: CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR) ### Question: What is the ε (m −1 cm −1 ) of the red dye? ### Answer: SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "red" |
How much absorption in nm does the orange dye have? | CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER, color VARCHAR) | SELECT MIN(absorb__nm_) FROM table_26428602_1 WHERE color = "orange" | ### Context: CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER, color VARCHAR) ### Question: How much absorption in nm does the orange dye have? ### Answer: SELECT MIN(absorb__nm_) FROM table_26428602_1 WHERE color = "orange" |
What is the ε (m −1 cm −1 ) of the orange flourescent dye? | CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR) | SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "orange" | ### Context: CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR) ### Question: What is the ε (m −1 cm −1 ) of the orange flourescent dye? ### Answer: SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "orange" |
What is the lowest dye absoprtion in nm? | CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER) | SELECT MIN(absorb__nm_) FROM table_26428602_1 | ### Context: CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER) ### Question: What is the lowest dye absoprtion in nm? ### Answer: SELECT MIN(absorb__nm_) FROM table_26428602_1 |
What is the name of chapter 8 of season 4? | CREATE TABLE table_26429771_1 (title VARCHAR, no_in_season VARCHAR) | SELECT title FROM table_26429771_1 WHERE no_in_season = 8 | ### Context: CREATE TABLE table_26429771_1 (title VARCHAR, no_in_season VARCHAR) ### Question: What is the name of chapter 8 of season 4? ### Answer: SELECT title FROM table_26429771_1 WHERE no_in_season = 8 |
How many different production codes are there for the episode with 4.69 million US viewers? | CREATE TABLE table_26429543_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(production_code) FROM table_26429543_1 WHERE us_viewers__millions_ = "4.69" | ### Context: CREATE TABLE table_26429543_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many different production codes are there for the episode with 4.69 million US viewers? ### Answer: SELECT COUNT(production_code) FROM table_26429543_1 WHERE us_viewers__millions_ = "4.69" |
Who was in the 2005 film with the role mark cohen? | CREATE TABLE table_26436_2 (role VARCHAR) | SELECT 2005 AS _film FROM table_26436_2 WHERE role = "Mark Cohen" | ### Context: CREATE TABLE table_26436_2 (role VARCHAR) ### Question: Who was in the 2005 film with the role mark cohen? ### Answer: SELECT 2005 AS _film FROM table_26436_2 WHERE role = "Mark Cohen" |
who was in the 2005 role when the original broadway cast was played by jesse l. martin? | CREATE TABLE table_26436_2 (original_broadway_cast VARCHAR) | SELECT 2005 AS _film FROM table_26436_2 WHERE original_broadway_cast = "Jesse L. Martin" | ### Context: CREATE TABLE table_26436_2 (original_broadway_cast VARCHAR) ### Question: who was in the 2005 role when the original broadway cast was played by jesse l. martin? ### Answer: SELECT 2005 AS _film FROM table_26436_2 WHERE original_broadway_cast = "Jesse L. Martin" |
Who wrote the episode that is production code 202? | CREATE TABLE table_26448179_3 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_26448179_3 WHERE production_code = "202" | ### Context: CREATE TABLE table_26448179_3 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode that is production code 202? ### Answer: SELECT written_by FROM table_26448179_3 WHERE production_code = "202" |
What title was watched by 3.8 million US viewers? | CREATE TABLE table_26448179_3 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_26448179_3 WHERE us_viewers__millions_ = "3.8" | ### Context: CREATE TABLE table_26448179_3 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What title was watched by 3.8 million US viewers? ### Answer: SELECT title FROM table_26448179_3 WHERE us_viewers__millions_ = "3.8" |
What season number in the season has production code 210? | CREATE TABLE table_26448179_3 (no_in_season INTEGER, production_code VARCHAR) | SELECT MIN(no_in_season) FROM table_26448179_3 WHERE production_code = "210" | ### Context: CREATE TABLE table_26448179_3 (no_in_season INTEGER, production_code VARCHAR) ### Question: What season number in the season has production code 210? ### Answer: SELECT MIN(no_in_season) FROM table_26448179_3 WHERE production_code = "210" |
He wrote production number 102? | CREATE TABLE table_26448179_2 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_26448179_2 WHERE production_code = "102" | ### Context: CREATE TABLE table_26448179_2 (written_by VARCHAR, production_code VARCHAR) ### Question: He wrote production number 102? ### Answer: SELECT written_by FROM table_26448179_2 WHERE production_code = "102" |
What is the title of the episode watched by 3.2 million viewers? | CREATE TABLE table_26448179_4 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_26448179_4 WHERE us_viewers__millions_ = "3.2" | ### Context: CREATE TABLE table_26448179_4 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What is the title of the episode watched by 3.2 million viewers? ### Answer: SELECT title FROM table_26448179_4 WHERE us_viewers__millions_ = "3.2" |
What is the title of the episode with production code 305? | CREATE TABLE table_26448179_4 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_26448179_4 WHERE production_code = 305 | ### Context: CREATE TABLE table_26448179_4 (title VARCHAR, production_code VARCHAR) ### Question: What is the title of the episode with production code 305? ### Answer: SELECT title FROM table_26448179_4 WHERE production_code = 305 |
How many air dates had 3.2 million viewers? | CREATE TABLE table_26448179_4 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(original_air_date) FROM table_26448179_4 WHERE us_viewers__millions_ = "3.2" | ### Context: CREATE TABLE table_26448179_4 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many air dates had 3.2 million viewers? ### Answer: SELECT COUNT(original_air_date) FROM table_26448179_4 WHERE us_viewers__millions_ = "3.2" |
What is the highest production code? | CREATE TABLE table_26448179_4 (production_code INTEGER) | SELECT MAX(production_code) FROM table_26448179_4 | ### Context: CREATE TABLE table_26448179_4 (production_code INTEGER) ### Question: What is the highest production code? ### Answer: SELECT MAX(production_code) FROM table_26448179_4 |
What are the point value(s) for when the athlete was Barney Berlinger? | CREATE TABLE table_26454128_9 (points VARCHAR, athlete VARCHAR) | SELECT points FROM table_26454128_9 WHERE athlete = "Barney Berlinger" | ### Context: CREATE TABLE table_26454128_9 (points VARCHAR, athlete VARCHAR) ### Question: What are the point value(s) for when the athlete was Barney Berlinger? ### Answer: SELECT points FROM table_26454128_9 WHERE athlete = "Barney Berlinger" |
What is the total number of times points were listed when the distance was 41.05 metres? | CREATE TABLE table_26454128_9 (points VARCHAR, distance__metres_ VARCHAR) | SELECT COUNT(points) FROM table_26454128_9 WHERE distance__metres_ = "41.05" | ### Context: CREATE TABLE table_26454128_9 (points VARCHAR, distance__metres_ VARCHAR) ### Question: What is the total number of times points were listed when the distance was 41.05 metres? ### Answer: SELECT COUNT(points) FROM table_26454128_9 WHERE distance__metres_ = "41.05" |
What is the highest rank where the distance is 52.73? | CREATE TABLE table_26454128_9 (rank INTEGER, distance__metres_ VARCHAR) | SELECT MAX(rank) FROM table_26454128_9 WHERE distance__metres_ = "52.73" | ### Context: CREATE TABLE table_26454128_9 (rank INTEGER, distance__metres_ VARCHAR) ### Question: What is the highest rank where the distance is 52.73? ### Answer: SELECT MAX(rank) FROM table_26454128_9 WHERE distance__metres_ = "52.73" |
What is the country(s) where the points equal 723.075? | CREATE TABLE table_26454128_9 (country VARCHAR, points VARCHAR) | SELECT country FROM table_26454128_9 WHERE points = "723.075" | ### Context: CREATE TABLE table_26454128_9 (country VARCHAR, points VARCHAR) ### Question: What is the country(s) where the points equal 723.075? ### Answer: SELECT country FROM table_26454128_9 WHERE points = "723.075" |
What is the most adjusted points for Great Britain? | CREATE TABLE table_26454128_4 (Adjusted INTEGER, country VARCHAR) | SELECT MAX(Adjusted) AS points FROM table_26454128_4 WHERE country = "Great Britain" | ### Context: CREATE TABLE table_26454128_4 (Adjusted INTEGER, country VARCHAR) ### Question: What is the most adjusted points for Great Britain? ### Answer: SELECT MAX(Adjusted) AS points FROM table_26454128_4 WHERE country = "Great Britain" |
What is the country of Paavo Yrjölä? | CREATE TABLE table_26454128_4 (country VARCHAR, athlete VARCHAR) | SELECT country FROM table_26454128_4 WHERE athlete = "Paavo Yrjölä" | ### Context: CREATE TABLE table_26454128_4 (country VARCHAR, athlete VARCHAR) ### Question: What is the country of Paavo Yrjölä? ### Answer: SELECT country FROM table_26454128_4 WHERE athlete = "Paavo Yrjölä" |
Which athlete has a height of 1.87 and is from Sweden? | CREATE TABLE table_26454128_4 (athlete VARCHAR, height VARCHAR, country VARCHAR) | SELECT athlete FROM table_26454128_4 WHERE height = "1.87" AND country = "Sweden" | ### Context: CREATE TABLE table_26454128_4 (athlete VARCHAR, height VARCHAR, country VARCHAR) ### Question: Which athlete has a height of 1.87 and is from Sweden? ### Answer: SELECT athlete FROM table_26454128_4 WHERE height = "1.87" AND country = "Sweden" |
Name the country that has ken doherty | CREATE TABLE table_26454128_7 (country VARCHAR, athlete VARCHAR) | SELECT country FROM table_26454128_7 WHERE athlete = "Ken Doherty" | ### Context: CREATE TABLE table_26454128_7 (country VARCHAR, athlete VARCHAR) ### Question: Name the country that has ken doherty ### Answer: SELECT country FROM table_26454128_7 WHERE athlete = "Ken Doherty" |
Name the athlete for 7 rank | CREATE TABLE table_26454128_7 (athlete VARCHAR, rank VARCHAR) | SELECT athlete FROM table_26454128_7 WHERE rank = 7 | ### Context: CREATE TABLE table_26454128_7 (athlete VARCHAR, rank VARCHAR) ### Question: Name the athlete for 7 rank ### Answer: SELECT athlete FROM table_26454128_7 WHERE rank = 7 |
Name the total number of rank for tom churchill | CREATE TABLE table_26454128_7 (rank VARCHAR, athlete VARCHAR) | SELECT COUNT(rank) FROM table_26454128_7 WHERE athlete = "Tom Churchill" | ### Context: CREATE TABLE table_26454128_7 (rank VARCHAR, athlete VARCHAR) ### Question: Name the total number of rank for tom churchill ### Answer: SELECT COUNT(rank) FROM table_26454128_7 WHERE athlete = "Tom Churchill" |
Who was the heir when the monarch was Wareru? | CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR) | SELECT heir FROM table_26460435_5 WHERE monarch = "Wareru" | ### Context: CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR) ### Question: Who was the heir when the monarch was Wareru? ### Answer: SELECT heir FROM table_26460435_5 WHERE monarch = "Wareru" |
What is the number of monarchs that had Yan Maw la Mon as the heir? | CREATE TABLE table_26460435_5 (monarch VARCHAR, heir VARCHAR) | SELECT COUNT(monarch) FROM table_26460435_5 WHERE heir = "Yan Maw La Mon" | ### Context: CREATE TABLE table_26460435_5 (monarch VARCHAR, heir VARCHAR) ### Question: What is the number of monarchs that had Yan Maw la Mon as the heir? ### Answer: SELECT COUNT(monarch) FROM table_26460435_5 WHERE heir = "Yan Maw La Mon" |
What is the status for the monarch Mingyinyo? | CREATE TABLE table_26460435_7 (status VARCHAR, monarch VARCHAR) | SELECT status FROM table_26460435_7 WHERE monarch = "Mingyinyo" | ### Context: CREATE TABLE table_26460435_7 (status VARCHAR, monarch VARCHAR) ### Question: What is the status for the monarch Mingyinyo? ### Answer: SELECT status FROM table_26460435_7 WHERE monarch = "Mingyinyo" |
Who is the monarch with the heir thado minsaw? | CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR) | SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw" | ### Context: CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR) ### Question: Who is the monarch with the heir thado minsaw? ### Answer: SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.