question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
Name the cyrillic name for lazarevo
|
create table table_2562572_35 (cyrillic_name_other_names varchar, settlement varchar, PRIMARY KEY (cyrillic_name_other_names))
|
select cyrillic_name_other_names from table_2562572_35 where settlement = "lazarevo"
|
Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?
|
create table table_27753492_2 (womens_doubles varchar, mixed_doubles varchar, PRIMARY KEY (womens_doubles))
|
select womens_doubles from table_27753492_2 where mixed_doubles = "sudket prapakamol saralee thungthongkam"
|
where together we can do more is gloria mujica ( ph ) what are all the cons.
|
create table table_2651755_2 (cons varchar, together_we_can_do_more varchar, PRIMARY KEY (cons))
|
select cons from table_2651755_2 where together_we_can_do_more = "gloria mujica ( ph )"
|
List the name and phone number of all suppliers in the alphabetical order of their addresses.
|
create table addresses (address_id varchar, address_details varchar, PRIMARY KEY (address_id)); create table supplier_addresses (supplier_id varchar, address_id varchar, PRIMARY KEY (supplier_id)); create table suppliers (supplier_name varchar, supplier_phone varchar, supplier_id varchar, PRIMARY KEY (supplier_name))
|
select t1.supplier_name, t1.supplier_phone from suppliers as t1 join supplier_addresses as t2 on t1.supplier_id = t2.supplier_id join addresses as t3 on t2.address_id = t3.address_id order by t3.address_details
|
Who won the mixed doubles when ji xinpeng won the mens singles?
|
create table table_12027364_1 (mixed_doubles varchar, mens_singles varchar, PRIMARY KEY (mixed_doubles))
|
select mixed_doubles from table_12027364_1 where mens_singles = "ji xinpeng"
|
What is every value for словјански if polish is książka?
|
create table table_25008327_8 (словјански varchar, polish varchar, PRIMARY KEY (словјански))
|
select словјански from table_25008327_8 where polish = "książka"
|
what's the name with first operational being march 1945
|
create table table_13636_1 (name varchar, first_operational varchar, PRIMARY KEY (name))
|
select name from table_13636_1 where first_operational = "march 1945"
|
What is the guanay municipality when the tacacoma municipality is 4.321?
|
create table table_2509202_2 (guanay_municipality varchar, tacacoma_municipality varchar, PRIMARY KEY (guanay_municipality))
|
select guanay_municipality from table_2509202_2 where tacacoma_municipality = "4.321"
|
Where did they play the San Diego Chargers?
|
create table table_13259009_2 (game_site varchar, opponent varchar, PRIMARY KEY (game_site))
|
select game_site from table_13259009_2 where opponent = "san diego chargers"
|
Show all artist names and the year joined who are not from United States.
|
create table artist (name varchar, year_join varchar, country varchar, PRIMARY KEY (name))
|
select name, year_join from artist where country <> 'united states'
|
Who is the captain of the Gloucestershire Gladiators?
|
create table table_18461635_1 (captain varchar, team varchar, PRIMARY KEY (captain))
|
select captain from table_18461635_1 where team = "gloucestershire gladiators"
|
How many models does each car maker produce? List maker full name, id and the number.
|
create table model_list (maker varchar, PRIMARY KEY (maker)); create table car_makers (fullname varchar, id varchar, PRIMARY KEY (fullname))
|
select t1.fullname, t1.id, count(*) from car_makers as t1 join model_list as t2 on t1.id = t2.maker group by t1.id
|
In which year were most departments established?
|
create table department (creation varchar, PRIMARY KEY (creation))
|
select creation from department group by creation order by count(*) desc limit 1
|
When the under-17 was Antonio Glez, who was the under-13?
|
create table table_26368963_1 (under_13 varchar, under_17 varchar, PRIMARY KEY (under_13))
|
select under_13 from table_26368963_1 where under_17 = "antonio glez"
|
What type of settlement is футог?
|
create table table_2562572_9 (type varchar, cyrillic_name_other_names varchar, PRIMARY KEY (type))
|
select type from table_2562572_9 where cyrillic_name_other_names = "футог"
|
What was the original air date where there were u.s. viewers (millions) is 5.60?
|
create table table_25716399_1 (original_air_date varchar, us_viewers__millions_ varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_25716399_1 where us_viewers__millions_ = "5.60"
|
Name the icb sector for ai
|
create table table_168274_1 (icb_sector varchar, ticker_symbol varchar, PRIMARY KEY (icb_sector))
|
select icb_sector from table_168274_1 where ticker_symbol = "ai"
|
How many million viewers watched the episode that runs 25:55 minutes?
|
create table table_1785117_1 (viewers__in_millions_ varchar, run_time varchar, PRIMARY KEY (viewers__in_millions_))
|
select viewers__in_millions_ from table_1785117_1 where run_time = "25:55"
|
Which film has the most number of actors or actresses? List the film name, film id and description.
|
create table film_actor (film_id varchar, PRIMARY KEY (film_id)); create table film (title varchar, film_id varchar, description varchar, PRIMARY KEY (title))
|
select t2.title, t2.film_id, t2.description from film_actor as t1 join film as t2 on t1.film_id = t2.film_id group by t2.film_id order by count(*) desc limit 1
|
Find the names of users who have more than one tweet.
|
create table tweets (uid varchar, PRIMARY KEY (uid)); create table user_profiles (name varchar, uid varchar, PRIMARY KEY (name))
|
select t1.name from user_profiles as t1 join tweets as t2 on t1.uid = t2.uid group by t2.uid having count(*) > 1
|
What amount is the number of hk viewers where chinese title is 十兄弟?
|
create table table_11173827_1 (hk_viewers varchar, chinese_title varchar, PRIMARY KEY (hk_viewers))
|
select hk_viewers from table_11173827_1 where chinese_title = "十兄弟"
|
Who is the creator when the view happens to gddm, afp viewer?
|
create table table_1574968_1 (creator varchar, viewer varchar, PRIMARY KEY (creator))
|
select creator from table_1574968_1 where viewer = "gddm, afp viewer"
|
What state does the representative whose mission was terminated on November 29, 1973 represent?
|
create table table_20065425_1 (state varchar, termination_of_mission varchar, PRIMARY KEY (state))
|
select state from table_20065425_1 where termination_of_mission = "november 29, 1973"
|
Is the Washington Corrections Center for Women (WCCW) a major facility?
|
create table table_25346763_1 (major varchar, facility varchar, PRIMARY KEY (major))
|
select major as facility from table_25346763_1 where facility = "washington corrections center for women (wccw)"
|
Name the award name for black ocean current
|
create table table_15584199_3 (award_name varchar, team_name varchar, PRIMARY KEY (award_name))
|
select award_name from table_15584199_3 where team_name = "black ocean current"
|
What were the LOA metres for the yacht ichi ban?
|
create table table_25594271_2 (loa__metres_ varchar, yacht varchar, PRIMARY KEY (loa__metres_))
|
select loa__metres_ from table_25594271_2 where yacht = "ichi ban"
|
what is the prod.code of the episode with original air date 01/12/1968?
|
create table table_13403120_1 (prodcode varchar, originalairdate varchar, PRIMARY KEY (prodcode))
|
select count(prodcode) from table_13403120_1 where originalairdate = "01/12/1968"
|
What is the weight(lbs) when born is april 6, 1954 detroit, mi?
|
create table table_1198175_1 (weight_lbs_ varchar, born varchar, PRIMARY KEY (weight_lbs_))
|
select weight_lbs_ from table_1198175_1 where born = "april 6, 1954 detroit, mi"
|
In language where Saturday is සෙනසුරාදා senasuraadaa, what is Tuesday?
|
create table table_1277350_3 (tuesday_mangala__mars_ varchar, saturday_shani__saturn_ varchar, PRIMARY KEY (tuesday_mangala__mars_))
|
select tuesday_mangala__mars_ from table_1277350_3 where saturday_shani__saturn_ = "සෙනසුරාදා senasuraadaa"
|
What are the numbers of races for each constructor id?
|
create table constructorstandings (constructorid varchar, PRIMARY KEY (constructorid))
|
select count(*), constructorid from constructorstandings group by constructorid
|
With the nickname the swans, what is the home ground?
|
create table table_18752986_1 (home_ground_s_ varchar, nickname varchar, PRIMARY KEY (home_ground_s_))
|
select home_ground_s_ from table_18752986_1 where nickname = "swans"
|
What are the names and arrival times of trains?
|
create table train (name varchar, arrival varchar, PRIMARY KEY (name))
|
select name, arrival from train
|
Show the distinct themes of journals.
|
create table journal (theme varchar, PRIMARY KEY (theme))
|
select distinct theme from journal
|
When the best finish was T69, how many people came in 2nd?
|
create table table_10021158_3 (best_finish varchar, PRIMARY KEY (best_finish))
|
select 2 as nd from table_10021158_3 where best_finish = "t69"
|
What title was used in the nomination for the title Biola Tak Berdawai?
|
create table table_13719788_1 (film_title_used_in_nomination varchar, original_title varchar, PRIMARY KEY (film_title_used_in_nomination))
|
select film_title_used_in_nomination from table_13719788_1 where original_title = "biola tak berdawai"
|
What is the model of the engine d5244 t7?
|
create table table_1147701_5 (model_name varchar, engine_code varchar, PRIMARY KEY (model_name))
|
select model_name from table_1147701_5 where engine_code = "d5244 t7"
|
How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?
|
create table table_221315_3 (max_speed__mph_ varchar, usaf_space_flights varchar, total_flights varchar, PRIMARY KEY (max_speed__mph_))
|
select count(max_speed__mph_) from table_221315_3 where usaf_space_flights = 1 and total_flights = 34
|
What was the maximum perigee on 1969-01-09?
|
create table table_12141496_1 (perigee__km_ integer, decay_date varchar, PRIMARY KEY (perigee__km_))
|
select max(perigee__km_) from table_12141496_1 where decay_date = "1969-01-09"
|
What is the result/games of Sun 11/28/10 as the date/year?
|
create table table_21436373_6 (result_games varchar, date_year varchar, PRIMARY KEY (result_games))
|
select result_games from table_21436373_6 where date_year = "sun 11/28/10"
|
How many capital cities does Australia have?
|
create table table_1008653_1 (capital___endonym__ varchar, country___endonym__ varchar, PRIMARY KEY (capital___endonym__))
|
select count(capital___endonym__) from table_1008653_1 where country___endonym__ = "australia"
|
For the model with torque of n·m (lb·ft)/*n·m (lb·ft) @1750, what is the power?
|
create table table_1212189_1 (power_rpm varchar, torque__nm__rpm varchar, PRIMARY KEY (power_rpm))
|
select power_rpm from table_1212189_1 where torque__nm__rpm = "n·m (lb·ft)/*n·m (lb·ft) @1750"
|
who are the awardees when the name of award is best agricultural film?
|
create table table_25926120_7 (awardee_s_ varchar, name_of_award varchar, PRIMARY KEY (awardee_s_))
|
select awardee_s_ from table_25926120_7 where name_of_award = "best agricultural film"
|
how many song title with artbeingt being chubby checker
|
create table table_13789248_2 (song_title varchar, artist varchar, PRIMARY KEY (song_title))
|
select count(song_title) from table_13789248_2 where artist = "chubby checker"
|
What is the id, forname and surname of the driver who had the first position in terms of laptime at least twice?
|
create table drivers (driverid varchar, forename varchar, surname varchar, PRIMARY KEY (driverid)); create table laptimes (driverid varchar, PRIMARY KEY (driverid))
|
select t1.driverid, t1.forename, t1.surname from drivers as t1 join laptimes as t2 on t1.driverid = t2.driverid where position = '1' group by t1.driverid having count(*) >= 2
|
Name the game cost for merged with new york central to form penn central
|
create table table_243664_1 (game_cost varchar, real_life_eventual_outcome varchar, PRIMARY KEY (game_cost))
|
select game_cost from table_243664_1 where real_life_eventual_outcome = "merged with new york central to form penn central"
|
Who drove for team Circle Sport?
|
create table table_1266602_2 (driver_s_ varchar, team varchar, PRIMARY KEY (driver_s_))
|
select driver_s_ from table_1266602_2 where team = "circle sport"
|
How many mascotts are there for college station, texas
|
create table table_28243691_1 (team_nickname varchar, location varchar, PRIMARY KEY (team_nickname))
|
select count(team_nickname) from table_28243691_1 where location = "college station, texas"
|
Which language is spoken by the largest number of countries?
|
create table countrylanguage (language varchar, PRIMARY KEY (language))
|
select language from countrylanguage group by language order by count(*) desc limit 1
|
how many female dependents are there?
|
create table dependent (sex varchar, PRIMARY KEY (sex))
|
select count(*) from dependent where sex = 'f'
|
Who directed the episode that aired on july15,2012?
|
create table table_20704243_6 (directed_by varchar, original_air_date varchar, PRIMARY KEY (directed_by))
|
select directed_by from table_20704243_6 where original_air_date = "july15,2012"
|
What is the most frequent status of bookings?
|
create table bookings (status_code varchar, PRIMARY KEY (status_code))
|
select status_code from bookings group by status_code order by count(*) desc limit 1
|
Which battle of the planets where ova (harmony gold dub) is solaris?
|
create table table_17480471_3 (battle_of_the_planets varchar, ova__harmony_gold_dub_ varchar, PRIMARY KEY (battle_of_the_planets))
|
select battle_of_the_planets from table_17480471_3 where ova__harmony_gold_dub_ = "solaris"
|
What is every event date on Sunday with a starting time of 9:30 am?
|
create table table_28003469_1 (event_date varchar, event_day varchar, starting_time varchar, PRIMARY KEY (event_date))
|
select event_date from table_28003469_1 where event_day = "sunday" and starting_time = "9:30 am"
|
What is the value for congi core 1 if the code name is Redwood and core clock(mhz) is 500?
|
create table table_25005714_3 (config_core_1 varchar, code_name varchar, core_clock___mhz__ varchar, PRIMARY KEY (config_core_1))
|
select config_core_1 from table_25005714_3 where code_name = "redwood" and core_clock___mhz__ = "500"
|
How many districts have an area of 17.72 KM2?
|
create table table_1104312_5 (english_name varchar, area_in_km² varchar, PRIMARY KEY (english_name))
|
select count(english_name) from table_1104312_5 where area_in_km² = "17.72"
|
What is the winning song for the artist with a debut album "the winner"?
|
create table table_1646960_3 (winning_song varchar, debut_album varchar, PRIMARY KEY (winning_song))
|
select winning_song from table_1646960_3 where debut_album = "the winner"
|
Where was the game played that started at 7:00 p.m.?
|
create table table_24396664_2 (game_site varchar, kickoff varchar, PRIMARY KEY (game_site))
|
select game_site from table_24396664_2 where kickoff = "7:00 p.m."
|
What was the percent of slovenes 1951 for bach?
|
create table table_10797636_1 (percent_of_slovenes_1951 varchar, village__german_ varchar, PRIMARY KEY (percent_of_slovenes_1951))
|
select percent_of_slovenes_1951 from table_10797636_1 where village__german_ = "bach"
|
Find the person who has exactly one friend.
|
create table personfriend (name varchar, PRIMARY KEY (name))
|
select name from personfriend group by name having count(*) = 1
|
Show company name and main industry without a gas station.
|
create table station_company (company varchar, main_industry varchar, company_id varchar, PRIMARY KEY (company)); create table company (company varchar, main_industry varchar, company_id varchar, PRIMARY KEY (company))
|
select company, main_industry from company where not company_id in (select company_id from station_company)
|
What are the hometowns that are shared by at least two gymnasts?
|
create table gymnast (gymnast_id varchar, PRIMARY KEY (gymnast_id)); create table people (hometown varchar, people_id varchar, PRIMARY KEY (hometown))
|
select t2.hometown from gymnast as t1 join people as t2 on t1.gymnast_id = t2.people_id group by t2.hometown having count(*) >= 2
|
What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death?
|
create table table_16527640_2 (vfl_club_s_ varchar, rank_held_at_time_of_death varchar, PRIMARY KEY (vfl_club_s_))
|
select vfl_club_s_ from table_16527640_2 where rank_held_at_time_of_death = "sergeant, 8th brigade australian field artillery"
|
Where is il-36β located?
|
create table table_29871617_1 (chromosomal_location varchar, name varchar, PRIMARY KEY (chromosomal_location))
|
select chromosomal_location from table_29871617_1 where name = "il-36β"
|
How many Small catagories are there for the department that has a medium of 17101?
|
create table table_21249915_1 (small__100ha_ varchar, medium__500ha_ varchar, PRIMARY KEY (small__100ha_))
|
select count(small__100ha_) from table_21249915_1 where medium__500ha_ = 17101
|
What are all values for U.S. viewers(millions) with Kevin Curran as a writer?
|
create table table_20942925_1 (us_viewers__millions_ varchar, written_by varchar, PRIMARY KEY (us_viewers__millions_))
|
select us_viewers__millions_ from table_20942925_1 where written_by = "kevin curran"
|
Name the power provided where transfer speed mb/s is 300 and max cable length of 10
|
create table table_174151_5 (power_provided varchar, transfer_speed__mb_s_ varchar, max_cable_length__m_ varchar, PRIMARY KEY (power_provided))
|
select power_provided from table_174151_5 where transfer_speed__mb_s_ = "300" and max_cable_length__m_ = "10"
|
How many enzymes do not have any interactions?
|
create table medicine_enzyme_interaction (id varchar, enzyme_id varchar, PRIMARY KEY (id)); create table enzyme (id varchar, enzyme_id varchar, PRIMARY KEY (id))
|
select count(*) from enzyme where not id in (select enzyme_id from medicine_enzyme_interaction)
|
When middle assyrian empire is the ubaid period in mesopotamia what is the copper age?
|
create table table_23537091_1 (copper_age varchar, ubaid_period_in_mesopotamia varchar, PRIMARY KEY (copper_age))
|
select copper_age from table_23537091_1 where ubaid_period_in_mesopotamia = "middle assyrian empire"
|
Which programs were originally broadcast on CITV?
|
create table table_29566606_11 (programme varchar, original_channel_s_ varchar, PRIMARY KEY (programme))
|
select programme from table_29566606_11 where original_channel_s_ = "citv"
|
How many votes did Wales cast when Northern England cast 6?
|
create table table_10128185_2 (wales integer, northern_england varchar, PRIMARY KEY (wales))
|
select min(wales) from table_10128185_2 where northern_england = 6
|
How many different countries did the champion Se Ri Pak (2) represent?
|
create table table_229059_2 (country varchar, champion varchar, PRIMARY KEY (country))
|
select count(country) from table_229059_2 where champion = "se ri pak (2)"
|
List the most common hometown of teachers.
|
create table teacher (hometown varchar, PRIMARY KEY (hometown))
|
select hometown from teacher group by hometown order by count(*) desc limit 1
|
What is the rate limit when the desired rate change (%) is +40.4?
|
create table table_25316812_1 (rate_limit__p_ varchar, desired_rate_change___percentage_ varchar, PRIMARY KEY (rate_limit__p_))
|
select rate_limit__p_ from table_25316812_1 where desired_rate_change___percentage_ = "+40.4"
|
What Branding does WRKO calls use?
|
create table table_10333757_1 (branding varchar, calls varchar, PRIMARY KEY (branding))
|
select branding from table_10333757_1 where calls = "wrko"
|
how many party with candidates being charles edward bennett (d) unopposed
|
create table table_1342013_9 (party varchar, candidates varchar, PRIMARY KEY (party))
|
select count(party) from table_1342013_9 where candidates = "charles edward bennett (d) unopposed"
|
Show the manager name for gas stations belonging to the ExxonMobil company.
|
create table gas_station (manager_name varchar, station_id varchar, PRIMARY KEY (manager_name)); create table station_company (company_id varchar, station_id varchar, PRIMARY KEY (company_id)); create table company (company_id varchar, company varchar, PRIMARY KEY (company_id))
|
select t3.manager_name from station_company as t1 join company as t2 on t1.company_id = t2.company_id join gas_station as t3 on t1.station_id = t3.station_id where t2.company = 'exxonmobil'
|
How many different items appear in the weight column when Pittsburgh, PA is the hometown?
|
create table table_29970488_2 (weight___lb__ varchar, hometown varchar, PRIMARY KEY (weight___lb__))
|
select count(weight___lb__) from table_29970488_2 where hometown = "pittsburgh, pa"
|
How many clubs are located at "HHH"?
|
create table club (clublocation varchar, PRIMARY KEY (clublocation))
|
select count(*) from club where clublocation = "hhh"
|
Which handicap has the horse knowhere?
|
create table table_19624708_1 (handicap__st_lb_ varchar, horse varchar, PRIMARY KEY (handicap__st_lb_))
|
select handicap__st_lb_ from table_19624708_1 where horse = "knowhere"
|
Which junctions have "replaced by bsi-35" listed in their remarks section?
|
create table table_11336756_6 (junctions varchar, remarks varchar, PRIMARY KEY (junctions))
|
select junctions from table_11336756_6 where remarks = "replaced by bsi-35"
|
Name the record for arizona
|
create table table_22815259_1 (record varchar, opponent varchar, PRIMARY KEY (record))
|
select record from table_22815259_1 where opponent = "arizona"
|
When nº is 3, what are all the coaliton parties?
|
create table table_21422977_1 (coalition_parties varchar, nº varchar, PRIMARY KEY (coalition_parties))
|
select coalition_parties from table_21422977_1 where nº = 3
|
What was the playoff result when they finished 5th, north in the regular sesason?
|
create table table_15056103_1 (playoffs varchar, regular_season varchar, PRIMARY KEY (playoffs))
|
select playoffs from table_15056103_1 where regular_season = "5th, north"
|
During the Big Seven Conference which team was the regular season winner?
|
create table table_28365816_2 (regular_season_winner varchar, conference varchar, PRIMARY KEY (regular_season_winner))
|
select regular_season_winner from table_28365816_2 where conference = "big seven conference"
|
Was the round where they were in 6th at home or away?
|
create table table_29033869_3 (home_away varchar, position_on_ladder varchar, PRIMARY KEY (home_away))
|
select home_away from table_29033869_3 where position_on_ladder = "6th"
|
What is the 3 most common cloud cover rates in the region of zip code 94107?
|
create table weather (cloud_cover varchar, zip_code varchar, PRIMARY KEY (cloud_cover))
|
select cloud_cover from weather where zip_code = 94107 group by cloud_cover order by count(*) desc limit 3
|
The local title "Live to Dance" was aired in which channel?
|
create table table_24598274_20 (channel varchar, local_title varchar, PRIMARY KEY (channel))
|
select channel from table_24598274_20 where local_title = "live to dance"
|
what time does the train that arrives in lonavla at 22:22 depart pune
|
create table table_29301050_1 (departure_pune varchar, arrival_lonavla varchar, PRIMARY KEY (departure_pune))
|
select departure_pune from table_29301050_1 where arrival_lonavla = "22:22"
|
List the writers who have written more than one book.
|
create table book (writer varchar, PRIMARY KEY (writer))
|
select writer from book group by writer having count(*) > 1
|
Find the name of customers who have loans of both Mortgages and Auto.
|
create table customer (cust_name varchar, cust_id varchar, PRIMARY KEY (cust_name)); create table loan (cust_id varchar, PRIMARY KEY (cust_id))
|
select t1.cust_name from customer as t1 join loan as t2 on t1.cust_id = t2.cust_id where loan_type = 'mortgages' intersect select t1.cust_name from customer as t1 join loan as t2 on t1.cust_id = t2.cust_id where loan_type = 'auto'
|
Name the nation where jeff barker is from
|
create table table_19730892_1 (nation varchar, name varchar, PRIMARY KEY (nation))
|
select nation from table_19730892_1 where name = "jeff barker"
|
What is the team when the incoming manager is martin allen?
|
create table table_26914854_3 (team varchar, incoming_manager varchar, PRIMARY KEY (team))
|
select team from table_26914854_3 where incoming_manager = "martin allen"
|
In what bowl game was the result Oklahoma 31, Stanford 27?
|
create table table_23718905_6 (bowl_game varchar, matchup_results varchar, PRIMARY KEY (bowl_game))
|
select bowl_game from table_23718905_6 where matchup_results = "oklahoma 31, stanford 27"
|
Name the present share for australia
|
create table table_23195_5 (present_share varchar, producing_nation varchar, PRIMARY KEY (present_share))
|
select present_share from table_23195_5 where producing_nation = "australia"
|
What is Petersville's census ranking?
|
create table table_171356_2 (census_ranking varchar, official_name varchar, PRIMARY KEY (census_ranking))
|
select census_ranking from table_171356_2 where official_name = "petersville"
|
This constellation, abbreviated as 'oph' has how many right ascension (in hm)?
|
create table table_177766_1 (right_ascension__hm_ varchar, abbreviation varchar, PRIMARY KEY (right_ascension__hm_))
|
select count(right_ascension__hm_) from table_177766_1 where abbreviation = "oph"
|
Name the package/option for number being 543
|
create table table_15887683_8 (package_option varchar, n° varchar, PRIMARY KEY (package_option))
|
select package_option from table_15887683_8 where n° = 543
|
Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5
|
create table table_18524_6 (tourism_receipts__2011___us varchar, tourism_receipts__2003___as__percentage_of_gdp_ varchar, PRIMARY KEY (tourism_receipts__2011___us))
|
select count(tourism_receipts__2011___us) as $_per_capita_ from table_18524_6 where tourism_receipts__2003___as__percentage_of_gdp_ = "13.5"
|
How many engine b5204 t3?
|
create table table_1147705_1 (engine_displacement varchar, engine_type varchar, PRIMARY KEY (engine_displacement))
|
select count(engine_displacement) from table_1147705_1 where engine_type = "b5204 t3"
|
Name the memory for meodel number for atom e640t
|
create table table_16729930_17 (memory varchar, model_number varchar, PRIMARY KEY (memory))
|
select memory from table_16729930_17 where model_number = "atom e640t"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.