answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MAX(overall) FROM table_name_40 WHERE round > 8 AND player = "pavol demitra"
What is the highest overall for a round larger than 8 for pavol demitra?
CREATE TABLE table_name_40 (overall INTEGER, round VARCHAR, player VARCHAR)
SELECT MAX(stumpings) FROM table_13337302_16 WHERE player = "Tim Latham"
How many stumpings did the player Tim Latham have?
CREATE TABLE table_13337302_16 (stumpings INTEGER, player VARCHAR)
SELECT MAX(area__km²_) FROM table_name_29 WHERE deed_number = "21352022" AND population > 184
What is the largest Area (km²) for Deed number of 21352022 with a Population of more than 184?
CREATE TABLE table_name_29 (area__km²_ INTEGER, deed_number VARCHAR, population VARCHAR)
SELECT catalogue FROM table_name_83 WHERE track < 16 AND recorded = "2/3/56" AND song_title = "lawdy miss clawdy"
What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy?
CREATE TABLE table_name_83 (catalogue VARCHAR, song_title VARCHAR, track VARCHAR, recorded VARCHAR)
SELECT opponent FROM table_name_13 WHERE record = "54-58"
Who was the opponent at the game when the record was 54-58?
CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR)
SELECT score_[a_] FROM table_name_49 WHERE date = "19 september 1998"
What is the score [A] of the match on 19 September 1998?
CREATE TABLE table_name_49 (score_ VARCHAR, a_ VARCHAR, date VARCHAR)
SELECT party FROM table_1341604_39 WHERE district = "Pennsylvania 6"
What's the winning party in the Pennsylvania 6 district?
CREATE TABLE table_1341604_39 (party VARCHAR, district VARCHAR)
SELECT poles FROM table_name_99 WHERE races < 16
What is Poles, when Races is less than 16?
CREATE TABLE table_name_99 (poles VARCHAR, races INTEGER)
SELECT type FROM table_1602620_1 WHERE term_began = "December 8, 1980"
What type had a beginning term of December 8, 1980
CREATE TABLE table_1602620_1 (type VARCHAR, term_began VARCHAR)
SELECT MIN(points) FROM table_name_90 WHERE chassis = "jaguar r3"
What is the low score for the jaguar r3 chasis?
CREATE TABLE table_name_90 (points INTEGER, chassis VARCHAR)
SELECT COUNT(capacity) FROM table_11206787_5 WHERE stadium = "Somerset Park"
What is the number of capacity at somerset park?
CREATE TABLE table_11206787_5 (capacity VARCHAR, stadium VARCHAR)
SELECT Dual AS commentator FROM table_1992924_3 WHERE spokesperson = "Larisa Verbickaya"
who is the dual commentator at the channel with spokesperson larisa verbickaya
CREATE TABLE table_1992924_3 (Dual VARCHAR, spokesperson VARCHAR)
SELECT opponents FROM table_name_84 WHERE venue = "skytteholms ip" AND date = "2004-02-28"
Who was the game played against on 2004-02-28 at Skytteholms IP?
CREATE TABLE table_name_84 (opponents VARCHAR, venue VARCHAR, date VARCHAR)
SELECT 3 AS rd_run FROM table_name_55 WHERE rank = 8
Which 3rd run has rank of 8?
CREATE TABLE table_name_55 (rank VARCHAR)
SELECT year FROM table_12043148_2 WHERE glos_ & _wilts = "Gloucester City Winget"
what is the year where glos & wilts is gloucester city winget?
CREATE TABLE table_12043148_2 (year VARCHAR, glos_ VARCHAR, _wilts VARCHAR)
SELECT lead FROM table_name_99 WHERE nation = "croatia"
Which Lead has a Nation of croatia?
CREATE TABLE table_name_99 (lead VARCHAR, nation VARCHAR)
SELECT SUM(rank) FROM table_name_80 WHERE singapore_cup = "0 (1)" AND name = "masrezwan masturi"
What is the sum of Rank that when the Singapore Cup is 0 (1), and the Name is masrezwan masturi?
CREATE TABLE table_name_80 (rank INTEGER, singapore_cup VARCHAR, name VARCHAR)
SELECT office FROM table_name_2 WHERE party = "dem" AND first_elected = "1991†"
Which Office has a Party of dem, and a First Elected of 1991†?
CREATE TABLE table_name_2 (office VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT MAX(margin) FROM table_22754491_1 WHERE winner = "K. Balathandayutham"
What is the margin when k. balathandayutham is the winner?
CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR)
SELECT T2.driverid, T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" INTERSECT SELECT T2.driverid, T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Chinese Grand Prix"
Find the id and forenames of drivers who participated both the races with name Australian Grand Prix and the races with name Chinese Grand Prix?
CREATE TABLE races (raceid VARCHAR, name VARCHAR); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR); CREATE TABLE drivers (forename VARCHAR, driverid VARCHAR)
SELECT county FROM table_name_47 WHERE longitude = "85°45′43″w"
What County has a Longitude of 85°45′43″w?
CREATE TABLE table_name_47 (county VARCHAR, longitude VARCHAR)
SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = "k236am"
What is K236AM's lowest frequency in MHz?
CREATE TABLE table_name_51 (frequency_mhz INTEGER, call_sign VARCHAR)
SELECT party FROM table_1341423_40 WHERE candidates = "Jim DeMint (R) 80%"
what is the party when candidates is jim demint (r) 80%?
CREATE TABLE table_1341423_40 (party VARCHAR, candidates VARCHAR)
SELECT Shared AS titles FROM table_2869837_1 WHERE last_final = 2012
How many shared titles does the club whose last final was 2012 have?
CREATE TABLE table_2869837_1 (Shared VARCHAR, last_final VARCHAR)
SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = "13"
How many years entered service when there were 13 locomotives?
CREATE TABLE table_name_89 (entered_service VARCHAR, locomotive VARCHAR)
SELECT date FROM table_name_79 WHERE name = "ryan lochte"
What is the date for the name ryan lochte?
CREATE TABLE table_name_79 (date VARCHAR, name VARCHAR)
SELECT mens_doubles FROM table_12266757_1 WHERE season = "1986/1987"
Who were the winners of mens doubles in the 1986/1987 season held?
CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)
SELECT winning_score FROM table_name_24 WHERE runner_up = "jim barnes" AND year = 1924
Name the winning score for jim barnes and year of 1924
CREATE TABLE table_name_24 (winning_score VARCHAR, runner_up VARCHAR, year VARCHAR)
SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36
What are all the CFL teams where the pick number is 36?
CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT competition FROM table_name_98 WHERE man_of_the_match = "stuart potts"
Which competition has stuart potts as the man of the match?
CREATE TABLE table_name_98 (competition VARCHAR, man_of_the_match VARCHAR)
SELECT purse FROM table_name_10 WHERE year = "1998"
What is the Purse listed for the Year of 1998?
CREATE TABLE table_name_10 (purse VARCHAR, year VARCHAR)
SELECT position FROM table_11677100_15 WHERE player = "Matt Hobgood"
What position does Matt Hobgood play?
CREATE TABLE table_11677100_15 (position VARCHAR, player VARCHAR)
SELECT date FROM table_name_64 WHERE opera = "5.1%" AND internet_explorer = "59.5%"
Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%?
CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR)
SELECT SUM(wins) FROM table_name_73 WHERE top_10 > 13
what is the number of wins that is in the Top 10 and larger than 13?
CREATE TABLE table_name_73 (wins INTEGER, top_10 INTEGER)
SELECT AVG(attendance) FROM table_name_19 WHERE week = 16
How many people were in attendance at week 16?
CREATE TABLE table_name_19 (attendance INTEGER, week VARCHAR)
SELECT winning_score FROM table_1602858_1 WHERE runner_s__up = "Rory Sabbatini"
What was the winning score for the tournament with runner-up Rory Sabbatini?
CREATE TABLE table_1602858_1 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT ride_name FROM table_name_43 WHERE manufacturer = "zierer"
What ride was manufactured by Zierer?
CREATE TABLE table_name_43 (ride_name VARCHAR, manufacturer VARCHAR)
SELECT opponent FROM table_name_72 WHERE time = "0:20"
Can you tell me the Opponent that has the Time of 0:20?
CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR)
SELECT home_team FROM table_name_74 WHERE away_team = "telford united"
Who was the home team when the away team was Telford United?
CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)
SELECT SUM(tonnage) FROM table_name_73 WHERE type_of_ship = "twin screw ro-ro motorship" AND date_entered_service = "11 february 1983"
what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983?
CREATE TABLE table_name_73 (tonnage INTEGER, type_of_ship VARCHAR, date_entered_service VARCHAR)
SELECT SUM(january) FROM table_name_36 WHERE record = "27-12-3" AND game < 42
What was the sum of January values with a record of 27-12-3 for a game less than 42?
CREATE TABLE table_name_36 (january INTEGER, record VARCHAR, game VARCHAR)
SELECT MAX(Ends) AS won FROM table_25718552_2 WHERE stolen_ends = 3
What is the largest amount of ends won when stolen ends were 3?
CREATE TABLE table_25718552_2 (Ends INTEGER, stolen_ends VARCHAR)
SELECT score FROM table_name_53 WHERE game > 34 AND record = "31-11"
What is the score for a game after 34 with a record of 31-11?
CREATE TABLE table_name_53 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT MIN(total) FROM table_name_6 WHERE gold > 2 AND silver < 0
What is the least total when there are more than 2 golds and fewer than 0 silver?
CREATE TABLE table_name_6 (total INTEGER, gold VARCHAR, silver VARCHAR)
SELECT COUNT(round) FROM table_name_90 WHERE college = "lehigh"
How many total rounds has lehigh as the college?
CREATE TABLE table_name_90 (round VARCHAR, college VARCHAR)
SELECT director FROM table_name_60 WHERE language = "romanian"
Who directed the Romanian film?
CREATE TABLE table_name_60 (director VARCHAR, language VARCHAR)
SELECT ship FROM table_name_5 WHERE pennant_number = "h05"
What ship has a pennant number h05?
CREATE TABLE table_name_5 (ship VARCHAR, pennant_number VARCHAR)
SELECT place FROM table_name_96 WHERE score < 70
What is the place of the player who scored less than 70?
CREATE TABLE table_name_96 (place VARCHAR, score INTEGER)
SELECT county FROM table_29458735_5 WHERE division = "2nd division" AND regiment = "41st regiment"
what is he name of the county where the 2nd division and the 41st regiment was
CREATE TABLE table_29458735_5 (county VARCHAR, division VARCHAR, regiment VARCHAR)
SELECT title FROM table_name_73 WHERE leading_lady = "ann rutherford" AND director = "joseph kane"
In which title was Ann Rutherford the leading lady for Joseph Kane?
CREATE TABLE table_name_73 (title VARCHAR, leading_lady VARCHAR, director VARCHAR)
SELECT away FROM table_name_14 WHERE home = "marathon"
What is Away, when Home is "marathon"?
CREATE TABLE table_name_14 (away VARCHAR, home VARCHAR)
SELECT player FROM table_name_98 WHERE score = 68 - 67 = 135
Who had a score of 68-67=135?
CREATE TABLE table_name_98 (player VARCHAR, score VARCHAR)
SELECT MIN(week) FROM table_name_31 WHERE attendance = 65 OFFSET 866
What was the first week to have attendance of 65,866?
CREATE TABLE table_name_31 (week INTEGER, attendance VARCHAR)
SELECT AVG(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings'
What is average salary of the players in the team named 'Boston Red Stockings' ?
CREATE TABLE salary (salary INTEGER, team_id VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)
SELECT name FROM table_name_15 WHERE venue = "hong kong"
What is Name, when Venue is "Hong Kong"?
CREATE TABLE table_name_15 (name VARCHAR, venue VARCHAR)
SELECT points FROM table_226619_12 WHERE respect_toward_opponents = 212
Name the points for 212 respect toward opponents
CREATE TABLE table_226619_12 (points VARCHAR, respect_toward_opponents VARCHAR)
SELECT time FROM table_name_27 WHERE opponent = "kim kyoung-suk"
How long was his fight against kim kyoung-suk?
CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)
SELECT SUM(rate) FROM table_name_43 WHERE rank > 10
When rank is more than 10, what is the total rate?
CREATE TABLE table_name_43 (rate INTEGER, rank INTEGER)
SELECT time FROM table_name_11 WHERE opponent = "eddie miller"
Which time has eddie miller as opponent?
CREATE TABLE table_name_11 (time VARCHAR, opponent VARCHAR)
SELECT county FROM table_name_37 WHERE built = "1884"
What county had a bridge biult in 1884?
CREATE TABLE table_name_37 (county VARCHAR, built VARCHAR)
SELECT AVG(overall) FROM table_name_85 WHERE round > 9 AND position = "rb"
WHAT IS THE AVERAGE OVERALL WITH A ROUND LARGER THAN 9, AND RB POSITION?
CREATE TABLE table_name_85 (overall INTEGER, round VARCHAR, position VARCHAR)
SELECT release_date FROM table_name_54 WHERE series = "mm" AND title = "land of the midnight fun"
When was land of the midnight fun in the mm series released?
CREATE TABLE table_name_54 (release_date VARCHAR, series VARCHAR, title VARCHAR)
SELECT music FROM table_name_79 WHERE dance = "modern"
Which Music has a Dance of Modern?
CREATE TABLE table_name_79 (music VARCHAR, dance VARCHAR)
SELECT award FROM table_name_20 WHERE category = "best performance by a leading actor in a musical"
Which Award has best performance by a leading actor in a musical
CREATE TABLE table_name_20 (award VARCHAR, category VARCHAR)
SELECT equivalent FROM table_30011_2 WHERE example = "ASY28"
What is every equivalent for the example of asy28?
CREATE TABLE table_30011_2 (equivalent VARCHAR, example VARCHAR)
SELECT product_type_code FROM products GROUP BY product_type_code HAVING AVG(product_price) > (SELECT AVG(product_price) FROM products)
Find the product type whose average price is higher than the average price of all products.
CREATE TABLE products (product_type_code VARCHAR, product_price INTEGER)
SELECT social_democratic FROM table_1463383_1 WHERE socialist = "46.1%"
If Socialist is at 46.1%, what are all percentages for social democratic?
CREATE TABLE table_1463383_1 (social_democratic VARCHAR, socialist VARCHAR)
SELECT high_rebounds FROM table_name_50 WHERE high_assists = "jason kidd (13)"
What is High Rebounds, when High Assists is "Jason Kidd (13)"?
CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_assists VARCHAR)
SELECT drawn FROM table_name_44 WHERE lost < 12 AND goal_difference = "+20"
How many times was the player drawn that had less than 12 losses and a goal difference of +20?
CREATE TABLE table_name_44 (drawn VARCHAR, lost VARCHAR, goal_difference VARCHAR)
SELECT socket FROM table_name_31 WHERE sspec_number = "sr0pk(e1)"
Name the socket of sSpec number of sr0pk(e1)?
CREATE TABLE table_name_31 (socket VARCHAR, sspec_number VARCHAR)
SELECT year FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = "0.65"
During what years are the percentage over total tax revenue is 0.65?
CREATE TABLE table_1618358_1 (year VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR)
SELECT chinese FROM table_name_61 WHERE rōmaji = "chāshū"
What are the Chinese characters for the word that has a Rōmaji of chāshū?
CREATE TABLE table_name_61 (chinese VARCHAR, rōmaji VARCHAR)
SELECT game FROM table_name_53 WHERE developer_s_ = "ubisoft montreal"
What game was developed by Ubisoft Montreal?
CREATE TABLE table_name_53 (game VARCHAR, developer_s_ VARCHAR)
SELECT MAX(viewers__millions_) FROM table_name_9 WHERE episode_number < 15 AND share > 7
WHAT IS THE HIGHEST VIEWERS WITH AN EPISODE LESS THAN 15 AND SHARE LAGER THAN 7?
CREATE TABLE table_name_9 (viewers__millions_ INTEGER, episode_number VARCHAR, share VARCHAR)
SELECT T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds LIMIT 1
What are the forename and surname of the driver who has the smallest laptime?
CREATE TABLE laptimes (driverid VARCHAR, milliseconds VARCHAR); CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR)
SELECT losses FROM table_name_95 WHERE appearances < 16
How many losses did the division who appeared less than 16 times have?
CREATE TABLE table_name_95 (losses VARCHAR, appearances INTEGER)
SELECT MAX(founded) FROM table_28211213_1 WHERE team_nickname = "Spartans"
When were the Spartans founded?
CREATE TABLE table_28211213_1 (founded INTEGER, team_nickname VARCHAR)
SELECT mens_doubles FROM table_13857700_1 WHERE year = 1978
who is the the mens doubles with year being 1978
CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, year VARCHAR)
SELECT MIN(draws) FROM table_name_98 WHERE ntfa_div_2 = "lilydale"
What is the lowest number of draws of the NTFA Div 2 Lilydale?
CREATE TABLE table_name_98 (draws INTEGER, ntfa_div_2 VARCHAR)
SELECT SUM(1980) FROM table_name_89 WHERE 1996[2] = 127 AND 1990 < 120
1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990?
CREATE TABLE table_name_89 (Id VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_45 WHERE top_5 = 2 AND events = 12
What is the sum of cuts made when the top-5 is 2, and there are 12 events?
CREATE TABLE table_name_45 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR)
SELECT MAX(total) FROM table_22360_3
Name the most total
CREATE TABLE table_22360_3 (total INTEGER)
SELECT COUNT(silver) FROM table_name_58 WHERE nation = "total" AND "total" < 54
How much Silver has a Nation of total, and a Total smaller than 54?
CREATE TABLE table_name_58 (silver VARCHAR, nation VARCHAR)
SELECT title FROM table_name_27 WHERE label = "columbia" AND standard_number = "codc-8760"
What Title has the Label of Columbia and Standard number of CODC-8760?
CREATE TABLE table_name_27 (title VARCHAR, label VARCHAR, standard_number VARCHAR)
SELECT opponent_in_the_final FROM table_name_69 WHERE date = "october 9, 2005"
What opponent in the final has October 9, 2005 as the date?
CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT product_category_description FROM ref_product_categories WHERE product_category_code = "Spices"
Find the product category description of the product category with code "Spices".
CREATE TABLE ref_product_categories (product_category_description VARCHAR, product_category_code VARCHAR)
SELECT country FROM table_name_8 WHERE city = "bandar abbas"
What country is Bandar Abbas in?
CREATE TABLE table_name_8 (country VARCHAR, city VARCHAR)
SELECT MIN(mccain_number) FROM table_20799587_1 WHERE county = "Scott"
How many votes did McCain get in Scott?
CREATE TABLE table_20799587_1 (mccain_number INTEGER, county VARCHAR)
SELECT COUNT(incumbent) FROM table_1341690_21 WHERE candidates = "Paul Tsongas (D) 60.6% Paul W. Cronin (R) 39.4%"
How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%?
CREATE TABLE table_1341690_21 (incumbent VARCHAR, candidates VARCHAR)
SELECT opponent FROM table_name_96 WHERE score = "4–5 ot"
Which Opponent has a Score of 4–5 ot?
CREATE TABLE table_name_96 (opponent VARCHAR, score VARCHAR)
SELECT directed_by FROM table_12419515_4 WHERE written_by = "Adam Milch"
Who directed the title that was written by Adam Milch?
CREATE TABLE table_12419515_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT player FROM table_name_83 WHERE nationality = "sweden"
Which player's nationality is from Sweden?
CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR)
SELECT loaned_to FROM table_name_37 WHERE loan_expires = "end of the season" AND player = "francis jeffers"
What shows for loaned to when the loan expires end of the season, Francis Jeffers is the player?
CREATE TABLE table_name_37 (loaned_to VARCHAR, loan_expires VARCHAR, player VARCHAR)
SELECT nature_of_help FROM table_name_31 WHERE people_assisted = "1,000"
In the disaster in which 1,000 people were helped, what was the nature of help?
CREATE TABLE table_name_31 (nature_of_help VARCHAR, people_assisted VARCHAR)
SELECT location_attendance FROM table_name_9 WHERE team = "oklahoma city"
Where was the game played when the opponent was Oklahoma City, and what was the attendance?
CREATE TABLE table_name_9 (location_attendance VARCHAR, team VARCHAR)
SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = "yoann le boulanger" AND team_classification = "gerolsteiner"
What is the Points Classification Navy Blue Jersey that has Yoann le Boulanger, and Gerolsteiner?
CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)
SELECT T1.order_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id ORDER BY COUNT(*) DESC LIMIT 1
What is the id of the order which has the most items?
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR)
SELECT judges FROM table_13779832_1 WHERE local_title = "X Factor" AND presenters = "Heikki Paasonen Jukka Rossi (Xtra Factor)"
who is the the judges with local title being x factor and presenters being heikki paasonen jukka rossi (xtra factor)
CREATE TABLE table_13779832_1 (judges VARCHAR, local_title VARCHAR, presenters VARCHAR)
SELECT region FROM table_name_50 WHERE catalogue = "9362486152" AND date = "september 3, 2004"
What region is the catalogue number 9362486152 that was from September 3, 2004 from?
CREATE TABLE table_name_50 (region VARCHAR, catalogue VARCHAR, date VARCHAR)
SELECT MAX(pick__number) FROM table_2679061_6 WHERE player = "Don Barber"
What is the highest pick number for player don barber?
CREATE TABLE table_2679061_6 (pick__number INTEGER, player VARCHAR)