question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
Find all the songs that do not have a lead vocal.
|
create table songs (title varchar, songid varchar, PRIMARY KEY (title)); create table vocals (songid varchar, PRIMARY KEY (songid))
|
select distinct title from vocals as t1 join songs as t2 on t1.songid = t2.songid except select t2.title from vocals as t1 join songs as t2 on t1.songid = t2.songid where type = "lead"
|
find the number of medicines offered by each trade.
|
create table medicine (trade_name varchar, PRIMARY KEY (trade_name))
|
select trade_name, count(*) from medicine group by trade_name
|
What are the names of all unix shell with PowerShell (Cmdlet) of select-string?
|
create table table_14465871_1 (unix_shell varchar, powershell__cmdlet_ varchar, PRIMARY KEY (unix_shell))
|
select unix_shell from table_14465871_1 where powershell__cmdlet_ = "select-string"
|
Name the team anthem that was written by quentin eyers and les kaczmarek.
|
create table table_28243323_1 (name_of_team_song varchar, writer_composer varchar, PRIMARY KEY (name_of_team_song))
|
select name_of_team_song from table_28243323_1 where writer_composer = "quentin eyers and les kaczmarek"
|
What are the largest ethnic groups in gunaroš?
|
create table table_2562572_27 (largest_ethnic_group__2002_ varchar, settlement varchar, PRIMARY KEY (largest_ethnic_group__2002_))
|
select largest_ethnic_group__2002_ from table_2562572_27 where settlement = "gunaroš"
|
what is the record where the locaiton is tampa, fl and the opponent is louisville?
|
create table table_23346303_3 (record varchar, location varchar, opponent varchar, PRIMARY KEY (record))
|
select record from table_23346303_3 where location = "tampa, fl" and opponent = "louisville"
|
How many patients' prescriptions are made by physician John Dorian?
|
create table patient (ssn varchar, PRIMARY KEY (ssn)); create table prescribes (patient varchar, physician varchar, PRIMARY KEY (patient)); create table physician (employeeid varchar, name varchar, PRIMARY KEY (employeeid))
|
select count(t1.ssn) from patient as t1 join prescribes as t2 on t1.ssn = t2.patient join physician as t3 on t2.physician = t3.employeeid where t3.name = "john dorian"
|
What is the SDLP of Belfast?
|
create table table_28005809_2 (sdlp integer, council varchar, PRIMARY KEY (sdlp))
|
select max(sdlp) from table_28005809_2 where council = "belfast"
|
What university is houston dynamo affiliated with?
|
create table table_25518547_4 (affiliation varchar, mls_team varchar, PRIMARY KEY (affiliation))
|
select affiliation from table_25518547_4 where mls_team = "houston dynamo"
|
Name the h when c max is 99
|
create table table (h varchar, c__max_ varchar, PRIMARY KEY (h))
|
select h from table where c__max_ = 99
|
what the highest number for the opposite of offense for the green bay packers
|
create table table_1402270_1 (team_defense_rank integer, nfl_team varchar, PRIMARY KEY (team_defense_rank))
|
select max(team_defense_rank) from table_1402270_1 where nfl_team = "green bay packers"
|
What is the description of the department whose name has the substring the computer?
|
create table departments (department_description varchar, department_name varchar, PRIMARY KEY (department_description))
|
select department_description from departments where department_name like '%computer%'
|
Who were the comedians during the episode located in Birmingham Hippodrome?
|
create table table_23122988_1 (comedians varchar, location varchar, PRIMARY KEY (comedians))
|
select comedians from table_23122988_1 where location = "birmingham hippodrome"
|
What is the football conference for Henniker, New Hampshire>?
|
create table table_261927_2 (football_conference varchar, location varchar, PRIMARY KEY (football_conference))
|
select football_conference from table_261927_2 where location = "henniker, new hampshire"
|
What is the branding of the callsign DWBA-TV?
|
create table table_2610582_3 (branding varchar, callsign varchar, PRIMARY KEY (branding))
|
select branding from table_2610582_3 where callsign = "dwba-tv"
|
What was the original air date of the episode that had 4.08 million U.S. viewers?
|
create table table_21304155_1 (original_air_date varchar, us_viewers__millions_ varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_21304155_1 where us_viewers__millions_ = "4.08"
|
When 2 is the k-band what is the v-band?
|
create table table_186468_1 (v_band varchar, k_band varchar, PRIMARY KEY (v_band))
|
select v_band from table_186468_1 where k_band = "2"
|
How many points did the opponents with a 6-2 record against the Spartans score?
|
create table table_22860990_3 (opp_points integer, record varchar, PRIMARY KEY (opp_points))
|
select min(opp_points) from table_22860990_3 where record = "6-2"
|
tell who made the most scores on new jersey
|
create table table_13464416_6 (high_points varchar, team varchar, PRIMARY KEY (high_points))
|
select high_points from table_13464416_6 where team = "new jersey"
|
What is the amount of marginal ordinary income tax rate for single in which the range is $8,351– $33,950?
|
create table table_11647327_2 (marginal_ordinary_income_tax_rate varchar, single varchar, PRIMARY KEY (marginal_ordinary_income_tax_rate))
|
select count(marginal_ordinary_income_tax_rate) from table_11647327_2 where single = "$8,351– $33,950"
|
Show all student IDs with the number of sports and total number of games played
|
create table sportsinfo (stuid varchar, gamesplayed integer, PRIMARY KEY (stuid))
|
select stuid, count(*), sum(gamesplayed) from sportsinfo group by stuid
|
How many men had an event 1 medley score of 6 (16.6m)?
|
create table table_24302700_2 (event_2_truck_pull varchar, event_1_medley varchar, PRIMARY KEY (event_2_truck_pull))
|
select count(event_2_truck_pull) from table_24302700_2 where event_1_medley = "6 (16.6m)"
|
Name the junes
|
create table table_1539201_1 (june varchar, PRIMARY KEY (june))
|
select june from table_1539201_1
|
Name the total number of b winning car and bobby archer, tommy archer
|
create table table_27965906_2 (b_winning_car varchar, ss_winning_car varchar, PRIMARY KEY (b_winning_car))
|
select count(b_winning_car) from table_27965906_2 where ss_winning_car = "bobby archer, tommy archer"
|
Name the air date that chris long directed
|
create table table_18569389_1 (original_air_date varchar, directed_by varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_18569389_1 where directed_by = "chris long"
|
What was the win/loss record for All Neutral games for the team whose Big 10 winning percentage was .833?
|
create table table_18135572_2 (all_neutral varchar, b10__percentage varchar, PRIMARY KEY (all_neutral))
|
select all_neutral from table_18135572_2 where b10__percentage = ".833"
|
What is the netflix episode number where Segment D is high-performance engines?
|
create table table_15187735_15 (netflix varchar, segment_d varchar, PRIMARY KEY (netflix))
|
select netflix from table_15187735_15 where segment_d = "high-performance engines"
|
Which kind of policy type was chosen by the most customers?
|
create table customer_policies (policy_type_code varchar, PRIMARY KEY (policy_type_code))
|
select policy_type_code from customer_policies group by policy_type_code order by count(*) desc limit 1
|
What was the playoff result for the team name of bay area seals
|
create table table_1427998_1 (playoffs varchar, team_name varchar, PRIMARY KEY (playoffs))
|
select playoffs from table_1427998_1 where team_name = "bay area seals"
|
When 30% is scott mcadams (d) percentage how many poll sources are there?
|
create table table_20597634_3 (poll_source varchar, scott_mcadams__d_ varchar, PRIMARY KEY (poll_source))
|
select count(poll_source) from table_20597634_3 where scott_mcadams__d_ = "30%"
|
What is the total number of successors when the vacator was William North ( F )
|
create table table_224839_3 (successor varchar, vacator varchar, PRIMARY KEY (successor))
|
select count(successor) from table_224839_3 where vacator = "william north ( f )"
|
what's the salmonella with escherichia being espd
|
create table table_10321124_1 (salmonella varchar, escherichia varchar, PRIMARY KEY (salmonella))
|
select salmonella from table_10321124_1 where escherichia = "espd"
|
When h.264 is 9.0, how much is vp9 ( webm )
|
create table table_26099252_1 (vp9___webm__ varchar, h264 varchar, PRIMARY KEY (vp9___webm__))
|
select vp9___webm__ from table_26099252_1 where h264 = "9.0"
|
How many languages is refractaire as the film title used in nomination?
|
create table table_22073745_1 (languages varchar, film_title_used_in_nomination varchar, PRIMARY KEY (languages))
|
select count(languages) from table_22073745_1 where film_title_used_in_nomination = "refractaire"
|
If the rings are 60.500, what is the parallel bars number?
|
create table table_18662026_1 (parallel_bars varchar, rings varchar, PRIMARY KEY (parallel_bars))
|
select parallel_bars from table_18662026_1 where rings = "60.500"
|
Which school/club team has a player named Mark Sanford?
|
create table table_15463188_17 (school_club_team varchar, name varchar, PRIMARY KEY (school_club_team))
|
select school_club_team from table_15463188_17 where name = "mark sanford"
|
How many countries are the Tata Sabaya Lava domes located in?
|
create table table_1081235_1 (country varchar, name_of_lava_dome varchar, PRIMARY KEY (country))
|
select count(country) from table_1081235_1 where name_of_lava_dome = "tata sabaya lava domes"
|
What date did the West Indies win the match?
|
create table table_22384475_1 (match_date varchar, winner varchar, PRIMARY KEY (match_date))
|
select match_date from table_22384475_1 where winner = "west indies"
|
Find the number of the products that have their color described as "red" and have a characteristic named "slow".
|
create table characteristics (characteristic_id varchar, characteristic_name varchar, PRIMARY KEY (characteristic_id)); create table ref_colors (color_code varchar, color_description varchar, PRIMARY KEY (color_code)); create table products (product_id varchar, color_code 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 join ref_colors as t4 on t1.color_code = t4.color_code where t4.color_description = "red" and t3.characteristic_name = "slow"
|
What are all Tamil months when the season in English is monsoon?
|
create table table_1740431_3 (tamil_months varchar, season_in_english varchar, PRIMARY KEY (tamil_months))
|
select tamil_months from table_1740431_3 where season_in_english = "monsoon"
|
Report all advisors that advise more than 2 students.
|
create table student (advisor varchar, PRIMARY KEY (advisor))
|
select advisor from student group by advisor having count(*) > 2
|
List the organisation id with the maximum outcome count, and the count.
|
create table project_outcomes (project_id varchar, PRIMARY KEY (project_id)); create table projects (organisation_id varchar, project_id varchar, PRIMARY KEY (organisation_id))
|
select t1.organisation_id, count(*) from projects as t1 join project_outcomes as t2 on t1.project_id = t2.project_id group by t1.organisation_id order by count(*) desc limit 1
|
On what yacht was the sail number aus70?
|
create table table_1858574_3 (yacht varchar, sail_number varchar, PRIMARY KEY (yacht))
|
select yacht from table_1858574_3 where sail_number = "aus70"
|
What is the id and type code for the template used by the most documents?
|
create table documents (template_id varchar, PRIMARY KEY (template_id)); create table templates (template_type_code varchar, template_id varchar, PRIMARY KEY (template_type_code))
|
select t1.template_id, t2.template_type_code from documents as t1 join templates as t2 on t1.template_id = t2.template_id group by t1.template_id order by count(*) desc limit 1
|
Name the name for deceased spouse being louis malle
|
create table table_24143253_1 (name varchar, deceased_spouse varchar, PRIMARY KEY (name))
|
select name from table_24143253_1 where deceased_spouse = "louis malle"
|
What are all the places where Birgit Fischer competed?
|
create table table_14884844_2 (location varchar, athletes varchar, PRIMARY KEY (location))
|
select location from table_14884844_2 where athletes = "birgit fischer"
|
What was the maximum value that Christer Tornell gave when Trine Dehli Cleve gave a 9?
|
create table table_28677723_8 (christer_tornell integer, trine_dehli_cleve varchar, PRIMARY KEY (christer_tornell))
|
select max(christer_tornell) from table_28677723_8 where trine_dehli_cleve = 9
|
How many Grand Prix were the winning constructor Benetton - Ford and the pole position was Michael Schumacher?
|
create table table_1137702_3 (grand_prix varchar, winning_constructor varchar, pole_position varchar, PRIMARY KEY (grand_prix))
|
select count(grand_prix) from table_1137702_3 where winning_constructor = "benetton - ford" and pole_position = "michael schumacher"
|
Which situation has an original u.s. airdate of December 5, 2007?
|
create table table_14570857_1 (situation varchar, original_us_airdate varchar, PRIMARY KEY (situation))
|
select situation from table_14570857_1 where original_us_airdate = "december 5, 2007"
|
List the tournament that kent state won?
|
create table table_24348134_3 (conference varchar, tournament_winner varchar, PRIMARY KEY (conference))
|
select conference as tournament from table_24348134_3 where tournament_winner = "kent state"
|
Who was the EP winning team when the FM winning team was Brabham - Ford and the HM winning team was Osca?
|
create table table_29225103_2 (ep_winning_team varchar, fm_winning_team varchar, hm_winning_team varchar, PRIMARY KEY (ep_winning_team))
|
select ep_winning_team from table_29225103_2 where fm_winning_team = "brabham - ford" and hm_winning_team = "osca"
|
how many match points rotherham lose
|
create table table_27987767_2 (match_points varchar, losers varchar, PRIMARY KEY (match_points))
|
select match_points from table_27987767_2 where losers = "rotherham"
|
When the transmission make/type/speed is eaton fs 5306-a manual synchromesh 6 speed, what is the value of the gcm (kg) technical capacity?
|
create table table_11497980_1 (gcm__kg__technical_capacity varchar, transmission_make_type_speed varchar, PRIMARY KEY (gcm__kg__technical_capacity))
|
select gcm__kg__technical_capacity from table_11497980_1 where transmission_make_type_speed = "eaton fs 5306-a manual synchromesh 6 speed"
|
how many date of birts are if the previous club is chelsea
|
create table table_27998152_1 (date_of_birth varchar, previous_club varchar, PRIMARY KEY (date_of_birth))
|
select count(date_of_birth) from table_27998152_1 where previous_club = "chelsea"
|
Name the current womens lacrosse conference for bison
|
create table table_27378582_1 (current_womens_lacrosse_conference varchar, nickname varchar, PRIMARY KEY (current_womens_lacrosse_conference))
|
select current_womens_lacrosse_conference from table_27378582_1 where nickname = "bison"
|
For students who have pets , how many pets does each student have ? list their ids instead of names .
|
create table has_pet (stuid varchar, PRIMARY KEY (stuid)); create table student (stuid varchar, PRIMARY KEY (stuid))
|
select count(*), t1.stuid from student as t1 join has_pet as t2 on t1.stuid = t2.stuid group by t1.stuid
|
What was the yield of the K-4 explosion?
|
create table table_148578_1 (yield__approximate_ varchar, explosion varchar, PRIMARY KEY (yield__approximate_))
|
select yield__approximate_ from table_148578_1 where explosion = "k-4"
|
How many Ford Focus electric vehicle emission test scores were recorded in California?
|
create table table_16105186_2 (california__san_francisco_ varchar, vehicle varchar, PRIMARY KEY (california__san_francisco_))
|
select count(california__san_francisco_) from table_16105186_2 where vehicle = "ford focus electric"
|
Name the number of song for julia bermejo
|
create table table_19763199_5 (song varchar, artist varchar, PRIMARY KEY (song))
|
select count(song) from table_19763199_5 where artist = "julia bermejo"
|
What are the states or counties of the address of the stores with marketing region code "CA"?
|
create table addresses (state_county varchar, address_id varchar, PRIMARY KEY (state_county)); create table stores (address_id varchar, marketing_region_code varchar, PRIMARY KEY (address_id))
|
select t1.state_county from addresses as t1 join stores as t2 on t1.address_id = t2.address_id where t2.marketing_region_code = "ca"
|
What is the web thickness if the flange width is 100?
|
create table table_2071644_2 (web_thickness__mm_ varchar, flange_width__mm_ varchar, PRIMARY KEY (web_thickness__mm_))
|
select web_thickness__mm_ from table_2071644_2 where flange_width__mm_ = 100
|
What's the total (in million €) in the region where PPP is 21779 million €?
|
create table table_2293510_1 (total__million_€__ varchar, ppp__million_€_ varchar, PRIMARY KEY (total__million_€__))
|
select total__million_€__ from table_2293510_1 where ppp__million_€_ = 21779
|
give me names of all compatible browsers and accelerators in the descending order of compatible year
|
create table accelerator_compatible_browser (browser_id varchar, accelerator_id varchar, compatible_since_year varchar, PRIMARY KEY (browser_id)); create table web_client_accelerator (name varchar, id varchar, PRIMARY KEY (name)); create table browser (name varchar, id varchar, PRIMARY KEY (name))
|
select t2.name, t3.name 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 order by t1.compatible_since_year desc
|
What weapon is used by the guardian whose consort is śacī?
|
create table table_100518_1 (weapon varchar, consort varchar, PRIMARY KEY (weapon))
|
select weapon from table_100518_1 where consort = "śacī"
|
List all information regarding the basketball match.
|
create table basketball_match (id varchar, PRIMARY KEY (id))
|
select * from basketball_match
|
What was the survivor count for the episode directed by Gwyneth Horder-Payton?
|
create table table_21304131_2 (survivor_count varchar, directed_by varchar, PRIMARY KEY (survivor_count))
|
select survivor_count from table_21304131_2 where directed_by = "gwyneth horder-payton"
|
How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?
|
create table table_1616608_2 (western_title varchar, chinese_title varchar, PRIMARY KEY (western_title))
|
select count(western_title) from table_1616608_2 where chinese_title = "摸摸耀西-云中漫步"
|
In which week # was the original artist of Barreto's song choice was Leila Pinheiro?
|
create table table_27614571_1 (week__number varchar, original_artist varchar, PRIMARY KEY (week__number))
|
select week__number from table_27614571_1 where original_artist = "leila pinheiro"
|
Name march 27-29 where january 15-16 is january 15, 1991
|
create table table_1708610_3 (march_27_29 varchar, january_15_16 varchar, PRIMARY KEY (march_27_29))
|
select march_27_29 from table_1708610_3 where january_15_16 = "january 15, 1991"
|
how many winnings does jeff gordon have?
|
create table table_27781212_1 (winnings varchar, driver varchar, PRIMARY KEY (winnings))
|
select winnings from table_27781212_1 where driver = "jeff gordon"
|
Find the patient who most recently stayed in room 111.
|
create table stay (patient varchar, room varchar, staystart varchar, PRIMARY KEY (patient))
|
select patient from stay where room = 111 order by staystart desc limit 1
|
How many times did the team play charlotte?
|
create table table_17058116_6 (record varchar, team varchar, PRIMARY KEY (record))
|
select count(record) from table_17058116_6 where team = "charlotte"
|
Find the founder of the company whose name begins with the letter 'S'.
|
create table manufacturers (founder varchar, name varchar, PRIMARY KEY (founder))
|
select founder from manufacturers where name like 's%'
|
What is the publisher with most number of books?
|
create table book_club (publisher varchar, PRIMARY KEY (publisher))
|
select publisher from book_club group by publisher order by count(*) desc limit 1
|
Name the crew chief for ricky craven
|
create table table_2187178_1 (crew_chief varchar, driver_s_ varchar, PRIMARY KEY (crew_chief))
|
select crew_chief from table_2187178_1 where driver_s_ = "ricky craven"
|
Who was the pilot of max altitude of 55.9 miles?
|
create table table_221315_3 (pilot varchar, max_altitude__miles_ varchar, PRIMARY KEY (pilot))
|
select pilot from table_221315_3 where max_altitude__miles_ = "55.9"
|
What is the manner of departure for the team racing santander?
|
create table table_24231638_3 (manner_of_departure varchar, team varchar, PRIMARY KEY (manner_of_departure))
|
select manner_of_departure from table_24231638_3 where team = "racing santander"
|
Name the tier 1 ratio for irish life and permanent
|
create table table_22368322_2 (tier_1_ratio varchar, institution varchar, PRIMARY KEY (tier_1_ratio))
|
select tier_1_ratio from table_22368322_2 where institution = "irish life and permanent"
|
In what conflicts was the Italian Navy Combatants B?
|
create table table_26977890_1 (conflict varchar, combatants_b varchar, PRIMARY KEY (conflict))
|
select conflict from table_26977890_1 where combatants_b = "italian navy"
|
Name the total water resources m3 for rainfall being 650
|
create table table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 varchar, average_annual_rainfall__mm_ varchar, PRIMARY KEY (per_capita_average_annual_renewable_water_resources_m_3))
|
select count(per_capita_average_annual_renewable_water_resources_m_3) from table_22854436_1 where average_annual_rainfall__mm_ = "650"
|
How many episodes were directed by Rod Hardy?
|
create table table_25740548_2 (original_air_date varchar, directed_by varchar, PRIMARY KEY (original_air_date))
|
select count(original_air_date) from table_25740548_2 where directed_by = "rod hardy"
|
What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?
|
create table table_21500850_1 (song_title varchar, artist varchar, genre varchar, original_game varchar, PRIMARY KEY (song_title))
|
select song_title from table_21500850_1 where genre = "rock" and original_game = "guitar hero" and artist = "queens of the stone age"
|
Who is the first driver(s) when the country is romania?
|
create table table_27279050_3 (first_driver_s_ varchar, country varchar, PRIMARY KEY (first_driver_s_))
|
select first_driver_s_ from table_27279050_3 where country = "romania"
|
Who wrote the episode that originally aired April 29, 1994?
|
create table table_2468961_4 (written_by varchar, original_air_date varchar, PRIMARY KEY (written_by))
|
select written_by from table_2468961_4 where original_air_date = "april 29, 1994"
|
How many transaction does each account have? Show the number and account id.
|
create table financial_transactions (account_id varchar, PRIMARY KEY (account_id))
|
select count(*), account_id from financial_transactions
|
What is the aa length when the protein name is c11orf73?
|
create table table_26708105_5 (aa_length varchar, protein_name varchar, PRIMARY KEY (aa_length))
|
select aa_length from table_26708105_5 where protein_name = "c11orf73"
|
What brand is model I7-8xx?
|
create table table_24018112_1 (brand_name varchar, model__list_ varchar, PRIMARY KEY (brand_name))
|
select brand_name from table_24018112_1 where model__list_ = "i7-8xx"
|
If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality?
|
create table table_19998428_3 (san_julián_municipality___percentage_ varchar, san_antonio_de_lomerío_municipality___percentage_ varchar, PRIMARY KEY (san_julián_municipality___percentage_))
|
select count(san_julián_municipality___percentage_) from table_19998428_3 where san_antonio_de_lomerío_municipality___percentage_ = "5.480"
|
If the event was bantamweight (-63kg), and the quarterfinals did not advance, then who was in round of 32?
|
create table table_26335424_86 (round_of_32 varchar, quarterfinals varchar, event varchar, PRIMARY KEY (round_of_32))
|
select round_of_32 from table_26335424_86 where quarterfinals = "did not advance" and event = "bantamweight (-63kg)"
|
What was the time in part 3 when Nick Heidfeld was the driver?
|
create table table_20159025_1 (part_3 varchar, driver varchar, PRIMARY KEY (part_3))
|
select part_3 from table_20159025_1 where driver = "nick heidfeld"
|
How many documents are using the template with type code 'PPT'?
|
create table templates (template_id varchar, template_type_code varchar, PRIMARY KEY (template_id)); create table documents (template_id varchar, PRIMARY KEY (template_id))
|
select count(*) from documents as t1 join templates as t2 on t1.template_id = t2.template_id where t2.template_type_code = 'ppt'
|
Find the policy type used by more than 4 customers.
|
create table available_policies (policy_type_code varchar, PRIMARY KEY (policy_type_code))
|
select policy_type_code from available_policies group by policy_type_code having count(*) > 4
|
What are all of the dates in the country of Canada?
|
create table table_15315816_1 (dates varchar, country varchar, PRIMARY KEY (dates))
|
select dates from table_15315816_1 where country = "canada"
|
What province was New Plymouth formed from?
|
create table table_275023_1 (formed_from varchar, province varchar, PRIMARY KEY (formed_from))
|
select formed_from from table_275023_1 where province = "new plymouth"
|
when deland is the fcsl team and 2008 is the year played who is the mlb team?
|
create table table_18373863_2 (mlb_team varchar, years_played varchar, fcsl_team varchar, PRIMARY KEY (mlb_team))
|
select mlb_team from table_18373863_2 where years_played = "2008" and fcsl_team = "deland"
|
What is the epa rated combined fuel economy for the all-electric vehicle with dirty electric grid rocky mountains (denver) of 330 g/mi (205 g/km)?
|
create table table_23840623_4 (epa_rated_combined_fuel_economy varchar, operating_mode varchar, dirty_electric_grid_rocky_mountains__denver_ varchar, PRIMARY KEY (epa_rated_combined_fuel_economy))
|
select epa_rated_combined_fuel_economy from table_23840623_4 where operating_mode = "all-electric" and dirty_electric_grid_rocky_mountains__denver_ = "330 g/mi (205 g/km)"
|
what's the camp with estimated deaths of 600,000
|
create table table_10335_1 (camp varchar, estimated_deaths varchar, PRIMARY KEY (camp))
|
select camp from table_10335_1 where estimated_deaths = "600,000"
|
What was the waveform of the encoding with a bit rate of 6.203?
|
create table table_1926240_1 (waveform varchar, bit_rate_ varchar, _mbit_s_ varchar, PRIMARY KEY (waveform))
|
select waveform from table_1926240_1 where bit_rate_[_mbit_s_] = "6.203"
|
How many people wrote the episode that had 7.26 million u.s. viewers?
|
create table table_28037619_2 (written_by varchar, us_viewers__million_ varchar, PRIMARY KEY (written_by))
|
select count(written_by) from table_28037619_2 where us_viewers__million_ = "7.26"
|
What was the world rank by ARWU in 2013 of the University of Tübingen?
|
create table table_27484208_1 (world_rank_by_arwu_ varchar, _2013 varchar, members varchar, PRIMARY KEY (world_rank_by_arwu_))
|
select world_rank_by_arwu_, _2013 from table_27484208_1 where members = "university of tübingen"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.