question
stringlengths
14
216
context
stringlengths
45
458
answer
stringlengths
18
463
What is every prefix class for the equivalent of NTE101?
create table table_30011_2 (prefix_class varchar, equivalent varchar, PRIMARY KEY (prefix_class))
select prefix_class from table_30011_2 where equivalent = "nte101"
Return the apartment numbers of the apartments with type code "Flat".
create table apartments (apt_number varchar, apt_type_code varchar, PRIMARY KEY (apt_number))
select apt_number from apartments where apt_type_code = "flat"
What was the smallist population in 2010?
create table table_261951_1 (population__2010_ integer, PRIMARY KEY (population__2010_))
select min(population__2010_) from table_261951_1
Who wrote the episode where the original air date is july20,2007?
create table table_25716399_1 (written_by varchar, original_air_date varchar, PRIMARY KEY (written_by))
select written_by from table_25716399_1 where original_air_date = "july20,2007"
What is the total number of patient portayers for the episode directed by Craig Zisk and written by Brad Falchuk?
create table table_26561508_1 (patient_portrayer varchar, directed_by varchar, written_by varchar, PRIMARY KEY (patient_portrayer))
select count(patient_portrayer) from table_26561508_1 where directed_by = "craig zisk" and written_by = "brad falchuk"
Which institution's nickname is the Polar Bears?
create table table_261931_2 (institution varchar, nickname varchar, PRIMARY KEY (institution))
select institution from table_261931_2 where nickname = "polar bears"
Focal plane in ft (m) is 43ft (13.1m) is the first date lit.
create table table_25597136_1 (date_first_lit varchar, focal_plane_in_ft__m_ varchar, PRIMARY KEY (date_first_lit))
select date_first_lit from table_25597136_1 where focal_plane_in_ft__m_ = "43ft (13.1m)"
how many records had result/games: 10 games (29,606 avg.)
create table table_21436373_12 (type_of_record varchar, result_games varchar, PRIMARY KEY (type_of_record))
select count(type_of_record) from table_21436373_12 where result_games = "10 games (29,606 avg.)"
In the year (ceremony) 2009 (82nd), who are all the directors?
create table table_26385848_1 (director varchar, year__ceremony_ varchar, PRIMARY KEY (director))
select director from table_26385848_1 where year__ceremony_ = "2009 (82nd)"
What is the number of runner-up results for the years (won in bold) 1984, 2010?
create table table_1463332_2 (_number_runner_up integer, years__won_in_bold_ varchar, PRIMARY KEY (_number_runner_up))
select max(_number_runner_up) from table_1463332_2 where years__won_in_bold_ = "1984, 2010"
What won the Best Female Artist if Best Lyrical Record won the Best Male Artist?
create table table_22546460_4 (best_female_artist varchar, best_male_artist varchar, PRIMARY KEY (best_female_artist))
select best_female_artist from table_22546460_4 where best_male_artist = "best lyrical record"
When don inglis and ralph smart are the writers how many episode numbers are there?
create table table_25046766_1 (episode_no varchar, written_by varchar, PRIMARY KEY (episode_no))
select count(episode_no) from table_25046766_1 where written_by = "don inglis and ralph smart"
how many chroma format with name being high profile
create table table_1376890_2 (chroma_format varchar, name varchar, PRIMARY KEY (chroma_format))
select count(chroma_format) from table_1376890_2 where name = "high profile"
How many candidates won the election of john n. sandlin?
create table table_1342426_18 (candidates varchar, incumbent varchar, PRIMARY KEY (candidates))
select count(candidates) from table_1342426_18 where incumbent = "john n. sandlin"
How many characteristics does the product named "laurel" have?
create table characteristics (characteristic_id varchar, PRIMARY KEY (characteristic_id)); create table products (product_id varchar, product_name varchar, PRIMARY KEY (product_id)); create table product_characteristics (product_id varchar, characteristic_id varchar, PRIMARY KEY (product_id))
select count(*) from products as t1 join product_characteristics as t2 on t1.product_id = t2.product_id join characteristics as t3 on t2.characteristic_id = t3.characteristic_id where t1.product_name = "laurel"
What was the original air date of the episode written by amanda segel?
create table table_25923164_1 (original_air_date varchar, written_by varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_25923164_1 where written_by = "amanda segel"
What are the ids and names of the medicine that can interact with two or more enzymes?
create table medicine_enzyme_interaction (medicine_id varchar, PRIMARY KEY (medicine_id)); create table medicine (id varchar, name varchar, PRIMARY KEY (id))
select t1.id, t1.name from medicine as t1 join medicine_enzyme_interaction as t2 on t2.medicine_id = t1.id group by t1.id having count(*) >= 2
what is the aggregate score for the europa league play off round contest and round
create table table_29261823_10 (aggregate_score varchar, contest_and_round varchar, PRIMARY KEY (aggregate_score))
select aggregate_score from table_29261823_10 where contest_and_round = "europa league play off round"
what nationality is the player who played from 1997-98
create table table_10015132_7 (nationality varchar, years_in_toronto varchar, PRIMARY KEY (nationality))
select nationality from table_10015132_7 where years_in_toronto = "1997-98"
What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph?
create table table_25220821_3 (fri_4_june varchar, wed_2_june varchar, PRIMARY KEY (fri_4_june))
select fri_4_june from table_25220821_3 where wed_2_june = "20' 11.98 112.071mph"
What is the genus & species of the animal whose accession number is XP_002439156.1?
create table table_26957063_3 (genus_ varchar, _species varchar, ncbi_accession_number varchar, PRIMARY KEY (genus_))
select genus_ & _species from table_26957063_3 where ncbi_accession_number = "xp_002439156.1"
What is the region 1 (Canada) date associated with a region 1 (US) date of January 16, 2007?
create table table_240936_2 (region_1__can_ varchar, region_1__us_ varchar, PRIMARY KEY (region_1__can_))
select region_1__can_ from table_240936_2 where region_1__us_ = "january 16, 2007"
How many acting statuses are there?
create table management (temporary_acting varchar, PRIMARY KEY (temporary_acting))
select count(distinct temporary_acting) from management
Name the broadcast date for 7.4 viewers
create table table_2102782_1 (broadcast_date varchar, viewers__in_millions_ varchar, PRIMARY KEY (broadcast_date))
select broadcast_date from table_2102782_1 where viewers__in_millions_ = "7.4"
Who had the high rebound total against golden state?
create table table_13464416_4 (high_rebounds varchar, team varchar, PRIMARY KEY (high_rebounds))
select high_rebounds from table_13464416_4 where team = "golden state"
Find the name of the youngest organization.
create table organizations (organization_name varchar, date_formed varchar, PRIMARY KEY (organization_name))
select organization_name from organizations order by date_formed desc limit 1
What is the record if the location is Clarke Stadium?
create table table_23916539_3 (record varchar, location varchar, PRIMARY KEY (record))
select record from table_23916539_3 where location = "clarke stadium"
Which company was based in London, United Kingdom?
create table table_15438337_1 (institution varchar, country varchar, PRIMARY KEY (institution))
select institution from table_15438337_1 where country = "london, united kingdom"
What are the cities/towns located in the municipality of Horten?
create table table_157826_1 (city_town varchar, municipality varchar, PRIMARY KEY (city_town))
select city_town from table_157826_1 where municipality = "horten"
Name the broadcast day and timings for tv saitama
create table table_21076286_2 (broadcast_day_and_timings__in_jst__ varchar, broadcast_network varchar, PRIMARY KEY (broadcast_day_and_timings__in_jst__))
select broadcast_day_and_timings__in_jst__ from table_21076286_2 where broadcast_network = "tv saitama"
who write the episode that have 14.39 million viewers
create table table_19417244_2 (written_by varchar, us_viewers__millions_ varchar, PRIMARY KEY (written_by))
select written_by from table_19417244_2 where us_viewers__millions_ = "14.39"
When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible?
create table accelerator_compatible_browser (compatible_since_year varchar, browser_id varchar, accelerator_id varchar, PRIMARY KEY (compatible_since_year)); create table browser (id varchar, name varchar, PRIMARY KEY (id)); create table web_client_accelerator (id varchar, name varchar, PRIMARY KEY (id))
select t1.compatible_since_year from accelerator_compatible_browser as t1 join browser as t2 on t1.browser_id = t2.id join web_client_accelerator as t3 on t1.accelerator_id = t3.id where t3.name = 'cachebox' and t2.name = 'internet explorer'
How long in miles (km) was the race that lasted 3:07:53?
create table table_2266976_1 (miles__km_ varchar, race_time varchar, PRIMARY KEY (miles__km_))
select miles__km_ from table_2266976_1 where race_time = "3:07:53"
What is the premiere number for the episode titled "The Mysteries of Love" in English?
create table table_24856090_1 (premiere integer, english_title varchar, PRIMARY KEY (premiere))
select max(premiere) from table_24856090_1 where english_title = "the mysteries of love"
Who was at the pole position in the ITT Automotive Grand Prix of Detroit, won by Paul Tracy?
create table table_19908651_3 (pole_position varchar, winning_driver varchar, race_name varchar, PRIMARY KEY (pole_position))
select pole_position from table_19908651_3 where winning_driver = "paul tracy" and race_name = "itt automotive grand prix of detroit"
How many premises are there?
create table premises (id varchar, PRIMARY KEY (id))
select count(*) from premises
Name the name for when overs bowled is 31.2
create table table_15700367_2 (name varchar, overs_bowled varchar, PRIMARY KEY (name))
select name from table_15700367_2 where overs_bowled = "31.2"
Which artist had a release title of HH?
create table table_27932399_1 (artist varchar, release_title varchar, PRIMARY KEY (artist))
select artist from table_27932399_1 where release_title = "hh"
How many parties is the incumbent Bob Brady a member of?
create table table_1341423_38 (party varchar, incumbent varchar, PRIMARY KEY (party))
select count(party) from table_1341423_38 where incumbent = "bob brady"
If the team is Billy Ballew Motorsports, what is the race time?
create table table_2260452_1 (race_time varchar, team varchar, PRIMARY KEY (race_time))
select race_time from table_2260452_1 where team = "billy ballew motorsports"
Name the electoraate for united future being 4.47%
create table table_20217811_1 (electorate varchar, united_future varchar, PRIMARY KEY (electorate))
select electorate from table_20217811_1 where united_future = "4.47%"
When olympikus is the main sponsor who is the secondary sponsor?
create table table_187239_1 (secondary_sponsor varchar, main_sponsor varchar, PRIMARY KEY (secondary_sponsor))
select secondary_sponsor from table_187239_1 where main_sponsor = "olympikus"
How many viewers, in millions, were for the episode directed by Tawnia McKiernan?
create table table_12159115_3 (us_viewers__millions_ varchar, directed_by varchar, PRIMARY KEY (us_viewers__millions_))
select us_viewers__millions_ from table_12159115_3 where directed_by = "tawnia mckiernan"
When the production (mt) is 446424, what is the value world rank ?
create table table_21109892_1 (value_world_rank varchar, production__mt_ varchar, PRIMARY KEY (value_world_rank))
select value_world_rank from table_21109892_1 where production__mt_ = 446424
Where is the first day cover cancellation for the 3 April 2008 IIHF World Championships, Quebec City stamp?
create table table_11900773_6 (first_day_cover_cancellation varchar, date_of_issue varchar, theme varchar, PRIMARY KEY (first_day_cover_cancellation))
select first_day_cover_cancellation from table_11900773_6 where date_of_issue = "3 april 2008" and theme = "iihf world championships, quebec city"
Name the total number of african record
create table table_23619492_3 (paula_radcliffe___gbr__ varchar, world_record varchar, PRIMARY KEY (paula_radcliffe___gbr__))
select count(paula_radcliffe___gbr__) from table_23619492_3 where world_record = "african record"
When did the country that produced 1,213,000 (21st) bbl/day join Opec?
create table table_166346_1 (joined_opec varchar, production___bbl__day_ varchar, PRIMARY KEY (joined_opec))
select joined_opec from table_166346_1 where production___bbl__day_ = "1,213,000 (21st)"
Name the currency for negotiable debt being 1300
create table table_2764267_2 (currency varchar, negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ varchar, PRIMARY KEY (currency))
select currency from table_2764267_2 where negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ = 1300
Name the total number of peletier for shortscale comparison billion
create table table_260938_1 (peletier varchar, shortscale_comparison varchar, PRIMARY KEY (peletier))
select count(peletier) from table_260938_1 where shortscale_comparison = "billion"
What team plays at Palmerston Park?
create table table_11207040_5 (team varchar, stadium varchar, PRIMARY KEY (team))
select team from table_11207040_5 where stadium = "palmerston park"
For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date.
create table grants (grant_start_date varchar, grant_id varchar, PRIMARY KEY (grant_start_date)); create table document_types (document_type_code varchar, document_description varchar, PRIMARY KEY (document_type_code)); create table documents (grant_id varchar, document_type_code varchar, PRIMARY KEY (grant_id))
select t1.grant_start_date from grants as t1 join documents as t2 on t1.grant_id = t2.grant_id join document_types as t3 on t2.document_type_code = t3.document_type_code where t3.document_description = 'regular' intersect select t1.grant_start_date from grants as t1 join documents as t2 on t1.grant_id = t2.grant_id join document_types as t3 on t2.document_type_code = t3.document_type_code where t3.document_description = 'initial application'
Which venue does Mardan sponsor?
create table table_17356873_1 (venue varchar, shirt_sponsor varchar, PRIMARY KEY (venue))
select venue from table_17356873_1 where shirt_sponsor = "mardan"
what's the turbo where trim is 2.0 20v
create table table_11167610_1 (turbo varchar, trim varchar, PRIMARY KEY (turbo))
select turbo from table_11167610_1 where trim = "2.0 20v"
What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph?
create table table_25220821_3 (tues_1_june varchar, mon_31_may varchar, PRIMARY KEY (tues_1_june))
select count(tues_1_june) from table_25220821_3 where mon_31_may = "20' 15.35 111.761mph"
For team ascoli please mention all the appointment date.
create table table_27114708_2 (date_of_appointment varchar, team varchar, PRIMARY KEY (date_of_appointment))
select date_of_appointment from table_27114708_2 where team = "ascoli"
List the torque possible when the stroke is 88.4mm?
create table table_21021796_1 (torque varchar, stroke varchar, PRIMARY KEY (torque))
select torque from table_21021796_1 where stroke = "88.4mm"
List the first and last name of all players in the order of birth date.
create table players (first_name varchar, last_name varchar, birth_date varchar, PRIMARY KEY (first_name))
select first_name, last_name from players order by birth_date
How many students got accepted after the tryout?
create table tryout (decision varchar, PRIMARY KEY (decision))
select count(*) from tryout where decision = 'yes'
How many deductions have 56.5 as tosses/pyramids?
create table table_22014431_3 (deductions varchar, tosses_pyramids varchar, PRIMARY KEY (deductions))
select deductions from table_22014431_3 where tosses_pyramids = "56.5"
What was the score in the final played with Fred McNair as partner?
create table table_2820584_3 (score_in_the_final varchar, partner varchar, PRIMARY KEY (score_in_the_final))
select score_in_the_final from table_2820584_3 where partner = "fred mcnair"
Name the date successor seated for failure to elect
create table table_225094_4 (date_successor_seated varchar, reason_for_change varchar, PRIMARY KEY (date_successor_seated))
select date_successor_seated from table_225094_4 where reason_for_change = "failure to elect"
what is the party when candidates is jim demint (r) 80%?
create table table_1341423_40 (party varchar, candidates varchar, PRIMARY KEY (party))
select party from table_1341423_40 where candidates = "jim demint (r) 80%"
what are all the state/nation where the race number is 36
create table table_25594271_1 (state_country varchar, race_number varchar, PRIMARY KEY (state_country))
select state_country from table_25594271_1 where race_number = "36"
Which team had a manager replaced by Ebrahim Talebi?
create table table_22297140_3 (team varchar, replaced_by varchar, PRIMARY KEY (team))
select team from table_22297140_3 where replaced_by = "ebrahim talebi"
Who directed the episode with 3.19 million u.s. viewers?
create table table_12722302_2 (directed_by varchar, us_viewers__million_ varchar, PRIMARY KEY (directed_by))
select directed_by from table_12722302_2 where us_viewers__million_ = "3.19"
How many provinces have a density of 165.81?
create table table_254234_1 (iso_ varchar, density² varchar, PRIMARY KEY (iso_))
select count(iso_) as № from table_254234_1 where density² = "165.81"
Who is the champion if the national trophy/rookie is not held?
create table table_25563779_4 (champion varchar, national_trophy_rookie varchar, PRIMARY KEY (champion))
select champion from table_25563779_4 where national_trophy_rookie = "not held"
What are the producers of 磊磊牌嬰幼兒配方乳粉 ?
create table table_18943444_1 (producer varchar, product varchar, PRIMARY KEY (producer))
select producer from table_18943444_1 where product = "磊磊牌嬰幼兒配方乳粉"
How many townships are there in the region with 376 village groups?
create table table_19457_1 (town_ships integer, village_groups varchar, PRIMARY KEY (town_ships))
select max(town_ships) from table_19457_1 where village_groups = 376
Can one access the Faroe Islands using a Croatian identity card?
create table table_25965003_3 (access_using_a_croatian_identity_card varchar, countries_and_territories varchar, PRIMARY KEY (access_using_a_croatian_identity_card))
select access_using_a_croatian_identity_card from table_25965003_3 where countries_and_territories = "faroe islands"
what's the attribute with cancelable being yes
create table table_1507852_5 (attribute varchar, cancelable varchar, PRIMARY KEY (attribute))
select attribute from table_1507852_5 where cancelable = "yes"
error (see notes)
create table table_25760427_2 (weeks_at_number_1 integer, PRIMARY KEY (weeks_at_number_1))
select min(weeks_at_number_1) from table_25760427_2
How many teams are listed for 3rd wickets?
create table table_1670921_1 (batting_team varchar, wicket varchar, PRIMARY KEY (batting_team))
select count(batting_team) from table_1670921_1 where wicket = "3rd"
Where is the headquarter of the company founded by James?
create table manufacturers (headquarter varchar, founder varchar, PRIMARY KEY (headquarter))
select headquarter from manufacturers where founder = 'james'
What is the founding date if the letters are κψκ?
create table table_2538117_7 (founding_date varchar, letters varchar, PRIMARY KEY (founding_date))
select founding_date from table_2538117_7 where letters = "κψκ"
What were the starts when the points dropped 18?
create table table_24937583_1 (races__starts_ varchar, points__dropped_points_ varchar, PRIMARY KEY (races__starts_))
select races__starts_ from table_24937583_1 where points__dropped_points_ = "18"
What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43?
create table table_25042332_22 (tertiary__18_24_years_ varchar, secondary__14_17_years_ varchar, PRIMARY KEY (tertiary__18_24_years_))
select tertiary__18_24_years_ from table_25042332_22 where secondary__14_17_years_ = "71.43"
How many times is last/current driver(s) 3 november 2013 is adderly fong ( 2013 )?
create table table_27279050_3 (country varchar, last_current_driver_s__3_november_2013 varchar, PRIMARY KEY (country))
select count(country) from table_27279050_3 where last_current_driver_s__3_november_2013 = "adderly fong ( 2013 )"
What are flight numbers of flights arriving at Airport "APG"?
create table flights (flightno varchar, destairport varchar, PRIMARY KEY (flightno))
select flightno from flights where destairport = "apg"
If the school is Rend Lake College, what is the team name?
create table table_22319599_1 (team_name varchar, school varchar, PRIMARY KEY (team_name))
select team_name from table_22319599_1 where school = "rend lake college"
Which venue did collingsworth play essendon in when they had the 3rd position on the ladder?
create table table_29033869_3 (venue varchar, opponent varchar, position_on_ladder varchar, PRIMARY KEY (venue))
select venue from table_29033869_3 where opponent = "essendon" and position_on_ladder = "3rd"
Give me all the information about hiring.
create table hiring (id varchar, PRIMARY KEY (id))
select * from hiring
For each payment method, return how many customers use it.
create table customers (payment_method_code varchar, PRIMARY KEY (payment_method_code))
select payment_method_code, count(*) from customers group by payment_method_code
Find the program which most number of students are enrolled in. List both the id and the summary.
create table degree_programs (degree_program_id varchar, degree_summary_name varchar, PRIMARY KEY (degree_program_id)); create table student_enrolment (degree_program_id varchar, PRIMARY KEY (degree_program_id))
select t1.degree_program_id, t1.degree_summary_name from degree_programs as t1 join student_enrolment as t2 on t1.degree_program_id = t2.degree_program_id group by t1.degree_program_id order by count(*) desc limit 1
When +18.1 is the ± yes side 2008 percentage what is the percentage of against?
create table table_20683381_3 (against___percentage_ varchar, ±_yes_side_2008___percentage_ varchar, PRIMARY KEY (against___percentage_))
select against___percentage_ from table_20683381_3 where ±_yes_side_2008___percentage_ = "+18.1"
What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79?
create table table_1618358_1 (stamp_duty_reserve_tax varchar, over_total_tax_revenue__in__percentage_ varchar, PRIMARY KEY (stamp_duty_reserve_tax))
select stamp_duty_reserve_tax from table_1618358_1 where over_total_tax_revenue__in__percentage_ = "0.79"
how many times is the fleet series (quantity) is 468-473 (6)?
create table table_10007452_3 (order_year varchar, fleet_series__quantity_ varchar, PRIMARY KEY (order_year))
select count(order_year) from table_10007452_3 where fleet_series__quantity_ = "468-473 (6)"
Name the number of apps for total g is 8
create table table_19018191_5 (l_apps varchar, total_g varchar, PRIMARY KEY (l_apps))
select count(l_apps) from table_19018191_5 where total_g = 8
How may college/junior/club team has a the nhl team listed as Colorado Avalanche?
create table table_2886617_5 (college_junior_club_team varchar, nhl_team varchar, PRIMARY KEY (college_junior_club_team))
select count(college_junior_club_team) from table_2886617_5 where nhl_team = "colorado avalanche"
Show the number of customer cards.
create table customers_cards (id varchar, PRIMARY KEY (id))
select count(*) from customers_cards
When did the airplane with tail number RA-85282 crash?
create table table_229917_2 (date__ddmmyyyy_ varchar, tail_number varchar, PRIMARY KEY (date__ddmmyyyy_))
select date__ddmmyyyy_ from table_229917_2 where tail_number = "ra-85282"
What is 2006 when 1997 is 6.8?
create table table_27146868_1 (id varchar, PRIMARY KEY (id))
select 2006 from table_27146868_1 where 1997 = "6.8"
What is the semifinal average where the preliminary average is 9.084 (1) ?
create table table_16268026_3 (semifinal_average varchar, preliminary_average varchar, PRIMARY KEY (semifinal_average))
select semifinal_average from table_16268026_3 where preliminary_average = "9.084 (1)"
who is the opponent where tv is abc and game site is tampa stadium
create table table_11406866_2 (opponent varchar, tv varchar, game_site varchar, PRIMARY KEY (opponent))
select opponent from table_11406866_2 where tv = "abc" and game_site = "tampa stadium"
Name the international tourist arrivals for arrivals 2011 for 8.1 million
create table table_14752049_3 (international_tourist_arrivals__2010_ varchar, international_tourist_arrivals__2011_ varchar, PRIMARY KEY (international_tourist_arrivals__2010_))
select international_tourist_arrivals__2010_ from table_14752049_3 where international_tourist_arrivals__2011_ = "8.1 million"
What was the date of Henk Hordijk's death?
create table table_11585313_2 (date_of_death† varchar, name varchar, PRIMARY KEY (date_of_death†))
select date_of_death† from table_11585313_2 where name = "henk hordijk"
what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?
create table table_11703336_1 (cpu varchar, ram varchar, display_size varchar, PRIMARY KEY (cpu))
select cpu from table_11703336_1 where ram = "28 kb of ram" and display_size = "128×64 pixels 21×8 characters"
who is the manufacturer for the order year 1998?
create table table_10007452_3 (manufacturer varchar, order_year varchar, PRIMARY KEY (manufacturer))
select manufacturer from table_10007452_3 where order_year = "1998"
Who narrated when the vessel operator is de beers?
create table table_26168687_3 (narrated_by varchar, vessel_operator varchar, PRIMARY KEY (narrated_by))
select narrated_by from table_26168687_3 where vessel_operator = "de beers"
If the average start is 11.8, what was the team name?
create table table_2190919_3 (team_s_ varchar, avg_start varchar, PRIMARY KEY (team_s_))
select team_s_ from table_2190919_3 where avg_start = "11.8"