instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: How many nominee's had a vote to evict percentage of 3.92% | The relevant table was constructed using the following SQL : CREATE TABLE table_15162479_8 (nominee VARCHAR, vote_to_evict VARCHAR) | SELECT COUNT(nominee) FROM table_15162479_8 WHERE vote_to_evict = "3.92%" |
Write a SQL query that answers the following question: How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%? | The relevant table was constructed using the following SQL : CREATE TABLE table_15162479_8 (eviction_result VARCHAR, eviction_no VARCHAR, vote_to_save VARCHAR) | SELECT COUNT(eviction_result) FROM table_15162479_8 WHERE eviction_no = 12 AND vote_to_save = "2.76%" |
Write a SQL query that answers the following question: What was the final result when the viewers selected ejay? | The relevant table was constructed using the following SQL : CREATE TABLE table_15162503_1 (result VARCHAR, viewers_selection VARCHAR) | SELECT result FROM table_15162503_1 WHERE viewers_selection = "Ejay" |
Write a SQL query that answers the following question: What was the description when the viewers selected Nan? | The relevant table was constructed using the following SQL : CREATE TABLE table_15162503_1 (description VARCHAR, viewers_selection VARCHAR) | SELECT description FROM table_15162503_1 WHERE viewers_selection = "Nan" |
Write a SQL query that answers the following question: What is the name of series episode 11-02's segment c? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_11 (segment_c VARCHAR, series_ep VARCHAR) | SELECT segment_c FROM table_15187735_11 WHERE series_ep = "11-02" |
Write a SQL query that answers the following question: What is the title of series episode 11-05's segment d? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_11 (segment_d VARCHAR, series_ep VARCHAR) | SELECT segment_d FROM table_15187735_11 WHERE series_ep = "11-05" |
Write a SQL query that answers the following question: In seris episode 11-04, what is the B segment titled? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_11 (segment_b VARCHAR, series_ep VARCHAR) | SELECT segment_b FROM table_15187735_11 WHERE series_ep = "11-04" |
Write a SQL query that answers the following question: In the episode where segment a is microphones, what is segment d? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_11 (segment_d VARCHAR, segment_a VARCHAR) | SELECT segment_d FROM table_15187735_11 WHERE segment_a = "Microphones" |
Write a SQL query that answers the following question: What is Segment B for series episode 12-08? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_12 (segment_b VARCHAR, series_ep VARCHAR) | SELECT segment_b FROM table_15187735_12 WHERE series_ep = "12-08" |
Write a SQL query that answers the following question: What is the series episode where Segment B is popcorn ? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_12 (series_ep VARCHAR, segment_b VARCHAR) | SELECT series_ep FROM table_15187735_12 WHERE segment_b = "Popcorn" |
Write a SQL query that answers the following question: What is the Netflix where Segment C is car washes? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_12 (netflix VARCHAR, segment_c VARCHAR) | SELECT netflix FROM table_15187735_12 WHERE segment_c = "Car Washes" |
Write a SQL query that answers the following question: What is Segment B for series episode 12-02? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_12 (segment_b VARCHAR, series_ep VARCHAR) | SELECT segment_b FROM table_15187735_12 WHERE series_ep = "12-02" |
Write a SQL query that answers the following question: What is Segment A where Segment B is Kevlar S Canoe? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_12 (segment_a VARCHAR, segment_b VARCHAR) | SELECT segment_a FROM table_15187735_12 WHERE segment_b = "Kevlar s Canoe" |
Write a SQL query that answers the following question: What is the Netflix where Segment D is pressure gauges ? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_12 (netflix VARCHAR, segment_d VARCHAR) | SELECT netflix FROM table_15187735_12 WHERE segment_d = "Pressure Gauges" |
Write a SQL query that answers the following question: Name the segment d for bowling balls | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_13 (segment_d VARCHAR, segment_a VARCHAR) | SELECT segment_d FROM table_15187735_13 WHERE segment_a = "Bowling Balls" |
Write a SQL query that answers the following question: Name the segment b for pressure cookers | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_13 (segment_b VARCHAR, segment_a VARCHAR) | SELECT segment_b FROM table_15187735_13 WHERE segment_a = "Pressure Cookers" |
Write a SQL query that answers the following question: Name the segment b for 167 | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR) | SELECT segment_b FROM table_15187735_13 WHERE episode = 167 |
Write a SQL query that answers the following question: Name the segment a for 162 | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_13 (segment_a VARCHAR, episode VARCHAR) | SELECT segment_a FROM table_15187735_13 WHERE episode = 162 |
Write a SQL query that answers the following question: Name the total number of segment c for pressure cookers | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_13 (segment_c VARCHAR, segment_a VARCHAR) | SELECT COUNT(segment_c) FROM table_15187735_13 WHERE segment_a = "Pressure Cookers" |
Write a SQL query that answers the following question: What was segment C when segment D was fluorescent tubes? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_1 (segment_c VARCHAR, segment_d VARCHAR) | SELECT segment_c FROM table_15187735_1 WHERE segment_d = "Fluorescent Tubes" |
Write a SQL query that answers the following question: What was segment C when segment B was package printing? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_1 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_15187735_1 WHERE segment_b = "Package printing" |
Write a SQL query that answers the following question: What was segment A when segment B was snowboards? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_1 (segment_a VARCHAR, segment_b VARCHAR) | SELECT segment_a FROM table_15187735_1 WHERE segment_b = "Snowboards" |
Write a SQL query that answers the following question: What was segment D when segment B was jeans? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_1 (segment_d VARCHAR, segment_b VARCHAR) | SELECT segment_d FROM table_15187735_1 WHERE segment_b = "Jeans" |
Write a SQL query that answers the following question: In what episode was segment D ned Can Corn? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_1 (episode INTEGER, segment_d VARCHAR) | SELECT MAX(episode) FROM table_15187735_1 WHERE segment_d = "ned Can Corn" |
Write a SQL query that answers the following question: Name the segment c for crash test dummies | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_10 (segment_c VARCHAR, segment_d VARCHAR) | SELECT COUNT(segment_c) FROM table_15187735_10 WHERE segment_d = "Crash Test Dummies" |
Write a SQL query that answers the following question: Name the segment b for s dress form | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_a VARCHAR) | SELECT segment_b FROM table_15187735_10 WHERE segment_a = "s Dress Form" |
Write a SQL query that answers the following question: Name the segment a for s duvet | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_10 (segment_a VARCHAR, segment_c VARCHAR) | SELECT segment_a FROM table_15187735_10 WHERE segment_c = "s Duvet" |
Write a SQL query that answers the following question: Name the total number of episodes for s fire extinguisher | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_10 (episode VARCHAR, segment_a VARCHAR) | SELECT COUNT(episode) FROM table_15187735_10 WHERE segment_a = "s Fire Extinguisher" |
Write a SQL query that answers the following question: Name the total number of segment b for s banjo | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_d VARCHAR) | SELECT COUNT(segment_b) FROM table_15187735_10 WHERE segment_d = "s Banjo" |
Write a SQL query that answers the following question: Name the total number of segment d for wooden s barrel | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_10 (segment_d VARCHAR, segment_a VARCHAR) | SELECT COUNT(segment_d) FROM table_15187735_10 WHERE segment_a = "Wooden s Barrel" |
Write a SQL query that answers the following question: How many segment A were in series episode 14-05 | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_14 (segment_a VARCHAR, series_ep VARCHAR) | SELECT COUNT(segment_a) FROM table_15187735_14 WHERE series_ep = "14-05" |
Write a SQL query that answers the following question: What is segment C in s07e05 | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_14 (segment_c VARCHAR, netflix VARCHAR) | SELECT segment_c FROM table_15187735_14 WHERE netflix = "S07E05" |
Write a SQL query that answers the following question: What is the netflix episode number where Segment D is high-performance engines? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_15 (netflix VARCHAR, segment_d VARCHAR) | SELECT netflix FROM table_15187735_15 WHERE segment_d = "High-Performance Engines" |
Write a SQL query that answers the following question: What was segment D for episode 183? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_15 (segment_d VARCHAR, episode VARCHAR) | SELECT segment_d FROM table_15187735_15 WHERE episode = 183 |
Write a SQL query that answers the following question: What is Segment A where Segment C is Sushi (part 1)? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_c VARCHAR) | SELECT segment_a FROM table_15187735_15 WHERE segment_c = "Sushi (Part 1)" |
Write a SQL query that answers the following question: How many episodes have the Netflix episode number S08E04? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_15 (episode VARCHAR, netflix VARCHAR) | SELECT COUNT(episode) FROM table_15187735_15 WHERE netflix = "S08E04" |
Write a SQL query that answers the following question: What is Segment A where Segment D is luxury sports cars? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_d VARCHAR) | SELECT segment_a FROM table_15187735_15 WHERE segment_d = "Luxury Sports Cars" |
Write a SQL query that answers the following question: What episode number is the episode with a segment on thinning shears? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_20 (episode INTEGER, segment_a VARCHAR) | SELECT MIN(episode) FROM table_15187735_20 WHERE segment_a = "Thinning Shears" |
Write a SQL query that answers the following question: Which episode has segment D on custom motorcycle tanks? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_20 (episode INTEGER, segment_d VARCHAR) | SELECT MIN(episode) FROM table_15187735_20 WHERE segment_d = "Custom Motorcycle Tanks" |
Write a SQL query that answers the following question: How many segment C are there in the episode where segment D is bicycle tires? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_20 (segment_c VARCHAR, segment_d VARCHAR) | SELECT COUNT(segment_c) FROM table_15187735_20 WHERE segment_d = "Bicycle Tires" |
Write a SQL query that answers the following question: What is the first episode number? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_20 (episode INTEGER) | SELECT MIN(episode) FROM table_15187735_20 |
Write a SQL query that answers the following question: How many segment b's when segment a is filigree glass | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_16 (segment_b VARCHAR, segment_a VARCHAR) | SELECT COUNT(segment_b) FROM table_15187735_16 WHERE segment_a = "Filigree Glass" |
Write a SQL query that answers the following question: Whats the name of segment in s08e21 | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_16 (segment_a VARCHAR, netflix VARCHAR) | SELECT segment_a FROM table_15187735_16 WHERE netflix = "S08E21" |
Write a SQL query that answers the following question: Whats the season/episode of segment a digital dentistry | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_16 (netflix VARCHAR, segment_a VARCHAR) | SELECT netflix FROM table_15187735_16 WHERE segment_a = "Digital Dentistry" |
Write a SQL query that answers the following question: Whats the name of segment D in the episode where segment A is tequila | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_16 (segment_d VARCHAR, segment_a VARCHAR) | SELECT segment_d FROM table_15187735_16 WHERE segment_a = "Tequila" |
Write a SQL query that answers the following question: Name the number of episods for segment c being s oyster | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_18 (episode VARCHAR, segment_c VARCHAR) | SELECT COUNT(episode) FROM table_15187735_18 WHERE segment_c = "s Oyster" |
Write a SQL query that answers the following question: Name the least episode for fibre cement siding | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_18 (episode INTEGER, segment_d VARCHAR) | SELECT MIN(episode) FROM table_15187735_18 WHERE segment_d = "Fibre Cement Siding" |
Write a SQL query that answers the following question: Name the segment b for 226 episode | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_18 (segment_b VARCHAR, episode VARCHAR) | SELECT segment_b FROM table_15187735_18 WHERE episode = 226 |
Write a SQL query that answers the following question: Name the number of sement d for solar water heaters | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_18 (segment_d VARCHAR, segment_b VARCHAR) | SELECT COUNT(segment_d) FROM table_15187735_18 WHERE segment_b = "Solar Water Heaters" |
Write a SQL query that answers the following question: Name the segment d for s cufflink | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_18 (segment_d VARCHAR, segment_a VARCHAR) | SELECT segment_d FROM table_15187735_18 WHERE segment_a = "s Cufflink" |
Write a SQL query that answers the following question: What is the segment B of episode 242? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_19 (segment_b VARCHAR, episode VARCHAR) | SELECT segment_b FROM table_15187735_19 WHERE episode = 242 |
Write a SQL query that answers the following question: What is the segment C of the episode where segment B is Film Digitization? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_19 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_15187735_19 WHERE segment_b = "Film Digitization" |
Write a SQL query that answers the following question: What is the segment A on episode 237? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_19 (segment_a VARCHAR, episode VARCHAR) | SELECT segment_a FROM table_15187735_19 WHERE episode = 237 |
Write a SQL query that answers the following question: What is the last episode which has segment d as blown glass? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_4 (episode INTEGER, segment_d VARCHAR) | SELECT MAX(episode) FROM table_15187735_4 WHERE segment_d = "Blown Glass" |
Write a SQL query that answers the following question: What is the first episode with a netflix episode code of s02e20? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_4 (episode INTEGER, netflix VARCHAR) | SELECT MIN(episode) FROM table_15187735_4 WHERE netflix = "S02E20" |
Write a SQL query that answers the following question: What is the netflix code for episode 46? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_4 (netflix VARCHAR, episode VARCHAR) | SELECT netflix FROM table_15187735_4 WHERE episode = 46 |
Write a SQL query that answers the following question: What is the netflix code where the series and episode are 4-11? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_4 (netflix VARCHAR, series_ep VARCHAR) | SELECT netflix FROM table_15187735_4 WHERE series_ep = "4-11" |
Write a SQL query that answers the following question: What is listed in segment b when segment c is artificial flowers? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_21 (segment_b VARCHAR, segment_c VARCHAR) | SELECT segment_b FROM table_15187735_21 WHERE segment_c = "Artificial Flowers" |
Write a SQL query that answers the following question: What are the titles of segment c when segment d is motorcycle brake locks? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_21 (segment_c VARCHAR, segment_d VARCHAR) | SELECT segment_c FROM table_15187735_21 WHERE segment_d = "Motorcycle Brake Locks" |
Write a SQL query that answers the following question: What are the titles of segment c for series episode is 21-08? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_21 (segment_c VARCHAR, series_ep VARCHAR) | SELECT segment_c FROM table_15187735_21 WHERE series_ep = "21-08" |
Write a SQL query that answers the following question: What are the titles of segment b when segment c is standby generators (part 1)? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_21 (segment_b VARCHAR, segment_c VARCHAR) | SELECT segment_b FROM table_15187735_21 WHERE segment_c = "Standby Generators (Part 1)" |
Write a SQL query that answers the following question: What are the titles of segment a for series episode 21-12? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_21 (segment_a VARCHAR, series_ep VARCHAR) | SELECT segment_a FROM table_15187735_21 WHERE series_ep = "21-12" |
Write a SQL query that answers the following question: Name the number of episode for phyllo dough | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_3 (episode VARCHAR, segment_c VARCHAR) | SELECT COUNT(episode) FROM table_15187735_3 WHERE segment_c = "Phyllo Dough" |
Write a SQL query that answers the following question: Name the segment d for combination locks | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_3 (segment_d VARCHAR, segment_a VARCHAR) | SELECT segment_d FROM table_15187735_3 WHERE segment_a = "Combination Locks" |
Write a SQL query that answers the following question: Name the series ep for s02e08 | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_3 (series_ep VARCHAR, netflix VARCHAR) | SELECT series_ep FROM table_15187735_3 WHERE netflix = "S02E08" |
Write a SQL query that answers the following question: Name the segment c for couscous | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_3 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_15187735_3 WHERE segment_b = "Couscous" |
Write a SQL query that answers the following question: Name the segment c for pottery | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_3 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_15187735_3 WHERE segment_b = "Pottery" |
Write a SQL query that answers the following question: Name the segment d for chicken | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_3 (segment_d VARCHAR, segment_c VARCHAR) | SELECT segment_d FROM table_15187735_3 WHERE segment_c = "Chicken" |
Write a SQL query that answers the following question: What is the Segment A for when Segment C is s Sailboard? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_6 (segment_a VARCHAR, segment_c VARCHAR) | SELECT segment_a FROM table_15187735_6 WHERE segment_c = "s Sailboard" |
Write a SQL query that answers the following question: What is the Segment B when the Segment D is s Hammock? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_6 (segment_b VARCHAR, segment_d VARCHAR) | SELECT segment_b FROM table_15187735_6 WHERE segment_d = "s Hammock" |
Write a SQL query that answers the following question: What is the Netflix Episode when the Segment B is s Highlighter? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_6 (netflix VARCHAR, segment_b VARCHAR) | SELECT netflix FROM table_15187735_6 WHERE segment_b = "s Highlighter" |
Write a SQL query that answers the following question: What is the location of #1? | The relevant table was constructed using the following SQL : CREATE TABLE table_15190346_2 (location VARCHAR, _number VARCHAR) | SELECT location FROM table_15190346_2 WHERE _number = 1 |
Write a SQL query that answers the following question: What stadium was the 1994 Gator Bowl in? | The relevant table was constructed using the following SQL : CREATE TABLE table_15190346_2 (stadium VARCHAR, bowl_game VARCHAR) | SELECT stadium FROM table_15190346_2 WHERE bowl_game = "1994 Gator Bowl" |
Write a SQL query that answers the following question: What is the stadium where the attendance was 75,406? | The relevant table was constructed using the following SQL : CREATE TABLE table_15190346_2 (stadium VARCHAR, attendance VARCHAR) | SELECT stadium FROM table_15190346_2 WHERE attendance = "75,406" |
Write a SQL query that answers the following question: What is the number of the bowl game when attendance was 79,280? | The relevant table was constructed using the following SQL : CREATE TABLE table_15190346_2 (_number INTEGER, attendance VARCHAR) | SELECT MAX(_number) FROM table_15190346_2 WHERE attendance = "79,280" |
Write a SQL query that answers the following question: What was the attendance of the bowl game in Gainesville, Fl? | The relevant table was constructed using the following SQL : CREATE TABLE table_15190346_2 (attendance VARCHAR, location VARCHAR) | SELECT attendance FROM table_15190346_2 WHERE location = "Gainesville, FL" |
Write a SQL query that answers the following question: Name the total number of median income for population 2006 for 365540 | The relevant table was constructed using the following SQL : CREATE TABLE table_151994_1 (median_monthly_per_capita___labour_force_income__hkd_ VARCHAR, population__2006_est_ VARCHAR) | SELECT COUNT(median_monthly_per_capita___labour_force_income__hkd_) FROM table_151994_1 WHERE population__2006_est_ = 365540 |
Write a SQL query that answers the following question: Name the minimum derby county goals | The relevant table was constructed using the following SQL : CREATE TABLE table_15201666_3 (derby_county INTEGER) | SELECT MIN(derby_county) AS Goals FROM table_15201666_3 |
Write a SQL query that answers the following question: Name the most derby county | The relevant table was constructed using the following SQL : CREATE TABLE table_15201666_3 (derby_county INTEGER) | SELECT MAX(derby_county) FROM table_15201666_3 |
Write a SQL query that answers the following question: In episode 115 what is seen being made before British police helmets? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_9 (segment_b VARCHAR, segment_c VARCHAR) | SELECT segment_b FROM table_15187735_9 WHERE segment_c = "British Police Helmets" |
Write a SQL query that answers the following question: How many times was leather introduced before pedal steel guitars in episode 111? | The relevant table was constructed using the following SQL : CREATE TABLE table_15187735_9 (segment_c VARCHAR, segment_d VARCHAR) | SELECT COUNT(segment_c) FROM table_15187735_9 WHERE segment_d = "Pedal Steel Guitars" |
Write a SQL query that answers the following question: What was the UK broadcast date for the episode which visited USA? | The relevant table was constructed using the following SQL : CREATE TABLE table_15211468_1 (uk_broadcast_date VARCHAR, countries_visited VARCHAR) | SELECT uk_broadcast_date FROM table_15211468_1 WHERE countries_visited = "USA" |
Write a SQL query that answers the following question: What countries are visited in the episode presented by Brian B. Thompson? | The relevant table was constructed using the following SQL : CREATE TABLE table_15211468_1 (countries_visited VARCHAR, presenter VARCHAR) | SELECT countries_visited FROM table_15211468_1 WHERE presenter = "Brian B. Thompson" |
Write a SQL query that answers the following question: What is the episode title for the episode numbered #1.4? | The relevant table was constructed using the following SQL : CREATE TABLE table_15211468_1 (episode_title VARCHAR, episode_no VARCHAR) | SELECT episode_title FROM table_15211468_1 WHERE episode_no = "#1.4" |
Write a SQL query that answers the following question: Name the social democratic party for labour | The relevant table was constructed using the following SQL : CREATE TABLE table_152358_3 (social_democratic_party VARCHAR, control VARCHAR) | SELECT social_democratic_party FROM table_152358_3 WHERE control = "labour" |
Write a SQL query that answers the following question: Who wrote episode 11, of which was directed by Will Waring? | The relevant table was constructed using the following SQL : CREATE TABLE table_15284274_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR) | SELECT written_by FROM table_15284274_1 WHERE directed_by = "Will Waring" AND no_in_season = 11 |
Write a SQL query that answers the following question: Who wrote the episode directed by Peter Woeste? | The relevant table was constructed using the following SQL : CREATE TABLE table_15284274_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_15284274_1 WHERE directed_by = "Peter Woeste" |
Write a SQL query that answers the following question: Who was the director of Pecado Mortal | The relevant table was constructed using the following SQL : CREATE TABLE table_15277629_1 (director VARCHAR, original_title VARCHAR) | SELECT director FROM table_15277629_1 WHERE original_title = "Pecado Mortal" |
Write a SQL query that answers the following question: What was the original title of the Bruno Barreto film in 1989 | The relevant table was constructed using the following SQL : CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR, year__ceremony_ VARCHAR) | SELECT original_title FROM table_15277629_1 WHERE director = "Bruno Barreto" AND year__ceremony_ = 1989 |
Write a SQL query that answers the following question: What was the result for director Fernando Meirelles | The relevant table was constructed using the following SQL : CREATE TABLE table_15277629_1 (result VARCHAR, director VARCHAR) | SELECT result FROM table_15277629_1 WHERE director = "Fernando Meirelles" |
Write a SQL query that answers the following question: Name the original title of the Suzana Amaral film | The relevant table was constructed using the following SQL : CREATE TABLE table_15277629_1 (original_title VARCHAR, director VARCHAR) | SELECT original_title FROM table_15277629_1 WHERE director = "Suzana Amaral" |
Write a SQL query that answers the following question: If the country is fenghuang how many provinces are there? | The relevant table was constructed using the following SQL : CREATE TABLE table_152834_2 (province VARCHAR, county VARCHAR) | SELECT COUNT(province) FROM table_152834_2 WHERE county = "Fenghuang" |
Write a SQL query that answers the following question: Who is in group a when indiana is in group d? | The relevant table was constructed using the following SQL : CREATE TABLE table_15290638_1 (group_a VARCHAR, group_d VARCHAR) | SELECT group_a FROM table_15290638_1 WHERE group_d = "Indiana" |
Write a SQL query that answers the following question: Who is in group c when wisconsin is in group d? | The relevant table was constructed using the following SQL : CREATE TABLE table_15290638_1 (group_c VARCHAR, group_d VARCHAR) | SELECT group_c FROM table_15290638_1 WHERE group_d = "Wisconsin" |
Write a SQL query that answers the following question: Who is in group c when iowa is in group e? | The relevant table was constructed using the following SQL : CREATE TABLE table_15290638_1 (group_c VARCHAR, group_e VARCHAR) | SELECT group_c FROM table_15290638_1 WHERE group_e = "Iowa" |
Write a SQL query that answers the following question: Name the old bulgarian names for yuni | The relevant table was constructed using the following SQL : CREATE TABLE table_15275060_1 (old_bulgarian_names VARCHAR, Yuni VARCHAR, Transliteration VARCHAR) | SELECT old_bulgarian_names FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Yuni |
Write a SQL query that answers the following question: Name the old bulgarian names for yanuari | The relevant table was constructed using the following SQL : CREATE TABLE table_15275060_1 (old_bulgarian_names VARCHAR, Yanuari VARCHAR, Transliteration VARCHAR) | SELECT old_bulgarian_names FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Yanuari |
Write a SQL query that answers the following question: Name the bulgarian name for mart | The relevant table was constructed using the following SQL : CREATE TABLE table_15275060_1 (bulgarian_name VARCHAR, Mart VARCHAR, Transliteration VARCHAR) | SELECT bulgarian_name FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Mart |
Write a SQL query that answers the following question: Who owned the team Jeremy Mayfield raced for? | The relevant table was constructed using the following SQL : CREATE TABLE table_1529793_1 (listed_owner_s_ VARCHAR, driver_s_ VARCHAR) | SELECT listed_owner_s_ FROM table_1529793_1 WHERE driver_s_ = "Jeremy Mayfield" |
Write a SQL query that answers the following question: Who is Jason Leffler's primary sponsor? | The relevant table was constructed using the following SQL : CREATE TABLE table_1529793_1 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR) | SELECT primary_sponsor_s_ FROM table_1529793_1 WHERE driver_s_ = "Jason Leffler" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.