question
stringlengths
14
216
context
stringlengths
45
458
answer
stringlengths
18
463
What is the radio station branding when the power km is 5kw?
create table table_23915973_1 (branding varchar, power_kw varchar, PRIMARY KEY (branding))
select branding from table_23915973_1 where power_kw = "5kw"
Who is the artist where the vocal percussionist is Benjamin Holder?
create table table_28715942_6 (original_artist varchar, vocal_percussionist varchar, PRIMARY KEY (original_artist))
select original_artist from table_28715942_6 where vocal_percussionist = "benjamin holder"
What is the best finish where the scoring rank is 97?
create table table_15431122_2 (best_finish varchar, scoring_rank varchar, PRIMARY KEY (best_finish))
select best_finish from table_15431122_2 where scoring_rank = "97"
What is the catalog number of the title called "super callanetics"?
create table table_11222744_3 (catalog_number varchar, title varchar, PRIMARY KEY (catalog_number))
select catalog_number from table_11222744_3 where title = "super callanetics"
What is the name of each camera lens and the number of photos taken by it? Order the result by the count of photos.
create table photos (camera_lens_id varchar, PRIMARY KEY (camera_lens_id)); create table camera_lens (name varchar, id varchar, PRIMARY KEY (name))
select t1.name, count(*) from camera_lens as t1 join photos as t2 on t1.id = t2.camera_lens_id group by t1.id order by count(*)
When риба (ríba) is the macedonian what is the proto-slavic?
create table table_26757_4 (proto_slavic varchar, macedonian varchar, PRIMARY KEY (proto_slavic))
select proto_slavic from table_26757_4 where macedonian = "риба (ríba)"
What are the email addresses of the drama workshop groups with address in Alaska state?
create table drama_workshop_groups (store_email_address varchar, address_id varchar, PRIMARY KEY (store_email_address)); create table addresses (address_id varchar, state_county varchar, PRIMARY KEY (address_id))
select t2.store_email_address from addresses as t1 join drama_workshop_groups as t2 on t1.address_id = t2.address_id where t1.state_county = "alaska"
What is the povery rate of the county with market income per capita of $20,518?
create table table_22815568_1 (poverty_rate varchar, market_income_per_capita varchar, PRIMARY KEY (poverty_rate))
select poverty_rate from table_22815568_1 where market_income_per_capita = "$20,518"
Show the names of roller coasters and names of country they are in.
create table country (name varchar, country_id varchar, PRIMARY KEY (name)); create table roller_coaster (name varchar, country_id varchar, PRIMARY KEY (name))
select t2.name, t1.name from country as t1 join roller_coaster as t2 on t1.country_id = t2.country_id
Which team was the away team when home team was essendon?
create table table_29090919_1 (away_team varchar, home_team varchar, PRIMARY KEY (away_team))
select away_team from table_29090919_1 where home_team = "essendon"
What are the network(s) for tv1?
create table table_1601792_4 (network varchar, television_station varchar, PRIMARY KEY (network))
select network from table_1601792_4 where television_station = "tv1"
If the spacecraft is the Shenzhou 7 Eva 1, what is the start (utc) date and time?
create table table_22385461_9 (start___utc__ varchar, spacecraft varchar, PRIMARY KEY (start___utc__))
select start___utc__ from table_22385461_9 where spacecraft = "shenzhou 7 eva 1"
what is Peter Little's party?
create table table_2668329_11 (party varchar, incumbent varchar, PRIMARY KEY (party))
select party from table_2668329_11 where incumbent = "peter little"
What states have a regional page # of 1, 5-7, 9-11, 13-15?
create table table_287659_2 (state_name varchar, regional_page__number varchar, PRIMARY KEY (state_name))
select state_name from table_287659_2 where regional_page__number = "1, 5-7, 9-11, 13-15"
What was the episode number for the episode viewed by 5.68 million viewers?
create table table_27987623_1 (season_episode varchar, us_viewers__in_million_ varchar, PRIMARY KEY (season_episode))
select season_episode from table_27987623_1 where us_viewers__in_million_ = "5.68"
How many different drivers were there for the team when the manufacturer was Toyota?
create table table_2241101_1 (driver varchar, manufacturer varchar, PRIMARY KEY (driver))
select count(driver) from table_2241101_1 where manufacturer = "toyota"
Name the revenue for eps being 1.19
create table table_20614109_1 (revenue__ integer, earnings_per_share__€_ varchar, PRIMARY KEY (revenue__))
select max(revenue__) as €million_ from table_20614109_1 where earnings_per_share__€_ = "1.19"
If round of 32 is sawatvilay phimmasone ( lao ) w pts 9-7, what was the event?
create table table_26335424_86 (event varchar, round_of_32 varchar, PRIMARY KEY (event))
select event from table_26335424_86 where round_of_32 = "sawatvilay phimmasone ( lao ) w pts 9-7"
What is the hebrew word listed for strongs # 5418?
create table table_1242447_2 (hebrew_word varchar, strongs__number varchar, PRIMARY KEY (hebrew_word))
select hebrew_word from table_1242447_2 where strongs__number = "5418"
If the episode was written by Tim Balme, what was the original air date?
create table table_23114705_3 (original_air_date varchar, written_by varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_23114705_3 where written_by = "tim balme"
What team(s) enjoyed an average spped (mph) of 138.14?
create table table_17802778_1 (team varchar, average_speed__mph_ varchar, PRIMARY KEY (team))
select team from table_17802778_1 where average_speed__mph_ = "138.14"
Who is the incumbent candidate in the election of percy priest (d) 90.8% robert m. donihi (r) 9.2%?
create table table_1342013_41 (incumbent varchar, candidates varchar, PRIMARY KEY (incumbent))
select incumbent from table_1342013_41 where candidates = "percy priest (d) 90.8% robert m. donihi (r) 9.2%"
Find the name of branches where have some members whose hometown is in Louisville, Kentucky and some in Hiram, Georgia.
create table member (member_id varchar, hometown varchar, PRIMARY KEY (member_id)); create table branch (name varchar, branch_id varchar, PRIMARY KEY (name)); create table membership_register_branch (branch_id varchar, member_id varchar, PRIMARY KEY (branch_id))
select t2.name from membership_register_branch as t1 join branch as t2 on t1.branch_id = t2.branch_id join member as t3 on t1.member_id = t3.member_id where t3.hometown = 'louisville , kentucky' intersect select t2.name from membership_register_branch as t1 join branch as t2 on t1.branch_id = t2.branch_id join member as t3 on t1.member_id = t3.member_id where t3.hometown = 'hiram , georgia'
Show names of companies and that of employees in descending order of number of years working for that employee.
create table people (name varchar, people_id varchar, PRIMARY KEY (name)); create table company (name varchar, company_id varchar, PRIMARY KEY (name)); create table employment (people_id varchar, company_id varchar, year_working varchar, PRIMARY KEY (people_id))
select t3.name, t2.name from employment as t1 join people as t2 on t1.people_id = t2.people_id join company as t3 on t1.company_id = t3.company_id order by t1.year_working
Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin
create table table_19598014_2 (gt2_winning_team varchar, lmp2_winning_team varchar, PRIMARY KEY (gt2_winning_team))
select gt2_winning_team from table_19598014_2 where lmp2_winning_team = "butch leitzinger marino franchitti ben devlin"
What was the largest ethnic group in in the settlement with the cyrillic name банатски карловац?
create table table_2562572_44 (largest_ethnic_group__2002_ varchar, cyrillic_name_other_names varchar, PRIMARY KEY (largest_ethnic_group__2002_))
select largest_ethnic_group__2002_ from table_2562572_44 where cyrillic_name_other_names = "банатски карловац"
what is the name of the borough where station uses is 28702?
create table table_14748457_1 (borough varchar, station_users_2008_9 varchar, PRIMARY KEY (borough))
select borough from table_14748457_1 where station_users_2008_9 = "28702"
What is the 2007 population of Gigmoto?
create table table_255829_1 (population__2007_ varchar, municipality varchar, PRIMARY KEY (population__2007_))
select count(population__2007_) from table_255829_1 where municipality = "gigmoto"
What is the status for Saint George?
create table table_170969_2 (status varchar, official_name varchar, PRIMARY KEY (status))
select status from table_170969_2 where official_name = "saint george"
who else along with scott dixon and graham rahal drove with the most speed
create table table_13512105_3 (fastest_lap varchar, most_laps_led varchar, pole_position varchar, PRIMARY KEY (fastest_lap))
select fastest_lap from table_13512105_3 where most_laps_led = "scott dixon" and pole_position = "graham rahal"
What is the area (square km) where the arrondissement is millau?
create table table_1175233_1 (area__square_km_ integer, arrondissement varchar, PRIMARY KEY (area__square_km_))
select min(area__square_km_) from table_1175233_1 where arrondissement = "millau"
how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are
create table table_2889300_6 (drumset_name varchar, drumstand__oftenoptional_ varchar, tom_tom_pads varchar, PRIMARY KEY (drumset_name))
select count(drumset_name) from table_2889300_6 where drumstand__oftenoptional_ = "hd-1/3stand" and tom_tom_pads = "3xcloth-head"
What warship has horse-power of 1500?
create table table_23614702_1 (warship varchar, horse__power varchar, PRIMARY KEY (warship))
select warship from table_23614702_1 where horse__power = 1500
What type of quattroporte iv only produced 340 units?
create table table_1245350_1 (quattroporte_iv varchar, units_produced varchar, PRIMARY KEY (quattroporte_iv))
select quattroporte_iv from table_1245350_1 where units_produced = 340
Where is ropery lane located?
create table table_1176371_1 (location varchar, name_of_ground varchar, PRIMARY KEY (location))
select location from table_1176371_1 where name_of_ground = "ropery lane"
When 3 is the bbc three weekly ranking what is the airdate?
create table table_24399615_8 (airdate varchar, bbc_three_weekly_ranking varchar, PRIMARY KEY (airdate))
select airdate from table_24399615_8 where bbc_three_weekly_ranking = "3"
What is the name of the partner that has a winner outcome and a hard surface?
create table table_28948937_3 (partner varchar, outcome varchar, surface varchar, PRIMARY KEY (partner))
select partner from table_28948937_3 where outcome = "winner" and surface = "hard"
what rank has viewers at 6.45?
create table table_15681686_4 (rank__week_ varchar, viewers__millions_ varchar, PRIMARY KEY (rank__week_))
select rank__week_ from table_15681686_4 where viewers__millions_ = "6.45"
What is every prefix class for the equivalent of NTE160?
create table table_30011_2 (prefix_class varchar, equivalent varchar, PRIMARY KEY (prefix_class))
select prefix_class from table_30011_2 where equivalent = "nte160"
What tournament venue is listed during the Missouri Valley Conference?
create table table_28365816_2 (tournament_venue__city_ varchar, conference varchar, PRIMARY KEY (tournament_venue__city_))
select tournament_venue__city_ from table_28365816_2 where conference = "missouri valley conference"
What date did the show air when Rhod Gilbert was the headliner?
create table table_23122988_1 (airdate varchar, headliner varchar, PRIMARY KEY (airdate))
select airdate from table_23122988_1 where headliner = "rhod gilbert"
How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter?
create table table_25816476_2 (team_coxy varchar, air_date varchar, team_guest_captain varchar, PRIMARY KEY (team_coxy))
select count(team_coxy) from table_25816476_2 where air_date = "24 january 2010" and team_guest_captain = "gail porter"
what's the grsecurity with dbeingtribution being debian / ubuntu
create table table_1357052_6 (grsecurity varchar, distribution varchar, PRIMARY KEY (grsecurity))
select grsecurity from table_1357052_6 where distribution = "debian / ubuntu"
How many courses are located in carmel, indiana?
create table table_275162_1 (course varchar, location varchar, PRIMARY KEY (course))
select count(course) from table_275162_1 where location = "carmel, indiana"
If the quarterfinals was nabil talal ( jor ) l pts 3-3, who was the athlete?
create table table_26335424_86 (athlete varchar, quarterfinals varchar, PRIMARY KEY (athlete))
select athlete from table_26335424_86 where quarterfinals = "nabil talal ( jor ) l pts 3-3"
Name the try bonus for kenfig hill rfc
create table table_13564702_3 (try_bonus varchar, club varchar, PRIMARY KEY (try_bonus))
select try_bonus from table_13564702_3 where club = "kenfig hill rfc"
Who is the Motogp winnder for the Catalunya Circuit?
create table table_12186237_1 (motogp_winner varchar, circuit varchar, PRIMARY KEY (motogp_winner))
select motogp_winner from table_12186237_1 where circuit = "catalunya"
When slblw(b1) is the sspec number what is the mult.?
create table table_18823880_10 (mult varchar, sspec_number varchar, PRIMARY KEY (mult))
select mult from table_18823880_10 where sspec_number = "slblw(b1)"
if there are 30 lifts, what is the name of the ski resort?
create table table_25762852_1 (name varchar, lifts varchar, PRIMARY KEY (name))
select name from table_25762852_1 where lifts = 30
Name the youth classification for michael barry
create table table_23944514_15 (youth_classification varchar, aggressive_rider varchar, PRIMARY KEY (youth_classification))
select youth_classification from table_23944514_15 where aggressive_rider = "michael barry"
Name the awardee for best editing
create table table_24446718_7 (awardee_s_ varchar, name_of_award varchar, PRIMARY KEY (awardee_s_))
select awardee_s_ from table_24446718_7 where name_of_award = "best editing"
What is the the Chinese population for the state that has a Filipino population of 1474707?
create table table_10118412_6 (chinese integer, filipino varchar, PRIMARY KEY (chinese))
select min(chinese) from table_10118412_6 where filipino = 1474707
How many networks are there whose version of the shows includes judges tba and the presenter is Arbana Osmani?
create table table_28190363_1 (network varchar, judges varchar, presenter_s_ varchar, PRIMARY KEY (network))
select count(network) from table_28190363_1 where judges = "tba" and presenter_s_ = "arbana osmani"
What is the winning team at Oulton Park when Max Chilton held the pole position?
create table table_21373283_3 (winning_team varchar, pole_position varchar, circuit varchar, PRIMARY KEY (winning_team))
select winning_team from table_21373283_3 where pole_position = "max chilton" and circuit = "oulton park"
How many candidates are there?
create table candidate (id varchar, PRIMARY KEY (id))
select count(*) from candidate
Name the vertical for 边 bian
create table table_25519358_1 (vertical_0_b varchar, name varchar, PRIMARY KEY (vertical_0_b))
select vertical_0_b from table_25519358_1 where name = "边 bian"
Name the romaji by your side ~hikari's theme~ (popup.version)
create table table_2144389_8 (rōmaji varchar, japanese_translation varchar, PRIMARY KEY (rōmaji))
select rōmaji from table_2144389_8 where japanese_translation = "by your side ~hikari's theme~ (popup.version)"
Find the number of dorms that have some amenity.
create table has_amenity (dormid varchar, PRIMARY KEY (dormid))
select count(distinct dormid) from has_amenity
Who is the winner of event # 1h and dateca is Apr 2?
create table table_22050544_1 (winner varchar, dateca varchar, event__number varchar, PRIMARY KEY (winner))
select winner from table_22050544_1 where dateca = "apr 2" and event__number = "1h"
What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?
create table table_28562675_3 (austria varchar, netherlands varchar, belgium varchar, PRIMARY KEY (austria))
select austria from table_28562675_3 where netherlands = "brunssum/schinnen ll brunssum" and belgium = "shape and waterloo ll brussels"
Which telescopes were sponsored by or originated in Belgium?
create table table_23851574_2 (name varchar, nationality_sponsors varchar, PRIMARY KEY (name))
select name from table_23851574_2 where nationality_sponsors = "belgium"
What is the version aired on SBS 6 called?
create table table_27487310_5 (name varchar, network varchar, PRIMARY KEY (name))
select name from table_27487310_5 where network = "sbs 6"
How many episode titles aired on September 25, 1967?
create table table_25800134_12 (title varchar, airdate varchar, PRIMARY KEY (title))
select count(title) from table_25800134_12 where airdate = "september 25, 1967"
What is the maximum folded value of the team whose stadium is Fraser Field?
create table table_24334261_1 (folded integer, stadium varchar, PRIMARY KEY (folded))
select max(folded) from table_24334261_1 where stadium = "fraser field"
What school is in Richmond?
create table table_2076608_3 (school varchar, location_s_ varchar, PRIMARY KEY (school))
select school from table_2076608_3 where location_s_ = "richmond"
What is the pinyin for explaining beasts?
create table table_1216675_1 (pinyin varchar, translation varchar, PRIMARY KEY (pinyin))
select pinyin from table_1216675_1 where translation = "explaining beasts"
How many students play sports?
create table sportsinfo (stuid varchar, PRIMARY KEY (stuid))
select count(distinct stuid) from sportsinfo
What is the nationality of the player picked to go to Washington Capitals?
create table table_2897457_2 (nationality varchar, nhl_team varchar, PRIMARY KEY (nationality))
select nationality from table_2897457_2 where nhl_team = "washington capitals"
Name the landesliga mitte sv türk gücü münchen
create table table_20181270_3 (landesliga_mitte varchar, bayernliga varchar, PRIMARY KEY (landesliga_mitte))
select landesliga_mitte from table_20181270_3 where bayernliga = "sv türk gücü münchen"
What are the names of the tourist attractions Vincent and Marcelle visit?
create table visits (tourist_attraction_id varchar, tourist_id varchar, PRIMARY KEY (tourist_attraction_id)); create table visitors (tourist_details varchar, tourist_id varchar, PRIMARY KEY (tourist_details)); create table tourist_attractions (name varchar, tourist_attraction_id varchar, PRIMARY KEY (name))
select t1.name from tourist_attractions as t1 join visitors as t2 join visits as t3 on t1.tourist_attraction_id = t3.tourist_attraction_id and t2.tourist_id = t3.tourist_id where t2.tourist_details = "vincent" intersect select t1.name from tourist_attractions as t1 join visitors as t2 join visits as t3 on t1.tourist_attraction_id = t3.tourist_attraction_id and t2.tourist_id = t3.tourist_id where t2.tourist_details = "marcelle"
Who had the most laps led in monterey, california when scott rarick won the race?
create table table_25668203_2 (most_laps_led varchar, location varchar, winning_driver varchar, PRIMARY KEY (most_laps_led))
select most_laps_led from table_25668203_2 where location = "monterey, california" and winning_driver = "scott rarick"
Name the number of party with the incubent james william trimble
create table table_1341930_5 (party varchar, incumbent varchar, PRIMARY KEY (party))
select count(party) from table_1341930_5 where incumbent = "james william trimble"
Name the winner for 26 january 2009
create table table_19930660_1 (winner varchar, first_broadcast varchar, PRIMARY KEY (winner))
select winner from table_19930660_1 where first_broadcast = "26 january 2009"
Find the name of services that have been used for more than 2 times in first notification of loss.
create table services (service_name varchar, service_id varchar, PRIMARY KEY (service_name)); create table first_notification_of_loss (service_id varchar, PRIMARY KEY (service_id))
select t2.service_name from first_notification_of_loss as t1 join services as t2 on t1.service_id = t2.service_id group by t1.service_id having count(*) > 2
Show the document type code with fewer than 3 documents.
create table documents (document_type_code varchar, PRIMARY KEY (document_type_code))
select document_type_code from documents group by document_type_code having count(*) < 3
Find the name of dorms only for female (F gender).
create table dorm (dorm_name varchar, gender varchar, PRIMARY KEY (dorm_name))
select dorm_name from dorm where gender = 'f'
Find the busiest destination airport that runs most number of routes in China.
create table routes (dst_apid varchar, PRIMARY KEY (dst_apid)); create table airports (name varchar, apid varchar, country varchar, PRIMARY KEY (name))
select t1.name from airports as t1 join routes as t2 on t1.apid = t2.dst_apid where t1.country = 'china' group by t1.name order by count(*) desc limit 1
What number is shown for november 3 where january 15-16 is 151?
create table table_25252080_3 (november_3 varchar, january_15_16 varchar, PRIMARY KEY (november_3))
select november_3 from table_25252080_3 where january_15_16 = "151"
In 2004, where the womens singles is daniela kressig who is the mens singles
create table table_15001681_1 (mens_singles varchar, womens_singles varchar, PRIMARY KEY (mens_singles))
select mens_singles from table_15001681_1 where womens_singles = "daniela kressig"
Who was the finalist when the MVP was Romain Sato?
create table table_19651669_1 (finalist varchar, mvp varchar, PRIMARY KEY (finalist))
select finalist from table_19651669_1 where mvp = "romain sato"
When gaoliang 高涼 is the commandery what is the commandery capital?
create table table_278229_1 (commandery varchar, PRIMARY KEY (commandery))
select commandery as capital from table_278229_1 where commandery = "gaoliang 高涼"
what is the minimum population canada 2011 census with seat of rcm being cowansville
create table table_1011906_1 (population_canada_2011_census integer, seat_of_rcm varchar, PRIMARY KEY (population_canada_2011_census))
select min(population_canada_2011_census) from table_1011906_1 where seat_of_rcm = "cowansville"
What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?
create table table_19161046_1 (directx varchar, code_name varchar, core___mhz__ varchar, PRIMARY KEY (directx))
select directx from table_19161046_1 where code_name = "rv770 pro" and core___mhz__ > 650.0
How many institutions are there?
create table inst (id varchar, PRIMARY KEY (id))
select count(*) from inst
When 20 is the rr4 points what is the lowest rr3 points?
create table table_21489362_2 (rr3_pts integer, rr4_pts varchar, PRIMARY KEY (rr3_pts))
select min(rr3_pts) from table_21489362_2 where rr4_pts = "20"
What date did Micky Adams vacate his position?
create table table_18788823_5 (date_of_vacancy varchar, outgoing_manager varchar, PRIMARY KEY (date_of_vacancy))
select date_of_vacancy from table_18788823_5 where outgoing_manager = "micky adams"
Where is Bloomington High School North?
create table table_1984697_53 (city___town varchar, school varchar, PRIMARY KEY (city___town))
select city___town from table_1984697_53 where school = "bloomington high school north"
How many timeslots had viewers of 0.238 million?
create table table_27987623_3 (timeslot varchar, viewers__millions_ varchar, PRIMARY KEY (timeslot))
select count(timeslot) from table_27987623_3 where viewers__millions_ = "0.238"
what's the economics score with education being 92.0
create table table_145439_1 (economics varchar, education varchar, PRIMARY KEY (economics))
select economics from table_145439_1 where education = "92.0"
Name the team of darren manning
create table table_17271495_1 (team varchar, driver varchar, PRIMARY KEY (team))
select team from table_17271495_1 where driver = "darren manning"
how many millions of north american viewers had the episode whose director was Michael Lembeck?
create table table_27714573_1 (us_viewers__millions_ varchar, directed_by varchar, PRIMARY KEY (us_viewers__millions_))
select us_viewers__millions_ from table_27714573_1 where directed_by = "michael lembeck"
Where was the tournament located when Misun Cho won the championship?
create table table_15315276_1 (tournament_location varchar, champion varchar, PRIMARY KEY (tournament_location))
select tournament_location from table_15315276_1 where champion = "misun cho"
Name the label for grown up overnight
create table table_1893815_1 (label varchar, english_title varchar, PRIMARY KEY (label))
select label from table_1893815_1 where english_title = "grown up overnight"
How many international tourist arrivals were in Senegal in 2011?
create table table_14752049_2 (international_tourist_arrivals__2011_ varchar, country varchar, PRIMARY KEY (international_tourist_arrivals__2011_))
select international_tourist_arrivals__2011_ from table_14752049_2 where country = "senegal"
Name the ticket/office for orville preston
create table table_22607062_1 (ticket___office varchar, secretary_of_state varchar, PRIMARY KEY (ticket___office))
select ticket___office from table_22607062_1 where secretary_of_state = "orville preston"
Which co-singers appear in the movie Pyaasa?
create table table_2528382_2 (co varchar, singers varchar, movie_album varchar, PRIMARY KEY (co))
select co - singers from table_2528382_2 where movie_album = "pyaasa"
Who made the report when the home team is north Melbourne?
create table table_14312471_7 (report varchar, home_team varchar, PRIMARY KEY (report))
select report from table_14312471_7 where home_team = "north melbourne"
What was the SlNo no of contact person SDE (P), Thiruppattur?
create table table_25383715_1 (slno varchar, contact_person varchar, PRIMARY KEY (slno))
select slno from table_25383715_1 where contact_person = "sde (p), thiruppattur"
What date was the person ordained as a priest in December 1838 ordained as a bishop?
create table table_1656555_1 (ordained_bishop varchar, ordained_priest varchar, PRIMARY KEY (ordained_bishop))
select ordained_bishop from table_1656555_1 where ordained_priest = "december 1838"
Name the wind m/s and fastest time of 10.25 and jeff demps
create table table_1231316_6 (wind__m_s_ varchar, fastest_time__s_ varchar, athlete varchar, PRIMARY KEY (wind__m_s_))
select wind__m_s_ from table_1231316_6 where fastest_time__s_ = "10.25" and athlete = "jeff demps"