answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = "6.2 million"
Name the number of ranks for international tourist arrivals being 6.2 million
CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND title = "Mario Kart DS"
What's the sales breakdown for Nintendo's Mario Kart DS?
CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR)
SELECT silver FROM table_name_24 WHERE gold < 12 AND rank < 5 AND bronze = 5
Which silver has a Gold smaller than 12, a Rank smaller than 5, and a Bronze of 5?
CREATE TABLE table_name_24 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT T2.Title, T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID
Show titles of songs and names of singers.
CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE song (Title VARCHAR, Singer_ID VARCHAR)
SELECT major_town FROM table_23685890_2 WHERE local_government_area = "Outback Areas Community Development Trust"
Which major town is located within the Outback Areas Community Development Trust?
CREATE TABLE table_23685890_2 (major_town VARCHAR, local_government_area VARCHAR)
SELECT MIN(first_game) FROM table_name_78 WHERE lost = 7 AND drawn < 0
What is the earliest first game for a rugby team that has 7 lost games and 0 draws?
CREATE TABLE table_name_78 (first_game INTEGER, lost VARCHAR, drawn VARCHAR)
SELECT team FROM table_name_90 WHERE sacks = "0" AND season < 1998
what is the team when sacks is 0 and the season is earlier than 1998?
CREATE TABLE table_name_90 (team VARCHAR, sacks VARCHAR, season VARCHAR)
SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1"
What is the earliest day in November with a record of 15-7-1?
CREATE TABLE table_name_67 (november INTEGER, record VARCHAR)
SELECT tyre FROM table_name_95 WHERE date = "19 january"
What was the Tyre for 19 January?
CREATE TABLE table_name_95 (tyre VARCHAR, date VARCHAR)
SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = "children of sarajevo"
What is the Original title of Children of Sarajevo?
CREATE TABLE table_name_42 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT tobago FROM table_1850282_5 WHERE species = "Liophis cobellus cobellus"
are in tobago species liophis cobellus cobellus?
CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR)
SELECT mls_team FROM table_29626583_3 WHERE player = "Jason Herrick"
Which MLS team picked player Jason Herrick?
CREATE TABLE table_29626583_3 (mls_team VARCHAR, player VARCHAR)
SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)"
Who was the original artist for week number Top 16 (8 women)?
CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR)
SELECT name, main_services FROM station ORDER BY total_passengers DESC LIMIT 3
Show the names and main services for train stations that have the top three total number of passengers.
CREATE TABLE station (name VARCHAR, main_services VARCHAR, total_passengers VARCHAR)
SELECT date FROM table_name_83 WHERE home_team = "melbourne tigers"
On what date were the Melbourne Tigers the home team?
CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR)
SELECT try_bonus FROM table_name_78 WHERE lost = "12"
What i the try bonus with 12 losses?
CREATE TABLE table_name_78 (try_bonus VARCHAR, lost VARCHAR)
SELECT away_team FROM table_name_98 WHERE venue = "arden street oval"
Who was the Away team at Arden Street Oval?
CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)
SELECT MIN(position) FROM table_name_47 WHERE points > 11 AND name = "ea schongau" AND lost < 3
what is the lowest position when points is more than 11, name is ea schongau and lost is less than 3?
CREATE TABLE table_name_47 (position INTEGER, lost VARCHAR, points VARCHAR, name VARCHAR)
SELECT date FROM table_name_86 WHERE opponent = "oakland raiders"
What was the date of the game against Oakland Raiders?
CREATE TABLE table_name_86 (date VARCHAR, opponent VARCHAR)
SELECT driver FROM table_20159025_1 WHERE part_1 = "1:31.386"
Who was the driver when the time in part 3 was 1:31.386?
CREATE TABLE table_20159025_1 (driver VARCHAR, part_1 VARCHAR)
SELECT MIN(bronze_medals) FROM table_1305623_6
What's the smallest number of bronze medals that any one if the ensembles has?
CREATE TABLE table_1305623_6 (bronze_medals INTEGER)
SELECT game FROM table_27715173_8 WHERE high_points = "Manu Ginóbili (26)"
what is the game where the high points is by manu ginóbili (26)?
CREATE TABLE table_27715173_8 (game VARCHAR, high_points VARCHAR)
SELECT college FROM table_name_56 WHERE school = "ames high school"
What college did the player from Ames High School attend?
CREATE TABLE table_name_56 (college VARCHAR, school VARCHAR)
SELECT 2007 AS _08_season FROM table_name_75 WHERE stadium = "stadio silvio piola"
What is the 2007-08 season at Stadio Silvio Piola?
CREATE TABLE table_name_75 (stadium VARCHAR)
SELECT manufacturer FROM table_name_18 WHERE laps = "8"
Which manufacturer has 8 laps?
CREATE TABLE table_name_18 (manufacturer VARCHAR, laps VARCHAR)
SELECT COUNT(division) FROM table_name_54 WHERE season = "2006/07" AND goals > 1
What's the total number of all divisions during the 2006/07 season where they scored more than 1 goal?
CREATE TABLE table_name_54 (division VARCHAR, season VARCHAR, goals VARCHAR)
SELECT t1.dname FROM department AS t1 JOIN dept_locations AS t2 ON t1.dnumber = t2.dnumber WHERE t2.dlocation = 'Houston'
Find the names of departments that are located in Houston.
CREATE TABLE dept_locations (dnumber VARCHAR, dlocation VARCHAR); CREATE TABLE department (dname VARCHAR, dnumber VARCHAR)
SELECT laps FROM table_name_39 WHERE driver = "eddie cheever"
How many Laps does Eddie Cheever have?
CREATE TABLE table_name_39 (laps VARCHAR, driver VARCHAR)
SELECT AVG(black__both_hispanic_and_non_hispanic_) FROM table_name_99 WHERE white__both_hispanic_and_non_hispanic_ < 61.9 AND multiracial__both_hispanic_and_non_hispanic_ < 12.5 AND hispanic__of_any_race_ < 99.4
What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4?
CREATE TABLE table_name_99 (black__both_hispanic_and_non_hispanic_ INTEGER, hispanic__of_any_race_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, multiracial__both_hispanic_and_non_hispanic_ VARCHAR)
SELECT player FROM table_name_68 WHERE round > 5 AND position = "defensive tackle"
After Round 5, which player was drafted for Defensive Tackle?
CREATE TABLE table_name_68 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT hanja FROM table_name_77 WHERE hangul = "주"
Name the hanja for hangul of 주
CREATE TABLE table_name_77 (hanja VARCHAR, hangul VARCHAR)
SELECT years_in_toronto FROM table_10015132_2 WHERE player = "Lonny Baxter"
What years was the player Lonny Baxter in Toronto?
CREATE TABLE table_10015132_2 (years_in_toronto VARCHAR, player VARCHAR)
SELECT MAX(_number_of_constituency_votes) FROM table_name_22 WHERE election = 2005
What is the highest # Of Constituency Votes, when Election is 2005?
CREATE TABLE table_name_22 (_number_of_constituency_votes INTEGER, election VARCHAR)
SELECT team FROM table_18788823_5 WHERE date_of_appointment = "23 December 2008"
Which team appointed a person on 23 December 2008?
CREATE TABLE table_18788823_5 (team VARCHAR, date_of_appointment VARCHAR)
SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10
What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?
CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR)
SELECT try_bonus FROM table_name_56 WHERE tries_for = "25"
What was the try bonus for the team with 25 tries for?
CREATE TABLE table_name_56 (try_bonus VARCHAR, tries_for VARCHAR)
SELECT 3 AS ’utr_sequence FROM table_name_87 WHERE genbank_id = "hq021440"
Which 3’UTR sequence has the GenBank ID at hq021440?
CREATE TABLE table_name_87 (genbank_id VARCHAR)
SELECT MIN(week) FROM table_name_25 WHERE date = "september 9, 1967"
What week did the September 9, 1967 game occur on?
CREATE TABLE table_name_25 (week INTEGER, date VARCHAR)
SELECT team FROM table_name_8 WHERE attempts = "1,317"
What is the name of the team that has 1,317 attempts?
CREATE TABLE table_name_8 (team VARCHAR, attempts VARCHAR)
SELECT surface FROM table_name_52 WHERE opponent_in_the_final = "don mcneill" AND year = 1940
Which Surface has an Opponent in the final of don mcneill, and a Year of 1940?
CREATE TABLE table_name_52 (surface VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR)
SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "jonas björkman john mcenroe"
Name the outcome for opponents of jonas björkman john mcenroe
CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR)
SELECT result FROM table_name_26 WHERE attendance > 33 OFFSET 435
Which had an attendance of larger than 33,435?
CREATE TABLE table_name_26 (result VARCHAR, attendance INTEGER)
SELECT games FROM table_name_26 WHERE points_for = "595"
What is the number of games for a club that has a value of 595 for points for?
CREATE TABLE table_name_26 (games VARCHAR, points_for VARCHAR)
SELECT year FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = "$26.95"
What is the year that the issue price (bu) is $26.95?
CREATE TABLE table_11916083_1 (year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)
SELECT country FROM table_name_36 WHERE to_par = "+2" AND score = 69 - 73 = 142 AND player = "rocco mediate"
When Rocco Mediate has a To par of +2 and a 69-73=142 score, what is the country listed?
CREATE TABLE table_name_36 (country VARCHAR, player VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT winner FROM table_name_42 WHERE season = 2009
Who was the winner during the 2009 season?
CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR)
SELECT MIN(byes) FROM table_name_3 WHERE against = 1946 AND wins > 2
What is the least amount of Byes when there are more than 2 wins and 1946 against?
CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT SUM(matches) FROM table_name_56 WHERE wins < 8 AND losses = 7 AND year = "2011"
What is the number of matches when the wins are less than 8, and losses of 7, in 2011?
CREATE TABLE table_name_56 (matches INTEGER, year VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT COUNT(year) FROM table_name_70 WHERE location = "hiroshima"
What year did the event in Hiroshima take place?
CREATE TABLE table_name_70 (year VARCHAR, location VARCHAR)
SELECT lead FROM table_name_19 WHERE season = "2004-05"
What is the Lead in the 2004-05 Season?
CREATE TABLE table_name_19 (lead VARCHAR, season VARCHAR)
SELECT score FROM table_name_36 WHERE date = "december 1"
What is the score on December 1?
CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_15 WHERE date = "september 25, 1995"
For the tournament played on September 25, 1995, who was the Finals opponent?
CREATE TABLE table_name_15 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT SUM(year) FROM table_name_6 WHERE city = "santiago de compostela"
How many years did he play in santiago de compostela?
CREATE TABLE table_name_6 (year INTEGER, city VARCHAR)
SELECT MIN(winners) FROM table_12303563_1 WHERE nation = "Kingfisher East Bengal FC"
How many times did kingfisher east bengal fc win?
CREATE TABLE table_12303563_1 (winners INTEGER, nation VARCHAR)
SELECT category FROM table_name_18 WHERE awards = "british soap awards" AND result = "nominated"
What category of the British Soap Awards resulted in nominated?
CREATE TABLE table_name_18 (category VARCHAR, awards VARCHAR, result VARCHAR)
SELECT class FROM table_name_11 WHERE driver = "stanley dickens"
Which class had Stanley Dickens as a driver?
CREATE TABLE table_name_11 (class VARCHAR, driver VARCHAR)
SELECT record FROM table_name_52 WHERE score = "78-59"
What was the record during the game with a score of 78-59?
CREATE TABLE table_name_52 (record VARCHAR, score VARCHAR)
SELECT position FROM table_1473672_5 WHERE nhl_team = "Montreal Canadiens"
What was the position of the player picked by the Montreal Canadiens?
CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)
SELECT MIN(game) FROM table_27539535_4 WHERE score = "1-0"
What is the least entry for game if the score is 1-0?
CREATE TABLE table_27539535_4 (game INTEGER, score VARCHAR)
SELECT before FROM table_24108789_4 WHERE player = "Geoff Ogilvy"
List all before numbers when Geoff Ogilvy was playing.
CREATE TABLE table_24108789_4 (before VARCHAR, player VARCHAR)
SELECT state FROM table_name_71 WHERE status = "colony" AND school = "shippensburg university"
What state has colony as a status and shippensburg university as the school?
CREATE TABLE table_name_71 (state VARCHAR, status VARCHAR, school VARCHAR)
SELECT township FROM table_18600760_9 WHERE longitude = "-99.287270"
What township is located at longitude -99.287270?
CREATE TABLE table_18600760_9 (township VARCHAR, longitude VARCHAR)
SELECT SUM(production_num) FROM table_name_93 WHERE title = "bosko in dutch"
How many production numbers have a Title of bosko in dutch?
CREATE TABLE table_name_93 (production_num INTEGER, title VARCHAR)
SELECT callsign FROM table_name_69 WHERE affiliation = "independent"
what is the callsign for independent affiliation?
CREATE TABLE table_name_69 (callsign VARCHAR, affiliation VARCHAR)
SELECT date FROM table_name_5 WHERE opponent = "christo van rensburg"
What is the Date of the game against Christo Van Rensburg?
CREATE TABLE table_name_5 (date VARCHAR, opponent VARCHAR)
SELECT AVG(apps) FROM table_name_51 WHERE team = "kairat" AND level > 1
What is the average Apps for the team Kairat with level larger than 1?
CREATE TABLE table_name_51 (apps INTEGER, team VARCHAR, level VARCHAR)
SELECT COUNT(channel) FROM table_2638104_1 WHERE broadcast_area = "Greater Tokyo"
How many channels are there in the Greater Tokyo area?
CREATE TABLE table_2638104_1 (channel VARCHAR, broadcast_area VARCHAR)
SELECT income_inequality_1994_2011__latest_available_ FROM table_name_91 WHERE population_2011 = "21,315,135"
What is the latest available income inequality for the country with a population of 21,315,135?
CREATE TABLE table_name_91 (income_inequality_1994_2011__latest_available_ VARCHAR, population_2011 VARCHAR)
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
What is the average unit price of tracks that belong to Jazz genre?
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
SELECT MAX(lane) FROM table_name_43 WHERE time = 52.84
What lane did the swimmer with a time of 52.84 have?
CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR)
SELECT type FROM table_name_72 WHERE date = "14th century" AND condition = "preserved"
What is the Type of castle from the 14th Century which Condition is preserved?
CREATE TABLE table_name_72 (type VARCHAR, date VARCHAR, condition VARCHAR)
SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = "2000-01"
Which school, club team, or country played for the rockets in the years 2000-01?
CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)
SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery"
What club is robert gallery a part of
CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR)
SELECT country FROM table_name_87 WHERE finish = "t22"
Which country has a finish of t22?
CREATE TABLE table_name_87 (country VARCHAR, finish VARCHAR)
SELECT drivers FROM table_name_2 WHERE rounds = "all" AND make = "lexus" AND tyre = "b" AND team = "petronas toyota team tom's"
Which drives drove a lexus, made all rounds, had a tyre of B and was on the team of petronas toyota team tom's?
CREATE TABLE table_name_2 (drivers VARCHAR, team VARCHAR, tyre VARCHAR, rounds VARCHAR, make VARCHAR)
SELECT Low_Estimate, High_Estimate FROM film_market_estimation
What are the low and high estimates of film markets?
CREATE TABLE film_market_estimation (Low_Estimate VARCHAR, High_Estimate VARCHAR)
SELECT COUNT(no_in_series) FROM table_29196086_4 WHERE original_air_date = "January19,2013"
how many episodes originally aired january19,2013
CREATE TABLE table_29196086_4 (no_in_series VARCHAR, original_air_date VARCHAR)
SELECT T1.name, T2.alid FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T2.alid ORDER BY COUNT(*) DESC LIMIT 10
Find the names of the top 10 airlines that operate the most number of routes.
CREATE TABLE airlines (name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)
SELECT replaced_by FROM table_name_95 WHERE outgoing_manager = "guillermo sanguinetti"
What kind of Replaced has a Outgoing manager of guillermo sanguinetti?
CREATE TABLE table_name_95 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT T1.dorm_name, T1.student_capacity FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid GROUP BY T2.dormid ORDER BY COUNT(*) LIMIT 1
Find the name and capacity of the dorm with least number of amenities.
CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenid VARCHAR); CREATE TABLE dorm (dorm_name VARCHAR, student_capacity VARCHAR, dormid VARCHAR)
SELECT constructor FROM table_name_62 WHERE grid < 5 AND driver = "michael schumacher"
What Constructor did Michael Schumacher have with a Grid smaller than 5?
CREATE TABLE table_name_62 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT city FROM table_name_3 WHERE language = "spanish" AND website = "ultimahora.com"
Which city has spanish news on the website ultimahora.com ?
CREATE TABLE table_name_3 (city VARCHAR, language VARCHAR, website VARCHAR)
SELECT elimination AS Move FROM table_name_90 WHERE team = "team batista" AND elimination = "8"
Which Elimination Move is listed at Elimination 8 for Team Batista?
CREATE TABLE table_name_90 (elimination VARCHAR, team VARCHAR)
SELECT runner_s__up FROM table_name_77 WHERE winning_score = –13(75 - 68 - 68 = 211)
Who was the runner(s)-up when the winning score was –13 (75-68-68=211)?
CREATE TABLE table_name_77 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT T1.Season, T1.Player, T2.Name FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id
Show the season, the player, and the name of the team that players belong to.
CREATE TABLE team (Name VARCHAR, Team_id VARCHAR); CREATE TABLE match_season (Season VARCHAR, Player VARCHAR, Team VARCHAR)
SELECT host FROM table_1597866_3 WHERE first_premiere = "August 3, 2007"
Name the host when first premiere is august 3, 2007
CREATE TABLE table_1597866_3 (host VARCHAR, first_premiere VARCHAR)
SELECT week_3 FROM table_name_11 WHERE week_2 = "heather christensen"
When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3?
CREATE TABLE table_name_11 (week_3 VARCHAR, week_2 VARCHAR)
SELECT away_team FROM table_name_4 WHERE venue = "punt road oval"
What team was the away team for the venue punt road oval?
CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)
SELECT record FROM table_23286158_8 WHERE location_attendance = "Rose Garden 20,565"
Name the record for rose garden 20,565 attendance
CREATE TABLE table_23286158_8 (record VARCHAR, location_attendance VARCHAR)
SELECT competition FROM table_name_8 WHERE opponent = "randers"
What was the competition when the opponent was the Randers?
CREATE TABLE table_name_8 (competition VARCHAR, opponent VARCHAR)
SELECT driver FROM table_name_40 WHERE points > 252 AND season = "2012" AND percentage_of_possible_points = "55.60%"
Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%?
CREATE TABLE table_name_40 (driver VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, season VARCHAR)
SELECT qual_2 FROM table_name_15 WHERE team = "american spirit team johansson" AND best = "59.073"
Name the Qual 2 of a Team of american spirit team johansson and a Best of 59.073?
CREATE TABLE table_name_15 (qual_2 VARCHAR, team VARCHAR, best VARCHAR)
SELECT party FROM table_name_85 WHERE member = "peter howson"
What party was the member peter howson part of?
CREATE TABLE table_name_85 (party VARCHAR, member VARCHAR)
SELECT visitor FROM table_name_97 WHERE leading_scorer = "andrew bogut (21)"
Who is the visitor team of the game with Andrew Bogut (21) as the leading scorer?
CREATE TABLE table_name_97 (visitor VARCHAR, leading_scorer VARCHAR)
SELECT kaine__d_ FROM table_name_55 WHERE date = "october 30, 2005"
What was Kaine's (D) percentage in the poll on October 30, 2005?
CREATE TABLE table_name_55 (kaine__d_ VARCHAR, date VARCHAR)
SELECT "c" AS ompression_ratio FROM table_name_38 WHERE vin_code = "c"
What's the compression ratio when the vin code is c?
CREATE TABLE table_name_38 (vin_code VARCHAR)
SELECT 2010 FROM table_name_30 WHERE 2008 = "lq" AND 2011 = "2r"
What was the 2010 result for a 2008 result of LQ and 2011 result of 2R?
CREATE TABLE table_name_30 (Id VARCHAR)
SELECT wpct FROM table_name_7 WHERE "wins" = "wins"
What WPct has wins of wins?
CREATE TABLE table_name_7 (wpct VARCHAR)
SELECT local_location FROM table_name_68 WHERE resident_country = "belgium" AND mission = "poland"
What is Local Location, when Resident Country is "Belgium", and when Mission is "Poland"?
CREATE TABLE table_name_68 (local_location VARCHAR, resident_country VARCHAR, mission VARCHAR)
SELECT Studio FROM film EXCEPT SELECT Studio FROM film WHERE Director = "Walter Hill"
Show the studios that have not produced films with director "Walter Hill".
CREATE TABLE film (Studio VARCHAR, Director VARCHAR)