Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
39,200
<question>: What is the name of episode # 10a? <context>: CREATE TABLE table_2701851_2 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_2701851_2 WHERE no_in_series = "10a"
39,201
<question>: What is the name of the episode written by Michael Price? <context>: CREATE TABLE table_2701851_2 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_2701851_2 WHERE written_by = "Michael Price"
39,202
<question>: What was the title for the episode with the production code 404a? <context>: CREATE TABLE table_2701851_5 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_2701851_5 WHERE production_code = "404a"
39,203
<question>: What is the production code for the episode written by Kat Likkel & Denise Downer? <context>: CREATE TABLE table_2701851_5 (production_code VARCHAR, written_by VARCHAR)
SELECT production_code FROM table_2701851_5 WHERE written_by = "Kat Likkel & Denise Downer"
39,204
<question>: Who was the director for the Episode number in season 10a? <context>: CREATE TABLE table_2701851_5 (directed_by VARCHAR, no_in_season VARCHAR)
SELECT directed_by FROM table_2701851_5 WHERE no_in_season = "10a"
39,205
<question>: Who wrote the episode in the series 46b? <context>: CREATE TABLE table_2701851_5 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_2701851_5 WHERE no_in_series = "46b"
39,206
<question>: How many production codes did the episode number in series 46b have? <context>: CREATE TABLE table_2701851_5 (production_code VARCHAR, no_in_series VARCHAR)
SELECT COUNT(production_code) FROM table_2701851_5 WHERE no_in_series = "46b"
39,207
<question>: How many directors directed an episode that reached 2.48 million viewers? <context>: CREATE TABLE table_27047554_1 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT COUNT(directed_by) FROM table_27047554_1 WHERE us_viewers__in_millions_ = "2.48"
39,208
<question>: Who represents district 41? <context>: CREATE TABLE table_27050732_7 (delegate VARCHAR, district VARCHAR)
SELECT delegate FROM table_27050732_7 WHERE district = "41"
39,209
<question>: For delegate is mcdonough, patrick l. pat mcdonough, specify all the district. <context>: CREATE TABLE table_27050336_7 (district VARCHAR, delegate VARCHAR)
SELECT district FROM table_27050336_7 WHERE delegate = "McDonough, Patrick L. Pat McDonough"
39,210
<question>: where committee is environmental matters and district is 36 please specify all the delegate name <context>: CREATE TABLE table_27050336_7 (delegate VARCHAR, committee VARCHAR, district VARCHAR)
SELECT delegate FROM table_27050336_7 WHERE committee = "Environmental Matters" AND district = "36"
39,211
<question>: For democratic party, countries represented is montgomery and where committee is judiciary mention all the delegate name. <context>: CREATE TABLE table_27050336_7 (delegate VARCHAR, counties_represented VARCHAR, committee VARCHAR, party VARCHAR)
SELECT delegate FROM table_27050336_7 WHERE committee = "Judiciary" AND party = "Democratic" AND counties_represented = "Montgomery"
39,212
<question>: Where delegate is feldman, brian j. brian j. feldman, please specify all the party <context>: CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR)
SELECT party FROM table_27050336_7 WHERE delegate = "Feldman, Brian J. Brian J. Feldman"
39,213
<question>: For delegate is gaines, tawanna p. tawanna gaines, please specify all the party. <context>: CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR)
SELECT party FROM table_27050336_7 WHERE delegate = "Gaines, Tawanna P. Tawanna Gaines"
39,214
<question>: If the number of floors is 70, what is the height? <context>: CREATE TABLE table_27067379_1 (height VARCHAR, number_of_floors VARCHAR)
SELECT height FROM table_27067379_1 WHERE number_of_floors = 70
39,215
<question>: if the completed is 2010, what is the number of floors? <context>: CREATE TABLE table_27067379_1 (number_of_floors INTEGER, completion VARCHAR)
SELECT MIN(number_of_floors) FROM table_27067379_1 WHERE completion = 2010
39,216
<question>: If the building is Costanera Center Torre 1, what is the height? <context>: CREATE TABLE table_27067379_1 (height VARCHAR, building VARCHAR)
SELECT height FROM table_27067379_1 WHERE building = "Costanera Center Torre 1"
39,217
<question>: How many positions does building Costanera Center Torre 1 have? <context>: CREATE TABLE table_27067379_1 (position VARCHAR, building VARCHAR)
SELECT COUNT(position) FROM table_27067379_1 WHERE building = "Costanera Center Torre 1"
39,218
<question>: Who is the outgoing manager when the team is simurq pfc? <context>: CREATE TABLE table_27057070_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_27057070_3 WHERE team = "Simurq PFC"
39,219
<question>: How many date of appointment entries are there when the team is khazar lankaran? <context>: CREATE TABLE table_27057070_3 (date_of_appointment VARCHAR, team VARCHAR)
SELECT COUNT(date_of_appointment) FROM table_27057070_3 WHERE team = "Khazar Lankaran"
39,220
<question>: What is the manner of departure when the replaced by is bahman hasanov? <context>: CREATE TABLE table_27057070_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT manner_of_departure FROM table_27057070_3 WHERE replaced_by = "Bahman Hasanov"
39,221
<question>: What was the overall record for the Pandas in the 2003-04 season? <context>: CREATE TABLE table_27069503_2 (overall VARCHAR, season VARCHAR)
SELECT overall FROM table_27069503_2 WHERE season = "2003-04"
39,222
<question>: What was the conference record in the season where the Pandas had an overall record of 33-4-1? <context>: CREATE TABLE table_27069503_2 (conf_record VARCHAR, overall VARCHAR)
SELECT conf_record FROM table_27069503_2 WHERE overall = "33-4-1"
39,223
<question>: Who was the coach of the Pandas when their overall record was 20-6-2? <context>: CREATE TABLE table_27069503_2 (coach VARCHAR, overall VARCHAR)
SELECT coach FROM table_27069503_2 WHERE overall = "20-6-2"
39,224
<question>: What was the conference record for the Pandas when they were first in the standings in the 2003-04 season? <context>: CREATE TABLE table_27069503_2 (conf_record VARCHAR, standings VARCHAR, season VARCHAR)
SELECT conf_record FROM table_27069503_2 WHERE standings = "First" AND season = "2003-04"
39,225
<question>: What was the overall record for the Pandas when their conference record was 4-1-1? <context>: CREATE TABLE table_27069503_2 (overall VARCHAR, conf_record VARCHAR)
SELECT overall FROM table_27069503_2 WHERE conf_record = "4-1-1"
39,226
<question>: In what season was the conference record for the Pandas 15-1-1? <context>: CREATE TABLE table_27069503_2 (season VARCHAR, conf_record VARCHAR)
SELECT season FROM table_27069503_2 WHERE conf_record = "15-1-1"
39,227
<question>: how many times is the week # is audition? <context>: CREATE TABLE table_27075510_1 (original_artist VARCHAR, week__number VARCHAR)
SELECT COUNT(original_artist) FROM table_27075510_1 WHERE week__number = "Audition"
39,228
<question>: How many episodes are numbered 14 in the series? <context>: CREATE TABLE table_27081956_1 (episode VARCHAR, series_no VARCHAR)
SELECT COUNT(episode) FROM table_27081956_1 WHERE series_no = 14
39,229
<question>: What is the format of 105.5 fm? <context>: CREATE TABLE table_2709_4 (format VARCHAR, frequency VARCHAR)
SELECT format FROM table_2709_4 WHERE frequency = "105.5 FM"
39,230
<question>: What is the market for KLRJ? <context>: CREATE TABLE table_2709_4 (target_city__market VARCHAR, call_sign VARCHAR)
SELECT target_city__market FROM table_2709_4 WHERE call_sign = "KLRJ"
39,231
<question>: What is the format for the station owned by Dakota Broadcasting? <context>: CREATE TABLE table_2709_4 (format VARCHAR, owner VARCHAR)
SELECT format FROM table_2709_4 WHERE owner = "Dakota Broadcasting"
39,232
<question>: What team's manager was replaced by Ercan Ertemçöz? <context>: CREATE TABLE table_27091128_2 (team VARCHAR, replaced_by VARCHAR)
SELECT team FROM table_27091128_2 WHERE replaced_by = "Ercan Ertemçöz"
39,233
<question>: What was the date of appointment for the manager replacing Kadir Özcan? <context>: CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_27091128_2 WHERE outgoing_manager = "Kadir Özcan"
39,234
<question>: Which manager was appointed on 08.06.2010? <context>: CREATE TABLE table_27091128_2 (replaced_by VARCHAR, date_of_appointment VARCHAR)
SELECT replaced_by FROM table_27091128_2 WHERE date_of_appointment = "08.06.2010"
39,235
<question>: Who replaced the previous manager of Altay? <context>: CREATE TABLE table_27091128_2 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_27091128_2 WHERE team = "Altay"
39,236
<question>: What was date of appointment for Ergün Penbe? <context>: CREATE TABLE table_27091128_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT date_of_appointment FROM table_27091128_2 WHERE replaced_by = "Ergün Penbe"
39,237
<question>: What is the overall total for the Omaha Nighthawks? <context>: CREATE TABLE table_27094070_4 (overall_total INTEGER, team VARCHAR)
SELECT MIN(overall_total) FROM table_27094070_4 WHERE team = "Omaha Nighthawks"
39,238
<question>: Which team has the home average of 18125? <context>: CREATE TABLE table_27094070_4 (team VARCHAR, home_avg VARCHAR)
SELECT team FROM table_27094070_4 WHERE home_avg = 18125
39,239
<question>: What was the highest home total? <context>: CREATE TABLE table_27094070_4 (home_total INTEGER)
SELECT MAX(home_total) FROM table_27094070_4
39,240
<question>: How many games had an average of 12796? <context>: CREATE TABLE table_27094070_4 (overall_gms VARCHAR, overall_avg VARCHAR)
SELECT COUNT(overall_gms) FROM table_27094070_4 WHERE overall_avg = 12796
39,241
<question>: Who was the stage winner of the letua cycling team on stage 2? <context>: CREATE TABLE table_27112708_2 (stage VARCHAR, team_classification VARCHAR)
SELECT stage AS winner FROM table_27112708_2 WHERE team_classification = "LeTua Cycling Team" AND stage = 2
39,242
<question>: Which mountains classification is listed under stage 3? <context>: CREATE TABLE table_27112708_2 (mountains_classification VARCHAR, stage VARCHAR)
SELECT mountains_classification FROM table_27112708_2 WHERE stage = 3
39,243
<question>: Who is listed under general classification on stage 4? <context>: CREATE TABLE table_27112708_2 (general_classification VARCHAR, stage VARCHAR)
SELECT general_classification FROM table_27112708_2 WHERE stage = 4
39,244
<question>: Who wrote the episodes with 7.70 u.s. viewers (million) ? <context>: CREATE TABLE table_27117365_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_27117365_1 WHERE us_viewers__million_ = "7.70"
39,245
<question>: What original air date has 5.85 u.s. viewers (million)? <context>: CREATE TABLE table_27117365_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_27117365_1 WHERE us_viewers__million_ = "5.85"
39,246
<question>: What's the title in the number 10 in the season? <context>: CREATE TABLE table_27117365_1 (title VARCHAR, no_in_season VARCHAR)
SELECT title FROM table_27117365_1 WHERE no_in_season = 10
39,247
<question>: If the position in table is 10th, and the manner of departure was resigned, what was the date of vacancy? <context>: CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
SELECT date_of_vacancy FROM table_27133147_3 WHERE manner_of_departure = "Resigned" AND position_in_table = "10th"
39,248
<question>: If the incoming head coach is Carlos Azenha, what is the date of vacancy? <context>: CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, incoming_head_coach VARCHAR)
SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha"
39,249
<question>: If the team is união de leiria, what is the date of appointment? <context>: CREATE TABLE table_27133147_3 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_27133147_3 WHERE team = "União de Leiria"
39,250
<question>: What is 2003 when 1999 is 2.1? <context>: CREATE TABLE table_27146868_1 (Id VARCHAR)
SELECT 2003 FROM table_27146868_1 WHERE 1999 = "2.1"
39,251
<question>: What is 2010 when 2003 is 5.6? <context>: CREATE TABLE table_27146868_1 (Id VARCHAR)
SELECT 2010 FROM table_27146868_1 WHERE 2003 = "5.6"
39,252
<question>: What is the greek national account when 1997 is 6.1? <context>: CREATE TABLE table_27146868_1 (greek_national_account VARCHAR)
SELECT greek_national_account FROM table_27146868_1 WHERE 1997 = "6.1"
39,253
<question>: What is 2006 when 1997 is 6.8? <context>: CREATE TABLE table_27146868_1 (Id VARCHAR)
SELECT 2006 FROM table_27146868_1 WHERE 1997 = "6.8"
39,254
<question>: What is 2002 when 2009 is 54.0? <context>: CREATE TABLE table_27146868_1 (Id VARCHAR)
SELECT 2002 FROM table_27146868_1 WHERE 2009 = "54.0"
39,255
<question>: If the NFL team is the Houston Oilers and the position is DT, who is the Pro team? <context>: CREATE TABLE table_27132791_3 (pro_team VARCHAR, position VARCHAR, nfl_team VARCHAR)
SELECT pro_team FROM table_27132791_3 WHERE position = "DT" AND nfl_team = "Houston Oilers"
39,256
<question>: How many different players does the Washington Redskins have? <context>: CREATE TABLE table_27132791_3 (player VARCHAR, nfl_team VARCHAR)
SELECT COUNT(player) FROM table_27132791_3 WHERE nfl_team = "Washington Redskins"
39,257
<question>: If the college is Vanderbilt, what is the position? <context>: CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)
SELECT position FROM table_27132791_3 WHERE college = "Vanderbilt"
39,258
<question>: If the proteam is Jacksonville bulls, what is the position? <context>: CREATE TABLE table_27132791_3 (position VARCHAR, pro_team VARCHAR)
SELECT position FROM table_27132791_3 WHERE pro_team = "Jacksonville Bulls"
39,259
<question>: If the college is SMU, what is the position? <context>: CREATE TABLE table_27132791_3 (position VARCHAR, college VARCHAR)
SELECT position FROM table_27132791_3 WHERE college = "SMU"
39,260
<question>: Who wrote the episode with the production code of 3t7255? <context>: CREATE TABLE table_27116696_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_27116696_1 WHERE production_code = "3T7255"
39,261
<question>: How many U.S. viewers (million) watched the episode directed by Allison Liddi-Brown? <context>: CREATE TABLE table_27116696_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__million_ FROM table_27116696_1 WHERE directed_by = "Allison Liddi-Brown"
39,262
<question>: What is the total number of production code listings of episodes written by Matthew Lau? <context>: CREATE TABLE table_27116696_1 (production_code VARCHAR, written_by VARCHAR)
SELECT COUNT(production_code) FROM table_27116696_1 WHERE written_by = "Matthew Lau"
39,263
<question>: What was the prize pool in New Orleans? <context>: CREATE TABLE table_2715355_1 (total_prize_pool VARCHAR, location VARCHAR)
SELECT total_prize_pool FROM table_2715355_1 WHERE location = "New Orleans"
39,264
<question>: How many prizes were available in the competition where 696 people entered? <context>: CREATE TABLE table_2715355_1 (winners VARCHAR, entrants VARCHAR)
SELECT COUNT(winners) AS Prize FROM table_2715355_1 WHERE entrants = 696
39,265
<question>: Name the accession number for rhodopseudomonas palustris <context>: CREATE TABLE table_27155678_2 (accession_number VARCHAR, genus_species VARCHAR)
SELECT accession_number FROM table_27155678_2 WHERE genus_species = "Rhodopseudomonas palustris"
39,266
<question>: Name the genus/species of accession number bx897699.1 <context>: CREATE TABLE table_27155678_2 (genus_species VARCHAR, accession_number VARCHAR)
SELECT genus_species FROM table_27155678_2 WHERE accession_number = "BX897699.1"
39,267
<question>: Name the accession number for sequence similarity being 54 <context>: CREATE TABLE table_27155678_2 (accession_number VARCHAR, sequence_similarity VARCHAR)
SELECT accession_number FROM table_27155678_2 WHERE sequence_similarity = 54
39,268
<question>: Name the gene name for methylobacterium nodulans <context>: CREATE TABLE table_27155678_2 (gene_name VARCHAR, genus_species VARCHAR)
SELECT gene_name FROM table_27155678_2 WHERE genus_species = "Methylobacterium nodulans"
39,269
<question>: Name the gene name for accession number bx897700.1 <context>: CREATE TABLE table_27155678_2 (gene_name VARCHAR, accession_number VARCHAR)
SELECT gene_name FROM table_27155678_2 WHERE accession_number = "BX897700.1"
39,270
<question>: What was the minimum % funded of the project that was closed on 2012-05-18? <context>: CREATE TABLE table_27155990_1 (_percentage_funded INTEGER, closing_date VARCHAR)
SELECT MIN(_percentage_funded) FROM table_27155990_1 WHERE closing_date = "2012-05-18"
39,271
<question>: What was the maximum total USD collected by Pebble Technology? <context>: CREATE TABLE table_27155990_1 (total_usd INTEGER, creator VARCHAR)
SELECT MAX(total_usd) FROM table_27155990_1 WHERE creator = "Pebble Technology"
39,272
<question>: What was the category of the project name Mighty No. 9? <context>: CREATE TABLE table_27155990_1 (category VARCHAR, project_name VARCHAR)
SELECT category FROM table_27155990_1 WHERE project_name = "Mighty No. 9"
39,273
<question>: Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times? <context>: CREATE TABLE table_27155990_1 (rank VARCHAR, project_name VARCHAR)
SELECT COUNT(rank) FROM table_27155990_1 WHERE project_name = "Pebble: E-Paper Watch for iPhone and Android"
39,274
<question>: How many league apps did the player with 11 team goals have? <context>: CREATE TABLE table_27170987_5 (league_apps VARCHAR, total_goals VARCHAR)
SELECT league_apps FROM table_27170987_5 WHERE total_goals = 11
39,275
<question>: What is the lowest number of total goals for a player with 6 league goals? <context>: CREATE TABLE table_27170987_5 (total_goals INTEGER, league_goals VARCHAR)
SELECT MIN(total_goals) FROM table_27170987_5 WHERE league_goals = 6
39,276
<question>: What is the lowest number of fa cup goals by a player? <context>: CREATE TABLE table_27170987_5 (fa_cup_goals INTEGER)
SELECT MIN(fa_cup_goals) FROM table_27170987_5
39,277
<question>: Who wrote the episode that aired on September 26, 2010? <context>: CREATE TABLE table_27169029_1 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_27169029_1 WHERE original_air_date = "September 26, 2010"
39,278
<question>: How many radio stations were built in Asia? <context>: CREATE TABLE table_27184837_1 (asia VARCHAR, programs VARCHAR)
SELECT asia FROM table_27184837_1 WHERE programs = "Radio Stations"
39,279
<question>: How many program data on Asia was written if the organization launched 14 programs iin the Americas? <context>: CREATE TABLE table_27184837_1 (asia VARCHAR, americas VARCHAR)
SELECT COUNT(asia) FROM table_27184837_1 WHERE americas = 14
39,280
<question>: How many times did Australasia received a program if the Americas received 115 program? <context>: CREATE TABLE table_27184837_1 (australasia VARCHAR, americas VARCHAR)
SELECT COUNT(australasia) FROM table_27184837_1 WHERE americas = 115
39,281
<question>: What is every episode number for the series number 3? <context>: CREATE TABLE table_27208311_1 (episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series VARCHAR, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series VARCHAR, series_no VARCHAR)
SELECT episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series FROM table_27208311_1 WHERE series_no = 3
39,282
<question>: What is every episode with Barry Purchese as the writer? <context>: CREATE TABLE table_27208311_1 (episode VARCHAR, writer VARCHAR)
SELECT episode FROM table_27208311_1 WHERE writer = "Barry Purchese"
39,283
<question>: Name the number of episodes for sam snape <context>: CREATE TABLE table_27208817_1 (episode VARCHAR, writer VARCHAR)
SELECT COUNT(episode) FROM table_27208817_1 WHERE writer = "Sam Snape"
39,284
<question>: What was the aspect ratio if the vertical pixel is 480 and pixel aspect ratio is 1:1? <context>: CREATE TABLE table_272313_1 (aspect_ratio VARCHAR, vertical VARCHAR, pixel_aspect_ratio VARCHAR)
SELECT aspect_ratio FROM table_272313_1 WHERE vertical = 480 AND pixel_aspect_ratio = "1:1"
39,285
<question>: What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced? <context>: CREATE TABLE table_272313_1 (vertical INTEGER, aspect_ratio VARCHAR, scanning VARCHAR)
SELECT MIN(vertical) FROM table_272313_1 WHERE aspect_ratio = "16:9" AND scanning = "interlaced"
39,286
<question>: What was the maximum vertical measurement if the horizon measurement is 640? <context>: CREATE TABLE table_272313_1 (vertical INTEGER, horizontal VARCHAR)
SELECT MAX(vertical) FROM table_272313_1 WHERE horizontal = 640
39,287
<question>: Name the outgoing manager for mutual consent and position 16th <context>: CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
SELECT outgoing_manager FROM table_27225944_3 WHERE manner_of_departure = "Mutual consent" AND position_in_table = "16th"
39,288
<question>: Name the replaced by for slaven belupo <context>: CREATE TABLE table_27225944_3 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_27225944_3 WHERE team = "Slaven Belupo"
39,289
<question>: Name the number of outgoing manager for rijeka <context>: CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT COUNT(outgoing_manager) FROM table_27225944_3 WHERE team = "Rijeka"
39,290
<question>: Name the least horizontal for smpte 259m three quarters <context>: CREATE TABLE table_272313_2 (horizontal INTEGER, pixel_aspect_ratio VARCHAR)
SELECT MIN(horizontal) FROM table_272313_2 WHERE pixel_aspect_ratio = "SMPTE 259M three quarters"
39,291
<question>: Name the aspect ratio for smpte 259m and interlaced scanning <context>: CREATE TABLE table_272313_2 (aspect_ratio VARCHAR, pixel_aspect_ratio VARCHAR, scanning VARCHAR)
SELECT aspect_ratio FROM table_272313_2 WHERE pixel_aspect_ratio = "SMPTE 259M" AND scanning = "interlaced"
39,292
<question>: What date did the episode that was written by Fintan Ryan originally air? <context>: CREATE TABLE table_27218002_2 (originalairdate VARCHAR, written_by VARCHAR)
SELECT originalairdate FROM table_27218002_2 WHERE written_by = "Fintan Ryan"
39,293
<question>: What date did the epiode that had 1.37 million as the rating originally air? <context>: CREATE TABLE table_27218002_2 (originalairdate VARCHAR, ratings VARCHAR)
SELECT originalairdate FROM table_27218002_2 WHERE ratings = "1.37 Million"
39,294
<question>: What is the title of the episode no. 16 by season? <context>: CREATE TABLE table_27250813_1 (title VARCHAR, no_in_season VARCHAR)
SELECT title FROM table_27250813_1 WHERE no_in_season = 16
39,295
<question>: How many times did an episode with a production code of 12003 was aired? <context>: CREATE TABLE table_27250813_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT COUNT(original_air_date) FROM table_27250813_1 WHERE production_code = 12003
39,296
<question>: Name the color analyst for terry bowden and 17.2 <context>: CREATE TABLE table_2724704_5 (color_analyst_s_ VARCHAR, studio_analyst_s_ VARCHAR, tv_rating VARCHAR)
SELECT color_analyst_s_ FROM table_2724704_5 WHERE studio_analyst_s_ = "Terry Bowden" AND tv_rating = "17.2"
39,297
<question>: Name the number of bowl for lee corso, gene chizik and chip kelly <context>: CREATE TABLE table_2724704_5 (bowl VARCHAR, studio_analyst_s_ VARCHAR)
SELECT COUNT(bowl) FROM table_2724704_5 WHERE studio_analyst_s_ = "Lee Corso, Gene Chizik and Chip Kelly"
39,298
<question>: Name the studio analysts for espn with erin andrews and tom rinaldi <context>: CREATE TABLE table_2724704_5 (studio_analyst_s_ VARCHAR, network_s_ VARCHAR, sideline_reporter_s_ VARCHAR)
SELECT studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = "ESPN" AND sideline_reporter_s_ = "Erin Andrews and Tom Rinaldi"
39,299
<question>: What is the highest series number with 9.17 million US viewers? <context>: CREATE TABLE table_27255755_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(no_in_series) FROM table_27255755_1 WHERE us_viewers__millions_ = "9.17"