question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the Name, when the Position is W, and when the Jersey # is 11?
CREATE TABLE table_name_73 (name VARCHAR, position VARCHAR, jersey__number VARCHAR)
SELECT name FROM table_name_73 WHERE position = "w" AND jersey__number = 11
What is Date, when Runner(s)-Up is "Bo-Mee Lee"?
CREATE TABLE table_name_65 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_65 WHERE runner_s__up = "bo-mee lee"
What is the most byes with 11 wins and fewer than 1867 againsts?
CREATE TABLE table_name_95 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT MAX(byes) FROM table_name_95 WHERE against < 1867 AND wins = 11
When was the runner-up Jane Geddes?
CREATE TABLE table_name_35 (year VARCHAR, runner_up VARCHAR)
SELECT year FROM table_name_35 WHERE runner_up = "jane geddes"
What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"?
CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR)
SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"
If the production code is 6.18, what was the episode title?
CREATE TABLE table_2226817_7 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_2226817_7 WHERE production_code = "6.18"
who is the opponent where tv is abc and game site is tampa stadium
CREATE TABLE table_11406866_2 (opponent VARCHAR, tv VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_11406866_2 WHERE tv = "ABC" AND game_site = "Tampa Stadium"
How many games in February have a record of 40-15-5?
CREATE TABLE table_name_8 (february INTEGER, record VARCHAR)
SELECT SUM(february) FROM table_name_8 WHERE record = "40-15-5"
What is the production code for the number 5 series ?
CREATE TABLE table_26801821_1 (production_code VARCHAR, no_in_series VARCHAR)
SELECT production_code FROM table_26801821_1 WHERE no_in_series = 5
Which American Labor candidate is running against the Socialist candidate Herman J. Hahn?
CREATE TABLE table_name_55 (american_labor_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT american_labor_ticket FROM table_name_55 WHERE socialist_ticket = "herman j. hahn"
How many participants belong to the type 'Organizer'?
CREATE TABLE participants (participant_type_code VARCHAR)
SELECT COUNT(*) FROM participants WHERE participant_type_code = 'Organizer'
When was the attendance 1,034?
CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR)
SELECT MIN(date) FROM table_name_51 WHERE attendance = "1,034"
List the possible children per donor levels for countries where the allowed recipients is no data.
CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "no data"
Which Platform / OS has a Name of altova umodel?
CREATE TABLE table_name_97 (platform___os VARCHAR, name VARCHAR)
SELECT platform___os FROM table_name_97 WHERE name = "altova umodel"
What is the total that had an event of +105 kg and clean & jerk less than 227.5?
CREATE TABLE table_name_54 (total VARCHAR, event VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT COUNT(total) FROM table_name_54 WHERE event = "+105 kg" AND clean_ & _jerk < 227.5
What was the highest average when Fuml was 0?
CREATE TABLE table_name_57 (avg INTEGER, fuml INTEGER)
SELECT MAX(avg) FROM table_name_57 WHERE fuml < 0
Tell me the sum of year for extra of junior team competition
CREATE TABLE table_name_31 (year INTEGER, extra VARCHAR)
SELECT SUM(year) FROM table_name_31 WHERE extra = "junior team competition"
What is the Founded year of the school located in Paul Smiths, New York?
CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR)
SELECT founded FROM table_name_99 WHERE location = "paul smiths, new york"
In what year was there an award for TV Adicto Golden Awards and the category Female Revelation?
CREATE TABLE table_name_78 (year VARCHAR, award VARCHAR, category VARCHAR)
SELECT year FROM table_name_78 WHERE award = "tv adicto golden awards" AND category = "female revelation"
What was North Melbourne's score when they were the home team?
CREATE TABLE table_name_82 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_82 WHERE home_team = "north melbourne"
What is the Nation when there is a total less than 27, gold is less than 1, and bronze is more than 1?
CREATE TABLE table_name_62 (nation VARCHAR, bronze VARCHAR, total VARCHAR, gold VARCHAR)
SELECT nation FROM table_name_62 WHERE total < 27 AND gold < 1 AND bronze > 1
What Opponents in the final had a match in 1984 with a Score in the final of 7–6, 6–1?
CREATE TABLE table_name_77 (opponents_in_the_final VARCHAR, date VARCHAR, score_in_the_final VARCHAR)
SELECT opponents_in_the_final FROM table_name_77 WHERE date = 1984 AND score_in_the_final = "7–6, 6–1"
What is the greatest successes that have failures greater than 1 and launches less than 28?
CREATE TABLE table_name_25 (successes INTEGER, failures VARCHAR, launches VARCHAR)
SELECT MAX(successes) FROM table_name_25 WHERE failures > 1 AND launches < 28
Name the santee sisseton for morning
CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, english_gloss VARCHAR)
SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = "morning"
How many touchdowns did bill culligan have?
CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR)
SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = "Bill Culligan"
WHAT WAS THE SCORE IN THE FINAL PLAYED AGAINST JOSE CHECA-CALVO IN THE SANT CUGAT TOURNAMENT ?
CREATE TABLE table_name_80 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_80 WHERE tournament = "sant cugat" AND opponent_in_the_final = "jose checa-calvo"
What is the most common mill type, and how many are there?
CREATE TABLE mill (TYPE VARCHAR)
SELECT TYPE, COUNT(*) FROM mill GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
What is the Capacity of the Venue of Head Coach Farhad Kazemi?
CREATE TABLE table_name_34 (capacity INTEGER, head_coach VARCHAR)
SELECT SUM(capacity) FROM table_name_34 WHERE head_coach = "farhad kazemi"
Find all the male members of club "Hopkins Student Enterprises". Show the first name and last name.
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, sex VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)
SELECT t3.fname, t3.lname 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 t1.clubname = "Hopkins Student Enterprises" AND t3.sex = "M"
How many of the series # when the original airdate is september 25, 1967?
CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR)
SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = "September 25, 1967"
What total D (max) has a taper of 1:20.047, and a C (max) bigger than 65.5?
CREATE TABLE table_name_17 (d__max_ INTEGER, taper VARCHAR, c__max_ VARCHAR)
SELECT SUM(d__max_) FROM table_name_17 WHERE taper = "1:20.047" AND c__max_ > 65.5
What rank did the dallara chassis finish in 2000?
CREATE TABLE table_name_93 (rank VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT rank FROM table_name_93 WHERE year = "2000" AND chassis = "dallara"
What is the highest Edition I Bronze with a Gold higher than 9 and a Silver higher than 10?
CREATE TABLE table_name_22 (bronze INTEGER, gold VARCHAR, silver VARCHAR, edition VARCHAR)
SELECT MAX(bronze) FROM table_name_22 WHERE silver > 10 AND edition = "i" AND gold > 9
What is the international use of the 1 единица flag?
CREATE TABLE table_29997112_3 (international_use VARCHAR, flag_name VARCHAR)
SELECT international_use FROM table_29997112_3 WHERE flag_name = "1 единица"
what is the winning % for the years 2006-11?
CREATE TABLE table_name_98 (winning__percentage VARCHAR, years VARCHAR)
SELECT winning__percentage FROM table_name_98 WHERE years = "2006-11"
Show the name for regions not affected.
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_name VARCHAR, region_id VARCHAR)
SELECT region_name FROM region WHERE NOT region_id IN (SELECT region_id FROM affected_region)
What are all the customer phone numbers under the most popular policy type?
CREATE TABLE available_policies (customer_phone VARCHAR, policy_type_code VARCHAR)
SELECT customer_phone FROM available_policies WHERE policy_type_code = (SELECT policy_type_code FROM available_policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1)
What was the smallest crowd in games at the corio oval?
CREATE TABLE table_name_13 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_13 WHERE venue = "corio oval"
What status has gauteng falcons as the opposing team?
CREATE TABLE table_name_2 (status VARCHAR, opposing_team VARCHAR)
SELECT status FROM table_name_2 WHERE opposing_team = "gauteng falcons"
What is the score of the game with Grizzlies as the visitor team on 30 December 2007?
CREATE TABLE table_name_21 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT score FROM table_name_21 WHERE visitor = "grizzlies" AND date = "30 december 2007"
What team won the Tour de Santa Catarina?
CREATE TABLE table_name_5 (team VARCHAR, race_name VARCHAR)
SELECT team FROM table_name_5 WHERE race_name = "tour de santa catarina"
What is the lowest reg gp of the player with a round # more than 2, a pick # of 80, and a PI GP larger than 0?
CREATE TABLE table_name_69 (reg_gp INTEGER, pl_gp VARCHAR, rd__number VARCHAR, pick__number VARCHAR)
SELECT MIN(reg_gp) FROM table_name_69 WHERE rd__number > 2 AND pick__number = 80 AND pl_gp > 0
What is the lowest cuts made of the Masters tournament, which had a top-25 less than 0?
CREATE TABLE table_name_72 (cuts_made INTEGER, tournament VARCHAR, top_25 VARCHAR)
SELECT MIN(cuts_made) FROM table_name_72 WHERE tournament = "masters tournament" AND top_25 < 0
Show all student ids and the number of hours played.
CREATE TABLE Plays_games (Stuid VARCHAR, hours_played INTEGER)
SELECT Stuid, SUM(hours_played) FROM Plays_games GROUP BY Stuid
Find the saving balance of the account with the highest checking balance.
CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (custid VARCHAR)
SELECT T3.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance DESC LIMIT 1
What are the ids of documents which don't have expense budgets?
CREATE TABLE Documents (document_id VARCHAR); CREATE TABLE Documents_with_expenses (document_id VARCHAR)
SELECT document_id FROM Documents EXCEPT SELECT document_id FROM Documents_with_expenses
What is the to par of Greg Norman?
CREATE TABLE table_name_83 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_83 WHERE player = "greg norman"
What was the introductory phrase for the episode with the production bode 6026?
CREATE TABLE table_25691838_2 (introductory_phrase VARCHAR, production_code VARCHAR)
SELECT introductory_phrase FROM table_25691838_2 WHERE production_code = 6026
Who are the mens doubles and womens singles is wang shixian?
CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, womens_singles VARCHAR)
SELECT mens_doubles FROM table_13553701_1 WHERE womens_singles = "Wang Shixian"
What is the Accreditation Status, when the Product Name is LG RCS-e Client?
CREATE TABLE table_name_83 (accreditation_status VARCHAR, product_name VARCHAR)
SELECT accreditation_status FROM table_name_83 WHERE product_name = "lg rcs-e client"
How many Gold medals does the country with 2 Silver and more than 2 Bronze have?
CREATE TABLE table_name_11 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_11 WHERE silver = 2 AND bronze > 2
Who was the Builder for the locomotive that has a works number of 323?
CREATE TABLE table_name_92 (builder VARCHAR, works_number VARCHAR)
SELECT builder FROM table_name_92 WHERE works_number = "323"
What is the NVR Page of the ship with a Home Port of Sasebo, Japan?
CREATE TABLE table_name_6 (nvr_page VARCHAR, home_port VARCHAR)
SELECT nvr_page FROM table_name_6 WHERE home_port = "sasebo, japan"
Tell me the calls for frequency of 1290 khz
CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR)
SELECT calls FROM table_name_88 WHERE frequency = "1290 khz"
What duration is listed for Christian de la Fuente?
CREATE TABLE table_11210576_3 (duration VARCHAR, actor VARCHAR)
SELECT duration FROM table_11210576_3 WHERE actor = "Christian de la Fuente"
how many times did estudiantes de la plata participate in 2008 suruga bank championship
CREATE TABLE table_18027411_1 (team___competition VARCHAR)
SELECT COUNT(2008 AS _suruga_bank_championship) FROM table_18027411_1 WHERE team___competition = "Estudiantes de La Plata"
What does the Circuit of caen report?
CREATE TABLE table_name_98 (report VARCHAR, circuit VARCHAR)
SELECT report FROM table_name_98 WHERE circuit = "caen"
What is Film Title Used In Nomination, when Primary Language(s) is "Azerbaijani, Russian"?
CREATE TABLE table_name_83 (film_title_used_in_nomination VARCHAR, primary_language_s_ VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_83 WHERE primary_language_s_ = "azerbaijani, russian"
What is the season for series 81?
CREATE TABLE table_name_52 (season__number VARCHAR, series__number VARCHAR)
SELECT season__number FROM table_name_52 WHERE series__number = 81
When buffalo narrows is the name how many measurements of population density per kilometer squared are there?
CREATE TABLE table_189598_7 (population_density__per_km²_ VARCHAR, name VARCHAR)
SELECT COUNT(population_density__per_km²_) FROM table_189598_7 WHERE name = "Buffalo Narrows"
What was the original air date of the episode that was directed by Alex Zakrzewski?
CREATE TABLE table_27491610_2 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_27491610_2 WHERE directed_by = "Alex Zakrzewski"
What is the Location Attendance with a Record that is 1-4?
CREATE TABLE table_name_31 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_name_31 WHERE record = "1-4"
Who has high points when 50-26 is the record?
CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_23284271_10 WHERE record = "50-26"
What are the dimensions of the amp with a 180W output?
CREATE TABLE table_name_96 (dimensions VARCHAR, output VARCHAR)
SELECT dimensions FROM table_name_96 WHERE output = "180w"
What is Score, when Opponent is "Tampa Bay Lightning"?
CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_13 WHERE opponent = "tampa bay lightning"
What is the average number of injuries caused each time?
CREATE TABLE death (injured INTEGER)
SELECT AVG(injured) FROM death
What was the score on February 21 when the home team was the Pittsburgh Penguins?
CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_6 WHERE home = "pittsburgh penguins" AND date = "february 21"
What was the greatest Took Office dates that Left Office in 1998?
CREATE TABLE table_name_22 (took_office INTEGER, left_office VARCHAR)
SELECT MAX(took_office) FROM table_name_22 WHERE left_office = "1998"
What is the name of the award in a year more than 2005, and the Result of nominated?
CREATE TABLE table_name_17 (award VARCHAR, year VARCHAR, result VARCHAR)
SELECT award FROM table_name_17 WHERE year > 2005 AND result = "nominated"
What was Obama's percentage in the county of Surry?
CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)
SELECT obama_percentage FROM table_20524090_1 WHERE county = "Surry"
When was the Metallica: Escape from the Studio show?
CREATE TABLE table_name_28 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_28 WHERE event = "metallica: escape from the studio"
What was the score of the away team at Junction Oval venue?
CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_8 WHERE venue = "junction oval"
What's the name of the course with most number of enrollments?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Enrolment_Courses (course_id VARCHAR)
SELECT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY COUNT(*) DESC LIMIT 1
What is the nationality of the goalie in Round 7?
CREATE TABLE table_name_51 (nationality VARCHAR, round VARCHAR, position VARCHAR)
SELECT nationality FROM table_name_51 WHERE round = 7 AND position = "goalie"
What is the result later than week 13?
CREATE TABLE table_name_64 (result VARCHAR, week INTEGER)
SELECT result FROM table_name_64 WHERE week > 13
How many womens singles winners were there when peter rasmussen won the mens singles?
CREATE TABLE table_12027364_1 (womens_singles VARCHAR, mens_singles VARCHAR)
SELECT COUNT(womens_singles) FROM table_12027364_1 WHERE mens_singles = "Peter Rasmussen"
Which time contains the jockery of isaac murphy as well as the winner of kingman?
CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR)
SELECT time FROM table_name_39 WHERE jockey = "isaac murphy" AND winner = "kingman"
What is the team's record on februrary 23?
CREATE TABLE table_name_29 (record VARCHAR, february VARCHAR)
SELECT record FROM table_name_29 WHERE february = 23
How many million U.S. viewers saw the episode with production code 3X5710?
CREATE TABLE table_28760804_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_28760804_1 WHERE production_code = "3X5710"
Who won the stage when Fumiyuki Beppu won the combativity award?
CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR)
SELECT winner FROM table_14395920_2 WHERE combativity_award = "Fumiyuki Beppu"
What is the country when last/current driver(s) 3 november 2013 is daniel abt ( 2012 )?
CREATE TABLE table_27279050_3 (country VARCHAR, last_current_driver_s__3_november_2013 VARCHAR)
SELECT country FROM table_27279050_3 WHERE last_current_driver_s__3_november_2013 = "Daniel Abt ( 2012 )"
What was the score of the player from South Africa?
CREATE TABLE table_name_86 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_86 WHERE country = "south africa"
What is the sum of the value "League Cup", when the Total is less than 1, and when the League is less than 0?
CREATE TABLE table_name_7 (league INTEGER, total VARCHAR)
SELECT SUM(league) AS Cup FROM table_name_7 WHERE total < 1 AND league < 0
What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?
CREATE TABLE table_29218221_3 (wed_1_june VARCHAR, thurs_2_june VARCHAR)
SELECT wed_1_june FROM table_29218221_3 WHERE thurs_2_june = "21' 05.87 107.300mph"
What is S.K. Ho's Country?
CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_58 WHERE player = "s.k. ho"
What is the sum of winners when 1983 is the years won?
CREATE TABLE table_name_31 (winners VARCHAR, years_won VARCHAR)
SELECT COUNT(winners) FROM table_name_31 WHERE years_won = "1983"
what is the date the high assists was andre miller (7)?
CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
Name the children together for 9 years of marriage
CREATE TABLE table_24143253_1 (children_together VARCHAR, length_of_marriage VARCHAR)
SELECT children_together FROM table_24143253_1 WHERE length_of_marriage = "9 years"
Which founding year corresponds with the highest enrollment?
CREATE TABLE table_261946_3 (founded INTEGER)
SELECT MAX(founded) FROM table_261946_3
What position(s) did the player(s) with a pick number of 125 play?
CREATE TABLE table_name_38 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_name_38 WHERE pick__number = 125
What is the total attendance with a Report of sd.hr, and a Score of 3–1, and a Date of 14 apr 2001?
CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, report VARCHAR, score VARCHAR)
SELECT SUM(attendance) FROM table_name_22 WHERE report = "sd.hr" AND score = "3–1" AND date = "14 apr 2001"
Which Position has a Round of 4, and a School/Club Team of concordia?
CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_34 WHERE round = 4 AND school_club_team = "concordia"
What is the listed year that has a rank smaller than 8 and moving from Olympiacos?
CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR, moving_from VARCHAR)
SELECT year FROM table_name_64 WHERE rank < 8 AND moving_from = "olympiacos"
What are the bore & stroke specifications for an engine with 4-barrel carburetor and VIN code of A?
CREATE TABLE table_name_28 (bore_ VARCHAR, _stroke VARCHAR, carburetor VARCHAR, vin_code VARCHAR)
SELECT bore_ & _stroke FROM table_name_28 WHERE carburetor = "4-barrel" AND vin_code = "a"
What method did the match at Club Med Sandpiper have?
CREATE TABLE table_name_88 (method VARCHAR, venue VARCHAR)
SELECT method FROM table_name_88 WHERE venue = "club med sandpiper"
What company made the chassis when there were 8 points?
CREATE TABLE table_name_8 (chassis VARCHAR, points VARCHAR)
SELECT chassis FROM table_name_8 WHERE points = 8
Who was the winner when the Philadelphia eagles were the losers after 1958 at Yankee Stadium?
CREATE TABLE table_name_62 (winner VARCHAR, year VARCHAR, loser VARCHAR, location VARCHAR)
SELECT winner FROM table_name_62 WHERE loser = "philadelphia eagles" AND location = "yankee stadium" AND year > 1958
What is the nationality of the player who had the pick of 52 and plays for the NBA team of Phoenix Suns?
CREATE TABLE table_name_15 (nationality VARCHAR, nba_team VARCHAR, pick VARCHAR)
SELECT nationality FROM table_name_15 WHERE nba_team = "phoenix suns" AND pick = 52
What is Michael Stewart's school or club team?
CREATE TABLE table_name_93 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_93 WHERE player = "michael stewart"
Name the average rank for when bronze is more than 1
CREATE TABLE table_name_86 (rank INTEGER, bronze INTEGER)
SELECT AVG(rank) FROM table_name_86 WHERE bronze > 1