answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT AVG(enrollment) FROM table_name_99 WHERE school = "lebanon"
What is lebanon's enrollment?
CREATE TABLE table_name_99 (enrollment INTEGER, school VARCHAR)
SELECT COUNT(rnd) FROM table_22670216_1 WHERE location = "Brooklyn, Michigan" AND pole_position = "Bobby Unser"
If the location is Brooklyn, Michigan and the pole position is Bobby Unser, what is the RND total number?
CREATE TABLE table_22670216_1 (rnd VARCHAR, location VARCHAR, pole_position VARCHAR)
SELECT MIN(score) FROM table_name_70 WHERE place = "t5" AND player = "bob tway"
What is the lowest score that Bob Tway get when he placed t5?
CREATE TABLE table_name_70 (score INTEGER, place VARCHAR, player VARCHAR)
SELECT prize_money FROM table_27973624_1 WHERE clubs = "392 → 276"
What is the prize money when the clubs is 392 → 276?
CREATE TABLE table_27973624_1 (prize_money VARCHAR, clubs VARCHAR)
SELECT report FROM table_20884163_2 WHERE race_title = "Winton"
What was the report for the winton race?
CREATE TABLE table_20884163_2 (report VARCHAR, race_title VARCHAR)
SELECT MIN(start) FROM table_name_71 WHERE player = "fero lasagavibau"
For the player fero lasagavibau who has the lowest start?
CREATE TABLE table_name_71 (start INTEGER, player VARCHAR)
SELECT club FROM table_name_78 WHERE rank = "5"
What is the name of the club with a rank of 5?
CREATE TABLE table_name_78 (club VARCHAR, rank VARCHAR)
SELECT MIN(place) FROM table_name_50 WHERE televotes = 15424
What is the lowest Place, when Televotes is 15424?
CREATE TABLE table_name_50 (place INTEGER, televotes VARCHAR)
SELECT time FROM table_name_75 WHERE opponent = "phil baroni"
Can you tell me the Time that has the Opponent of phil baroni?
CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR)
SELECT district FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens"
William Fadjo Cravens serves the fourth district of Arkansas.
CREATE TABLE table_1342270_5 (district VARCHAR, incumbent VARCHAR)
SELECT AVG(round) FROM table_name_48 WHERE college = "usf" AND pick__number < 24
What is the average round that the player from USF was picked in when his draft pick number was less than 24?
CREATE TABLE table_name_48 (round INTEGER, college VARCHAR, pick__number VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_5 WHERE original_title = "matrimonio all'italiana"
What title was used in the nomination of Matrimonio All'Italiana?
CREATE TABLE table_name_5 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT final_standing FROM table_name_58 WHERE years = "1981–82"
What is the final standing in 1981–82?
CREATE TABLE table_name_58 (final_standing VARCHAR, years VARCHAR)
SELECT AVG(gold) FROM table_name_47 WHERE nation = "netherlands" AND bronze > 4
What is the average number of gold medals the netherlands got when they had more than 4 bronze medals?
CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT opponent FROM table_name_16 WHERE score = "6-2"
When the Score was 6-2, which Opponent was played?
CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)
SELECT dob FROM table_name_19 WHERE surname = "ryan"
When is mr. ryan's DOB?
CREATE TABLE table_name_19 (dob VARCHAR, surname VARCHAR)
SELECT sail_number FROM table_25561560_3 WHERE yacht = "Two True"
What was the sail number of Two True?
CREATE TABLE table_25561560_3 (sail_number VARCHAR, yacht VARCHAR)
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"
Show names for all aircrafts of which John Williams has certificates.
CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Employee (eid VARCHAR, name VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR)
SELECT elevator FROM table_name_50 WHERE elevated = "september 21, 1179"
What is the Elevator of the Elected Elevated on September 21, 1179?
CREATE TABLE table_name_50 (elevator VARCHAR, elevated VARCHAR)
SELECT channel FROM table_name_71 WHERE play_by_play = "joel meyers"
Which channel has Joel Meyers as the Play by play commentator?
CREATE TABLE table_name_71 (channel VARCHAR, play_by_play VARCHAR)
SELECT year__ceremony_ FROM table_20963074_1 WHERE original_title = "Reportaje a la muerte"
Name the year for reportaje a la muerte
CREATE TABLE table_20963074_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT location_attendance FROM table_22654073_7 WHERE record = "22-8"
Name the location attendance for 22-8
CREATE TABLE table_22654073_7 (location_attendance VARCHAR, record VARCHAR)
SELECT remaining_places_in_finals FROM table_23995075_2 WHERE teams_that_can_still_qualify = "1" AND teams_that_have_secured_qualification = "0"
How many remaining places in finals when 1 team can still qualify and 0 teams have secured qualification?
CREATE TABLE table_23995075_2 (remaining_places_in_finals VARCHAR, teams_that_can_still_qualify VARCHAR, teams_that_have_secured_qualification VARCHAR)
SELECT COUNT(round) FROM table_name_13 WHERE name = "jamaal charles"
How many rounds does Jamaal Charles have?
CREATE TABLE table_name_13 (round VARCHAR, name VARCHAR)
SELECT season FROM table_27274566_2 WHERE result = "1–0 (aet)"
Which season had a result of 1–0 (aet)?
CREATE TABLE table_27274566_2 (season VARCHAR, result VARCHAR)
SELECT fifth_district FROM table_15442974_1 WHERE fourth_district = "Steve Rudoni"
Name the fifth district for steve rudoni
CREATE TABLE table_15442974_1 (fifth_district VARCHAR, fourth_district VARCHAR)
SELECT final_placing FROM table_name_12 WHERE poles = 0 AND races > 16 AND podiums = 16
What is the final placing of the team with 0 ples, more than 16 races, and 16 podiums?
CREATE TABLE table_name_12 (final_placing VARCHAR, podiums VARCHAR, poles VARCHAR, races VARCHAR)
SELECT MIN(loss) FROM table_name_75 WHERE name = "antwon bailey" AND gain > 227
What was the total yards lost by antwon bailey when he gained 227?
CREATE TABLE table_name_75 (loss INTEGER, name VARCHAR, gain VARCHAR)
SELECT position FROM table_name_89 WHERE school_club_team = "illinois"
Which Position has a School/Club Team of illinois?
CREATE TABLE table_name_89 (position VARCHAR, school_club_team VARCHAR)
SELECT grid FROM table_name_85 WHERE driver = "johnny dumfries"
Which Grid has a Driver of johnny dumfries?
CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR)
SELECT MAX(points) FROM table_name_88 WHERE extra_points = 0 AND touchdowns < 2
What is the highest number of points for players with less than 2 touchdowns and 0 extra points?
CREATE TABLE table_name_88 (points INTEGER, extra_points VARCHAR, touchdowns VARCHAR)
SELECT outgoing_manager FROM table_name_80 WHERE replaced_by = "thomas von heesen"
Who was the outgoing manager that was replaced by Thomas Von Heesen?
CREATE TABLE table_name_80 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT citizenship FROM singer GROUP BY citizenship ORDER BY COUNT(*) DESC LIMIT 1
What is the most common singer citizenship ?
CREATE TABLE singer (citizenship VARCHAR)
SELECT first_name, last_name FROM Customers
List the first name and last name of all customers.
CREATE TABLE Customers (first_name VARCHAR, last_name VARCHAR)
SELECT location FROM table_name_96 WHERE competition = "europe/africa zone, group i, round robin" AND result = "win" AND year < 1998
What location did the team win before 1998 in the europe/africa zone, group i, round robin?
CREATE TABLE table_name_96 (location VARCHAR, year VARCHAR, competition VARCHAR, result VARCHAR)
SELECT mass FROM table_name_54 WHERE designation = "prognoz 2"
What is Mass, when Designation is Prognoz 2?
CREATE TABLE table_name_54 (mass VARCHAR, designation VARCHAR)
SELECT visitor FROM table_name_18 WHERE leading_scorer = "tim duncan (16)"
What visitor has tim duncan (16) as the leading scorer?
CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR)
SELECT T1.total FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T2.Birth_Date LIKE "%January%"
What are the total scores of the body builders whose birthday contains the string "January" ?
CREATE TABLE people (people_id VARCHAR, Birth_Date VARCHAR); CREATE TABLE body_builder (total VARCHAR, people_id VARCHAR)
SELECT artist FROM table_name_41 WHERE single___pack = "guitar hero track pack 1"
What is the name of the artist with a Single / Pack of guitar hero track pack 1?
CREATE TABLE table_name_41 (artist VARCHAR, single___pack VARCHAR)
SELECT AVG(market_value__us) AS $_billion_ FROM table_name_87 WHERE revenues__us$_billion_ > 6.2 AND company = "national bank of greece" AND rank < 1
What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1?
CREATE TABLE table_name_87 (market_value__us INTEGER, rank VARCHAR, revenues__us$_billion_ VARCHAR, company VARCHAR)
SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455
How many had a length of 455?
CREATE TABLE table_16654785_2 (name VARCHAR, length__m_ VARCHAR)
SELECT position FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils"
Which position has new Jersey Devils as the nhl team?
CREATE TABLE table_2897457_3 (position VARCHAR, nhl_team VARCHAR)
SELECT MAX(pennant_number) FROM table_name_54 WHERE ships_in_class = "raahe"
What is the highest pennant number with ships in raahe class?
CREATE TABLE table_name_54 (pennant_number INTEGER, ships_in_class VARCHAR)
SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic"
What brakes for the 4-speed automatic gearbox?
CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR)
SELECT pick FROM table_name_16 WHERE overall < 297 AND college = "alabama"
what is the pick when the overall is less than 297 and the college is alabama?
CREATE TABLE table_name_16 (pick VARCHAR, overall VARCHAR, college VARCHAR)
SELECT no_s_ FROM table_name_29 WHERE school_club_team_country = "virginia"
What is the number of the player who came from Virginia?
CREATE TABLE table_name_29 (no_s_ VARCHAR, school_club_team_country VARCHAR)
SELECT speed FROM table_name_1 WHERE rider = "brian mateer"
What is Brian Mateer's Speed?
CREATE TABLE table_name_1 (speed VARCHAR, rider VARCHAR)
SELECT MAX(share) FROM table_25304789_1
What was the highest share?
CREATE TABLE table_25304789_1 (share INTEGER)
SELECT team_captain FROM table_name_42 WHERE stadium = "regenboogstadion"
Who is the team captain of Regenboogstadion?
CREATE TABLE table_name_42 (team_captain VARCHAR, stadium VARCHAR)
SELECT college FROM table_14999879_2 WHERE player = "Steve Justice"
What college did steve justice attend?
CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR)
SELECT COUNT(2011) FROM table_name_45 WHERE 2008 > 346.5 AND 2009 = 392 AND 2010 > 354.6
What is the 2011 total with a 2008 value greater than 346.5, a 2009 value of 392, and a 2010 value bigger than 354.6?
CREATE TABLE table_name_45 (Id VARCHAR)
SELECT work FROM table_name_19 WHERE award = "newcomer actress"
Where Award is newcomer actress, what is the work?
CREATE TABLE table_name_19 (work VARCHAR, award VARCHAR)
SELECT COUNT(title) FROM table_17356205_1 WHERE directed_by = "Joanna Kerns"
How many titles are given for the episode directed by Joanna Kerns?
CREATE TABLE table_17356205_1 (title VARCHAR, directed_by VARCHAR)
SELECT score FROM table_name_18 WHERE game = 3
What was the score for Game 3?
CREATE TABLE table_name_18 (score VARCHAR, game VARCHAR)
SELECT internet_explorer FROM table_name_31 WHERE safari = "7.89%" AND chrome = "8.22%"
What internet explorer has 7.89% as the safari, and 8.22% as the chrome?
CREATE TABLE table_name_31 (internet_explorer VARCHAR, safari VARCHAR, chrome VARCHAR)
SELECT goals FROM table_1218784_1 WHERE season = "2005-06"
How many goals were scored in the 2005-06 season?
CREATE TABLE table_1218784_1 (goals VARCHAR, season VARCHAR)
SELECT score FROM table_name_75 WHERE opponent = "royals" AND record = "24–52"
What was the score of the game against the Royals when the record was 24–52?
CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT COUNT(year_joined) FROM table_20887670_1 WHERE colors = "Red and Gold"
in what year did the colors red and gold join?
CREATE TABLE table_20887670_1 (year_joined VARCHAR, colors VARCHAR)
SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25
How many Assists for the Player with a Rank greater than 3 in less than 25 Games?
CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR)
SELECT elimination AS Move FROM table_name_88 WHERE wrestler = "maria"
What is Maria's Elimination Move?
CREATE TABLE table_name_88 (elimination VARCHAR, wrestler VARCHAR)
SELECT date FROM table_name_14 WHERE registration = "tc-jes"
When was the registration of tc-jes?
CREATE TABLE table_name_14 (date VARCHAR, registration VARCHAR)
SELECT SUM(T1.budgeted) FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = 'Glenn'
What is the total budget amount for school "Glenn" in all years?
CREATE TABLE budget (budgeted INTEGER, school_id VARCHAR); CREATE TABLE school (school_id VARCHAR, school_name VARCHAR)
SELECT date FROM table_name_41 WHERE tie_no = "2"
On which date was the Tie no 2?
CREATE TABLE table_name_41 (date VARCHAR, tie_no VARCHAR)
SELECT AVG(year) FROM table_name_19 WHERE copies_sold = "1,695,900+" AND oricon_position > 1
What year sold 1,695,900+ copies with an Oricon position larger than 1?
CREATE TABLE table_name_19 (year INTEGER, copies_sold VARCHAR, oricon_position VARCHAR)
SELECT MAX(attendance) FROM table_name_18 WHERE record = "8–1" AND week > 9
Record of 8–1, and a Week larger than 9 had what highest attendance?
CREATE TABLE table_name_18 (attendance INTEGER, record VARCHAR, week VARCHAR)
SELECT SUM(seats) FROM table_name_53 WHERE quantity > 45
How many seats have a quantity over 45?
CREATE TABLE table_name_53 (seats INTEGER, quantity INTEGER)
SELECT socket FROM table_name_69 WHERE part_number_s_ = "au80610003495aa"
What is Socket, when Part Number(s) is au80610003495aa?
CREATE TABLE table_name_69 (socket VARCHAR, part_number_s_ VARCHAR)
SELECT season FROM table_name_82 WHERE player = "jon stefansson"
What Season is listed for the Player of Jon Stefansson?
CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR)
SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = "Sales Person" EXCEPT SELECT T1.staff_name, T1.staff_gender FROM staff AS T1 JOIN Staff_Department_Assignments AS T2 ON T1.staff_id = T2.staff_id WHERE T2.job_title_code = "Clerical Staff"
Find the name and gender of the staff who has been assigned the job of Sales Person but never Clerical Staff.
CREATE TABLE staff (staff_name VARCHAR, staff_gender VARCHAR, staff_id VARCHAR); CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR, job_title_code VARCHAR)
SELECT MAX(series__number) FROM table_21146729_6 WHERE original_airdate = "October 23, 1967"
What was the series# with the original airdate of october 23, 1967?
CREATE TABLE table_21146729_6 (series__number INTEGER, original_airdate VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE time = "0:39"
What round had a time of 0:39?
CREATE TABLE table_name_21 (round INTEGER, time VARCHAR)
SELECT COUNT(institution) FROM table_27599216_6 WHERE football_stadium = "Mosaic Stadium"
How many institutions are shown for the football stadium of mosaic stadium?
CREATE TABLE table_27599216_6 (institution VARCHAR, football_stadium VARCHAR)
SELECT year FROM table_name_13 WHERE actress = "shelley winters"
What year did Shelley Winters win?
CREATE TABLE table_name_13 (year VARCHAR, actress VARCHAR)
SELECT MAX(year_named) FROM table_name_1 WHERE name = "nahete colles"
What is the year that nahete colles was named?
CREATE TABLE table_name_1 (year_named INTEGER, name VARCHAR)
SELECT country FROM table_name_85 WHERE place = "t4" AND score = 72 - 70 = 142
What is the country listed that has a place of t4 with a score of 72-70=142?
CREATE TABLE table_name_85 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT id, duration FROM trip ORDER BY duration DESC LIMIT 3
What are the ids and durations of the trips with the top 3 durations?
CREATE TABLE trip (id VARCHAR, duration VARCHAR)
SELECT COUNT(rank) FROM table_name_35 WHERE time = "8:23.02"
What is the Rank of the rower with a Time of 8:23.02?
CREATE TABLE table_name_35 (rank VARCHAR, time VARCHAR)
SELECT SUM(position) FROM table_name_97 WHERE against = 32 AND difference = "18" AND drawn > 4
Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4?
CREATE TABLE table_name_97 (position INTEGER, drawn VARCHAR, against VARCHAR, difference VARCHAR)
SELECT home_team FROM table_name_50 WHERE away_team = "north melbourne"
What home team played North Melbourne?
CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)
SELECT MAX(pick__number) FROM table_10650711_1 WHERE player = "Anthony Blaylock"
what is the maximum pick # where player is anthony blaylock
CREATE TABLE table_10650711_1 (pick__number INTEGER, player VARCHAR)
SELECT AVG(bronze) FROM table_name_85 WHERE total = 2 AND silver < 1 AND gold > 1
What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1?
CREATE TABLE table_name_85 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)
SELECT genre FROM table_name_9 WHERE year > 2009 AND platform_s_ = "playstation 3"
What is the genre for 2009 on Playstation 3?
CREATE TABLE table_name_9 (genre VARCHAR, year VARCHAR, platform_s_ VARCHAR)
SELECT MIN(year) FROM table_name_35 WHERE venue = "barcelona, spain"
When is the earliest year for it is in barcelona, spain?
CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR)
SELECT MIN(year) FROM table_name_20 WHERE bronze = "aimo tepsell"
WHAT IS THE YEAR WITH A BRONZE OF AIMO TEPSELL?
CREATE TABLE table_name_20 (year INTEGER, bronze VARCHAR)
SELECT winner FROM table_name_21 WHERE trainer = "no race"
What horse won with a trainer of "no race"?
CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR)
SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = "44.6%" AND bush__number > 163 OFFSET 650
How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?
CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR)
SELECT english_translation FROM table_1740431_3 WHERE tamil_months = "mārkazhi, tai"
What is every English translation when Tamil months is Mārkazhi, Tai?
CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months VARCHAR)
SELECT institutional_authority FROM table_11869952_1 WHERE rocket_launch = "Rehbar-II"
Which authority has a rocket launch called rehbar-ii?
CREATE TABLE table_11869952_1 (institutional_authority VARCHAR, rocket_launch VARCHAR)
SELECT state__class_ FROM table_1802522_3 WHERE date_of_successors_formal_installation = "November 30, 1962"
What state had November 30, 1962 as the date of the successors formal installation?
CREATE TABLE table_1802522_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT run_2 FROM table_name_84 WHERE run_1 = "2:09.09"
What is Run 2, when Run 1 is 2:09.09?
CREATE TABLE table_name_84 (run_2 VARCHAR, run_1 VARCHAR)
SELECT geographical_regions FROM table_18618707_1 WHERE contestant = "Cristina Peña Garzon"
When cristina peña garzon is the contestant what is the geographical region?
CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, contestant VARCHAR)
SELECT texas FROM table_name_92 WHERE north_dakota = "johnson"
What Texas has Johnson from Nort Dakota?
CREATE TABLE table_name_92 (texas VARCHAR, north_dakota VARCHAR)
SELECT COUNT(season) FROM table_16446652_1 WHERE treasurer = "Dave Reid"
How many seasons was Dave Reid treasurer?
CREATE TABLE table_16446652_1 (season VARCHAR, treasurer VARCHAR)
SELECT 1997 FROM table_name_72 WHERE 1999 = "1r" AND 1992 = "qf" AND 1995 = "1r"
What's the 1997 when 1992 is QF, 1995 is 1R, and 1999 is 1R?
CREATE TABLE table_name_72 (Id VARCHAR)
SELECT drawn FROM table_12792876_2 WHERE tries_against = "30"
How many draws were there when there were 30 tries against?
CREATE TABLE table_12792876_2 (drawn VARCHAR, tries_against VARCHAR)
SELECT race FROM table_name_4 WHERE pole_position = "alberto ascari" AND winning_driver = "alberto ascari" AND fastest_lap = "luigi villoresi"
Which race did Alberto Ascari have both the Pole position and the win, but Luigi Villoresi set the fastest lap time?
CREATE TABLE table_name_4 (race VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
SELECT home_team FROM table_name_9 WHERE venue = "western oval"
What home team played at western oval?
CREATE TABLE table_name_9 (home_team VARCHAR, venue VARCHAR)
SELECT AVG(played) FROM table_name_91 WHERE wins < 11 AND goals_for > 42 AND points > 22 AND losses = 11
What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?
CREATE TABLE table_name_91 (played INTEGER, losses VARCHAR, points VARCHAR, wins VARCHAR, goals_for VARCHAR)
SELECT segment_c FROM table_name_92 WHERE segment_b = "s pineapple"
When segment B is s pineapple, what is the segment C?
CREATE TABLE table_name_92 (segment_c VARCHAR, segment_b VARCHAR)
SELECT nationality FROM table_name_94 WHERE player = "shaun sabol"
What is the nationality of Shaun Sabol?
CREATE TABLE table_name_94 (nationality VARCHAR, player VARCHAR)