context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR)
I want the director for heroes of the wild
SELECT director FROM table_name_29 WHERE serial_title = "heroes of the wild"
CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR)
I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes
SELECT cast FROM table_name_75 WHERE director = "colbert clark and armand schaefer" AND serial_title = "burn 'em up barnes"
CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4?
SELECT opponent_in_the_final FROM table_name_23 WHERE surface = "clay" AND score = "6–4, 6–4"
CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR)
What county has a CERCLIS ID of scd037405362?
SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362"
CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR)
What year was the Drama Desk award won by nominee George Hearn?
SELECT year FROM table_name_44 WHERE award = "drama desk award" AND result = "won" AND nominee = "george hearn"
CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR)
When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent
SELECT date FROM table_name_60 WHERE competition = "2014 world cup qualification" AND location = "kampala" AND opponent = "angola"
CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR)
What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent?
SELECT zone FROM table_name_42 WHERE round = "semifinal" AND against = "israel" AND opponent = "anna smashnova"
CREATE TABLE table_17538810_10 (lead_margin VARCHAR, dates_administered VARCHAR)
How many different lead margins were stated in the poll administered on September 11, 2008?
SELECT COUNT(lead_margin) FROM table_17538810_10 WHERE dates_administered = "September 11, 2008"
CREATE TABLE table_name_87 (home_team VARCHAR)
Tell me the home team score for richmond home team
SELECT home_team AS score FROM table_name_87 WHERE home_team = "richmond"
CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR)
When fitzroy was the home team, how much did the away team score?
SELECT away_team AS score FROM table_name_76 WHERE home_team = "fitzroy"
CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR)
Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?
SELECT method FROM table_name_33 WHERE event = "shooto" AND round = 2 AND opponent = "issei tamura"
CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)
Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260
SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260
CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)
What is the home team score that played at windy hill?
SELECT home_team AS score FROM table_name_81 WHERE venue = "windy hill"
CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR)
Which Constructor has the goodwood circuit?
SELECT constructor FROM table_name_53 WHERE circuit = "goodwood"
CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR)
Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita?
SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = "kōzō murashita"
CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
How many Laps Did Driver David Coulthard have on a Grid smaller than 11?
SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = "david coulthard"
CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR)
How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?
SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = "Darren Flutie, Eric Tillman and Greg Frers"
CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR)
Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?
SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving"
CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR)
Name the league for 1994
SELECT league FROM table_name_16 WHERE year = "1994"
CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)
What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?
SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257
CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)
What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?
SELECT pos FROM table_name_39 WHERE race = "24 hours of le mans" AND co_driver = "jackie oliver"
CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
How many points categories are there when the losing bonus is 2 and points for are 642?
SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = "2" AND points_for = "642"
CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
What's the Time/Retired of 80 laps with a Grid larger than 2?
SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2
CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)
Where date is october 7 and game greater than 1, what is the highest attendance?
SELECT MAX(attendance) FROM table_name_43 WHERE date = "october 7" AND game > 1
CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR)
Which leading scorer has a Home of grizzlies, and a Record of 10–28?
SELECT leading_scorer FROM table_name_66 WHERE home = "grizzlies" AND record = "10–28"
CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR)
What is the Score with a Home of colorado, and a Date with may 11?
SELECT score FROM table_name_72 WHERE home = "colorado" AND date = "may 11"
CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)
On what surface was the game played with a score of 6–4, 6–4?
SELECT surface FROM table_177273_2 WHERE score = "6–4, 6–4"
CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)
What is the final win percentage of the Sault Ste. Marie Greyhounds?
SELECT final_win__percentage FROM table_17751942_4 WHERE team = "Sault Ste. Marie Greyhounds"
CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)
Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?
SELECT mission FROM table_name_47 WHERE launch_date = "december 30, 1970; 14:50 gmt"
CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)
Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r
SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = "6.4" AND archive = "16mm t/r"
CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)
How many laps recorded in 2001?
SELECT laps FROM table_17802778_1 WHERE year = 2001
CREATE TABLE table_17802778_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)
What was the average speed (mph) for the racer who finished in 1:45:00?
SELECT average_speed__mph_ FROM table_17802778_1 WHERE race_time = "1:45:00"
CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR)
Name the slope length for 1966 groundstation
SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966
CREATE TABLE table_name_36 (bronze VARCHAR, rank VARCHAR, gold VARCHAR)
How many bronze medals for the nation ranked above 2, and under 0 golds?
SELECT COUNT(bronze) FROM table_name_36 WHERE rank < 2 AND gold < 0
CREATE TABLE table_17827271_1 (actor_required VARCHAR, actor_in_original_production VARCHAR)
What were the requirements for the role played by Robert Austin in the original production?
SELECT actor_required FROM table_17827271_1 WHERE actor_in_original_production = "Robert Austin"
CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR)
How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?
SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = "Tracy Taylor"
CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_in_original_production VARCHAR)
What RolePlay actor played the same role Alison Pargeter played in the original production?
SELECT roleplay FROM table_17827271_1 WHERE actor_in_original_production = "Alison Pargeter"
CREATE TABLE table_178381_1 (location_of_the_church VARCHAR, year_built VARCHAR, church_name VARCHAR)
On how many locations is there a church named Askrova Bedehuskapell, built in 1957?
SELECT COUNT(location_of_the_church) FROM table_178381_1 WHERE year_built = "1957" AND church_name = "Askrova bedehuskapell"
CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR)
How many people were in the crowd at Lake Oval?
SELECT crowd FROM table_name_2 WHERE venue = "lake oval"
CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR)
What team was the home team on 27 june 1981, at vfl park?
SELECT home_team FROM table_name_88 WHERE date = "27 june 1981" AND venue = "vfl park"
CREATE TABLE table_1784514_1 (number_of_powiats VARCHAR, capital VARCHAR)
How many powiats have mstsislaw as a capital?
SELECT number_of_powiats FROM table_1784514_1 WHERE capital = "Mstsislaw"
CREATE TABLE table_1784514_1 (capital VARCHAR, voivodeship_after_1569 VARCHAR)
How many capitals had brest litovsk voivodeship as voivodeship after 1569?
SELECT COUNT(capital) FROM table_1784514_1 WHERE voivodeship_after_1569 = "Brest Litovsk Voivodeship"
CREATE TABLE table_178399_1 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
Name the number of parish for vilnes kyrkje
SELECT COUNT(parish__prestegjeld_) FROM table_178399_1 WHERE church_name = "Vilnes kyrkje"
CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR)
What is the GDP (nominal) with Population of 5,125,693?
SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = "5,125,693"
CREATE TABLE table_178399_1 (year_built INTEGER, church_name VARCHAR)
Name the maximum year built for holmedal kyrkje
SELECT MAX(year_built) FROM table_178399_1 WHERE church_name = "Holmedal kyrkje"
CREATE TABLE table_17869717_1 (week VARCHAR, date VARCHAR)
In how many weeks was the game played on November 3 played?
SELECT COUNT(week) FROM table_17869717_1 WHERE date = "November 3"
CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
What is the broadcast date when 8.3 million viewers watched?
SELECT broadcast_date FROM table_1785117_1 WHERE viewers__in_millions_ = "8.3"
CREATE TABLE table_17881033_1 (division_north VARCHAR, division_south VARCHAR, division_southwest VARCHAR)
what is the division north when division south was kožuf and division southwest was ilinden velmej
SELECT division_north FROM table_17881033_1 WHERE division_south = "Kožuf" AND division_southwest = "Ilinden Velmej"
CREATE TABLE table_name_70 (retail_space_sq_feet__m²_ VARCHAR, mall_name VARCHAR)
What is the retail space of the Stony Point Fashion Park Mall?
SELECT retail_space_sq_feet__m²_ FROM table_name_70 WHERE mall_name = "stony point fashion park"
CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?
SELECT score FROM table_name_81 WHERE visitor = "bucks" AND leading_scorer = "maurice williams (25)"
CREATE TABLE table_17933600_2 (outgoing_manage VARCHAR, incoming_manager VARCHAR)
Who was the outgoing manager when the incoming manager was joão pereira?
SELECT outgoing_manage FROM table_17933600_2 WHERE incoming_manager = "João Pereira"
CREATE TABLE table_name_91 (date VARCHAR, tyre VARCHAR, circuit VARCHAR)
On what date is there a Tryre of d at the Circuit of monaco?
SELECT date FROM table_name_91 WHERE tyre = "d" AND circuit = "monaco"
CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR)
If the home is Atlético Tucumán, what is the name of the first leg?
SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "Atlético Tucumán"
CREATE TABLE table_17964087_2 (chinese_name VARCHAR, romanised_name VARCHAR)
What is the chinese name for whom chan chi-yuen, paul is listed as the romanised name?
SELECT chinese_name FROM table_17964087_2 WHERE romanised_name = "Chan Chi-yuen, Paul"
CREATE TABLE table_17964087_2 (romanised_name VARCHAR, prior_occupation VARCHAR)
For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name.
SELECT romanised_name FROM table_17964087_2 WHERE prior_occupation = "Assistant Police Commissioner (ret'd)"
CREATE TABLE table_name_18 (release_date VARCHAR, release_format VARCHAR, country VARCHAR)
What is the release date for the standard cd release format in north america?
SELECT release_date FROM table_name_18 WHERE release_format = "standard cd" AND country = "north america"
CREATE TABLE table_17978052_2 (comment VARCHAR, borough_or_census_area VARCHAR)
What was the comment on the Denali area?
SELECT comment FROM table_17978052_2 WHERE borough_or_census_area = "Denali"
CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR)
How many dams are there in the Nome (CA) area?
SELECT MIN(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = "Nome (CA)"
CREATE TABLE table_17972193_1 (record VARCHAR, opponent VARCHAR)
What was the game record when the opponent was 'at Los Angeles Raiders'?
SELECT record FROM table_17972193_1 WHERE opponent = "at Los Angeles Raiders"
CREATE TABLE table_17972193_1 (attendance VARCHAR, game_site VARCHAR)
How many total number of attendance were there when the game was held in Anaheim Stadium?
SELECT COUNT(attendance) FROM table_17972193_1 WHERE game_site = "Anaheim Stadium"
CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR)
What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?
SELECT MIN(apps) FROM table_name_79 WHERE country = "honduras" AND goals < 2 AND team = "club deportivo victoria" AND division > 1
CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
What's the average Grid for those who spun off after Lap 64?
SELECT AVG(grid) FROM table_name_68 WHERE time_retired = "spun off" AND laps > 64
CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR)
What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?
SELECT MAX(laps) FROM table_name_42 WHERE constructor = "tyrrell - yamaha" AND time_retired = "+ 1 lap"
CREATE TABLE table_name_79 (format VARCHAR, catalogue VARCHAR, region VARCHAR)
What format is the Catalogue 9362486152 from the region of Australia in?
SELECT format FROM table_name_79 WHERE catalogue = "9362486152" AND region = "australia"
CREATE TABLE table_name_2 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR)
What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?
SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5
CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR)
What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?
SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1
CREATE TABLE table_name_97 (rank__timeslot_ INTEGER, rating VARCHAR, share VARCHAR)
What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?
SELECT AVG(rank__timeslot_) FROM table_name_97 WHERE rating < 2.6 AND share > 4
CREATE TABLE table_1802760_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR)
Why did the change happen in the state where the formal installation happen on February 14, 1859?
SELECT reason_for_change FROM table_1802760_3 WHERE date_of_successors_formal_installation = "February 14, 1859"
CREATE TABLE table_18042409_1 (international_competition VARCHAR, national_lacrosse_league VARCHAR)
List all the international lacrosse league competitions for Toronto Rock.
SELECT international_competition FROM table_18042409_1 WHERE national_lacrosse_league = "Toronto Rock"
CREATE TABLE table_name_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR)
Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24)
SELECT shuji_kondo FROM table_name_90 WHERE mazada = "x" AND ryuji_hijikata = "hijikata (14:24)"
CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR)
What was the decision on october 5?
SELECT decision FROM table_name_44 WHERE date = "october 5"
CREATE TABLE table_name_52 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
What city of license has a Frequency under 107.7, and a call sign of w247aq?
SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = "w247aq"
CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR)
The plural word of following lines or pages has what plural abbreviation?
SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = "following lines or pages"
CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)
What is the Pinyin transcription for "Alas for the Days Gone By"?
SELECT transcription__based_on_pinyin_ FROM table_1805919_1 WHERE english_translation = "Alas for the Days Gone By"
CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)
Which candidate lost the election that 770,046 people voted in?
SELECT candidate FROM table_name_99 WHERE outcome_of_election = "lost" AND number_of_votes = "770,046"
CREATE TABLE table_18069789_1 (year_ VARCHAR, e_ VARCHAR, original_title VARCHAR)
which year was the original title გაღმა ნაპირი
SELECT year_[e_] AS __ceremony_ FROM table_18069789_1 WHERE original_title = "გაღმა ნაპირი"
CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR)
what race did Dominican win with a distance of 1-1/16 miles?
SELECT race FROM table_name_57 WHERE winning_horse = "dominican" AND distance = "1-1/16 miles"
CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR)
In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd?
SELECT year FROM table_name_95 WHERE extra = "800 m" AND tournament = "european indoor championships" AND result = "2nd"
CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR)
What is the earnings per share when the net profit is 16.2 million dollars?
SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "16.2"
CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR)
Who is the partner in the final with a score of 2–6, 7–6, 7–6?
SELECT partner FROM table_name_10 WHERE score_in_the_final = "2–6, 7–6, 7–6"
CREATE TABLE table_name_66 (surface VARCHAR, score_in_the_final VARCHAR, outcome VARCHAR, partner VARCHAR)
On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2–6, 6–7?
SELECT surface FROM table_name_66 WHERE outcome = "runner-up" AND partner = "ivan lendl" AND score_in_the_final = "2–6, 6–7"
CREATE TABLE table_18173916_6 (episodes VARCHAR, tuesday VARCHAR)
What were the dates when 224 Assassin's Creed: Brotherhood Circus Training was shown on Tuesday?
SELECT episodes FROM table_18173916_6 WHERE tuesday = "224 Assassin's Creed: Brotherhood Circus Training"
CREATE TABLE table_name_46 (away_team VARCHAR, venue VARCHAR)
What was the away team score at western oval?
SELECT away_team AS score FROM table_name_46 WHERE venue = "western oval"
CREATE TABLE table_1816947_2 (highest_attendance_away VARCHAR, average_attendance_home VARCHAR)
When the home attendance is 3.123, what's the highest away attendance?
SELECT highest_attendance_away FROM table_1816947_2 WHERE average_attendance_home = "3.123"
CREATE TABLE table_name_53 (score VARCHAR, runner_up VARCHAR, tournament VARCHAR)
what was the score when goran ivanišević was runner up and the tournament was in algarve?
SELECT score FROM table_name_53 WHERE runner_up = "goran ivanišević" AND tournament = "algarve"
CREATE TABLE table_1818254_1 (violent_crime VARCHAR, robbery VARCHAR)
What was the violent crime rate in the city where the robbery rate was 201.4?
SELECT violent_crime FROM table_1818254_1 WHERE robbery = "201.4"
CREATE TABLE table_1818254_1 (property_crime VARCHAR, burglary VARCHAR)
How many cities were there in 2012 where the rate of burglary was 224.8?
SELECT COUNT(property_crime) FROM table_1818254_1 WHERE burglary = "224.8"
CREATE TABLE table_name_1 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)
When the Away team footscray played on the Date of 19 july 1980, what was the amount of people in the Crowd?
SELECT crowd FROM table_name_1 WHERE date = "19 july 1980" AND away_team = "footscray"
CREATE TABLE table_18217753_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
How many series had viewers totaling 23.93 million?
SELECT COUNT(series__number) FROM table_18217753_1 WHERE us_viewers__millions_ = "23.93"
CREATE TABLE table_18217753_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
How many original air dates totaled 26.06 million viewers?
SELECT COUNT(original_air_date) FROM table_18217753_1 WHERE us_viewers__millions_ = "26.06"