question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Who was the high scorer and how much did they score in the game on May 3?
CREATE TABLE table_11963601_11 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_11963601_11 WHERE date = "May 3"
List all the model names sorted by their launch year.
CREATE TABLE chip_model (model_name VARCHAR, launch_year VARCHAR)
SELECT model_name FROM chip_model ORDER BY launch_year
Name the originl title for no stars in the jungle
CREATE TABLE table_20963074_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_20963074_1 WHERE film_title_used_in_nomination = "No Stars in the Jungle"
Which dam type was completed in 1961?
CREATE TABLE table_name_90 (dam_type VARCHAR, year_completed VARCHAR)
SELECT dam_type FROM table_name_90 WHERE year_completed = 1961
What is the Milepost of the Twin Tunnel #1 North?
CREATE TABLE table_name_74 (milepost VARCHAR, name_of_the_tunnel VARCHAR)
SELECT COUNT(milepost) FROM table_name_74 WHERE name_of_the_tunnel = "twin tunnel #1 north"
Which Score has a Series of flyers lead 3–2?
CREATE TABLE table_name_17 (score VARCHAR, series VARCHAR)
SELECT score FROM table_name_17 WHERE series = "flyers lead 3–2"
Who was the opponent on December 27?
CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_17360840_6 WHERE date = "December 27"
In which tournament did Al Geiberger finish runner-up?
CREATE TABLE table_name_2 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_2 WHERE runner_s__up = "al geiberger"
What is British, when Australian is "i, ɪ, ə", and when Examples is "œsophagus"?
CREATE TABLE table_name_83 (british VARCHAR, australian VARCHAR, examples VARCHAR)
SELECT british FROM table_name_83 WHERE australian = "i, ɪ, ə" AND examples = "œsophagus"
what round saw the ground of telstra dome and shaun burgoyne as nominees?
CREATE TABLE table_name_79 (round INTEGER, ground VARCHAR, nominees VARCHAR)
SELECT MAX(round) FROM table_name_79 WHERE ground = "telstra dome" AND nominees = "shaun burgoyne"
What is the district with 79 constituency number?
CREATE TABLE table_name_13 (district VARCHAR, constituency_number VARCHAR)
SELECT district FROM table_name_13 WHERE constituency_number = "79"
Who is the rider where the horse is galan de sauvagere?
CREATE TABLE table_18666752_3 (rider VARCHAR, horse VARCHAR)
SELECT rider FROM table_18666752_3 WHERE horse = "Galan De Sauvagere"
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 T1.Season, T1.Player, T2.Name FROM match_season AS T1 JOIN team AS T2 ON T1.Team = T2.Team_id
What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?
CREATE TABLE table_1341598_44 (first_elected INTEGER, candidates VARCHAR)
SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = "Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%"
What was the winning score for the tournament played on Jul 14, 1973?
CREATE TABLE table_name_96 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_96 WHERE date = "jul 14, 1973"
What is the result F_A on 17 December 2002?
CREATE TABLE table_name_60 (result_f_a VARCHAR, date VARCHAR)
SELECT result_f_a FROM table_name_60 WHERE date = "17 december 2002"
What was the money value for Jerry Pate?
CREATE TABLE table_name_43 (money___$__ VARCHAR, player VARCHAR)
SELECT money___$__ FROM table_name_43 WHERE player = "jerry pate"
How many points are obtained when a standing broad jump is 207-215 cm?
CREATE TABLE table_name_25 (points VARCHAR, standing_broad_jump__cm_ VARCHAR)
SELECT COUNT(points) FROM table_name_25 WHERE standing_broad_jump__cm_ = "207-215"
Which Authority has a Gender of coed, a Decile smaller than 6, and an Area of merivale?
CREATE TABLE table_name_21 (authority VARCHAR, area VARCHAR, gender VARCHAR, decile VARCHAR)
SELECT authority FROM table_name_21 WHERE gender = "coed" AND decile < 6 AND area = "merivale"
Name the average rank with larger than 3 and heat more than 5
CREATE TABLE table_name_24 (rank INTEGER, lane VARCHAR, heat VARCHAR)
SELECT AVG(rank) FROM table_name_24 WHERE lane > 3 AND heat > 5
Show the number of transactions with transaction type code "SALE" for different investors if it is larger than 0.
CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR)
SELECT investor_id, COUNT(*) FROM TRANSACTIONS WHERE transaction_type_code = "SALE" GROUP BY investor_id
What was the date of the game that was played against Laura Golarsa?
CREATE TABLE table_name_85 (date VARCHAR, partnering VARCHAR)
SELECT date FROM table_name_85 WHERE partnering = "laura golarsa"
What parties have at least three representatives?
CREATE TABLE representative (Party VARCHAR)
SELECT Party FROM representative GROUP BY Party HAVING COUNT(*) >= 3
What is the amount of assists for richmond kickers and points larger than 24
CREATE TABLE table_name_32 (assists INTEGER, club VARCHAR, points VARCHAR)
SELECT SUM(assists) FROM table_name_32 WHERE club = "richmond kickers" AND points > 24
What is the average region that has an Area (km 2 ) of 451.79, and a Population under 496,257?
CREATE TABLE table_name_43 (region INTEGER, area__km_2__ VARCHAR, population VARCHAR)
SELECT AVG(region) FROM table_name_43 WHERE area__km_2__ = 451.79 AND population < 496 OFFSET 257
What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?
CREATE TABLE table_name_68 (win__percentage VARCHAR, conference_titles VARCHAR, win_loss VARCHAR)
SELECT win__percentage FROM table_name_68 WHERE conference_titles = "0" AND win_loss = "20-10"
What was the score of the away team when they played at Windy Hill?
CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_98 WHERE venue = "windy hill"
What was the result in the game where the visiting team was Louisiana-Monroe?
CREATE TABLE table_26842217_12 (result VARCHAR, visiting_team VARCHAR)
SELECT result FROM table_26842217_12 WHERE visiting_team = "Louisiana-Monroe"
What is the date of the game against the Lizards with a result of w 18-17?
CREATE TABLE table_name_18 (date VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT date FROM table_name_18 WHERE opponent = "lizards" AND result = "w 18-17"
How many people attended the home game against the New York Jets?
CREATE TABLE table_name_61 (attendance INTEGER, opponent VARCHAR)
SELECT SUM(attendance) FROM table_name_61 WHERE opponent = "new york jets"
What team has 59.372 for qual 1?
CREATE TABLE table_name_37 (team VARCHAR, qual_1 VARCHAR)
SELECT team FROM table_name_37 WHERE qual_1 = "59.372"
What are the titles of papers published by "Jeremy Gibbons"?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Jeremy" AND t1.lname = "Gibbons"
What principal has a school mascot of the patriots?
CREATE TABLE table_name_92 (principal VARCHAR, mascot VARCHAR)
SELECT principal FROM table_name_92 WHERE mascot = "patriots"
Which season has rank 2?
CREATE TABLE table_name_35 (season VARCHAR, rank VARCHAR)
SELECT season FROM table_name_35 WHERE rank = "2"
How many years as tallest building was the Tenth Presbyterian Church?
CREATE TABLE table_name_78 (years_as_tallest VARCHAR, name VARCHAR)
SELECT years_as_tallest FROM table_name_78 WHERE name = "tenth presbyterian church"
Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103.
CREATE TABLE trip (id VARCHAR, duration INTEGER, zip_code VARCHAR)
SELECT id FROM trip WHERE duration >= (SELECT AVG(duration) FROM trip WHERE zip_code = 94103)
What is the population density for the city of lubang?
CREATE TABLE table_261951_1 (pop_density__per_km²_ VARCHAR, municipality VARCHAR)
SELECT COUNT(pop_density__per_km²_) FROM table_261951_1 WHERE municipality = "Lubang"
How many children did Dennis Hawley have at his time of death?
CREATE TABLE table_24143253_2 (children_together VARCHAR, deceased_spouse VARCHAR)
SELECT children_together FROM table_24143253_2 WHERE deceased_spouse = "Dennis Hawley"
What was the result in the year greaters than 2008 with an award of Jahat and had a category of Stacy?
CREATE TABLE table_name_51 (result VARCHAR, awards VARCHAR, category VARCHAR, year VARCHAR)
SELECT result FROM table_name_51 WHERE category = "stacy" AND year > 2008 AND awards = "jahat"
When is the French Open when serena williams is the player?
CREATE TABLE table_197638_7 (french_open INTEGER, player VARCHAR)
SELECT MIN(french_open) FROM table_197638_7 WHERE player = "Serena Williams"
What character is portrayed by Joe Jonas?
CREATE TABLE table_name_59 (character VARCHAR, portrayed_by VARCHAR)
SELECT character FROM table_name_59 WHERE portrayed_by = "joe jonas"
How many golds have 3 as the rank, with a total greater than 7?
CREATE TABLE table_name_17 (gold VARCHAR, rank VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_17 WHERE rank = "3" AND total > 7
What album is 4:53 long?
CREATE TABLE table_name_74 (album VARCHAR, length VARCHAR)
SELECT album FROM table_name_74 WHERE length = "4:53"
What is the average number of golds in athletics associated with over 42 silvers?
CREATE TABLE table_name_66 (gold INTEGER, sport VARCHAR, silver VARCHAR)
SELECT AVG(gold) FROM table_name_66 WHERE sport = "athletics" AND silver > 42
Who was treasurer in 2008?
CREATE TABLE table_18052353_4 (treasurer VARCHAR, year VARCHAR)
SELECT treasurer FROM table_18052353_4 WHERE year = "2008"
Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)
CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR)
SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)"
When November is 153 what is the March number?
CREATE TABLE table_25235489_2 (march_27_29 VARCHAR, november_3 VARCHAR)
SELECT march_27_29 FROM table_25235489_2 WHERE november_3 = "153"
Which Player is linebacker and has a pick larger than 28?
CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, pick VARCHAR)
SELECT player FROM table_name_69 WHERE position = "linebacker" AND pick > 28
Who is the player that has a round greater than 2 and a pick bigger than 83?
CREATE TABLE table_name_5 (player VARCHAR, round VARCHAR, pick VARCHAR)
SELECT player FROM table_name_5 WHERE round > 2 AND pick > 83
What are the response received dates for the documents described as 'Regular' or granted with more than 100?
CREATE TABLE Documents (response_received_date VARCHAR, document_type_code VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, grant_amount VARCHAR)
SELECT T1.response_received_date FROM Documents AS T1 JOIN Document_Types AS T2 ON T1.document_type_code = T2.document_type_code JOIN Grants AS T3 ON T1.grant_id = T3.grant_id WHERE T2.document_description = 'Regular' OR T3.grant_amount > 100
Who was eliminated when the vote was 8-1?
CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR)
SELECT eliminated FROM table_25016824_2 WHERE vote = "8-1"
Which Game has a Record of 27–30?
CREATE TABLE table_name_99 (game INTEGER, record VARCHAR)
SELECT SUM(game) FROM table_name_99 WHERE record = "27–30"
Show the authors who have submissions to more than one workshop.
CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (Submission_ID VARCHAR, workshop_id VARCHAR)
SELECT T2.Author FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID GROUP BY T2.Author HAVING COUNT(DISTINCT T1.workshop_id) > 1
Who was the male rep. when Caroline Rhoads was the artistic director?
CREATE TABLE table_22410780_1 (male_rep VARCHAR, artistic_director VARCHAR)
SELECT male_rep FROM table_22410780_1 WHERE artistic_director = "Caroline Rhoads"
Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)?
CREATE TABLE table_name_78 (second VARCHAR, lead VARCHAR)
SELECT second FROM table_name_78 WHERE lead = "sarah macintyre (jr) anne laird (w)"
who is the player for the position defence and the college/junior/club team is ottawa 67's (ohl)?
CREATE TABLE table_2679061_1 (player VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_2679061_1 WHERE position = "Defence" AND college_junior_club_team = "Ottawa 67's (OHL)"
What is the name of the church that is located in florø?
CREATE TABLE table_name_29 (church_name VARCHAR, location_of_the_church VARCHAR)
SELECT church_name FROM table_name_29 WHERE location_of_the_church = "florø"
Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228?
CREATE TABLE table_name_67 (pick__number INTEGER, overall VARCHAR, name VARCHAR, round VARCHAR, position VARCHAR)
SELECT AVG(pick__number) FROM table_name_67 WHERE round > 5 AND position = "wide receiver" AND name = "gregory spann" AND overall > 228
Who won Bronze with notes of 2.5km, 14controls?
CREATE TABLE table_name_60 (bronze VARCHAR, notes VARCHAR)
SELECT bronze FROM table_name_60 WHERE notes = "2.5km, 14controls"
What is the used (kb) when the graphics mode is 4?
CREATE TABLE table_18950885_3 (used__kb_ INTEGER, graphics_mode VARCHAR)
SELECT MIN(used__kb_) FROM table_18950885_3 WHERE graphics_mode = 4
What is the code for Latvian Lats?
CREATE TABLE table_name_21 (code VARCHAR, currency VARCHAR)
SELECT code FROM table_name_21 WHERE currency = "latvian lats"
When was the game played where St Kilda was the home team?
CREATE TABLE table_name_4 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_4 WHERE home_team = "st kilda"
Which date is in CD format?
CREATE TABLE table_name_70 (date VARCHAR, format VARCHAR)
SELECT date FROM table_name_70 WHERE format = "cd"
What's the class when the identifier is cbf-fm-14?
CREATE TABLE table_name_94 (class VARCHAR, identifier VARCHAR)
SELECT class FROM table_name_94 WHERE identifier = "cbf-fm-14"
What was the Attendance on Week 8?
CREATE TABLE table_name_70 (attendance INTEGER, week VARCHAR)
SELECT AVG(attendance) FROM table_name_70 WHERE week = 8
What is the pali word for rāga in sanskrit?
CREATE TABLE table_name_77 (pali VARCHAR, sanskrit VARCHAR)
SELECT pali FROM table_name_77 WHERE sanskrit = "rāga"
List the venues of debates in ascending order of the number of audience.
CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR)
SELECT Venue FROM debate ORDER BY Num_of_Audience
What is Record, when High Points is "Ray Allen (20)"?
CREATE TABLE table_name_98 (record VARCHAR, high_points VARCHAR)
SELECT record FROM table_name_98 WHERE high_points = "ray allen (20)"
Which Source has a Undecided of 2%?
CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR)
SELECT source FROM table_name_46 WHERE undecided = "2%"
How many S.R. that has Runs Scored of 161 and an Average larger than 26.83?
CREATE TABLE table_name_35 (sr INTEGER, runs_scored VARCHAR, average VARCHAR)
SELECT SUM(sr) FROM table_name_35 WHERE runs_scored = 161 AND average > 26.83
What is the Raptors' record against New Jersey?
CREATE TABLE table_15780718_9 (record VARCHAR, team VARCHAR)
SELECT record FROM table_15780718_9 WHERE team = "New Jersey"
How many different total results are there for the model with parchment/black interior/roof?
CREATE TABLE table_2066296_5 (totals VARCHAR, interior_roof VARCHAR)
SELECT COUNT(totals) FROM table_2066296_5 WHERE interior_roof = "Parchment/black"
From which school did the Minnesota Twins SS come from?
CREATE TABLE table_name_50 (school VARCHAR, team VARCHAR, position VARCHAR)
SELECT school FROM table_name_50 WHERE team = "minnesota twins" AND position = "ss"
What Tries against that have a Points against of 95 and Tries for larger than 20?
CREATE TABLE table_name_91 (tries_against INTEGER, points_against VARCHAR, tries_for VARCHAR)
SELECT SUM(tries_against) FROM table_name_91 WHERE points_against = 95 AND tries_for > 20
Which Rating has a Centre of helsinki?
CREATE TABLE table_name_88 (rating INTEGER, centre VARCHAR)
SELECT SUM(rating) FROM table_name_88 WHERE centre = "helsinki"
When 1.12 is the production code what is the original title?
CREATE TABLE table_20124413_1 (original_title VARCHAR, prod_code VARCHAR)
SELECT original_title FROM table_20124413_1 WHERE prod_code = "1.12"
What is the maximum number of 2nd places for Tajikistan?
CREATE TABLE table_2876467_3 (second_place INTEGER, region_represented VARCHAR)
SELECT MAX(second_place) FROM table_2876467_3 WHERE region_represented = "Tajikistan"
What Miss Maja Pilipinas has a Binibining Pilipinas-Tourism of not awarded, and a Binibining Pilipinas-Universe of anjanette abayari?
CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, binibining_pilipinas_tourism VARCHAR, binibining_pilipinas_universe VARCHAR)
SELECT miss_maja_pilipinas FROM table_name_30 WHERE binibining_pilipinas_tourism = "not awarded" AND binibining_pilipinas_universe = "anjanette abayari"
Who is the opponent in 1992?
CREATE TABLE table_name_17 (opponent VARCHAR, year VARCHAR)
SELECT opponent FROM table_name_17 WHERE year = "1992"
what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)?
CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR)
SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = "13 ships for usmc (plus 37 more for usn)"
Which Round was F picked?
CREATE TABLE table_name_5 (round VARCHAR, position VARCHAR)
SELECT round FROM table_name_5 WHERE position = "f"
What pregame analyst(s) had rob stone and monica gonzalez as sideline reporters and were on tsn2?
CREATE TABLE table_17516922_1 (pregame_analysts VARCHAR, sideline_reporters VARCHAR, network VARCHAR)
SELECT pregame_analysts FROM table_17516922_1 WHERE sideline_reporters = "Rob Stone and Monica Gonzalez" AND network = "TSN2"
Which Opponent has a Streak of lost 1, and a Date of april 30?
CREATE TABLE table_name_10 (opponent VARCHAR, streak VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_10 WHERE streak = "lost 1" AND date = "april 30"
What is the rnd for gt1 winning team for doc bundy andy wallace?
CREATE TABLE table_12146068_2 (rnd VARCHAR, gt1_winning_team VARCHAR)
SELECT rnd FROM table_12146068_2 WHERE gt1_winning_team = "Doc Bundy Andy Wallace"
Which April has a Game of 84
CREATE TABLE table_name_54 (april INTEGER, game VARCHAR)
SELECT MAX(april) FROM table_name_54 WHERE game = 84
Name the record for score of w 76-67
CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR)
SELECT record FROM table_17104539_9 WHERE score = "W 76-67"
Show the company name with the number of gas station.
CREATE TABLE station_company (company_id VARCHAR); CREATE TABLE company (company VARCHAR, company_id VARCHAR)
SELECT T2.company, COUNT(*) FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id GROUP BY T1.company_id
When was the opposition sydney fc on round 19?
CREATE TABLE table_name_33 (date VARCHAR, opposition VARCHAR, round VARCHAR)
SELECT date FROM table_name_33 WHERE opposition = "sydney fc" AND round = "round 19"
Who received 6,131 televotes?
CREATE TABLE table_name_1 (televote_points VARCHAR, televotes VARCHAR)
SELECT televote_points FROM table_name_1 WHERE televotes = "6,131"
What were the high points on september 9?
CREATE TABLE table_name_16 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_16 WHERE date = "september 9"
What date has a loan expires date of end of the season, and a Position of mf?
CREATE TABLE table_name_87 (date VARCHAR, loan_expires VARCHAR, position VARCHAR)
SELECT date FROM table_name_87 WHERE loan_expires = "end of the season" AND position = "mf"
What was the largest capacity when the club was F.C. Igea Virtus Barcellona?
CREATE TABLE table_name_30 (capacity INTEGER, club VARCHAR)
SELECT MAX(capacity) FROM table_name_30 WHERE club = "f.c. igea virtus barcellona"
Who were the original artist(s) on harder to breathe?
CREATE TABLE table_28715942_2 (original_artist VARCHAR, track VARCHAR)
SELECT original_artist FROM table_28715942_2 WHERE track = "Harder To Breathe"
what's the record with date being december 29
CREATE TABLE table_13762472_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_13762472_4 WHERE date = "December 29"
What date was an episode broadcasted on that had a run time of 24:40?
CREATE TABLE table_2102714_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_2102714_1 WHERE run_time = "24:40"
What are the highest points with 2012 as the year?
CREATE TABLE table_name_70 (points INTEGER, year VARCHAR)
SELECT MAX(points) FROM table_name_70 WHERE year = "2012"
What was the average number of fastest laps with less than 0 poles?
CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER)
SELECT AVG(fastest_laps) FROM table_name_5 WHERE poles < 0
What's the version of Itu g.992.3 Annex J?
CREATE TABLE table_name_97 (version VARCHAR, standard_name VARCHAR)
SELECT version FROM table_name_97 WHERE standard_name = "itu g.992.3 annex j"
What is the part number for s-spec number sk096?
CREATE TABLE table_15261_1 (part_number VARCHAR, s_spec_number VARCHAR)
SELECT part_number FROM table_15261_1 WHERE s_spec_number = "SK096"
Which Lead has a Nation of croatia?
CREATE TABLE table_name_99 (lead VARCHAR, nation VARCHAR)
SELECT lead FROM table_name_99 WHERE nation = "croatia"