question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
what's the thursday iuppiter (jupiter) with saturday saturnus ( saturn) being jesarn | create table table_1277350_1 (thursday_iuppiter__jupiter_ varchar, saturday_saturnus___saturn_ varchar, PRIMARY KEY (thursday_iuppiter__jupiter_)) | select thursday_iuppiter__jupiter_ from table_1277350_1 where saturday_saturnus___saturn_ = "jesarn" |
What is the record of wins/losses that were played at opponents venue (uf, 1-0) | create table table_16201038_5 (overall_record varchar, at_opponents_venue varchar, PRIMARY KEY (overall_record)) | select overall_record from table_16201038_5 where at_opponents_venue = "uf, 1-0" |
Who are the opponents of Missouri that have an overall record of MU, 3-1? | create table table_16201038_5 (missouri_vs varchar, overall_record varchar, PRIMARY KEY (missouri_vs)) | select missouri_vs from table_16201038_5 where overall_record = "mu, 3-1" |
What's the classification of the institution nicknamed Dolphins? | create table table_12936521_2 (classification varchar, nickname varchar, PRIMARY KEY (classification)) | select classification from table_12936521_2 where nickname = "dolphins" |
What is the poor law union for the Barnahely towland? | create table table_30120619_1 (poor_law_union varchar, townland varchar, PRIMARY KEY (poor_law_union)) | select poor_law_union from table_30120619_1 where townland = "barnahely" |
Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk? | create table table_12266757_1 (womens_singles varchar, mens_doubles varchar, PRIMARY KEY (womens_singles)) | select womens_singles from table_12266757_1 where mens_doubles = "stefan karlsson claes nordin , bk aura gbk" |
What format is the link for the polling data for February 10–28, 2011? | create table table_24778847_2 (link varchar, date_of_polling varchar, PRIMARY KEY (link)) | select link from table_24778847_2 where date_of_polling = "february 10–28, 2011" |
When mega pass* (senior/disabled) is the type of fare what is the cash fare? | create table table_20803241_1 (cash_fare varchar, type_of_fare varchar, PRIMARY KEY (cash_fare)) | select cash_fare from table_20803241_1 where type_of_fare = "mega pass* (senior/disabled)" |
Which state has the most customers? | create table customers (state varchar, PRIMARY KEY (state)) | select state from customers group by state order by count(*) limit 1 |
If the amount of U.S. viewers is 2.14 million, who was the episode directed by? | create table table_23399481_2 (directed_by varchar, us_viewers__in_millions_ varchar, PRIMARY KEY (directed_by)) | select directed_by from table_23399481_2 where us_viewers__in_millions_ = "2.14" |
Find the name of different colleges involved in the tryout in alphabetical order. | create table tryout (cname varchar, PRIMARY KEY (cname)) | select distinct cname from tryout order by cname |
What year is Winter Olympics when Holmenkollen is 1957, 1960? | create table table_174491_2 (winter_olympics varchar, holmenkollen varchar, PRIMARY KEY (winter_olympics)) | select winter_olympics from table_174491_2 where holmenkollen = "1957, 1960" |
What was the young rider classification when manuel cardoso was the winner? | create table table_25580292_13 (young_rider_classification varchar, winner varchar, PRIMARY KEY (young_rider_classification)) | select young_rider_classification from table_25580292_13 where winner = "manuel cardoso" |
what is the minimum of 60 -64? | create table table_16457934_4 (id varchar, PRIMARY KEY (id)) | select min(60 as _to_64) from table_16457934_4 |
how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4% | create table table_1342256_6 (party varchar, candidates varchar, PRIMARY KEY (party)) | select count(party) from table_1342256_6 where candidates = "john j. phillips (r) 57.6% n. e. west (d) 42.4%" |
What is the day Number and date of all the documents? | create table all_documents (date_stored varchar, date_stored varchar, PRIMARY KEY (date_stored)); create table ref_calendar (day_number varchar, calendar_date varchar, PRIMARY KEY (day_number)) | select t2.day_number, t1.date_stored from all_documents as t1 join ref_calendar as t2 on t1.date_stored = t2.calendar_date |
How much freedom can did the people of Guinea experience in 2013? | create table table_1604579_2 (freedom_in_the_world_2013 varchar, country varchar, PRIMARY KEY (freedom_in_the_world_2013)) | select freedom_in_the_world_2013 from table_1604579_2 where country = "guinea" |
Show names for all aircrafts of which John Williams has certificates. | create table aircraft (name varchar, aid varchar, PRIMARY KEY (name)); create table employee (eid varchar, name varchar, PRIMARY KEY (eid)); create table certificate (eid varchar, aid varchar, PRIMARY KEY (eid)) | select t3.name from employee as t1 join certificate as t2 on t1.eid = t2.eid join aircraft as t3 on t3.aid = t2.aid where t1.name = "john williams" |
What is the English translation of 哀郢? | create table table_1805919_1 (english_translation varchar, traditional_chinese varchar, PRIMARY KEY (english_translation)) | select english_translation from table_1805919_1 where traditional_chinese = "哀郢" |
Show member names without any registered branch. | create table member (name varchar, member_id varchar, PRIMARY KEY (name)); create table membership_register_branch (name varchar, member_id varchar, PRIMARY KEY (name)) | select name from member where not member_id in (select member_id from membership_register_branch) |
how many office with department being department of justice kagawaran ng katarungan | create table table_1331313_1 (office varchar, department varchar, PRIMARY KEY (office)) | select count(office) from table_1331313_1 where department = "department of justice kagawaran ng katarungan" |
What is the verb meaning of the word with part 2 "bant"? | create table table_1745843_8 (verb_meaning varchar, part_2 varchar, PRIMARY KEY (verb_meaning)) | select verb_meaning from table_1745843_8 where part_2 = "bant" |
WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE? | create table table_16741821_8 (surface varchar, opponent varchar, PRIMARY KEY (surface)) | select surface from table_16741821_8 where opponent = "george khrikadze" |
Find the name of scientists who are not assigned to any project. | create table scientists (name varchar, ssn varchar, scientist varchar, PRIMARY KEY (name)); create table assignedto (name varchar, ssn varchar, scientist varchar, PRIMARY KEY (name)) | select name from scientists where not ssn in (select scientist from assignedto) |
Which policy type has the most records in the database? | 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 order by count(*) desc limit 1 |
Who is the auther when the english name was histories and eulogies of the sovereigns? | create table table_22464685_1 (author varchar, english_name varchar, PRIMARY KEY (author)) | select author from table_22464685_1 where english_name = "histories and eulogies of the sovereigns" |
What package offers cinema content and is n. 333? | create table table_15887683_5 (package_option varchar, content varchar, n° varchar, PRIMARY KEY (package_option)) | select package_option from table_15887683_5 where content = "cinema" and n° = "333" |
how many winning team with circuit being road america | create table table_14638077_2 (winning_team varchar, circuit varchar, PRIMARY KEY (winning_team)) | select count(winning_team) from table_14638077_2 where circuit = "road america" |
What position did Tara Palmer-Tomkinson finish? | create table table_14345690_2 (finished varchar, celebrity varchar, PRIMARY KEY (finished)) | select finished from table_14345690_2 where celebrity = "tara palmer-tomkinson" |
How many categories are there when the attribute is "onreset"? | create table table_1507852_1 (category varchar, attribute varchar, PRIMARY KEY (category)) | select count(category) from table_1507852_1 where attribute = "onreset" |
what is the record where the opponent is central connecticut? | create table table_23346303_3 (record varchar, opponent varchar, PRIMARY KEY (record)) | select record from table_23346303_3 where opponent = "central connecticut" |
How many figures are provided for December 28 for Rosario? | create table table_29217650_1 (december_28 varchar, movies varchar, PRIMARY KEY (december_28)) | select count(december_28) from table_29217650_1 where movies = "rosario" |
which club is listed when bonus points is bonus points | create table table_20396710_1 (club varchar, PRIMARY KEY (club)) | select club from table_20396710_1 where "bonus_points" = "bonus_points" |
How many comments are there in the Bethel (CA) Borough area? | create table table_17978052_2 (comment varchar, borough_or_census_area varchar, PRIMARY KEY (comment)) | select count(comment) from table_17978052_2 where borough_or_census_area = "bethel (ca)" |
When total costs (2005) are $700,116, what is the cost per capita? | create table table_12340907_1 (cost_per_capita varchar, total_costs__2005_ varchar, PRIMARY KEY (cost_per_capita)) | select cost_per_capita from table_12340907_1 where total_costs__2005_ = "$700,116" |
What's the abbreviation of the month in the zodiac sign scorpio? | create table table_180802_2 (abbr varchar, zodiac_sign varchar, PRIMARY KEY (abbr)) | select abbr from table_180802_2 where zodiac_sign = "scorpio" |
Find the name of dorms that do not have any amenity | create table dorm (dorm_name varchar, dormid varchar, PRIMARY KEY (dorm_name)); create table has_amenity (dorm_name varchar, dormid varchar, PRIMARY KEY (dorm_name)) | select dorm_name from dorm where not dormid in (select dormid from has_amenity) |
What is the home team when the opposition is wairarapa bush? | create table table_26847237_3 (home_team varchar, opposition varchar, PRIMARY KEY (home_team)) | select home_team from table_26847237_3 where opposition = "wairarapa bush" |
What is the title of the episode written by Jack Orman? | create table table_25356350_2 (title varchar, written_by varchar, PRIMARY KEY (title)) | select title from table_25356350_2 where written_by = "jack orman" |
Name the rookie for ryan powell | create table table_23265433_2 (rookie varchar, offensive varchar, PRIMARY KEY (rookie)) | select rookie from table_23265433_2 where offensive = "ryan powell" |
find the full name of employees who report to Nancy Edwards? | create table employees (id varchar, first_name varchar, last_name varchar, PRIMARY KEY (id)); create table employees (first_name varchar, last_name varchar, reports_to varchar, PRIMARY KEY (first_name)) | select t2.first_name, t2.last_name from employees as t1 join employees as t2 on t1.id = t2.reports_to where t1.first_name = "nancy" and t1.last_name = "edwards" |
What was the number of murders the year forcible rapes were at 166? | create table table_25271777_1 (murder varchar, forcible_rape varchar, PRIMARY KEY (murder)) | select murder from table_25271777_1 where forcible_rape = 166 |
What is the highest GA when GF is 39? | create table table_1888157_1 (ga integer, gf varchar, PRIMARY KEY (ga)) | select max(ga) from table_1888157_1 where gf = 39 |
What was the total number in Manhattan when Staten Island was 12,658? | create table table_1108394_6 (manhattan varchar, staten_island varchar, PRIMARY KEY (manhattan)) | select count(manhattan) from table_1108394_6 where staten_island = "12,658" |
What is the aircraft for 21 crews? | create table table_23508196_5 (type_of_aircraft varchar, number_of_crews varchar, PRIMARY KEY (type_of_aircraft)) | select type_of_aircraft from table_23508196_5 where number_of_crews = "21" |
How many clubs does the student named "Eric Tai" belong to? | create table student (stuid varchar, fname varchar, lname varchar, PRIMARY KEY (stuid)); create table member_of_club (clubid varchar, stuid varchar, PRIMARY KEY (clubid)); create table club (clubname varchar, clubid varchar, PRIMARY KEY (clubname)) | select count(distinct t1.clubname) from club as t1 join member_of_club as t2 on t1.clubid = t2.clubid join student as t3 on t2.stuid = t3.stuid where t3.fname = "eric" and t3.lname = "tai" |
What is the unit of measuerment of the product category code "Herbs"? | create table ref_product_categories (unit_of_measure varchar, product_category_code varchar, PRIMARY KEY (unit_of_measure)) | select unit_of_measure from ref_product_categories where product_category_code = "herbs" |
What is the lowest overall amount of times they've been in 3rd? | create table table_24330912_1 (id varchar, PRIMARY KEY (id)) | select min(3 as rd) from table_24330912_1 |
Who was the incumbent when ran william b. oliver (d) unopposed? | create table table_1346118_2 (incumbent varchar, candidates varchar, PRIMARY KEY (incumbent)) | select incumbent from table_1346118_2 where candidates = "william b. oliver (d) unopposed" |
What's the power for General Santos? | create table table_2610582_7 (power__kw_ varchar, location varchar, PRIMARY KEY (power__kw_)) | select power__kw_ from table_2610582_7 where location = "general santos" |
What family had a no.overall of UK10? | create table table_19897294_4 (family_families varchar, no_overall varchar, PRIMARY KEY (family_families)) | select family_families from table_19897294_4 where no_overall = "uk10" |
who won the kansas state game on 11/26/1988 | create table table_15740666_6 (kansas_state_vs varchar, last_meeting varchar, PRIMARY KEY (kansas_state_vs)) | select kansas_state_vs from table_15740666_6 where last_meeting = "11/26/1988" |
What was the away team's score of at the game of telstra stadium? | create table table_16388545_1 (away_team varchar, ground varchar, PRIMARY KEY (away_team)) | select away_team as score from table_16388545_1 where ground = "telstra stadium" |
When was Viva Cuba submitted? | create table table_21904740_1 (year__ceremony_ varchar, spanish_title varchar, PRIMARY KEY (year__ceremony_)) | select year__ceremony_ from table_21904740_1 where spanish_title = "viva cuba" |
What are the visit date and details of the visitor whose detail is 'Vincent'? | create table visitors (tourist_id varchar, tourist_details varchar, PRIMARY KEY (tourist_id)); create table visits (visit_date varchar, visit_details varchar, tourist_id varchar, PRIMARY KEY (visit_date)) | select t2.visit_date, t2.visit_details from visitors as t1 join visits as t2 on t1.tourist_id = t2.tourist_id where t1.tourist_details = "vincent" |
Name the memory for part number of ct80618003201aa | create table table_16729930_17 (memory varchar, part_number_s_ varchar, PRIMARY KEY (memory)) | select memory from table_16729930_17 where part_number_s_ = "ct80618003201aa" |
What is the percentage of the trance- n himalaya zone that corresponds with the high hill zone is 25%? | create table table_10638523_1 (trance__n_himalaya_zone varchar, high_hill_zone varchar, PRIMARY KEY (trance__n_himalaya_zone)) | select trance__n_himalaya_zone from table_10638523_1 where high_hill_zone = "25%" |
What is the record when the opposing team was the Pittsburgh Penguins? | create table table_23486853_6 (record varchar, opponent varchar, PRIMARY KEY (record)) | select record from table_23486853_6 where opponent = "pittsburgh penguins" |
how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi | create table table_1410384_1 (voice_actor__english_1998___pioneer_ varchar, voice_actor__japanese_ varchar, PRIMARY KEY (voice_actor__english_1998___pioneer_)) | select count(voice_actor__english_1998___pioneer_) from table_1410384_1 where voice_actor__japanese_ = "shinobu satouchi" |
When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party? | create table table_19753079_41 (party varchar, candidates varchar, PRIMARY KEY (party)) | select party from table_19753079_41 where candidates = "mark critz (d) 50.8% tim burns (r) 49.2%" |
What is the record when the game was at the San Diego Stadium? | create table table_17848578_1 (record varchar, game_site varchar, PRIMARY KEY (record)) | select record from table_17848578_1 where game_site = "san diego stadium" |
For the functional type of light ball, what were the other features? | create table table_1036189_1 (other_features varchar, functional_type varchar, PRIMARY KEY (other_features)) | select other_features from table_1036189_1 where functional_type = "light ball" |
How many countries did Utah Bulwark's owner come from? | create table table_21676617_1 (country_of_owner varchar, horse varchar, PRIMARY KEY (country_of_owner)) | select count(country_of_owner) from table_21676617_1 where horse = "utah bulwark" |
What was the name of the episode Alan Yang wrote? | create table table_25341765_1 (title varchar, written_by varchar, PRIMARY KEY (title)) | select title from table_25341765_1 where written_by = "alan yang" |
Show the names of all of the high schooler Kyle's friends. | create table highschooler (name varchar, id varchar, PRIMARY KEY (name)); create table friend (student_id varchar, friend_id varchar, PRIMARY KEY (student_id)); create table highschooler (id varchar, name varchar, PRIMARY KEY (id)) | select t3.name from friend as t1 join highschooler as t2 on t1.student_id = t2.id join highschooler as t3 on t1.friend_id = t3.id where t2.name = "kyle" |
In what edition was the opponent team Zimbabwe? | create table table_27877656_8 (edition varchar, opponent_team varchar, PRIMARY KEY (edition)) | select edition from table_27877656_8 where opponent_team = "zimbabwe" |
what is the cfl team where college is waterloo? | create table table_26996293_4 (cfl_team varchar, college varchar, PRIMARY KEY (cfl_team)) | select count(cfl_team) from table_26996293_4 where college = "waterloo" |
Show the police force shared by counties with location on the east and west. | create table county_public_safety (police_force varchar, location varchar, PRIMARY KEY (police_force)) | select police_force from county_public_safety where location = "east" intersect select police_force from county_public_safety where location = "west" |
When did svishtov , bulgaria disband? | create table table_242785_1 (date_disband varchar, main_legionary_base varchar, PRIMARY KEY (date_disband)) | select date_disband from table_242785_1 where main_legionary_base = "svishtov , bulgaria" |
List the titles of all items in alphabetic order . | create table item (title varchar, PRIMARY KEY (title)) | select title from item order by title |
Who was the lyricist for the song with music directed by madan mohan kohli? | create table table_2528382_1 (lyricist varchar, music_director varchar, PRIMARY KEY (lyricist)) | select lyricist from table_2528382_1 where music_director = "madan mohan kohli" |
What type of formula did Stirling Moss drive? | create table table_23548160_1 (formula varchar, driver varchar, PRIMARY KEY (formula)) | select formula from table_23548160_1 where driver = "stirling moss" |
How many assets can each parts be used in? List the part name and the number. | create table parts (part_name varchar, part_id varchar, PRIMARY KEY (part_name)); create table asset_parts (part_id varchar, PRIMARY KEY (part_id)) | select t1.part_name, count(*) from parts as t1 join asset_parts as t2 on t1.part_id = t2.part_id group by t1.part_name |
Show the names of companies and of employees. | create table company (name varchar, company_id varchar, PRIMARY KEY (name)); create table employment (people_id varchar, company_id varchar, PRIMARY KEY (people_id)); create table people (name varchar, people_id varchar, PRIMARY KEY (name)) | select t3.name, t2.name from employment as t1 join people as t2 on t1.people_id = t2.people_id join company as t3 on t1.company_id = t3.company_id |
List all vehicle id | create table vehicles (vehicle_id varchar, PRIMARY KEY (vehicle_id)) | select vehicle_id from vehicles |
Find the number of distinct amenities. | create table dorm_amenity (id varchar, PRIMARY KEY (id)) | select count(*) from dorm_amenity |
How many states that have some college students playing in the mid position but not in the goalie position. | create table tryout (cname varchar, ppos varchar, PRIMARY KEY (cname)); create table college (state varchar, cname varchar, PRIMARY KEY (state)) | select count(*) from (select t1.state from college as t1 join tryout as t2 on t1.cname = t2.cname where t2.ppos = 'mid' except select t1.state from college as t1 join tryout as t2 on t1.cname = t2.cname where t2.ppos = 'goalie') |
Where is the team that is managed by richard barnwell from? | create table table_27409644_1 (location varchar, manager varchar, PRIMARY KEY (location)) | select location from table_27409644_1 where manager = "richard barnwell" |
Who directed the episode that was written by Jonathan Fener? | create table table_23242968_1 (directed_by varchar, written_by varchar, PRIMARY KEY (directed_by)) | select directed_by from table_23242968_1 where written_by = "jonathan fener" |
Name the country that has ken doherty | create table table_26454128_7 (country varchar, athlete varchar, PRIMARY KEY (country)) | select country from table_26454128_7 where athlete = "ken doherty" |
What amount is the junior high school where the gender is male and the specification is minimum diameter of sakigawa? | create table table_13555999_1 (junior_high_school__12_15_yrs_ varchar, gender varchar, specification varchar, PRIMARY KEY (junior_high_school__12_15_yrs_)) | select junior_high_school__12_15_yrs_ from table_13555999_1 where gender = "male" and specification = "minimum diameter of sakigawa" |
Show all ministers who do not belong to Progress Party. | create table party (minister varchar, party_name varchar, PRIMARY KEY (minister)) | select minister from party where party_name <> 'progress party' |
what type of organization is sigma phi omega? | create table table_2538117_2 (type varchar, organization varchar, PRIMARY KEY (type)) | select type from table_2538117_2 where organization = "sigma phi omega" |
Who wrote the story viewed by 0.53 million viewers? | create table table_26914076_3 (story_by varchar, us_viewers__millions_ varchar, PRIMARY KEY (story_by)) | select story_by from table_26914076_3 where us_viewers__millions_ = "0.53" |
List the number of invoices from Chicago, IL. | create table invoices (billing_city varchar, billing_state varchar, PRIMARY KEY (billing_city)) | select count(*) from invoices where billing_city = "chicago" and billing_state = "il" |
What is the overall total for the Omaha Nighthawks? | create table table_27094070_4 (overall_total integer, team varchar, PRIMARY KEY (overall_total)) | select min(overall_total) from table_27094070_4 where team = "omaha nighthawks" |
Was the sounddock series I v2 iphone certified? | create table table_24384861_1 (iphone_certified varchar, version varchar, PRIMARY KEY (iphone_certified)) | select iphone_certified from table_24384861_1 where version = "sounddock series i v2" |
Which owner has paid for the most treatments on his or her dogs? List the owner id and last name. | create table owners (owner_id varchar, last_name varchar, PRIMARY KEY (owner_id)); create table dogs (owner_id varchar, dog_id varchar, PRIMARY KEY (owner_id)); create table treatments (dog_id varchar, PRIMARY KEY (dog_id)) | select t1.owner_id, t1.last_name from owners as t1 join dogs as t2 on t1.owner_id = t2.owner_id join treatments as t3 on t2.dog_id = t3.dog_id group by t1.owner_id order by count(*) desc limit 1 |
Which institution's nickname is the Bobcats? | create table table_261931_2 (institution varchar, nickname varchar, PRIMARY KEY (institution)) | select institution from table_261931_2 where nickname = "bobcats" |
How many companies are headquartered in the US? | create table company (headquarters varchar, PRIMARY KEY (headquarters)) | select count(*) from company where headquarters = 'usa' |
What is the description of the treatment type that costs the least money in total? | create table treatments (treatment_type_code varchar, PRIMARY KEY (treatment_type_code)); create table treatment_types (treatment_type_description varchar, treatment_type_code varchar, PRIMARY KEY (treatment_type_description)) | select t1.treatment_type_description from treatment_types as t1 join treatments as t2 on t1.treatment_type_code = t2.treatment_type_code group by t1.treatment_type_code order by sum(cost_of_treatment) limit 1 |
How many entries for 50 occur when strike rate is 92.81? | create table table_2985664_8 (strike_rate varchar, PRIMARY KEY (strike_rate)) | select count(50) from table_2985664_8 where strike_rate = "92.81" |
Who was the vacator when the successor was formally installed on February 1, 1871? | create table table_2417345_3 (vacator varchar, date_of_successors_formal_installation varchar, PRIMARY KEY (vacator)) | select vacator from table_2417345_3 where date_of_successors_formal_installation = "february 1, 1871" |
Who are all men's doubles when men's singles is Jean-Michel Saive? | create table table_28211988_1 (mens_doubles varchar, mens_singles varchar, PRIMARY KEY (mens_doubles)) | select mens_doubles from table_28211988_1 where mens_singles = "jean-michel saive" |
What is the name of UMass Boston's softball stadium? | create table table_1974545_3 (softball_stadium varchar, school varchar, PRIMARY KEY (softball_stadium)) | select softball_stadium from table_1974545_3 where school = "umass boston" |
How many colleges have the NFL Team Buffalo Bills? | create table table_2508633_11 (college varchar, nfl_team varchar, PRIMARY KEY (college)) | select count(college) from table_2508633_11 where nfl_team = "buffalo bills" |
Who was the outgoing manager of the team whose incoming manager was Dougie Freedman? | create table table_26593762_3 (outgoing_manager varchar, incoming_manager varchar, PRIMARY KEY (outgoing_manager)) | select outgoing_manager from table_26593762_3 where incoming_manager = "dougie freedman" |
Name the country for hideki noda category:articles with hcards | create table table_19001175_1 (country varchar, name varchar, PRIMARY KEY (country)) | select country from table_19001175_1 where name = "hideki noda category:articles with hcards" |
What was the original air date for the episode Calle, The Transit of Venus? | create table table_19517621_4 (original_airdate varchar, title varchar, PRIMARY KEY (original_airdate)) | select original_airdate from table_19517621_4 where title = "the transit of venus" |
When was the delevery date when there were 12 ways of delivery? | create table table_11552751_2 (total_number_of_ways varchar, PRIMARY KEY (total_number_of_ways)) | select 1 as st_ship_delivery_date from table_11552751_2 where total_number_of_ways = "12 ways" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.