instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: How many couples had a vote percentage of 9.5%? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_16 (rank VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(rank) FROM table_26375386_16 WHERE vote_percentage = "9.5%" |
Write a SQL query that answers the following question: What was the lowest judge rank for danny and frankie? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_16 (judges INTEGER, couple VARCHAR) | SELECT MIN(judges) FROM table_26375386_16 WHERE couple = "Danny and Frankie" |
Write a SQL query that answers the following question: What couple had a total of 8? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_16 (couple VARCHAR, total VARCHAR) | SELECT couple FROM table_26375386_16 WHERE total = 8 |
Write a SQL query that answers the following question: What is the change in population since 1993 in the region where the % of country's population was 4.2? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the broadcast are for channel 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_2638104_1 (broadcast_area VARCHAR, channel VARCHAR) | SELECT broadcast_area FROM table_2638104_1 WHERE channel = 1 |
Write a SQL query that answers the following question: What is the call sign for channel 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_2638104_1 (callsign VARCHAR, channel VARCHAR) | SELECT callsign FROM table_2638104_1 WHERE channel = 6 |
Write a SQL query that answers the following question: How many channels are there in the Greater Tokyo area? | The relevant table was constructed using the following SQL : CREATE TABLE table_2638104_1 (channel VARCHAR, broadcast_area VARCHAR) | SELECT COUNT(channel) FROM table_2638104_1 WHERE broadcast_area = "Greater Tokyo" |
Write a SQL query that answers the following question: What is the signal power for JOAB-DTV? | The relevant table was constructed using the following SQL : CREATE TABLE table_2638104_1 (signal_power VARCHAR, callsign VARCHAR) | SELECT signal_power FROM table_2638104_1 WHERE callsign = "JOAB-DTV" |
Write a SQL query that answers the following question: How many times is the voting percentage 10.7% | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_20 (rank VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(rank) FROM table_26375386_20 WHERE vote_percentage = "10.7%" |
Write a SQL query that answers the following question: What is the vote percentage for the couple gary and maria? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_20 (vote_percentage VARCHAR, couple VARCHAR) | SELECT vote_percentage FROM table_26375386_20 WHERE couple = "Gary and Maria" |
Write a SQL query that answers the following question: what couple had a vote percentage of 5.8%? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_20 (couple VARCHAR, vote_percentage VARCHAR) | SELECT couple FROM table_26375386_20 WHERE vote_percentage = "5.8%" |
Write a SQL query that answers the following question: What is the public when the vote percentage is 16.0% | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_20 (public VARCHAR, vote_percentage VARCHAR) | SELECT public FROM table_26375386_20 WHERE vote_percentage = "16.0%" |
Write a SQL query that answers the following question: How many judges were there when the result is safe with a vote percentage of 10.7%? | The relevant table was constructed using the following SQL : 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%" |
Write a SQL query that answers the following question: How many times was the vote percentage 15.0%? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_20 (total VARCHAR, vote_percentage VARCHAR) | SELECT COUNT(total) FROM table_26375386_20 WHERE vote_percentage = "15.0%" |
Write a SQL query that answers the following question: What is the least place when the couple is Keiron & Brianne? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_28 (place INTEGER, couple VARCHAR) | SELECT MIN(place) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" |
Write a SQL query that answers the following question: How many numbers of dances for place 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_28 (number_of_dances VARCHAR, place VARCHAR) | SELECT COUNT(number_of_dances) FROM table_26375386_28 WHERE place = 1 |
Write a SQL query that answers the following question: How many ranks by average when Keiron & Brianne are the couple? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR) | SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" |
Write a SQL query that answers the following question: What is every average when number of dances is 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_28 (average VARCHAR, number_of_dances VARCHAR) | SELECT average FROM table_26375386_28 WHERE number_of_dances = 1 |
Write a SQL query that answers the following question: How many ranks by average for the couple Tana and Stuart? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the rank for mikey and melanie | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_22 (rank VARCHAR, couple VARCHAR) | SELECT rank FROM table_26375386_22 WHERE couple = "Mikey and Melanie" |
Write a SQL query that answers the following question: Name the public for mikey and melanie | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_22 (public VARCHAR, couple VARCHAR) | SELECT public FROM table_26375386_22 WHERE couple = "Mikey and Melanie" |
Write a SQL query that answers the following question: Name the judges for 4 public | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_22 (judges VARCHAR, public VARCHAR) | SELECT judges FROM table_26375386_22 WHERE public = 4 |
Write a SQL query that answers the following question: Name the total number for 3 public | The relevant table was constructed using the following SQL : CREATE TABLE table_26375386_22 (total VARCHAR, public VARCHAR) | SELECT COUNT(total) FROM table_26375386_22 WHERE public = 3 |
Write a SQL query that answers the following question: What is the number of directors for the film title Eldra? | The relevant table was constructed using the following SQL : CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR) | SELECT COUNT(director) FROM table_26385848_1 WHERE film_title = "Eldra" |
Write a SQL query that answers the following question: What is the year (ceremony) for the film title Eldra? | The relevant table was constructed using the following SQL : CREATE TABLE table_26385848_1 (year__ceremony_ VARCHAR, film_title VARCHAR) | SELECT year__ceremony_ FROM table_26385848_1 WHERE film_title = "Eldra" |
Write a SQL query that answers the following question: Who is the director for the film title Eldra? | The relevant table was constructed using the following SQL : CREATE TABLE table_26385848_1 (director VARCHAR, film_title VARCHAR) | SELECT director FROM table_26385848_1 WHERE film_title = "Eldra" |
Write a SQL query that answers the following question: In the year (ceremony) 1998 (71st), what are all the main languages? | The relevant table was constructed using the following SQL : 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)" |
Write a SQL query that answers the following question: In the year (ceremony) 2009 (82nd), who are all the directors? | The relevant table was constructed using the following SQL : CREATE TABLE table_26385848_1 (director VARCHAR, year__ceremony_ VARCHAR) | SELECT director FROM table_26385848_1 WHERE year__ceremony_ = "2009 (82nd)" |
Write a SQL query that answers the following question: In the year (ceremony) 1995 (68th), what is the film title? | The relevant table was constructed using the following SQL : CREATE TABLE table_26385848_1 (film_title VARCHAR, year__ceremony_ VARCHAR) | SELECT film_title FROM table_26385848_1 WHERE year__ceremony_ = "1995 (68th)" |
Write a SQL query that answers the following question: If the country of Origin is South Africa, who is the primary user? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: If the Country of Origin is Denmark and the year of introduction is 1962, what is the primary cartridge? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: How many different years was the name/designation cetme? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: If the country of origin is switzerland, what is the name/ designation? | The relevant table was constructed using the following SQL : CREATE TABLE table_26389588_1 (name___designation VARCHAR, country_of_origin VARCHAR) | SELECT name___designation FROM table_26389588_1 WHERE country_of_origin = "Switzerland" |
Write a SQL query that answers the following question: How many singles does Lisa Stansfield have? | The relevant table was constructed using the following SQL : CREATE TABLE table_26400075_2 (single VARCHAR, artist VARCHAR) | SELECT COUNT(single) FROM table_26400075_2 WHERE artist = "Lisa Stansfield" |
Write a SQL query that answers the following question: How many weeks in the top-10 did Beats International have? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the final score for barcelona dragons | The relevant table was constructed using the following SQL : CREATE TABLE table_26401898_2 (final_score VARCHAR, opponent VARCHAR) | SELECT final_score FROM table_26401898_2 WHERE opponent = "Barcelona Dragons" |
Write a SQL query that answers the following question: Name the least week for l 26–42 | The relevant table was constructed using the following SQL : CREATE TABLE table_26401898_2 (week INTEGER, final_score VARCHAR) | SELECT MIN(week) FROM table_26401898_2 WHERE final_score = "L 26–42" |
Write a SQL query that answers the following question: Name the game site for l 26–42 | The relevant table was constructed using the following SQL : CREATE TABLE table_26401898_2 (game_site VARCHAR, final_score VARCHAR) | SELECT game_site FROM table_26401898_2 WHERE final_score = "L 26–42" |
Write a SQL query that answers the following question: Name the most attendance | The relevant table was constructed using the following SQL : CREATE TABLE table_26401898_2 (attendance INTEGER) | SELECT MIN(attendance) FROM table_26401898_2 |
Write a SQL query that answers the following question: Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: who wrote the episode having joe daniello as director with production code 6ajn05? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: what title was given to the episode with production code 6ajn08? | The relevant table was constructed using the following SQL : CREATE TABLE table_26409328_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_26409328_1 WHERE production_code = "6AJN08" |
Write a SQL query that answers the following question: what is the production code of the episode viewed by 5.36 million u.s. people? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: How many cast members had sydney walker as their fresh meat partner? | The relevant table was constructed using the following SQL : CREATE TABLE table_26419467_1 (hometown VARCHAR, fresh_meat_partner VARCHAR) | SELECT COUNT(hometown) FROM table_26419467_1 WHERE fresh_meat_partner = "Sydney Walker" |
Write a SQL query that answers the following question: What alumni had noor jehangir as their fresh meat partner? | The relevant table was constructed using the following SQL : CREATE TABLE table_26419467_1 (alumni VARCHAR, fresh_meat_partner VARCHAR) | SELECT alumni FROM table_26419467_1 WHERE fresh_meat_partner = "Noor Jehangir" |
Write a SQL query that answers the following question: What alumni were in rw: cancun as their original season? | The relevant table was constructed using the following SQL : CREATE TABLE table_26419467_1 (alumni VARCHAR, original_season VARCHAR) | SELECT alumni FROM table_26419467_1 WHERE original_season = "RW: Cancun" |
Write a SQL query that answers the following question: How many people were from portland, or? | The relevant table was constructed using the following SQL : CREATE TABLE table_26419467_1 (age VARCHAR, hometown VARCHAR) | SELECT COUNT(age) FROM table_26419467_1 WHERE hometown = "Portland, OR" |
Write a SQL query that answers the following question: What conference is Tennessee? | The relevant table was constructed using the following SQL : CREATE TABLE table_26423157_2 (conference VARCHAR, school VARCHAR) | SELECT conference FROM table_26423157_2 WHERE school = "Tennessee" |
Write a SQL query that answers the following question: What seed was California? | The relevant table was constructed using the following SQL : CREATE TABLE table_26423157_2 (seed VARCHAR, school VARCHAR) | SELECT seed FROM table_26423157_2 WHERE school = "California" |
Write a SQL query that answers the following question: What is the ε (m −1 cm −1 ) of the red dye? | The relevant table was constructed using the following SQL : CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR) | SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "red" |
Write a SQL query that answers the following question: How much absorption in nm does the orange dye have? | The relevant table was constructed using the following SQL : CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER, color VARCHAR) | SELECT MIN(absorb__nm_) FROM table_26428602_1 WHERE color = "orange" |
Write a SQL query that answers the following question: What is the ε (m −1 cm −1 ) of the orange flourescent dye? | The relevant table was constructed using the following SQL : CREATE TABLE table_26428602_1 (ε__m_−1_cm_−1__ VARCHAR, color VARCHAR) | SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "orange" |
Write a SQL query that answers the following question: What is the lowest dye absoprtion in nm? | The relevant table was constructed using the following SQL : CREATE TABLE table_26428602_1 (absorb__nm_ INTEGER) | SELECT MIN(absorb__nm_) FROM table_26428602_1 |
Write a SQL query that answers the following question: What is the name of chapter 8 of season 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_26429771_1 (title VARCHAR, no_in_season VARCHAR) | SELECT title FROM table_26429771_1 WHERE no_in_season = 8 |
Write a SQL query that answers the following question: How many different production codes are there for the episode with 4.69 million US viewers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Who was in the 2005 film with the role mark cohen? | The relevant table was constructed using the following SQL : CREATE TABLE table_26436_2 (role VARCHAR) | SELECT 2005 AS _film FROM table_26436_2 WHERE role = "Mark Cohen" |
Write a SQL query that answers the following question: who was in the 2005 role when the original broadway cast was played by jesse l. martin? | The relevant table was constructed using the following SQL : CREATE TABLE table_26436_2 (original_broadway_cast VARCHAR) | SELECT 2005 AS _film FROM table_26436_2 WHERE original_broadway_cast = "Jesse L. Martin" |
Write a SQL query that answers the following question: Who wrote the episode that is production code 202? | The relevant table was constructed using the following SQL : CREATE TABLE table_26448179_3 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_26448179_3 WHERE production_code = "202" |
Write a SQL query that answers the following question: What title was watched by 3.8 million US viewers? | The relevant table was constructed using the following SQL : CREATE TABLE table_26448179_3 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_26448179_3 WHERE us_viewers__millions_ = "3.8" |
Write a SQL query that answers the following question: What season number in the season has production code 210? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: He wrote production number 102? | The relevant table was constructed using the following SQL : CREATE TABLE table_26448179_2 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_26448179_2 WHERE production_code = "102" |
Write a SQL query that answers the following question: What is the title of the episode watched by 3.2 million viewers? | The relevant table was constructed using the following SQL : CREATE TABLE table_26448179_4 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_26448179_4 WHERE us_viewers__millions_ = "3.2" |
Write a SQL query that answers the following question: What is the title of the episode with production code 305? | The relevant table was constructed using the following SQL : CREATE TABLE table_26448179_4 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_26448179_4 WHERE production_code = 305 |
Write a SQL query that answers the following question: How many air dates had 3.2 million viewers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the highest production code? | The relevant table was constructed using the following SQL : CREATE TABLE table_26448179_4 (production_code INTEGER) | SELECT MAX(production_code) FROM table_26448179_4 |
Write a SQL query that answers the following question: What are the point value(s) for when the athlete was Barney Berlinger? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_9 (points VARCHAR, athlete VARCHAR) | SELECT points FROM table_26454128_9 WHERE athlete = "Barney Berlinger" |
Write a SQL query that answers the following question: What is the total number of times points were listed when the distance was 41.05 metres? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_9 (points VARCHAR, distance__metres_ VARCHAR) | SELECT COUNT(points) FROM table_26454128_9 WHERE distance__metres_ = "41.05" |
Write a SQL query that answers the following question: What is the highest rank where the distance is 52.73? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_9 (rank INTEGER, distance__metres_ VARCHAR) | SELECT MAX(rank) FROM table_26454128_9 WHERE distance__metres_ = "52.73" |
Write a SQL query that answers the following question: What is the country(s) where the points equal 723.075? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_9 (country VARCHAR, points VARCHAR) | SELECT country FROM table_26454128_9 WHERE points = "723.075" |
Write a SQL query that answers the following question: What is the most adjusted points for Great Britain? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_4 (Adjusted INTEGER, country VARCHAR) | SELECT MAX(Adjusted) AS points FROM table_26454128_4 WHERE country = "Great Britain" |
Write a SQL query that answers the following question: What is the country of Paavo Yrjölä? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_4 (country VARCHAR, athlete VARCHAR) | SELECT country FROM table_26454128_4 WHERE athlete = "Paavo Yrjölä" |
Write a SQL query that answers the following question: Which athlete has a height of 1.87 and is from Sweden? | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_4 (athlete VARCHAR, height VARCHAR, country VARCHAR) | SELECT athlete FROM table_26454128_4 WHERE height = "1.87" AND country = "Sweden" |
Write a SQL query that answers the following question: Name the country that has ken doherty | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_7 (country VARCHAR, athlete VARCHAR) | SELECT country FROM table_26454128_7 WHERE athlete = "Ken Doherty" |
Write a SQL query that answers the following question: Name the athlete for 7 rank | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_7 (athlete VARCHAR, rank VARCHAR) | SELECT athlete FROM table_26454128_7 WHERE rank = 7 |
Write a SQL query that answers the following question: Name the total number of rank for tom churchill | The relevant table was constructed using the following SQL : CREATE TABLE table_26454128_7 (rank VARCHAR, athlete VARCHAR) | SELECT COUNT(rank) FROM table_26454128_7 WHERE athlete = "Tom Churchill" |
Write a SQL query that answers the following question: Who was the heir when the monarch was Wareru? | The relevant table was constructed using the following SQL : CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR) | SELECT heir FROM table_26460435_5 WHERE monarch = "Wareru" |
Write a SQL query that answers the following question: What is the number of monarchs that had Yan Maw la Mon as the heir? | The relevant table was constructed using the following SQL : CREATE TABLE table_26460435_5 (monarch VARCHAR, heir VARCHAR) | SELECT COUNT(monarch) FROM table_26460435_5 WHERE heir = "Yan Maw La Mon" |
Write a SQL query that answers the following question: What is the status for the monarch Mingyinyo? | The relevant table was constructed using the following SQL : CREATE TABLE table_26460435_7 (status VARCHAR, monarch VARCHAR) | SELECT status FROM table_26460435_7 WHERE monarch = "Mingyinyo" |
Write a SQL query that answers the following question: Who is the monarch with the heir thado minsaw? | The relevant table was constructed using the following SQL : CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR) | SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw" |
Write a SQL query that answers the following question: Who are the writers of the episodes directed by Justin Hartley? | The relevant table was constructed using the following SQL : CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_26464364_1 WHERE directed_by = "Justin Hartley" |
Write a SQL query that answers the following question: On which date did episode # 18 air in the U.S.? | The relevant table was constructed using the following SQL : CREATE TABLE table_26464364_1 (us_air_date VARCHAR, _number VARCHAR) | SELECT us_air_date FROM table_26464364_1 WHERE _number = 18 |
Write a SQL query that answers the following question: How many million U.S. viewers watched the episode with the production code 3x6004? | The relevant table was constructed using the following SQL : CREATE TABLE table_26464364_1 (us_viewers__million_ VARCHAR, production_code VARCHAR) | SELECT us_viewers__million_ FROM table_26464364_1 WHERE production_code = "3X6004" |
Write a SQL query that answers the following question: List the titles of episodes written by Anne Cofell Saunders. | The relevant table was constructed using the following SQL : CREATE TABLE table_26464364_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_26464364_1 WHERE written_by = "Anne Cofell Saunders" |
Write a SQL query that answers the following question: What is the title of the episode directed by Christopher Petry with the production cod 3x6006? | The relevant table was constructed using the following SQL : CREATE TABLE table_26464364_1 (title VARCHAR, directed_by VARCHAR, production_code VARCHAR) | SELECT title FROM table_26464364_1 WHERE directed_by = "Christopher Petry" AND production_code = "3X6006" |
Write a SQL query that answers the following question: Who was the incumbent in the Ohio 10 district? | The relevant table was constructed using the following SQL : CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 10" |
Write a SQL query that answers the following question: Who was the incumbent in the Ohio 5 district? | The relevant table was constructed using the following SQL : CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 5" |
Write a SQL query that answers the following question: Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss? | The relevant table was constructed using the following SQL : CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_2646656_3 WHERE result = "Retired Republican hold" AND incumbent = "Philemon Bliss" |
Write a SQL query that answers the following question: How many new conferences are in the NCLL deep south conference? | The relevant table was constructed using the following SQL : CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR) | SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference" |
Write a SQL query that answers the following question: What is the nickname at the University of Nebraska at Omaha? | The relevant table was constructed using the following SQL : CREATE TABLE table_26476336_2 (team_nickname VARCHAR, institution VARCHAR) | SELECT team_nickname FROM table_26476336_2 WHERE institution = "University of Nebraska at Omaha" |
Write a SQL query that answers the following question: What location is listed from 2005-2010? | The relevant table was constructed using the following SQL : CREATE TABLE table_26476336_2 (location VARCHAR, years VARCHAR) | SELECT location FROM table_26476336_2 WHERE years = "2005-2010" |
Write a SQL query that answers the following question: Where is the nickname the Red Raiders? | The relevant table was constructed using the following SQL : CREATE TABLE table_26476336_2 (location VARCHAR, team_nickname VARCHAR) | SELECT location FROM table_26476336_2 WHERE team_nickname = "Red Raiders" |
Write a SQL query that answers the following question: What school has the new conference as SELC? | The relevant table was constructed using the following SQL : CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR) | SELECT institution FROM table_26476336_2 WHERE new_conference = "SELC" |
Write a SQL query that answers the following question: What are the years that the new classification was MCLA division i? | The relevant table was constructed using the following SQL : CREATE TABLE table_26476336_2 (years VARCHAR, new_classification VARCHAR) | SELECT years FROM table_26476336_2 WHERE new_classification = "MCLA Division I" |
Write a SQL query that answers the following question: Name the colors for north canton | The relevant table was constructed using the following SQL : CREATE TABLE table_26466528_1 (colors VARCHAR, location VARCHAR) | SELECT colors FROM table_26466528_1 WHERE location = "North Canton" |
Write a SQL query that answers the following question: Name the most join date | The relevant table was constructed using the following SQL : CREATE TABLE table_26466528_1 (join_date INTEGER) | SELECT MAX(join_date) FROM table_26466528_1 |
Write a SQL query that answers the following question: Name the least join date | The relevant table was constructed using the following SQL : CREATE TABLE table_26466528_1 (join_date INTEGER) | SELECT MIN(join_date) FROM table_26466528_1 |
Write a SQL query that answers the following question: Name the location for black, orange | The relevant table was constructed using the following SQL : CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR) | SELECT location FROM table_26466528_1 WHERE colors = "Black, Orange" |
Write a SQL query that answers the following question: Name when north canton joined | The relevant table was constructed using the following SQL : CREATE TABLE table_26466528_1 (join_date VARCHAR, location VARCHAR) | SELECT join_date FROM table_26466528_1 WHERE location = "North Canton" |
Write a SQL query that answers the following question: How many "series" were in the 12th "position? | The relevant table was constructed using the following SQL : CREATE TABLE table_26473176_1 (series VARCHAR, position VARCHAR) | SELECT COUNT(series) FROM table_26473176_1 WHERE position = "12th" |
Write a SQL query that answers the following question: How many teams were at 10 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_26473176_1 (team VARCHAR, points VARCHAR) | SELECT COUNT(team) FROM table_26473176_1 WHERE points = 10 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.