question
stringlengths
14
216
context
stringlengths
45
458
answer
stringlengths
18
463
what's the width with frame size being 4.5k
create table table_1251878_1 (width varchar, frame_size varchar, PRIMARY KEY (width))
select width from table_1251878_1 where frame_size = "4.5k"
What is the first name of the author with last name "Ueno"?
create table authors (fname varchar, lname varchar, PRIMARY KEY (fname))
select fname from authors where lname = "ueno"
What countries does the Rock come from?
create table table_2305948_1 (country varchar, name varchar, PRIMARY KEY (country))
select count(country) from table_2305948_1 where name = "the rock"
Why did the change happen in the state where the formal installation happen on February 14, 1859?
create table table_1802760_3 (reason_for_change varchar, date_of_successors_formal_installation varchar, PRIMARY KEY (reason_for_change))
select reason_for_change from table_1802760_3 where date_of_successors_formal_installation = "february 14, 1859"
What institution(s) are located in wilkes-barre, pennsylvania?
create table table_261906_2 (institution varchar, location varchar, PRIMARY KEY (institution))
select institution from table_261906_2 where location = "wilkes-barre, pennsylvania"
What was the film Falling up nominated for?
create table table_10236830_6 (nomination varchar, film_name varchar, PRIMARY KEY (nomination))
select nomination from table_10236830_6 where film_name = "falling up"
What is the queens where richmond staten is 42%?
create table table_1108394_24 (queens varchar, richmond_ varchar, staten_is varchar, PRIMARY KEY (queens))
select queens from table_1108394_24 where richmond_[staten_is] = "42_percentage"
Please show different denominations and the corresponding number of schools.
create table school (denomination varchar, PRIMARY KEY (denomination))
select denomination, count(*) from school group by denomination
In what parish is the Askrova Bedehuskapell church?
create table table_178381_1 (parish__prestegjeld_ varchar, church_name varchar, PRIMARY KEY (parish__prestegjeld_))
select parish__prestegjeld_ from table_178381_1 where church_name = "askrova bedehuskapell"
How many millions of viewers did the episode written by Andrea Conway Kagey?
create table table_23399481_4 (us_viewers__in_millions_ varchar, written_by varchar, PRIMARY KEY (us_viewers__in_millions_))
select us_viewers__in_millions_ from table_23399481_4 where written_by = "andrea conway kagey"
When socketg1 is the socket what is the release price in dollars?
create table table_18823880_10 (release_price___usd__ varchar, socket varchar, PRIMARY KEY (release_price___usd__))
select release_price___usd__ from table_18823880_10 where socket = "socketg1"
what is the population where municipality is san jacinto?
create table table_1691800_2 (population__2010_ varchar, municipality varchar, PRIMARY KEY (population__2010_))
select population__2010_ from table_1691800_2 where municipality = "san jacinto"
What are the names of body builders?
create table body_builder (people_id varchar, PRIMARY KEY (people_id)); create table people (name varchar, people_id varchar, PRIMARY KEY (name))
select t2.name from body_builder as t1 join people as t2 on t1.people_id = t2.people_id
What percentage of The Bronx voters occured when Manhattan had 29.9% of voters?
create table table_1108394_34 (the_bronx varchar, manhattan varchar, PRIMARY KEY (the_bronx))
select the_bronx from table_1108394_34 where manhattan = "29.9_percentage"
Name the gdp world rank for asian rank being 15
create table table_2249029_1 (gdp_world_rank varchar, asian_rank varchar, PRIMARY KEY (gdp_world_rank))
select gdp_world_rank from table_2249029_1 where asian_rank = 15
How many michelob ultra mountains classification for darren lill
create table table_13223187_1 (michelob_ultra_mountains_classification_gold_polka_dot_jersey varchar, drury_hotels_most_aggressive_rider_red_jersey varchar, PRIMARY KEY (michelob_ultra_mountains_classification_gold_polka_dot_jersey))
select count(michelob_ultra_mountains_classification_gold_polka_dot_jersey) from table_13223187_1 where drury_hotels_most_aggressive_rider_red_jersey = "darren lill"
What is the website of the cunningham hill infant school?
create table table_28523_2 (school varchar, PRIMARY KEY (school))
select school as website from table_28523_2 where school = "cunningham hill infant school"
What is the fewest shots a glazing can handle?
create table table_21538523_1 (shots integer, PRIMARY KEY (shots))
select min(shots) from table_21538523_1
How many crops were damaged when the public property damage was 1,03,049.60?
create table table_20403667_2 (crop_damaged__in_lakh_inr__ varchar, public_property_damaged__in_lakh_inr__ varchar, PRIMARY KEY (crop_damaged__in_lakh_inr__))
select crop_damaged__in_lakh_inr__ from table_20403667_2 where public_property_damaged__in_lakh_inr__ = "1,03,049.60"
What is every species when Afinsa is 639?
create table table_1818471_1 (species varchar, afinsa varchar, PRIMARY KEY (species))
select species from table_1818471_1 where afinsa = 639
What's the minimum number of execution units?
create table table_25839957_5 (execution_units integer, PRIMARY KEY (execution_units))
select min(execution_units) from table_25839957_5
What was the event on Thurs 27 Aug when Tues 25 Aug was 23' 00.59 98.384mph?
create table table_23465864_6 (thurs_27_aug varchar, tues_25_aug varchar, PRIMARY KEY (thurs_27_aug))
select thurs_27_aug from table_23465864_6 where tues_25_aug = "23' 00.59 98.384mph"
What is the age of the act who is a rapper?
create table table_27529608_21 (age_s_ varchar, act varchar, PRIMARY KEY (age_s_))
select age_s_ from table_27529608_21 where act = "rapper"
The Catalog number is 80809 what is the title?
create table table_11222744_2 (title varchar, catalog_number varchar, PRIMARY KEY (title))
select title from table_11222744_2 where catalog_number = "80809"
Who had the fastest lap in the Dutch TT Grand Prix?
create table table_18303274_1 (fastest_lap varchar, grand_prix varchar, PRIMARY KEY (fastest_lap))
select fastest_lap from table_18303274_1 where grand_prix = "dutch tt"
What was the train destination when it has a calling at Boston, Sleaford, Nottingham Victoria?
create table table_18365784_3 (going_to varchar, calling_at varchar, PRIMARY KEY (going_to))
select going_to from table_18365784_3 where calling_at = "boston, sleaford, nottingham victoria"
Which company had profits of 26.9?
create table table_1682026_2 (company varchar, profits__billion_$_ varchar, PRIMARY KEY (company))
select company from table_1682026_2 where profits__billion_$_ = "26.9"
What date did the episode that was written by Fintan Ryan originally air?
create table table_27218002_2 (originalairdate varchar, written_by varchar, PRIMARY KEY (originalairdate))
select originalairdate from table_27218002_2 where written_by = "fintan ryan"
What is the name of the museum that had no visitor yet?
create table visit (name varchar, museum_id varchar, museum_id varchar, PRIMARY KEY (name)); create table museum (name varchar, museum_id varchar, museum_id varchar, PRIMARY KEY (name))
select name from museum where not museum_id in (select museum_id from visit)
What was the 1845 disposal for sussex?
create table table_1184344_1 (name varchar, PRIMARY KEY (name))
select 1845 as _disposal from table_1184344_1 where name = "sussex"
Show ids for all templates not used by any document.
create table documents (template_id varchar, PRIMARY KEY (template_id)); create table templates (template_id varchar, PRIMARY KEY (template_id))
select template_id from templates except select template_id from documents
Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong
create table table_15511178_3 (report varchar, pole_position varchar, winning_team varchar, PRIMARY KEY (report))
select report from table_15511178_3 where pole_position = "carl skerlong" and winning_team = "newman wachs racing"
What won best amiga demo when alto knallo (free electric band) won best pc demo?
create table table_2490289_1 (amiga_demo varchar, pc_demo varchar, PRIMARY KEY (amiga_demo))
select amiga_demo from table_2490289_1 where pc_demo = "alto knallo (free electric band)"
How many college/junior/club teams are ther when nhl team is edmonton oilers?
create table table_2850912_7 (college_junior_club_team varchar, nhl_team varchar, PRIMARY KEY (college_junior_club_team))
select count(college_junior_club_team) from table_2850912_7 where nhl_team = "edmonton oilers"
What week was the member who arrived on the main island in week 6 sent to the third island?
create table table_11764007_2 (week_sent_to_third_island varchar, week_arrived_on_main_island varchar, PRIMARY KEY (week_sent_to_third_island))
select week_sent_to_third_island from table_11764007_2 where week_arrived_on_main_island = "6"
What is the year to april when the revenue is 434.8 million dollars?
create table table_18077713_1 (year_to_april varchar, revenue__us_$million_ varchar, PRIMARY KEY (year_to_april))
select year_to_april from table_18077713_1 where revenue__us_$million_ = "434.8"
Who was the winning driver when the pole position was held by Ayrton Senna and the Fastest lap was Michael Schumacher?
create table table_1137702_3 (winning_driver varchar, pole_position varchar, fastest_lap varchar, PRIMARY KEY (winning_driver))
select winning_driver from table_1137702_3 where pole_position = "ayrton senna" and fastest_lap = "michael schumacher"
Which city of license/market has 3 (26) as their channel tv (dt)?
create table table_1553485_1 (city_of_license__market varchar, channel_tv___dt__ varchar, PRIMARY KEY (city_of_license__market))
select city_of_license__market from table_1553485_1 where channel_tv___dt__ = "3 (26)"
What was Datsun Twin 200's fastest lap?
create table table_10527215_3 (fastest_lap varchar, name varchar, PRIMARY KEY (fastest_lap))
select fastest_lap from table_10527215_3 where name = "datsun twin 200"
What are the LOA (metres) of boat with sail number M10?
create table table_20854943_2 (loa__metres_ varchar, sail_number varchar, PRIMARY KEY (loa__metres_))
select loa__metres_ from table_20854943_2 where sail_number = "m10"
How many locations have #12 Michigan State as the big ten team?
create table table_21330550_2 (location varchar, big_ten_team varchar, PRIMARY KEY (location))
select count(location) from table_21330550_2 where big_ten_team = "#12 michigan state"
For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name.
create table table_17964087_2 (romanised_name varchar, prior_occupation varchar, PRIMARY KEY (romanised_name))
select romanised_name from table_17964087_2 where prior_occupation = "assistant police commissioner (ret'd)"
Report the distinct president vote and the vice president vote.
create table voting_record (president_vote varchar, vice_president_vote varchar, PRIMARY KEY (president_vote))
select distinct president_vote, vice_president_vote from voting_record
Who was the original artist of the group performance theme?
create table table_26250155_1 (original_artist varchar, theme varchar, PRIMARY KEY (original_artist))
select original_artist from table_26250155_1 where theme = "group performance"
Who was the MVP the season Scaligera Verona were Champions?
create table table_19651669_1 (mvp varchar, champion varchar, PRIMARY KEY (mvp))
select mvp from table_19651669_1 where champion = "scaligera verona"
How many apartments do not have any facility?
create table apartment_facilities (apt_id varchar, PRIMARY KEY (apt_id)); create table apartments (apt_id varchar, PRIMARY KEY (apt_id))
select count(*) from apartments where not apt_id in (select apt_id from apartment_facilities)
One 6 November 2007 what was the manner of departure for the coach release in football league one?
create table table_28181347_6 (manner_of_departure varchar, date_of_appointment varchar, PRIMARY KEY (manner_of_departure))
select manner_of_departure from table_28181347_6 where date_of_appointment = "6 november 2007"
Who led team classification during the stage whose winner was Chris Horner?
create table table_26257223_13 (team_classification varchar, winner varchar, PRIMARY KEY (team_classification))
select team_classification from table_26257223_13 where winner = "chris horner"
Location of the school with the nickname Mountaineers
create table table_16432543_1 (location varchar, nickname varchar, PRIMARY KEY (location))
select location from table_16432543_1 where nickname = "mountaineers"
What is the range of married filing jointly or qualified widower in which married filing separately is $33,951–$68,525?
create table table_11647327_2 (married_filing_jointly_or_qualified_widow_er_ varchar, married_filing_separately varchar, PRIMARY KEY (married_filing_jointly_or_qualified_widow_er_))
select married_filing_jointly_or_qualified_widow_er_ from table_11647327_2 where married_filing_separately = "$33,951–$68,525"
Name the outgoing manager for 10 june 2009
create table table_22848931_3 (outgoing_manager varchar, date_of_vacancy varchar, PRIMARY KEY (outgoing_manager))
select count(outgoing_manager) from table_22848931_3 where date_of_vacancy = "10 june 2009"
What country are the new orleans shell shockers from?
create table table_28005160_2 (country varchar, sponsored_name varchar, PRIMARY KEY (country))
select country from table_28005160_2 where sponsored_name = "new orleans shell shockers"
Who has a religion of United Methodist and a prior background of a Congressional Aide?
create table table_20098199_2 (representative varchar, religion varchar, prior_background varchar, PRIMARY KEY (representative))
select representative from table_20098199_2 where religion = "united methodist" and prior_background = "congressional aide"
what's the first operational with programming being not programmable—single purpose
create table table_13636_1 (first_operational varchar, programming varchar, PRIMARY KEY (first_operational))
select first_operational from table_13636_1 where programming = "not programmable—single purpose"
Which project made the most number of outcomes? List the project details and the project id.
create table project_outcomes (project_id varchar, PRIMARY KEY (project_id)); create table projects (project_details varchar, project_id varchar, PRIMARY KEY (project_details))
select t1.project_details, t1.project_id from projects as t1 join project_outcomes as t2 on t1.project_id = t2.project_id group by t1.project_id order by count(*) desc limit 1
What is the Mens Nickname for the member location of Jacksonville, florida?
create table table_10577579_2 (mens_nickname varchar, location varchar, PRIMARY KEY (mens_nickname))
select mens_nickname from table_10577579_2 where location = "jacksonville, florida"
What years did Markose Bristow Madhumita Bisht win the mens singles and/or the mixed doubles?
create table table_12194021_1 (mens_singles varchar, mixed_doubles varchar, PRIMARY KEY (mens_singles))
select mens_singles from table_12194021_1 where mixed_doubles = "markose bristow madhumita bisht"
How many teams have an eagles mascot?
create table table_13456202_1 (affiliation varchar, mascot varchar, PRIMARY KEY (affiliation))
select count(affiliation) from table_13456202_1 where mascot = "eagles"
What is the lowest attendance that East End Park has ever had?
create table table_11207040_5 (lowest integer, stadium varchar, PRIMARY KEY (lowest))
select min(lowest) from table_11207040_5 where stadium = "east end park"
Name all the products with next entry ID greater than 8.
create table catalog_contents (catalog_entry_name varchar, next_entry_id integer, PRIMARY KEY (catalog_entry_name))
select catalog_entry_name from catalog_contents where next_entry_id > 8
Who is every Under-15 if Under-11 is Reeham Sedky?
create table table_26368963_2 (under_15 varchar, under_11 varchar, PRIMARY KEY (under_15))
select under_15 from table_26368963_2 where under_11 = "reeham sedky"
What is the date of entry for the UK Albums Top 75 chart?
create table table_1160304_2 (date_of_entry varchar, chart varchar, PRIMARY KEY (date_of_entry))
select date_of_entry from table_1160304_2 where chart = "uk albums top 75"
Who is the director when there are 2.70 million viewers?
create table table_29574579_1 (directed_by varchar, uk_viewers__million_ varchar, PRIMARY KEY (directed_by))
select directed_by from table_29574579_1 where uk_viewers__million_ = "2.70"
Name the nec record for 11th standing
create table table_20774360_2 (nec_record varchar, standing varchar, PRIMARY KEY (nec_record))
select nec_record from table_20774360_2 where standing = "11th"
What is the origin when the destination is Mumbai?
create table table_29202276_2 (origin varchar, destination varchar, PRIMARY KEY (origin))
select origin from table_29202276_2 where destination = "mumbai"
How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes?
create table table_16731248_1 (bypass_boosters varchar, spi varchar, exhaust_ports varchar, PRIMARY KEY (bypass_boosters))
select bypass_boosters from table_16731248_1 where spi = "yes" and exhaust_ports = "slit"
Which team replaced their manager with Serhat Güller?
create table table_27091128_3 (team varchar, replaced_by varchar, PRIMARY KEY (team))
select team from table_27091128_3 where replaced_by = "serhat güller"
Who is the artist 2 on the setlist where the artist 1 is Sparfunk & D-Code?
create table table_29264319_1 (artist_2 varchar, artist_1 varchar, PRIMARY KEY (artist_2))
select artist_2 from table_29264319_1 where artist_1 = "sparfunk & d-code"
Who was replaced on 11 July?
create table table_17327458_1 (replaced_by varchar, date_of_appointment varchar, PRIMARY KEY (replaced_by))
select replaced_by from table_17327458_1 where date_of_appointment = "11 july"
what's the bubbles with attribute being onpopuphidden
create table table_1507852_5 (bubbles varchar, attribute varchar, PRIMARY KEY (bubbles))
select bubbles from table_1507852_5 where attribute = "onpopuphidden"
Where is the club "Hopkins Student Enterprises" located?
create table club (clublocation varchar, clubname varchar, PRIMARY KEY (clublocation))
select clublocation from club where clubname = "hopkins student enterprises"
What was the total distance (in miles) of the championship where the best conditioned horse was Freedom?
create table table_27833186_1 (distance__miles_ varchar, best_conditioned_horse varchar, PRIMARY KEY (distance__miles_))
select distance__miles_ from table_27833186_1 where best_conditioned_horse = "freedom"
what is the maximum aircraft movements with airport being liverpool
create table table_13836704_9 (aircraft_movements integer, airport varchar, PRIMARY KEY (aircraft_movements))
select max(aircraft_movements) from table_13836704_9 where airport = "liverpool"
What party did candidate george mcduffie (j) represent?
create table table_2668254_22 (party varchar, candidates varchar, PRIMARY KEY (party))
select party from table_2668254_22 where candidates = "george mcduffie (j)"
How many tourists did not make any visit?
create table visitors (tourist_id varchar, PRIMARY KEY (tourist_id)); create table visits (tourist_id varchar, PRIMARY KEY (tourist_id))
select count(*) from visitors where not tourist_id in (select tourist_id from visits)
What are the ids of the problems reported after the date of any problems reported by Rylan Homenick?
create table problems (problem_id varchar, reported_by_staff_id varchar, PRIMARY KEY (problem_id)); create table staff (staff_id varchar, staff_first_name varchar, staff_last_name varchar, PRIMARY KEY (staff_id)); create table problems (reported_by_staff_id varchar, PRIMARY KEY (reported_by_staff_id)); create table staff (staff_id varchar, PRIMARY KEY (staff_id))
select t1.problem_id from problems as t1 join staff as t2 on t1.reported_by_staff_id = t2.staff_id where date_problem_reported > (select max(date_problem_reported) from problems as t3 join staff as t4 on t3.reported_by_staff_id = t4.staff_id where t4.staff_first_name = "rylan" and t4.staff_last_name = "homenick")
How many customers does Steve Johnson support?
create table employees (id varchar, first_name varchar, last_name varchar, PRIMARY KEY (id)); create table customers (support_rep_id varchar, PRIMARY KEY (support_rep_id))
select count(*) from employees as t1 join customers as t2 on t2.support_rep_id = t1.id where t1.first_name = "steve" and t1.last_name = "johnson"
Who were the GT winning team when the results were "report"?
create table table_27743641_2 (gt_winning_team varchar, results varchar, PRIMARY KEY (gt_winning_team))
select gt_winning_team from table_27743641_2 where results = "report"
What products are available at store named "Miramichi"?
create table store_product (product_id varchar, store_id varchar, PRIMARY KEY (product_id)); create table store (store_id varchar, store_name varchar, PRIMARY KEY (store_id)); create table product (product varchar, product_id varchar, PRIMARY KEY (product))
select t1.product from product as t1 join store_product as t2 on t1.product_id = t2.product_id join store as t3 on t2.store_id = t3.store_id where t3.store_name = "miramichi"
How many engines were built with a cylinder size of 20 ½” x 26”, firebox is belpaire and valve gear is from Stephenson?
create table table_25695027_1 (number_built varchar, valve_gear varchar, cylinder_size varchar, firebox varchar, PRIMARY KEY (number_built))
select number_built from table_25695027_1 where cylinder_size = "20 ½” x 26”" and firebox = "belpaire" and valve_gear = "stephenson"
What was the air date of part 2 of the episode whose part 1 was aired on January 31, 2008?
create table table_13241993_3 (part_2 varchar, part_1 varchar, PRIMARY KEY (part_2))
select part_2 from table_13241993_3 where part_1 = "january 31, 2008"
Who was the home team when the opposition was Buller?
create table table_26847237_1 (home_team varchar, opposition varchar, PRIMARY KEY (home_team))
select home_team from table_26847237_1 where opposition = "buller"
How many entries are listed in poor law union when townland is dromidiclogh?
create table table_30121075_1 (poor_law_union varchar, townland varchar, PRIMARY KEY (poor_law_union))
select count(poor_law_union) from table_30121075_1 where townland = "dromidiclogh"
This engine with a cylinder size of 20 ½” x 26” and a firebox of radial-stay was built when?
create table table_25695027_1 (years_built varchar, cylinder_size varchar, firebox varchar, PRIMARY KEY (years_built))
select years_built from table_25695027_1 where cylinder_size = "20 ½” x 26”" and firebox = "radial-stay"
what is the capital where it is ramtha
create table table_26173058_2 (qadisiya varchar, × varchar, PRIMARY KEY (qadisiya))
select qadisiya from table_26173058_2 where × = "ramtha"
Find the first and last name of all the teachers that teach EVELINA BROMLEY.
create table teachers (firstname varchar, lastname varchar, classroom varchar, PRIMARY KEY (firstname)); create table list (classroom varchar, firstname varchar, lastname varchar, PRIMARY KEY (classroom))
select t2.firstname, t2.lastname from list as t1 join teachers as t2 on t1.classroom = t2.classroom where t1.firstname = "evelina" and t1.lastname = "bromley"
What country does Roberto Almeida live?
create table customers (country varchar, first_name varchar, last_name varchar, PRIMARY KEY (country))
select country from customers where first_name = "roberto" and last_name = "almeida"
Which eagle riders whose ova (harmony gold dub) is dr. kozaburo nambu?
create table table_17480471_3 (eagle_riders varchar, ova__harmony_gold_dub_ varchar, PRIMARY KEY (eagle_riders))
select eagle_riders from table_17480471_3 where ova__harmony_gold_dub_ = "dr. kozaburo nambu"
What are the colors of the Hudson school?
create table table_28051859_3 (colors varchar, school varchar, PRIMARY KEY (colors))
select colors from table_28051859_3 where school = "hudson"
When cancelled is the fastest qualifying where is the location?
create table table_26358264_2 (location varchar, fastest_qualifying varchar, PRIMARY KEY (location))
select location from table_26358264_2 where fastest_qualifying = "cancelled"
Which college is aligned to the Saskatchewan Roughriders?
create table table_10812938_4 (college varchar, cfl_team varchar, PRIMARY KEY (college))
select college from table_10812938_4 where cfl_team = "saskatchewan roughriders"
How many sail numbers for boat skippered by Geoff Ross?
create table table_20854943_2 (sail_number varchar, skipper varchar, PRIMARY KEY (sail_number))
select count(sail_number) from table_20854943_2 where skipper = "geoff ross"
Find the id of courses which are registered or attended by student whose id is 121?
create table student_course_attendance (course_id varchar, student_id varchar, PRIMARY KEY (course_id)); create table student_course_registrations (course_id varchar, student_id varchar, PRIMARY KEY (course_id))
select course_id from student_course_registrations where student_id = 121 union select course_id from student_course_attendance where student_id = 121
What movie did dana wynter , mel ferrer , theodore bikel star in?
create table table_26032940_2 (movie_title_and_year varchar, main_cast varchar, PRIMARY KEY (movie_title_and_year))
select movie_title_and_year from table_26032940_2 where main_cast = "dana wynter , mel ferrer , theodore bikel"
What is the census ranking for the Perth parish?
create table table_176524_2 (census_ranking varchar, official_name varchar, PRIMARY KEY (census_ranking))
select census_ranking from table_176524_2 where official_name = "perth"
At what milepost is Beacon Falls?
create table table_2572788_1 (milepost varchar, town_city varchar, PRIMARY KEY (milepost))
select milepost from table_2572788_1 where town_city = "beacon falls"
How many times was the GFR 2006 equal to 53.2?
create table table_12251936_1 (whites_as__percentage_of_pop varchar, gfr_2006 varchar, PRIMARY KEY (whites_as__percentage_of_pop))
select count(whites_as__percentage_of_pop) from table_12251936_1 where gfr_2006 = "53.2"
Name the least age 40-49
create table table_169693_1 (age_40_49 integer, PRIMARY KEY (age_40_49))
select min(age_40_49) from table_169693_1
How many viewers watched the 16mm t/r episode?
create table table_1849243_1 (viewers__in_millions_ varchar, archive varchar, PRIMARY KEY (viewers__in_millions_))
select viewers__in_millions_ from table_1849243_1 where archive = "16mm t/r"
What was the position of appointment date 17 january 2011
create table table_27495117_3 (position_in_table varchar, date_of_appointment varchar, PRIMARY KEY (position_in_table))
select position_in_table from table_27495117_3 where date_of_appointment = "17 january 2011"