question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
What are the the approximate translations when the Morphological Category is 1st. plur. perfect?
|
create table table_2784232_1 (approximate_translation varchar, morphological_category varchar, PRIMARY KEY (approximate_translation))
|
select approximate_translation from table_2784232_1 where morphological_category = "1st. plur. perfect"
|
What is the name of the country when the ioc code is mas?
|
create table table_2879165_1 (country varchar, ioc_code varchar, PRIMARY KEY (country))
|
select country from table_2879165_1 where ioc_code = "mas"
|
What is the description of the club named "Tennis Club"?
|
create table club (clubdesc varchar, clubname varchar, PRIMARY KEY (clubdesc))
|
select clubdesc from club where clubname = "tennis club"
|
List the titles of the books in ascending order of issues.
|
create table book (title varchar, issues varchar, PRIMARY KEY (title))
|
select title from book order by issues
|
How many miss universes did south africa have?
|
create table table_28634206_1 (miss_universe varchar, country varchar, PRIMARY KEY (miss_universe))
|
select count(miss_universe) from table_28634206_1 where country = "south africa"
|
How many values of periselene when epoch is November 15, 2004, 17:47:12.1?
|
create table table_206217_2 (periselene__km_ varchar, epoch__utc_ varchar, PRIMARY KEY (periselene__km_))
|
select count(periselene__km_) from table_206217_2 where epoch__utc_ = "november 15, 2004, 17:47:12.1"
|
What division had a population density of 8,552.4 km2 in 2011?
|
create table table_24027047_1 (administrative_division varchar, population_density___km²_2011_ varchar, PRIMARY KEY (administrative_division))
|
select administrative_division from table_24027047_1 where population_density___km²_2011_ = "8,552.4"
|
How many winners of Binibining Pilipinas-International when Nina Ricci Alagao?
|
create table table_1825751_4 (binibining_pilipinas_international varchar, miss_universe_philippines varchar, PRIMARY KEY (binibining_pilipinas_international))
|
select count(binibining_pilipinas_international) from table_1825751_4 where miss_universe_philippines = "nina ricci alagao"
|
Find all the songs that do not have a back 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 = "back"
|
How many values for winnings correspond to average start of 19.0?
|
create table table_2597876_2 (winnings varchar, avg_start varchar, PRIMARY KEY (winnings))
|
select count(winnings) from table_2597876_2 where avg_start = "19.0"
|
What is the date of appointment for the date of vacancy of 22 august 2010?
|
create table table_26976615_3 (date_of_appointment varchar, date_of_vacancy varchar, PRIMARY KEY (date_of_appointment))
|
select date_of_appointment from table_26976615_3 where date_of_vacancy = "22 august 2010"
|
Which engineer has visited the most times? Show the engineer id, first name and last name.
|
create table maintenance_engineers (engineer_id varchar, first_name varchar, last_name varchar, PRIMARY KEY (engineer_id)); create table engineer_visits (id varchar, PRIMARY KEY (id))
|
select t1.engineer_id, t1.first_name, t1.last_name from maintenance_engineers as t1 join engineer_visits as t2 group by t1.engineer_id order by count(*) desc limit 1
|
What was the broadcast date of episodes that were watched by 23.2 million viewers?
|
create table table_27714985_1 (original_air_date varchar, us_viewers__millions_ varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_27714985_1 where us_viewers__millions_ = "23.2"
|
How many parks are called mt. olympus
|
create table table_2665085_1 (name varchar, park varchar, PRIMARY KEY (name))
|
select count(name) from table_2665085_1 where park = "mt. olympus"
|
If Internet Explorer is 47.22%, what is the Safari total?
|
create table table_1876262_10 (safari varchar, internet_explorer varchar, PRIMARY KEY (safari))
|
select safari from table_1876262_10 where internet_explorer = "47.22%"
|
Find the first name and office of the professor who is in the history department and has a Ph.D. degree.
|
create table department (dept_code varchar, dept_name varchar, PRIMARY KEY (dept_code)); create table professor (prof_office varchar, emp_num varchar, dept_code varchar, prof_high_degree varchar, PRIMARY KEY (prof_office)); create table employee (emp_fname varchar, emp_num varchar, PRIMARY KEY (emp_fname))
|
select t1.emp_fname, t2.prof_office from employee as t1 join professor as t2 on t1.emp_num = t2.emp_num join department as t3 on t3.dept_code = t2.dept_code where t3.dept_name = 'history' and t2.prof_high_degree = 'ph.d.'
|
Name the most number of s eva
|
create table table_1558077_8 (number_of_s_eva integer, PRIMARY KEY (number_of_s_eva))
|
select max(number_of_s_eva) from table_1558077_8
|
Who played the mathematics student?
|
create table table_2933761_1 (played_by varchar, occupation varchar, PRIMARY KEY (played_by))
|
select played_by from table_2933761_1 where occupation = "mathematics student"
|
What is the power in KW that has a station type of relay and a callsign of DXCL-TV?
|
create table table_24673888_1 (power_kw varchar, station_type varchar, callsign varchar, PRIMARY KEY (power_kw))
|
select power_kw from table_24673888_1 where station_type = "relay" and callsign = "dxcl-tv"
|
What is the length of the coaster with the unknown speed
|
create table table_2665085_1 (length__ft_ varchar, speed__mph_ varchar, PRIMARY KEY (length__ft_))
|
select length__ft_ from table_2665085_1 where speed__mph_ = "unknown"
|
how many match points did gran parma lost
|
create table table_27987767_2 (match_points varchar, losers varchar, PRIMARY KEY (match_points))
|
select match_points from table_27987767_2 where losers = "gran parma"
|
How did the match end when she played with caroline wozniacki?
|
create table table_25505246_8 (outcome varchar, partner varchar, PRIMARY KEY (outcome))
|
select outcome from table_25505246_8 where partner = "caroline wozniacki"
|
Which major has least number of students? List the major and the number of students.
|
create table student (major varchar, PRIMARY KEY (major))
|
select major, count(*) from student group by major order by count(major) limit 1
|
How many different partners were played with during French Open (0/1)?
|
create table table_2201541_3 (partner varchar, championship__titles_finals_ varchar, PRIMARY KEY (partner))
|
select count(partner) from table_2201541_3 where championship__titles_finals_ = "french open (0/1)"
|
What is Friesland's gdp per capita?
|
create table table_1067441_1 (_in_€_ varchar, gdp_per_cap__2003 integer, province varchar, PRIMARY KEY (_in_€_))
|
select min(gdp_per_cap__2003), _in_€_ from table_1067441_1 where province = "friesland"
|
How many debates are there?
|
create table debate (id varchar, PRIMARY KEY (id))
|
select count(*) from debate
|
What year was the tournament first held in Italy?
|
create table table_14903081_1 (began integer, country varchar, PRIMARY KEY (began))
|
select min(began) from table_14903081_1 where country = "italy"
|
Name the contestant for villa hermosa
|
create table table_21346767_3 (contestant varchar, hometown varchar, PRIMARY KEY (contestant))
|
select contestant from table_21346767_3 where hometown = "villa hermosa"
|
Which season received 10.2 million viewers?
|
create table table_217785_2 (tv_season varchar, viewers__in_millions_of_households_ varchar, PRIMARY KEY (tv_season))
|
select count(tv_season) from table_217785_2 where viewers__in_millions_of_households_ = "10.2"
|
If team two is San Lorenzo, how many were on team one?
|
create table table_16795394_3 (team__number1 varchar, team__number2 varchar, PRIMARY KEY (team__number1))
|
select count(team__number1) from table_16795394_3 where team__number2 = "san lorenzo"
|
Which main developer made their first release in 1991 and created the Mega Drive/Genesis console?
|
create table table_12887260_1 (main_developer varchar, first_release varchar, console varchar, PRIMARY KEY (main_developer))
|
select main_developer from table_12887260_1 where first_release = 1991 and console = "mega drive/genesis"
|
What party is Frank Lobiondo a member of?
|
create table table_1341453_32 (party varchar, incumbent varchar, PRIMARY KEY (party))
|
select party from table_1341453_32 where incumbent = "frank lobiondo"
|
Where were the wrestlers born who debuted in 2002-7?
|
create table table_1557974_1 (birthplace varchar, debut varchar, PRIMARY KEY (birthplace))
|
select birthplace from table_1557974_1 where debut = "2002-7"
|
When is the date of appointment when the position in table is 16?
|
create table table_27383390_4 (date_of_appointment varchar, position_in_table varchar, PRIMARY KEY (date_of_appointment))
|
select date_of_appointment from table_27383390_4 where position_in_table = 16
|
What is the environment rating of the country with an overall average rating of 4.7?
|
create table table_13677808_1 (environment varchar, overall__average_ varchar, PRIMARY KEY (environment))
|
select environment from table_13677808_1 where overall__average_ = "4.7"
|
Name the platforms for cityengine
|
create table table_19495707_1 (platforms varchar, application varchar, PRIMARY KEY (platforms))
|
select platforms from table_19495707_1 where application = "cityengine"
|
what is the y = 2009 when the expression is month = floor ((d + e + 114) / 31)?
|
create table table_214479_8 (y_ varchar, _2009 varchar, expression varchar, month varchar, d varchar, e varchar, PRIMARY KEY (y_))
|
select y_ = _2009 from table_214479_8 where expression = month = floor((d + e + 114) / 31)
|
Select the names of all the products in the store.
|
create table products (name varchar, PRIMARY KEY (name))
|
select name from products
|
Name the industry for revenue being 2.1
|
create table table_19112_3 (industry varchar, revenue__billion_$_ varchar, PRIMARY KEY (industry))
|
select industry from table_19112_3 where revenue__billion_$_ = "2.1"
|
Name the santee sisseton for híŋhaŋna
|
create table table_1499791_2 (santee_sisseton varchar, yankton_yanktonai varchar, PRIMARY KEY (santee_sisseton))
|
select count(santee_sisseton) from table_1499791_2 where yankton_yanktonai = "híŋhaŋna"
|
Middletown High School uses which colors
|
create table table_15475116_1 (colors varchar, school varchar, PRIMARY KEY (colors))
|
select colors from table_15475116_1 where school = "middletown high school"
|
How many car models are produced in the usa?
|
create table car_makers (id varchar, country varchar, PRIMARY KEY (id)); create table countries (countryid varchar, countryname varchar, PRIMARY KEY (countryid)); create table model_list (maker varchar, PRIMARY KEY (maker))
|
select count(*) from model_list as t1 join car_makers as t2 on t1.maker = t2.id join countries as t3 on t2.country = t3.countryid where t3.countryname = 'usa'
|
Who is the chairman of Mark Robins team?
|
create table table_26593762_2 (chairman varchar, manager varchar, PRIMARY KEY (chairman))
|
select chairman from table_26593762_2 where manager = "mark robins"
|
Who did the high rebounds in the game where Carl Landry (23) did the most high points?
|
create table table_23281862_6 (high_rebounds varchar, high_points varchar, PRIMARY KEY (high_rebounds))
|
select high_rebounds from table_23281862_6 where high_points = "carl landry (23)"
|
How many birthdays does Earl Hanley Beshlin have?
|
create table table_10284385_1 (date_of_birth varchar, representative varchar, PRIMARY KEY (date_of_birth))
|
select count(date_of_birth) from table_10284385_1 where representative = "earl hanley beshlin"
|
What was the race status(es) with the lotus-ford 38/1 chassis?
|
create table table_181892_4 (race_status varchar, chassis varchar, PRIMARY KEY (race_status))
|
select race_status from table_181892_4 where chassis = "lotus-ford 38/1"
|
How many business rates are related to each cmi cross reference? List cross reference id, master customer id and the n
|
create table cmi_cross_references (cmi_cross_ref_id varchar, master_customer_id varchar, PRIMARY KEY (cmi_cross_ref_id)); create table business_rates (cmi_cross_ref_id varchar, PRIMARY KEY (cmi_cross_ref_id))
|
select t2.cmi_cross_ref_id, t2.master_customer_id, count(*) from business_rates as t1 join cmi_cross_references as t2 on t1.cmi_cross_ref_id = t2.cmi_cross_ref_id group by t2.cmi_cross_ref_id
|
When hermann uhde is the count who is the conductor?
|
create table table_29728787_1 (conductor varchar, count varchar, PRIMARY KEY (conductor))
|
select conductor from table_29728787_1 where count = "hermann uhde"
|
What is the name of the team from the Elverado Trico school in football?
|
create table table_18304058_2 (team_name varchar, sports varchar, schools varchar, PRIMARY KEY (team_name))
|
select team_name from table_18304058_2 where sports = "football" and schools = "elverado trico"
|
Show budget type codes and the number of documents in each budget type.
|
create table documents_with_expenses (budget_type_code varchar, PRIMARY KEY (budget_type_code))
|
select budget_type_code, count(*) from documents_with_expenses group by budget_type_code
|
Name the catalog number for am/pm callanetics
|
create table table_27303975_2 (catalog_number varchar, title varchar, PRIMARY KEY (catalog_number))
|
select catalog_number from table_27303975_2 where title = "am/pm callanetics"
|
what are the names of the channels that broadcast in both morning and night?
|
create table channel (name varchar, channel_id varchar, PRIMARY KEY (name)); create table broadcast (channel_id varchar, time_of_day varchar, PRIMARY KEY (channel_id))
|
select t1.name from channel as t1 join broadcast as t2 on t1.channel_id = t2.channel_id where t2.time_of_day = 'morning' intersect select t1.name from channel as t1 join broadcast as t2 on t1.channel_id = t2.channel_id where t2.time_of_day = 'night'
|
When girls doubles is anneke feinya agustin wenny setiawati what is the mixed doubles?
|
create table table_14319023_2 (mixed_doubles varchar, girls_doubles varchar, PRIMARY KEY (mixed_doubles))
|
select mixed_doubles from table_14319023_2 where girls_doubles = "anneke feinya agustin wenny setiawati"
|
Which vocal type has the band mate with last name "Heilo" played the most?
|
create table vocals (bandmate varchar, PRIMARY KEY (bandmate)); create table band (id varchar, PRIMARY KEY (id))
|
select type from vocals as t1 join band as t2 on t1.bandmate = t2.id where lastname = "heilo" group by type order by count(*) desc limit 1
|
If the school is John A. Logan College, what are the colors?
|
create table table_22319599_1 (colors varchar, school varchar, PRIMARY KEY (colors))
|
select colors from table_22319599_1 where school = "john a. logan college"
|
If the date of birth is 1961-08-09 9 august 1961, what is the start date of (first) term?
|
create table table_25182437_1 (start_date_of__first__term varchar, date_of_birth varchar, PRIMARY KEY (start_date_of__first__term))
|
select start_date_of__first__term from table_25182437_1 where date_of_birth = "1961-08-09 9 august 1961"
|
What team is from the Eastern province?
|
create table table_19905183_1 (team varchar, province varchar, PRIMARY KEY (team))
|
select team from table_19905183_1 where province = "eastern"
|
How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?
|
create table table_14962287_2 (other_a varchar, name varchar, PRIMARY KEY (other_a))
|
select count(other_a) from table_14962287_2 where name = "tommy johnson category:articles with hcards"
|
Name the revenue for eps being 8.9
|
create table table_18304259_1 (revenue__£million_ varchar, earnings_per_share__p_ varchar, PRIMARY KEY (revenue__£million_))
|
select revenue__£million_ from table_18304259_1 where earnings_per_share__p_ = "8.9"
|
what ae all of the brazil 100% where the age group is 15-17?
|
create table table_18950570_4 (brazil_100_percentage__percent_of_the_population_ varchar, age_group varchar, PRIMARY KEY (brazil_100_percentage__percent_of_the_population_))
|
select brazil_100_percentage__percent_of_the_population_ from table_18950570_4 where age_group = "15-17"
|
What is the original air date of the episode that had a week ranking of 21?
|
create table table_23177573_1 (original_air_date varchar, rank__week_ varchar, PRIMARY KEY (original_air_date))
|
select original_air_date from table_23177573_1 where rank__week_ = 21
|
what's the country/region with seasons and winners being season 1, 2012: demetra malalan
|
create table table_13779832_1 (country_region varchar, seasons_and_winners varchar, PRIMARY KEY (country_region))
|
select country_region from table_13779832_1 where seasons_and_winners = "season 1, 2012: demetra malalan"
|
How many assets does each third party company supply? List the count and the company id.
|
create table assets (supplier_company_id varchar, PRIMARY KEY (supplier_company_id)); create table third_party_companies (company_id varchar, PRIMARY KEY (company_id))
|
select count(*), t1.company_id from third_party_companies as t1 join assets as t2 on t1.company_id = t2.supplier_company_id group by t1.company_id
|
Who won the match when the winner used the Pedigree attack?
|
create table table_18598175_2 (eliminated_by varchar, method_of_elimination varchar, PRIMARY KEY (eliminated_by))
|
select eliminated_by from table_18598175_2 where method_of_elimination = "pedigree"
|
How many subjects have the pinyin shixun?
|
create table table_1216675_1 (subject varchar, pinyin varchar, PRIMARY KEY (subject))
|
select count(subject) from table_1216675_1 where pinyin = "shixun"
|
What network is virtual channel 9.1 linked to?
|
create table table_1404984_1 (network varchar, virtual_channel varchar, PRIMARY KEY (network))
|
select network from table_1404984_1 where virtual_channel = "9.1"
|
Show the statement detail and the corresponding document name for the statement with detail 'Private Project'.
|
create table statements (statement_details varchar, statement_id varchar, PRIMARY KEY (statement_details)); create table documents (document_name varchar, document_id varchar, PRIMARY KEY (document_name))
|
select t1.statement_details, t2.document_name from statements as t1 join documents as t2 on t1.statement_id = t2.document_id where t1.statement_details = 'private project'
|
What is the name of the institution that "Matthias Blume" belongs to?
|
create table authorship (authid varchar, instid varchar, PRIMARY KEY (authid)); create table authors (authid varchar, fname varchar, lname varchar, PRIMARY KEY (authid)); create table inst (name varchar, instid varchar, PRIMARY KEY (name))
|
select distinct t3.name from authors as t1 join authorship as t2 on t1.authid = t2.authid join inst as t3 on t2.instid = t3.instid where t1.fname = "matthias" and t1.lname = "blume"
|
Who was the artist for the origin Shake it, Europe?
|
create table table_19523708_1 (artist varchar, original varchar, PRIMARY KEY (artist))
|
select artist from table_19523708_1 where original = "shake it, europe"
|
What is the seat of the RCM in the county that has a density of 9.7?
|
create table table_214920_1 (seat_of_rcm varchar, density__pop_per_km2_ varchar, PRIMARY KEY (seat_of_rcm))
|
select seat_of_rcm from table_214920_1 where density__pop_per_km2_ = "9.7"
|
Show all the time(et) where the opponent is the Cincinnati Bengals.
|
create table table_14477002_1 (time___et__ varchar, opponent varchar, PRIMARY KEY (time___et__))
|
select time___et__ from table_14477002_1 where opponent = "cincinnati bengals"
|
Who is Wayne Day's crew chief?
|
create table table_2182170_1 (crew_chief varchar, listed_owner_s_ varchar, PRIMARY KEY (crew_chief))
|
select crew_chief from table_2182170_1 where listed_owner_s_ = "wayne day"
|
What is the title the episode directed by Allison Liddi-Brown?
|
create table table_23793770_1 (title varchar, directed_by varchar, PRIMARY KEY (title))
|
select title from table_23793770_1 where directed_by = "allison liddi-brown"
|
If the engine make/capacity is MWM 6.10 TCA-EURO III (Turbo Intercooler) and GVM (kg) Technical Capacity is 23000, what is the Torque Nm@rpm?
|
create table table_11497980_1 (torque_nm varchar, gcm__kg__technical_capacity varchar, engine_make_capacity varchar, PRIMARY KEY (torque_nm))
|
select torque_nm as @rpm from table_11497980_1 where gcm__kg__technical_capacity = "23000" and engine_make_capacity = "mwm 6.10 tca-euro iii (turbo intercooler)"
|
How many championship titles for LRS Formula / Laurent Rédon Motorsport?
|
create table table_19312274_3 (championship_titles varchar, name varchar, PRIMARY KEY (championship_titles))
|
select championship_titles from table_19312274_3 where name = "lrs formula / laurent rédon motorsport"
|
Name the maaidens where overs bowled is 13
|
create table table_15700367_2 (maidens varchar, overs_bowled varchar, PRIMARY KEY (maidens))
|
select maidens from table_15700367_2 where overs_bowled = "13"
|
What are all the Riders whose best-conditioned horse is Basia?
|
create table table_27833186_1 (rider_names varchar, best_conditioned_horse varchar, PRIMARY KEY (rider_names))
|
select rider_names from table_27833186_1 where best_conditioned_horse = "basia"
|
How many titles had an average rating of 8.9%?
|
create table table_18539834_2 (romaji_title varchar, average_ratings varchar, PRIMARY KEY (romaji_title))
|
select count(romaji_title) from table_18539834_2 where average_ratings = "8.9%"
|
What is the percentage of Android use when Windows is 1.15%?
|
create table table_11381701_3 (android varchar, windows varchar, PRIMARY KEY (android))
|
select android from table_11381701_3 where windows = "1.15%"
|
What are Wells Fargo's assets?
|
create table table_1682026_2 (assets__billion_$_ varchar, company varchar, PRIMARY KEY (assets__billion_$_))
|
select assets__billion_$_ from table_1682026_2 where company = "wells fargo"
|
What's the green (SW) of the model with charcoal/white interior/roof?
|
create table table_2066296_5 (green__sw_ integer, interior_roof varchar, PRIMARY KEY (green__sw_))
|
select min(green__sw_) from table_2066296_5 where interior_roof = "charcoal/white"
|
When 6th, south division 2 is the mens 1st xi what is the mens 2nd xi?
|
create table table_21576644_2 (mens_2nd_xi varchar, mens_1st_xi varchar, PRIMARY KEY (mens_2nd_xi))
|
select mens_2nd_xi from table_21576644_2 where mens_1st_xi = "6th, south division 2"
|
What rank is 愛のバカ on the Japanese singles chart?
|
create table table_10979230_4 (oricon varchar, japanese_title varchar, PRIMARY KEY (oricon))
|
select count(oricon) from table_10979230_4 where japanese_title = "愛のバカ"
|
List the name of artworks whose type is not "Program Talent Show".
|
create table artwork (name varchar, type varchar, PRIMARY KEY (name))
|
select name from artwork where type <> "program talent show"
|
What was the game site for the matchup against the Frankfurt Galaxy?
|
create table table_24852001_2 (game_site varchar, opponent varchar, PRIMARY KEY (game_site))
|
select game_site from table_24852001_2 where opponent = "frankfurt galaxy"
|
List the number of tournament winners when iona , siena & niagara won in the regular season.
|
create table table_24348134_3 (tournament_winner varchar, regular_season_winner varchar, PRIMARY KEY (tournament_winner))
|
select count(tournament_winner) from table_24348134_3 where regular_season_winner = "iona , siena & niagara"
|
Name the location for school eckstein
|
create table table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood varchar, _does_not_necessary_correspond_with_attendance_area varchar, school varchar, PRIMARY KEY (location_denotes_location_of_school_by_seattle_neighborhood))
|
select location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area from table_17641314_3 where school = "eckstein"
|
What is the website of the school affiliated with the Church of England?
|
create table table_28523_3 (school varchar, religious_affiliation varchar, PRIMARY KEY (school))
|
select school as website from table_28523_3 where religious_affiliation = "church of england"
|
How many people finished 9th?
|
create table table_14345690_3 (exited varchar, finished varchar, PRIMARY KEY (exited))
|
select count(exited) from table_14345690_3 where finished = "9th"
|
Who played SS when paul konerko played 1st base?
|
create table table_12142298_2 (shortstop varchar, first_baseman varchar, PRIMARY KEY (shortstop))
|
select shortstop from table_12142298_2 where first_baseman = "paul konerko"
|
How many players had the most points in the game @ Milwaukee?
|
create table table_11960944_6 (high_points varchar, team varchar, PRIMARY KEY (high_points))
|
select count(high_points) from table_11960944_6 where team = "@ milwaukee"
|
What is the year of appearance for the Prince Albert Raiders?
|
create table table_17751942_4 (years_of_appearance varchar, team varchar, PRIMARY KEY (years_of_appearance))
|
select years_of_appearance from table_17751942_4 where team = "prince albert raiders"
|
List ids and details for all projects.
|
create table projects (project_id varchar, project_details varchar, PRIMARY KEY (project_id))
|
select project_id, project_details from projects
|
When the value of "since beginning of big 12" is synonymous with its' category, what are the in Ames values?
|
create table table_10429820_13 (in_ames varchar, PRIMARY KEY (in_ames))
|
select in_ames from table_10429820_13 where "since_beginning_of_big_12" = "since_beginning_of_big_12"
|
june 10-11 when november 3 is 133?
|
create table table_25355501_2 (june_10_11 varchar, november_3 varchar, PRIMARY KEY (june_10_11))
|
select june_10_11 from table_25355501_2 where november_3 = "133"
|
What is the name of the player from purcell, ok?
|
create table table_26916717_1 (name varchar, home_town varchar, PRIMARY KEY (name))
|
select name from table_26916717_1 where home_town = "purcell, ok"
|
What was the name of the epiode written by Gary M. Goodrich?
|
create table table_2409041_9 (title varchar, written_by varchar, PRIMARY KEY (title))
|
select title from table_2409041_9 where written_by = "gary m. goodrich"
|
Name the home team when away team is kilmarnock
|
create table table_15173650_2 (home_team varchar, away_team varchar, PRIMARY KEY (home_team))
|
select home_team from table_15173650_2 where away_team = "kilmarnock"
|
Which companies have a free float of 0.2726?
|
create table table_20667854_1 (company varchar, free_float varchar, PRIMARY KEY (company))
|
select company from table_20667854_1 where free_float = "0.2726"
|
Who was the first couple in the episode having a fourth couple of Sammy and Nat?
|
create table table_25664518_3 (first_couple varchar, fourth_couple varchar, PRIMARY KEY (first_couple))
|
select first_couple from table_25664518_3 where fourth_couple = "sammy and nat"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.