question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
who is the person that is part of the belgian vw club that works with frédéric miclotte
|
create table table_28046929_2 (driver varchar, entrant varchar, co_driver varchar, PRIMARY KEY (driver))
|
select driver from table_28046929_2 where entrant = "belgian vw club" and co_driver = "frédéric miclotte"
|
What is the manhattan for richmond 35%?
|
create table table_1108394_24 (manhattan varchar, richmond_ varchar, staten_is varchar, PRIMARY KEY (manhattan))
|
select manhattan from table_1108394_24 where richmond_[staten_is] = "35_percentage"
|
What country had 20% imports from russia?
|
create table table_21690339_1 (country varchar, _percentage_of_imports_from_russia varchar, PRIMARY KEY (country))
|
select country from table_21690339_1 where _percentage_of_imports_from_russia = "20%"
|
What is the party of the district incumbent Jim Saxton?
|
create table table_1341453_32 (party varchar, incumbent varchar, PRIMARY KEY (party))
|
select party from table_1341453_32 where incumbent = "jim saxton"
|
How many connections aux in using FIrewire?
|
create table table_24384861_1 (aux_in varchar, dock_connection varchar, PRIMARY KEY (aux_in))
|
select count(aux_in) from table_24384861_1 where dock_connection = "firewire"
|
Find the name and partition id for users who tweeted less than twice.
|
create table user_profiles (name varchar, partitionid varchar, uid varchar, PRIMARY KEY (name)); create table tweets (uid varchar, PRIMARY KEY (uid))
|
select t1.name, t1.partitionid from user_profiles as t1 join tweets as t2 on t1.uid = t2.uid group by t2.uid having count(*) < 2
|
what is the number of opponents where the location is syracuse, ny?
|
create table table_23346303_3 (opponent varchar, location varchar, PRIMARY KEY (opponent))
|
select count(opponent) from table_23346303_3 where location = "syracuse, ny"
|
What is the traditional with density of 820?
|
create table table_2135222_2 (traditional varchar, density varchar, PRIMARY KEY (traditional))
|
select traditional from table_2135222_2 where density = 820
|
Which department offers the most number of degrees? List department name and id.
|
create table degree_programs (department_id varchar, PRIMARY KEY (department_id)); create table departments (department_name varchar, department_id varchar, PRIMARY KEY (department_name))
|
select t2.department_name, t1.department_id from degree_programs as t1 join departments as t2 on t1.department_id = t2.department_id group by t1.department_id order by count(*) desc limit 1
|
What is the Thurs 2 June time for the rider with a Fri 3 June time of 17' 36.58 128.554mph?
|
create table table_29218221_1 (thurs_2_june varchar, fri_3_june varchar, PRIMARY KEY (thurs_2_june))
|
select thurs_2_june from table_29218221_1 where fri_3_june = "17' 36.58 128.554mph"
|
What was the Kentucky Oaks attendance the year the Belmont Stakes had 64,949 attendance?
|
create table table_24089503_1 (kentucky_oaks varchar, belmont_stakes varchar, PRIMARY KEY (kentucky_oaks))
|
select kentucky_oaks from table_24089503_1 where belmont_stakes = "64,949"
|
What is the torque formula for the 1.6 Duratec ti-vct model/engine?
|
create table table_1212189_1 (torque__nm__rpm varchar, model_engine varchar, PRIMARY KEY (torque__nm__rpm))
|
select torque__nm__rpm from table_1212189_1 where model_engine = "1.6 duratec ti-vct"
|
How many million viewers watch the episode that kevin biegel & aseem batra wrote?
|
create table table_25548213_1 (us_viewers__million_ varchar, written_by varchar, PRIMARY KEY (us_viewers__million_))
|
select us_viewers__million_ from table_25548213_1 where written_by = "kevin biegel & aseem batra"
|
How many RolePlay actors played the role requiring a "male, younger" actor?
|
create table table_17827271_1 (roleplay varchar, actor_required varchar, PRIMARY KEY (roleplay))
|
select count(roleplay) from table_17827271_1 where actor_required = "male, younger"
|
List all restaurant types.
|
create table restaurant_type (restypename varchar, PRIMARY KEY (restypename))
|
select restypename from restaurant_type
|
How many different product types are there?
|
create table products_for_hire (product_type_code varchar, PRIMARY KEY (product_type_code))
|
select count(distinct product_type_code) from products_for_hire
|
How many different degree names are offered?
|
create table degree_programs (degree_summary_name varchar, PRIMARY KEY (degree_summary_name))
|
select count(distinct degree_summary_name) from degree_programs
|
What is every entry for Proto-Italo-Western 1 when door is English?
|
create table table_25401_15 (proto_italo_western_1 varchar, english varchar, PRIMARY KEY (proto_italo_western_1))
|
select proto_italo_western_1 from table_25401_15 where english = "door"
|
What is the lowest value for int. caps?
|
create table table_29743928_5 (int_caps integer, PRIMARY KEY (int_caps))
|
select min(int_caps) from table_29743928_5
|
Name the southern lakota for híŋhaŋna
|
create table table_1499774_5 (southern_lakota varchar, yankton_yanktonai varchar, PRIMARY KEY (southern_lakota))
|
select southern_lakota from table_1499774_5 where yankton_yanktonai = "híŋhaŋna"
|
who directed with original air date being november18,1995
|
create table table_14637853_3 (directed_by varchar, original_air_date varchar, PRIMARY KEY (directed_by))
|
select directed_by from table_14637853_3 where original_air_date = "november18,1995"
|
How many faculty members participate in an activity?
|
create table faculty_participates_in (facid varchar, PRIMARY KEY (facid))
|
select count(distinct facid) from faculty_participates_in
|
Find the number of investors in total.
|
create table investors (id varchar, PRIMARY KEY (id))
|
select count(*) from investors
|
How many engineer visits are required at most for a single fault log? List the number and the log entry id.
|
create table fault_log (fault_log_entry_id varchar, PRIMARY KEY (fault_log_entry_id)); create table engineer_visits (fault_log_entry_id varchar, PRIMARY KEY (fault_log_entry_id))
|
select count(*), t1.fault_log_entry_id from fault_log as t1 join engineer_visits as t2 on t1.fault_log_entry_id = t2.fault_log_entry_id group by t1.fault_log_entry_id order by count(*) desc limit 1
|
What is the number for combaya municipality when quiabaya municipality is 33?
|
create table table_2509202_2 (combaya_municipality varchar, quiabaya_municipality varchar, PRIMARY KEY (combaya_municipality))
|
select combaya_municipality from table_2509202_2 where quiabaya_municipality = "33"
|
how many remittances in 2010 where the remittances is 19.73?
|
create table table_2941963_1 (remittances_2010 varchar, remittances_2009 varchar, PRIMARY KEY (remittances_2010))
|
select count(remittances_2010) from table_2941963_1 where remittances_2009 = "19.73"
|
What were the records when the opponents had 50 points?
|
create table table_22862203_2 (record varchar, opp_points varchar, PRIMARY KEY (record))
|
select record from table_22862203_2 where opp_points = 50
|
what is the English meaning of the old English name "sæturnesdæg"?
|
create table table_2624098_1 (english_day_name_meaning varchar, old_english_day_name varchar, PRIMARY KEY (english_day_name_meaning))
|
select english_day_name_meaning from table_2624098_1 where old_english_day_name = "sæturnesdæg"
|
Show the transportation method most people choose to get to tourist attractions.
|
create table tourist_attractions (how_to_get_there varchar, PRIMARY KEY (how_to_get_there))
|
select how_to_get_there from tourist_attractions group by how_to_get_there order by count(*) desc limit 1
|
What are the name of the countries where there is not a single car maker?
|
create table countries (countryname varchar, countryid varchar, PRIMARY KEY (countryname)); create table countries (countryname varchar, PRIMARY KEY (countryname)); create table car_makers (country varchar, PRIMARY KEY (country))
|
select countryname from countries except select t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country
|
What is the episode number where the English title is Pilot?
|
create table table_1481865_1 (number_of_episode varchar, title__english_ varchar, PRIMARY KEY (number_of_episode))
|
select number_of_episode from table_1481865_1 where title__english_ = "pilot"
|
What are the majors of male (sex is M) students?
|
create table student (major varchar, sex varchar, PRIMARY KEY (major))
|
select major from student where sex = "m"
|
Find the name of the most popular party form.
|
create table party_forms (form_id varchar, PRIMARY KEY (form_id)); create table forms (form_name varchar, form_id varchar, PRIMARY KEY (form_name))
|
select t1.form_name from forms as t1 join party_forms as t2 on t1.form_id = t2.form_id group by t2.form_id order by count(*) desc limit 1
|
How many schools had the win loss ratio of 0.667?
|
create table table_16225511_2 (school varchar, percent varchar, PRIMARY KEY (school))
|
select count(school) from table_16225511_2 where percent = "0.667"
|
What is the second year class following pag-unawa?
|
create table table_12148147_2 (second_year varchar, first_year varchar, PRIMARY KEY (second_year))
|
select second_year from table_12148147_2 where first_year = "pag-unawa"
|
What is the status of the airport line?
|
create table table_1603807_2 (status varchar, line varchar, PRIMARY KEY (status))
|
select status from table_1603807_2 where line = "airport line"
|
What game modes are there when the pinyin is zhígǎn yī bǐ ?
|
create table table_1616608_2 (game_modes varchar, pinyin varchar, PRIMARY KEY (game_modes))
|
select game_modes from table_1616608_2 where pinyin = "zhígǎn yī bǐ"
|
What is the withdraw date for secr no. 771?
|
create table table_17607663_1 (date_withdrawn varchar, secr_no varchar, PRIMARY KEY (date_withdrawn))
|
select date_withdrawn from table_17607663_1 where secr_no = 771
|
When abba is the artist what is the album?
|
create table table_18442691_2 (album varchar, artist varchar, PRIMARY KEY (album))
|
select album from table_18442691_2 where artist = "abba"
|
Show the names of pilots and the number of records they have.
|
create table pilot (pilot_name varchar, pilot_id varchar, PRIMARY KEY (pilot_name)); create table pilot_record (pilot_id varchar, PRIMARY KEY (pilot_id))
|
select t2.pilot_name, count(*) from pilot_record as t1 join pilot as t2 on t1.pilot_id = t2.pilot_id group by t2.pilot_name
|
In what city did oklahoma win the tournament.
|
create table table_24348134_3 (tournament_venue__city_ varchar, tournament_winner varchar, PRIMARY KEY (tournament_venue__city_))
|
select tournament_venue__city_ from table_24348134_3 where tournament_winner = "oklahoma"
|
In what event was the compulsory dance score 28.12?
|
create table table_22644589_4 (event varchar, compulsory_dance__cd_ varchar, PRIMARY KEY (event))
|
select event from table_22644589_4 where compulsory_dance__cd_ = "28.12"
|
How many nominee's had a vote to evict percentage of 3.92%
|
create table table_15162479_8 (nominee varchar, vote_to_evict varchar, PRIMARY KEY (nominee))
|
select count(nominee) from table_15162479_8 where vote_to_evict = "3.92%"
|
What is the population density in the Brighton area?
|
create table table_140297_1 (density varchar, principal_town varchar, PRIMARY KEY (density))
|
select density from table_140297_1 where principal_town = "brighton"
|
What is the playoffs result in years where Open Canada Cup was "N/A" and regular season result was "2nd, New England"?
|
create table table_1999350_1 (playoffs varchar, open_canada_cup varchar, regular_season varchar, PRIMARY KEY (playoffs))
|
select playoffs from table_1999350_1 where open_canada_cup = "n/a" and regular_season = "2nd, new england"
|
When autodromo nazionale monza is the circuit what is the report?
|
create table table_21191496_1 (report varchar, circuit varchar, PRIMARY KEY (report))
|
select report from table_21191496_1 where circuit = "autodromo nazionale monza"
|
What was the percentage of national votes for Mahmoud Ahmadinejad?
|
create table table_1827900_1 (_percentage_of_votes_nationally varchar, candidates varchar, PRIMARY KEY (_percentage_of_votes_nationally))
|
select _percentage_of_votes_nationally from table_1827900_1 where candidates = "mahmoud ahmadinejad"
|
How many flights depart from 'APG'?
|
create table flights (sourceairport varchar, PRIMARY KEY (sourceairport))
|
select count(*) from flights where sourceairport = "apg"
|
Who led the most laps when brandon wagner had the fastest lap?
|
create table table_29690363_3 (most_laps_led varchar, fastest_lap varchar, PRIMARY KEY (most_laps_led))
|
select most_laps_led from table_29690363_3 where fastest_lap = "brandon wagner"
|
What kind of decor has the least number of reservations?
|
create table reservations (room varchar, PRIMARY KEY (room)); create table rooms (decor varchar, roomid varchar, PRIMARY KEY (decor))
|
select t2.decor from reservations as t1 join rooms as t2 on t1.room = t2.roomid group by t2.decor order by count(t2.decor) limit 1
|
What is the depth at the UTC time of 12:19:36?
|
create table table_26950408_1 (depth varchar, time___utc__ varchar, PRIMARY KEY (depth))
|
select depth from table_26950408_1 where time___utc__ = "12:19:36"
|
What is the smallest number for old membership total?
|
create table table_27671835_3 (old_membership_total integer, PRIMARY KEY (old_membership_total))
|
select min(old_membership_total) from table_27671835_3
|
Show the teams that have both wrestlers eliminated by "Orton" and wrestlers eliminated by "Benjamin".
|
create table elimination (team varchar, eliminated_by varchar, PRIMARY KEY (team))
|
select team from elimination where eliminated_by = "orton" intersect select team from elimination where eliminated_by = "benjamin"
|
what's the report with fastest lap being felipe massa and winning driver being jenson button
|
create table table_12161822_5 (report varchar, fastest_lap varchar, winning_driver varchar, PRIMARY KEY (report))
|
select report from table_12161822_5 where fastest_lap = "felipe massa" and winning_driver = "jenson button"
|
what is the dadar xi b where pifa colaba is sporting options?
|
create table table_28759261_5 (dadar_xi_‘b’ varchar, pifa_colaba_fc_u_17 varchar, PRIMARY KEY (dadar_xi_‘b’))
|
select dadar_xi_‘b’ from table_28759261_5 where pifa_colaba_fc_u_17 = "sporting options"
|
Who was the male rep. when Caroline Rhoads was the artistic director?
|
create table table_22410780_1 (male_rep varchar, artistic_director varchar, PRIMARY KEY (male_rep))
|
select male_rep from table_22410780_1 where artistic_director = "caroline rhoads"
|
Who were the operational owners during the construction date of April 1892?
|
create table table_1057316_1 (operational_owner_s_ varchar, build_date varchar, PRIMARY KEY (operational_owner_s_))
|
select operational_owner_s_ from table_1057316_1 where build_date = "april 1892"
|
What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?
|
create table table_21154679_1 (top_speed varchar, max_power varchar, PRIMARY KEY (top_speed))
|
select top_speed from table_21154679_1 where max_power = "ps (kw; bhp)@5250-6250"
|
How long does student Linda Smith spend on the restaurant in total?
|
create table visits_restaurant (spent integer, PRIMARY KEY (spent)); create table student (spent integer, PRIMARY KEY (spent))
|
select sum(spent) from student join visits_restaurant on student.stuid = visits_restaurant.stuid where student.fname = "linda" and student.lname = "smith"
|
In the country Switzerland, what is the total trade?
|
create table table_26160007_1 (total_trade varchar, country varchar, PRIMARY KEY (total_trade))
|
select total_trade from table_26160007_1 where country = "switzerland"
|
List the number of bbc rankings with cable rankings of 6.
|
create table table_24399615_10 (bbc_three_weekly_ranking varchar, cable_rank varchar, PRIMARY KEY (bbc_three_weekly_ranking))
|
select bbc_three_weekly_ranking from table_24399615_10 where cable_rank = "6"
|
What was the election date for H. Brent Coles?
|
create table table_1329532_2 (date_of_election varchar, appointed_successor varchar, PRIMARY KEY (date_of_election))
|
select date_of_election from table_1329532_2 where appointed_successor = "h. brent coles"
|
find the name of employee who was awarded the most times in the evaluation.
|
create table evaluation (employee_id varchar, PRIMARY KEY (employee_id)); create table employee (name varchar, employee_id varchar, PRIMARY KEY (name))
|
select t1.name from employee as t1 join evaluation as t2 on t1.employee_id = t2.employee_id group by t2.employee_id order by count(*) desc limit 1
|
How many have the colors blue & gold?
|
create table table_261927_1 (institution varchar, colors varchar, PRIMARY KEY (institution))
|
select count(institution) from table_261927_1 where colors = "blue & gold"
|
Who is h.l birkett if w.h. archer is r. cochrane?
|
create table table_1320857_1 (hl_birkett varchar, wh_archer varchar, PRIMARY KEY (hl_birkett))
|
select hl_birkett from table_1320857_1 where wh_archer = "r. cochrane"
|
Who was the director for the episode airing on September 24, 1993?
|
create table table_2409041_6 (directed_by varchar, original_air_date varchar, PRIMARY KEY (directed_by))
|
select directed_by from table_2409041_6 where original_air_date = "september 24, 1993"
|
What is the type of measure that voted on the Power Development Debt Limit Amendment?
|
create table table_256286_45 (type varchar, description varchar, PRIMARY KEY (type))
|
select type from table_256286_45 where description = "power development debt limit amendment"
|
Name the 0-100 km/hs for name of 2.0 8v
|
create table table_17941111_2 (s varchar, name varchar, PRIMARY KEY (s))
|
select 0 as _100km_h, s from table_17941111_2 where name = "2.0 8v"
|
What is the value of barrel twist when the barrel profile is SFW?
|
create table table_12834315_8 (barrel_twist varchar, barrel_profile varchar, PRIMARY KEY (barrel_twist))
|
select barrel_twist from table_12834315_8 where barrel_profile = "sfw"
|
Name the general classification for steven kruijswijk
|
create table table_29077342_19 (general_classification varchar, winner varchar, PRIMARY KEY (general_classification))
|
select general_classification from table_29077342_19 where winner = "steven kruijswijk"
|
what's the brooklyn with queens value of 16.8%
|
create table table_1108394_43 (brooklyn varchar, queens varchar, PRIMARY KEY (brooklyn))
|
select brooklyn from table_1108394_43 where queens = "16.8_percentage"
|
Name the number of others votes for when others % is 2.0%
|
create table table_15929156_3 (others_votes varchar, others__percentage varchar, PRIMARY KEY (others_votes))
|
select count(others_votes) from table_15929156_3 where others__percentage = "2.0%"
|
What are the original air dates for episodes directed by fred toye?
|
create table table_27969432_3 (original_air_date varchar, directed_by varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_27969432_3 where directed_by = "fred toye"
|
Name the total number of segment b for s banjo
|
create table table_15187735_10 (segment_b varchar, segment_d varchar, PRIMARY KEY (segment_b))
|
select count(segment_b) from table_15187735_10 where segment_d = "s banjo"
|
What are the dates of birth of entrepreneurs with investor "Simon Woodroffe" or "Peter Jones"?
|
create table entrepreneur (people_id varchar, investor varchar, PRIMARY KEY (people_id)); create table people (date_of_birth varchar, people_id varchar, PRIMARY KEY (date_of_birth))
|
select t2.date_of_birth from entrepreneur as t1 join people as t2 on t1.people_id = t2.people_id where t1.investor = "simon woodroffe" or t1.investor = "peter jones"
|
When Spencer is the county what is total of the population (2010) (rank)?
|
create table table_14253123_1 (population__2010___rank_ varchar, county_name varchar, PRIMARY KEY (population__2010___rank_))
|
select count(population__2010___rank_) from table_14253123_1 where county_name = "spencer"
|
Name the equivalence for varas for geometrical pace
|
create table table_26538461_2 (equivalence_in_varas varchar, english_name varchar, PRIMARY KEY (equivalence_in_varas))
|
select equivalence_in_varas from table_26538461_2 where english_name = "geometrical pace"
|
Name the number of stage winners for team columbia
|
create table table_19115414_4 (stage__winner_ varchar, team_classification varchar, PRIMARY KEY (stage__winner_))
|
select count(stage__winner_) from table_19115414_4 where team_classification = "team columbia"
|
What is the most common interaction type between enzymes and medicine? And how many are there?
|
create table medicine_enzyme_interaction (interaction_type varchar, PRIMARY KEY (interaction_type))
|
select interaction_type, count(*) from medicine_enzyme_interaction group by interaction_type order by count(*) desc limit 1
|
Name the entries for 6 h 23 min elapsed time
|
create table table_2534387_10 (entries varchar, elapsed_time varchar, PRIMARY KEY (entries))
|
select entries from table_2534387_10 where elapsed_time = "6 h 23 min"
|
Who left a position on 29 May?
|
create table table_17327458_1 (outgoing_manager varchar, date_of_vacancy varchar, PRIMARY KEY (outgoing_manager))
|
select outgoing_manager from table_17327458_1 where date_of_vacancy = "29 may"
|
What are the womens singles of imam sodikin irawan andi tandaputra?
|
create table table_12104319_1 (womens_singles varchar, mens_doubles varchar, PRIMARY KEY (womens_singles))
|
select womens_singles from table_12104319_1 where mens_doubles = "imam sodikin irawan andi tandaputra"
|
If the equation is 6 × 9² + 6 × 9 + 6, what is the 3rd throw?
|
create table table_17265535_7 (equation varchar, PRIMARY KEY (equation))
|
select max(3 as rd_throw) from table_17265535_7 where equation = "6 × 9² + 6 × 9 + 6"
|
What is the the codename when the code base is ubuntu 8.04 and the edition is fluxbox ce?
|
create table table_27329061_2 (codename varchar, code_base varchar, edition varchar, PRIMARY KEY (codename))
|
select codename from table_27329061_2 where code_base = "ubuntu 8.04" and edition = "fluxbox ce"
|
What is the minimum amount for wool for 2001-02?
|
create table table_1057262_1 (commodity varchar, PRIMARY KEY (commodity))
|
select min(2001 as _02) from table_1057262_1 where commodity = "wool"
|
When united arab emirates is the country how many fastest qualifying are there?
|
create table table_26358264_2 (fastest_qualifying varchar, country varchar, PRIMARY KEY (fastest_qualifying))
|
select count(fastest_qualifying) from table_26358264_2 where country = "united arab emirates"
|
What is the number of voters in 1800 that have boroughs named Drogheda?
|
create table table_24329520_8 (voters_in_1800 varchar, borough varchar, PRIMARY KEY (voters_in_1800))
|
select count(voters_in_1800) from table_24329520_8 where borough = "drogheda"
|
Which stadium name contains the substring "Bank"?
|
create table stadium (name varchar, PRIMARY KEY (name))
|
select name from stadium where name like "%bank%"
|
How many networks are there that include the judges pete goffe-wood andrew atkinson benny masekwameng?
|
create table table_28190363_1 (network varchar, judges varchar, PRIMARY KEY (network))
|
select count(network) from table_28190363_1 where judges = "pete goffe-wood andrew atkinson benny masekwameng"
|
How many cytoplasms result in a blue nucleus?
|
create table table_13570_1 (cytoplasm varchar, nucleus varchar, PRIMARY KEY (cytoplasm))
|
select count(cytoplasm) from table_13570_1 where nucleus = "blue"
|
What are the ids and names of the architects who built at least 3 bridges ?
|
create table architect (id varchar, name varchar, PRIMARY KEY (id)); create table bridge (architect_id varchar, PRIMARY KEY (architect_id))
|
select t1.id, t1.name from architect as t1 join bridge as t2 on t1.id = t2.architect_id group by t1.id having count(*) >= 3
|
What is the party where the incumbent is overton brooks?
|
create table table_1342198_18 (party varchar, incumbent varchar, PRIMARY KEY (party))
|
select party from table_1342198_18 where incumbent = "overton brooks"
|
What are the dates of the outgoing manager colin hendry does appointments?
|
create table table_11207040_6 (date_of_appointment varchar, outgoing_manager varchar, PRIMARY KEY (date_of_appointment))
|
select date_of_appointment from table_11207040_6 where outgoing_manager = "colin hendry"
|
How many distinct colleges are associated with players from the team with name "Columbus Crew".
|
create table match_season (college varchar, team varchar, PRIMARY KEY (college)); create table team (team_id varchar, name varchar, PRIMARY KEY (team_id))
|
select count(distinct t1.college) from match_season as t1 join team as t2 on t1.team = t2.team_id where t2.name = "columbus crew"
|
What is the default desktop environment when the edition is kde and the compatible repository is ubuntu 13.04?
|
create table table_27329061_2 (default_desktop_environment varchar, edition varchar, compatible_repository varchar, PRIMARY KEY (default_desktop_environment))
|
select default_desktop_environment from table_27329061_2 where edition = "kde" and compatible_repository = "ubuntu 13.04"
|
What is the original air date for the episode directed by kevin dowling?
|
create table table_2602958_3 (original_air_date varchar, director varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_2602958_3 where director = "kevin dowling"
|
How many weeks in the top-10 did Beats International have?
|
create table table_26400075_2 (weeks_in_top_10 varchar, artist varchar, PRIMARY KEY (weeks_in_top_10))
|
select weeks_in_top_10 from table_26400075_2 where artist = "beats international"
|
which episode was Transmitted on friday if the episode of "414 insanely twisted shadow planet" was transmitted on tuesday?
|
create table table_18173916_8 (friday varchar, tuesday varchar, PRIMARY KEY (friday))
|
select friday from table_18173916_8 where tuesday = "414 insanely twisted shadow planet"
|
What was the gdp of the country with a gdp per capita of $18048?
|
create table table_1307842_6 (gdp__billion_us$_ varchar, gdp_per_capita__us$_ varchar, PRIMARY KEY (gdp__billion_us$_))
|
select gdp__billion_us$_ from table_1307842_6 where gdp_per_capita__us$_ = 18048
|
During the quarter of 2012 Q2, how many millions of Blackberry OS phones where shipped when 0.1 million others were shipped?
|
create table table_14260687_3 (blackberry_os varchar, other varchar, quarter varchar, PRIMARY KEY (blackberry_os))
|
select count(blackberry_os) from table_14260687_3 where other = "0.1" and quarter = "2012 q2"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.