answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT class FROM table_name_13 WHERE wins > 0 AND points = 42
CREATE TABLE table_name_13 (class VARCHAR, wins VARCHAR, points VARCHAR)
What class has over 0 wins and 42 points?
SELECT team FROM table_name_47 WHERE class = "350cc" AND points > 2 AND wins = 1
CREATE TABLE table_name_47 (team VARCHAR, wins VARCHAR, class VARCHAR, points VARCHAR)
What team was the bike with a 350cc class, over 2 points, and 1 win?
SELECT MIN(year) FROM table_name_22 WHERE wins > 0 AND points = 42
CREATE TABLE table_name_22 (year INTEGER, wins VARCHAR, points VARCHAR)
What is the earliest year associated with 0 wins and 42 points?
SELECT nationality FROM table_name_19 WHERE player = "marcus walker"
CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR)
What Nationality has the Player of Marcus Walker?
SELECT season FROM table_name_82 WHERE player = "jon stefansson"
CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR)
What Season is listed for the Player of Jon Stefansson?
SELECT team FROM table_name_81 WHERE player = "a.j. moye"
CREATE TABLE table_name_81 (team VARCHAR, player VARCHAR)
Which Team has the Player of A.J. Moye?
SELECT position FROM table_name_8 WHERE team = "kr" AND player = "marcus walker"
CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR, player VARCHAR)
What Position does the Team of KR and the Player of Marcus Walker have listed?
SELECT name FROM table_name_21 WHERE location = "ljubljana" AND year_proposed = "2010" AND floors = "15"
CREATE TABLE table_name_21 (name VARCHAR, floors VARCHAR, location VARCHAR, year_proposed VARCHAR)
What building is in ljubljana, proposed in 2010, and has 15 floors?
SELECT revenue_per_capita FROM table_name_2 WHERE state = "vermont"
CREATE TABLE table_name_2 (revenue_per_capita VARCHAR, state VARCHAR)
What is the Revenue per capita for Vermont?
SELECT state FROM table_name_67 WHERE net_contribution_per_capita = "$-171"
CREATE TABLE table_name_67 (state VARCHAR, net_contribution_per_capita VARCHAR)
What state has a Net contribution per capita of $-171?
SELECT pba_team FROM table_name_68 WHERE college = "mlqu"
CREATE TABLE table_name_68 (pba_team VARCHAR, college VARCHAR)
Who is the PBA team with Mlqu college?
SELECT player FROM table_name_11 WHERE pba_team = "barangay ginebra kings"
CREATE TABLE table_name_11 (player VARCHAR, pba_team VARCHAR)
Who is the player with the PBA team of Barangay Ginebra Kings?
SELECT opponent FROM table_name_60 WHERE date = "april 28"
CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)
Who was the opponent on April 28?
SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong"
CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR)
What is the highest position the album Where we belong, which had an issue date higher than 9, had?
SELECT COUNT(highest_position) FROM table_name_29 WHERE album_title = "talk on corners" AND issue_date > 1
CREATE TABLE table_name_29 (highest_position VARCHAR, album_title VARCHAR, issue_date VARCHAR)
What is the highest position Talk on Corners, which had an issue date greater than 1, had?
SELECT MAX(sales) FROM table_name_51 WHERE album_title = "all saints"
CREATE TABLE table_name_51 (sales INTEGER, album_title VARCHAR)
What is the highest sales All Saints had?
SELECT driver FROM table_name_26 WHERE car_model = "commodore vs"
CREATE TABLE table_name_26 (driver VARCHAR, car_model VARCHAR)
Who is the Driver that has Car Model Commodore VS?
SELECT car_model FROM table_name_35 WHERE manufacturer = "saab" AND driver = "dean randle"
CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR)
What Car Model has the Manufacturer of Saab, and Driver Dean Randle?
SELECT driver FROM table_name_1 WHERE team = "p & l mechanical services"
CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR)
Who is the Driver with the Team of P & L Mechanical Services?
SELECT car_model FROM table_name_19 WHERE engine = "ford 6.0 v8"
CREATE TABLE table_name_19 (car_model VARCHAR, engine VARCHAR)
What Car Model has the Engine of Ford 6.0 V8?
SELECT team FROM table_name_51 WHERE engine = "chevrolet 6.0 v8" AND manufacturer = "opel" AND driver = "chris jackson"
CREATE TABLE table_name_51 (team VARCHAR, driver VARCHAR, engine VARCHAR, manufacturer VARCHAR)
What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson?
SELECT segment_a FROM table_name_91 WHERE segment_d = "diesel filters"
CREATE TABLE table_name_91 (segment_a VARCHAR, segment_d VARCHAR)
What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D?
SELECT series_ep FROM table_name_60 WHERE episode > 262 AND segment_a = "aluminium s canoe"
CREATE TABLE table_name_60 (series_ep VARCHAR, episode VARCHAR, segment_a VARCHAR)
What is the series episode number that is larger than 262 and has a Segment A entry of Aluminium s canoe?
SELECT MIN(first_elected) FROM table_name_53 WHERE district = "south carolina 2"
CREATE TABLE table_name_53 (first_elected INTEGER, district VARCHAR)
Which First elected has a District of south carolina 2?
SELECT incumbent FROM table_name_58 WHERE first_elected > 1884
CREATE TABLE table_name_58 (incumbent VARCHAR, first_elected INTEGER)
Which Incumbent has a First elected larger than 1884?
SELECT english_title FROM table_name_30 WHERE director = "ang lee"
CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR)
What is the English title with a Director named ang lee?
SELECT original_title FROM table_name_55 WHERE country = "canada"
CREATE TABLE table_name_55 (original_title VARCHAR, country VARCHAR)
What is the Original title with a Country that is canada?
SELECT architecture_and_modelling FROM table_name_5 WHERE unit_test = "no" AND projects_templates = "limited"
CREATE TABLE table_name_5 (architecture_and_modelling VARCHAR, unit_test VARCHAR, projects_templates VARCHAR)
Which Architecture and modelling has a Unit test of no, and a Projects templates of limited?
SELECT msdn_integration FROM table_name_16 WHERE load_testing = "no" AND test_impact_analysis = "no"
CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR)
which MSDN integration has a Load testing of no, and a Test impact analysis of no?
SELECT unit_test FROM table_name_76 WHERE msdn_integration = "full" AND projects_templates = "yes"
CREATE TABLE table_name_76 (unit_test VARCHAR, msdn_integration VARCHAR, projects_templates VARCHAR)
Which Unit test has a MSDN integration of full, and a Projects templates of yes?
SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"
CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)
Which Intelli Trace has a No Extension and Windows Phone development of no?
SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no"
CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)
Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?
SELECT msdn_integration FROM table_name_12 WHERE intellitrace = "yes"
CREATE TABLE table_name_12 (msdn_integration VARCHAR, intellitrace VARCHAR)
Which MSDN integration has a IntelliTrace of yes?
SELECT years_of_operation FROM table_name_35 WHERE location = "prospect 33 prospect ave"
CREATE TABLE table_name_35 (years_of_operation VARCHAR, location VARCHAR)
During what Years of Operation was the location prospect 33 prospect ave?
SELECT location FROM table_name_82 WHERE name = "the ivy club"
CREATE TABLE table_name_82 (location VARCHAR, name VARCHAR)
What is the location of the ivy club?
SELECT sign_in_bicker FROM table_name_27 WHERE location = "wash50 on washington rd"
CREATE TABLE table_name_27 (sign_in_bicker VARCHAR, location VARCHAR)
What is the Sign-in/Bicker at wash50 on washington rd?
SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = "bicker" AND name = "cannon club"
CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR)
When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club?
SELECT sign_in_bicker FROM table_name_56 WHERE location = "wash50 on washington rd"
CREATE TABLE table_name_56 (sign_in_bicker VARCHAR, location VARCHAR)
Which Sign-in/Bicker is at of wash50 on washington rd?
SELECT historical_photos FROM table_name_46 WHERE location = "prospect 43 prospect ave"
CREATE TABLE table_name_46 (historical_photos VARCHAR, location VARCHAR)
Which Historical Photos were taken at prospect 43 prospect ave?
SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = "lyon"
CREATE TABLE table_name_26 (team_1 VARCHAR)
What is the 1st leg of team 1 Lyon?
SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = "liverpool"
CREATE TABLE table_name_24 (team_1 VARCHAR)
What is the 1st leg of team 1 Liverpool?
SELECT COUNT(events) FROM table_name_13 WHERE top_25 < 2
CREATE TABLE table_name_13 (events VARCHAR, top_25 INTEGER)
How many events resulted in a top-25 less than 2?
SELECT MIN(wins) FROM table_name_52 WHERE top_25 > 5 AND cuts_made > 38
CREATE TABLE table_name_52 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts?
SELECT COUNT(bronze) FROM table_name_29 WHERE nation = "chinese taipei" AND gold < 0
CREATE TABLE table_name_29 (bronze VARCHAR, nation VARCHAR, gold VARCHAR)
How many bronze medals did Chinese Taipei win with less than 0 gold?
SELECT COUNT(silver) FROM table_name_90 WHERE rank = 3 AND bronze > 0
CREATE TABLE table_name_90 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)
How many silver medals had a rank of 3 with bronze larger than 0?
SELECT COUNT(silver) FROM table_name_93 WHERE nation = "china"
CREATE TABLE table_name_93 (silver VARCHAR, nation VARCHAR)
How many silver medals does China have?
SELECT SUM(position) FROM table_name_45 WHERE losses = 11 AND played > 22
CREATE TABLE table_name_45 (position INTEGER, losses VARCHAR, played VARCHAR)
Which Position has Losses of 11, and a Played larger than 22?
SELECT COUNT(wins) FROM table_name_89 WHERE scored < 24 AND conceded > 25 AND draws > 5 AND position < 9
CREATE TABLE table_name_89 (wins VARCHAR, position VARCHAR, draws VARCHAR, scored VARCHAR, conceded VARCHAR)
How many Wins have a Scored smaller than 24, and a Conceded larger than 25, and Draws larger than 5, and a Position smaller than 9?
SELECT AVG(points) FROM table_name_45 WHERE position = 8
CREATE TABLE table_name_45 (points INTEGER, position VARCHAR)
How many Points has a Position of 8?
SELECT COUNT(wins) FROM table_name_61 WHERE scored = 27 AND draws < 5
CREATE TABLE table_name_61 (wins VARCHAR, scored VARCHAR, draws VARCHAR)
How many Wins has a Scored of 27 and Draws smaller than 5?
SELECT AVG(position) FROM table_name_16 WHERE draws < 7 AND played > 22
CREATE TABLE table_name_16 (position INTEGER, draws VARCHAR, played VARCHAR)
Which Position has Draws smaller than 7 and a Played larger than 22?
SELECT MAX(played) FROM table_name_85 WHERE scored > 25 AND position = 1 AND draws < 5
CREATE TABLE table_name_85 (played INTEGER, draws VARCHAR, scored VARCHAR, position VARCHAR)
Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5?
SELECT date_of_birth__age_ FROM table_name_4 WHERE caps = 51 AND club_province = "clermont"
CREATE TABLE table_name_4 (date_of_birth__age_ VARCHAR, caps VARCHAR, club_province VARCHAR)
When was the player with 51 caps from a Club/province of clermont born?
SELECT COUNT(episode_count) FROM table_name_13 WHERE actor = "liz carr"
CREATE TABLE table_name_13 (episode_count VARCHAR, actor VARCHAR)
How many Episode Counts have an Actor of liz carr?
SELECT years FROM table_name_54 WHERE character = "dr trevor stewart"
CREATE TABLE table_name_54 (years VARCHAR, character VARCHAR)
Which Years have a Character of dr trevor stewart?
SELECT series FROM table_name_92 WHERE actor = "tom ward"
CREATE TABLE table_name_92 (series VARCHAR, actor VARCHAR)
Which Series has an Actor of tom ward?
SELECT SUM(pick__number) FROM table_name_59 WHERE player = "joe germanese"
CREATE TABLE table_name_59 (pick__number INTEGER, player VARCHAR)
How many picks involved the player Joe Germanese?
SELECT player FROM table_name_79 WHERE pick__number = 25
CREATE TABLE table_name_79 (player VARCHAR, pick__number VARCHAR)
Which player's pick number was 25?
SELECT home FROM table_name_3 WHERE visitor = "montreal canadiens" AND record = "0-3"
CREATE TABLE table_name_3 (home VARCHAR, visitor VARCHAR, record VARCHAR)
What team did the Montreal Canadiens visit when the record was 0-3?
SELECT score FROM table_name_5 WHERE date = "april 23"
CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)
What was the score on April 23?
SELECT home FROM table_name_92 WHERE visitor = "chicago black hawks" AND date = "april 20"
CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR)
What team did the Chicago Black Hawks visit on April 20?
SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1
CREATE TABLE table_name_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR)
How many Games have a Drawn larger than 0, and a Lost of 1?
SELECT AVG(points) FROM table_name_38 WHERE drawn > 0 AND lost > 1
CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, lost VARCHAR)
Which Points have a Drawn larger than 0, and a Lost larger than 1?
SELECT AVG(drawn) FROM table_name_98 WHERE lost > 0 AND points < 11 AND games < 7
CREATE TABLE table_name_98 (drawn INTEGER, games VARCHAR, lost VARCHAR, points VARCHAR)
Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7?
SELECT COUNT(percentage) FROM table_name_20 WHERE party = "liberal" AND percent_of_seats < 25
CREATE TABLE table_name_20 (percentage VARCHAR, party VARCHAR, percent_of_seats VARCHAR)
What is the percentage of the liberal party with less than 25 percent of seats?
SELECT party FROM table_name_94 WHERE seats_won < 21 AND percent_of_seats = 0 AND votes_cast = 69757
CREATE TABLE table_name_94 (party VARCHAR, votes_cast VARCHAR, seats_won VARCHAR, percent_of_seats VARCHAR)
Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast?
SELECT date FROM table_name_51 WHERE game = 2
CREATE TABLE table_name_51 (date VARCHAR, game VARCHAR)
Can you tell me the Date that has the Game of 2?
SELECT opponent FROM table_name_78 WHERE date = "july 8" AND score = "8-12"
CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, score VARCHAR)
When the date is July 8, and the score is 8-12, who is the opponent?
SELECT date FROM table_name_9 WHERE loss = "johnson (4-12)"
CREATE TABLE table_name_9 (date VARCHAR, loss VARCHAR)
When the Loss is Johnson (4-12), what is the date?
SELECT date FROM table_name_20 WHERE loss = "farrell (6-13)"
CREATE TABLE table_name_20 (date VARCHAR, loss VARCHAR)
What date is associated with the Loss of Farrell (6-13)?
SELECT opponent FROM table_name_55 WHERE score = "0-3"
CREATE TABLE table_name_55 (opponent VARCHAR, score VARCHAR)
Which opponent has the score of 0-3?
SELECT AVG(total) FROM table_name_97 WHERE nation = "kyrgyzstan" AND silver < 0
CREATE TABLE table_name_97 (total INTEGER, nation VARCHAR, silver VARCHAR)
What is the Total of kyrgyzstan with a Silver smaller than 0?
SELECT MIN(total) FROM table_name_96 WHERE nation = "total" AND gold < 16
CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, gold VARCHAR)
What is the Total that has a number of Nation and a Gold smaller than 16?
SELECT rank FROM table_name_95 WHERE silver > 1 AND total > 13
CREATE TABLE table_name_95 (rank VARCHAR, silver VARCHAR, total VARCHAR)
Which Rank has a Silver larger than 1 and a Total larger than 13?
SELECT COUNT(silver) FROM table_name_2 WHERE rank = "2"
CREATE TABLE table_name_2 (silver VARCHAR, rank VARCHAR)
How many Silvers that have a Rank of 2?
SELECT previous_conference FROM table_name_93 WHERE year_joined = 2000 AND mascot = "millers"
CREATE TABLE table_name_93 (previous_conference VARCHAR, year_joined VARCHAR, mascot VARCHAR)
What was the previous conference for the school that joined in 2000 with a millers mascot?
SELECT college FROM table_name_85 WHERE round > 3 AND player = "gillis wilson"
CREATE TABLE table_name_85 (college VARCHAR, round VARCHAR, player VARCHAR)
What is the name of the college that is from a round greater than 3 with Gillis Wilson playing?
SELECT AVG(round) FROM table_name_46 WHERE college = "auburn"
CREATE TABLE table_name_46 (round INTEGER, college VARCHAR)
What is average round of Auburn College?
SELECT MIN(top_10) FROM table_name_86 WHERE winnings = "$405,300" AND avg_start < 30
CREATE TABLE table_name_86 (top_10 INTEGER, winnings VARCHAR, avg_start VARCHAR)
Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30?
SELECT SUM(wins) FROM table_name_57 WHERE top_5 < 0
CREATE TABLE table_name_57 (wins INTEGER, top_5 INTEGER)
How many Wins have a Top 5 smaller than 0?
SELECT AVG(top_10) FROM table_name_15 WHERE top_5 > 1 AND year = 2003 AND poles > 0
CREATE TABLE table_name_15 (top_10 INTEGER, poles VARCHAR, top_5 VARCHAR, year VARCHAR)
Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0?
SELECT COUNT(top_10) FROM table_name_35 WHERE wins > 0 AND poles > 0
CREATE TABLE table_name_35 (top_10 VARCHAR, wins VARCHAR, poles VARCHAR)
How many Top 10s have Wins larger than 0, and Poles larger than 0?
SELECT COUNT(established) FROM table_name_58 WHERE league = "ontario provincial junior a hockey" AND championships > 1
CREATE TABLE table_name_58 (established VARCHAR, league VARCHAR, championships VARCHAR)
What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?
SELECT venue FROM table_name_4 WHERE championships = 1 AND established > 1957
CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established VARCHAR)
What Venue has more than 1 Championship and was Established after 1957?
SELECT SUM(established) FROM table_name_40 WHERE championships < 1 AND league = "niagara rugby union"
CREATE TABLE table_name_40 (established INTEGER, championships VARCHAR, league VARCHAR)
With less than 1 Championship, what es the Established date of the Niagara Rugby Union League?
SELECT COUNT(established) FROM table_name_57 WHERE venue = "brian timmis stadium"
CREATE TABLE table_name_57 (established VARCHAR, venue VARCHAR)
What is the Established date of the Brian Timmis Stadium?
SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = "junior" AND dcsf_number < 3386
CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR)
What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number?
SELECT record FROM table_name_24 WHERE game < 19 AND points < 19 AND score = "4–6"
CREATE TABLE table_name_24 (record VARCHAR, score VARCHAR, game VARCHAR, points VARCHAR)
Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4–6?
SELECT COUNT(game) FROM table_name_74 WHERE record = "7–6–3" AND points < 17
CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points VARCHAR)
How many games have a Record of 7–6–3, and Points smaller than 17?
SELECT AVG(points) FROM table_name_42 WHERE opponent = "vancouver canucks" AND november < 11
CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR)
Which Points have an Opponent of vancouver canucks, and a November smaller than 11?
SELECT record FROM table_name_53 WHERE march = 12
CREATE TABLE table_name_53 (record VARCHAR, march VARCHAR)
which Record is on March of 12
SELECT COUNT(march) FROM table_name_94 WHERE record = "25-10-9" AND game > 44
CREATE TABLE table_name_94 (march VARCHAR, record VARCHAR, game VARCHAR)
What is the number of March that has 25-10-9 record and a Game more than 44?
SELECT AVG(game) FROM table_name_19 WHERE record = "27-11-10"
CREATE TABLE table_name_19 (game INTEGER, record VARCHAR)
Which Game has a Record of 27-11-10?
SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015
CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expected_start_of_revenue_services VARCHAR)
What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015?
SELECT length FROM table_name_62 WHERE expected_start_of_revenue_services > 2017
CREATE TABLE table_name_62 (length VARCHAR, expected_start_of_revenue_services INTEGER)
What is the length when the expected start of revenue is more than 2017?
SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"
CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR)
What was the undecided with Roy Barnes at 47%?
SELECT dubose_porter FROM table_name_16 WHERE roy_barnes = "54%"
CREATE TABLE table_name_16 (dubose_porter VARCHAR, roy_barnes VARCHAR)
What is the DuBose Porter with Roy Barnes at 54%?
SELECT series_ep FROM table_name_98 WHERE segment_b = "deli meats"
CREATE TABLE table_name_98 (series_ep VARCHAR, segment_b VARCHAR)
What series episode has deli meats under segment B?
SELECT after_1_year FROM table_name_40 WHERE after_3_years = "80%"
CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR)
Which After 1 year has an After 3 years of 80%?
SELECT position FROM table_name_62 WHERE player = "alexei lazarenko"
CREATE TABLE table_name_62 (position VARCHAR, player VARCHAR)
What position does Alexei Lazarenko have?