answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT period FROM table_name_52 WHERE team = "det" AND time = "11:27"
What is the period for the DET Team with a time of 11:27?
CREATE TABLE table_name_52 (period VARCHAR, team VARCHAR, time VARCHAR)
SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID HAVING COUNT(*) > 1
Show names of shops that have more than one kind of device in stock.
CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR)
SELECT commissioned FROM table_1206583_2 WHERE builder = "Scotts, Greenock" AND name = "Chieftain"
What are the commissioned for scotts, greenock and chieftain?
CREATE TABLE table_1206583_2 (commissioned VARCHAR, builder VARCHAR, name VARCHAR)
SELECT race_name FROM table_16732659_2 WHERE rnd = 13
PLEASE LIST ALL RACES WHERE THE RND IS 13.
CREATE TABLE table_16732659_2 (race_name VARCHAR, rnd VARCHAR)
SELECT MIN(silver) FROM table_name_26 WHERE gold = 4 AND total = 22
How many silver medals were won when there were 4 gold and 22 in total?
CREATE TABLE table_name_26 (silver INTEGER, gold VARCHAR, total VARCHAR)
SELECT school_year FROM table_15315103_1 WHERE class_aAAA = Dayton
What year is dayton in class AAAA?
CREATE TABLE table_15315103_1 (school_year VARCHAR, class_aAAA VARCHAR, Dayton VARCHAR)
SELECT COUNT(points) FROM table_name_98 WHERE game < 37 AND score = "2–3" AND december = 13
How many Points have a Game smaller than 37, and a Score of 2–3, and a December of 13?
CREATE TABLE table_name_98 (points VARCHAR, december VARCHAR, game VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_46 WHERE game < 34 AND december < 14 AND score = "10 - 6"
Game smaller than 34, and a December smaller than 14, and a Score of 10 - 6 has what opponent?
CREATE TABLE table_name_46 (opponent VARCHAR, score VARCHAR, game VARCHAR, december VARCHAR)
SELECT pop_density__km_2__ FROM table_1828368_1 WHERE area__km_2__ = "28.3"
What are the population densities of all communes with an are of 28.3 sq.km.?
CREATE TABLE table_1828368_1 (pop_density__km_2__ VARCHAR, area__km_2__ VARCHAR)
SELECT surface FROM table_24638867_6 WHERE partner = "Nathalie Tauziat"
Name the surface for nathalie tauziat
CREATE TABLE table_24638867_6 (surface VARCHAR, partner VARCHAR)
SELECT COUNT(pct) FROM table_name_5 WHERE years > 100 AND team = "akron"
What is Akron's highest Pct in 100 years?
CREATE TABLE table_name_5 (pct VARCHAR, years VARCHAR, team VARCHAR)
SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM person)
Who is the oldest person?
CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, age INTEGER)
SELECT first_elected FROM table_1342233_6 WHERE incumbent = "Clair Engle"
what's the first elected with incumbent being clair engle
CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR)
SELECT horse FROM table_name_61 WHERE athlete = "britta näpel" AND result < 71.909
What horse was shown by with Britta Näpel and got less than 71.909?
CREATE TABLE table_name_61 (horse VARCHAR, athlete VARCHAR, result VARCHAR)
SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19
For the #19 car, what was their finish position?
CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR)
SELECT t1.name FROM bridge AS t1 JOIN architect AS t2 ON t1.architect_id = t2.id WHERE t2.nationality = 'American' ORDER BY t1.length_feet
show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length.
CREATE TABLE bridge (name VARCHAR, architect_id VARCHAR, length_feet VARCHAR); CREATE TABLE architect (id VARCHAR, nationality VARCHAR)
SELECT name FROM Person WHERE age > (SELECT MIN(age) FROM person WHERE job = 'engineer') ORDER BY age
Find the name of people whose age is greater than any engineer sorted by their age.
CREATE TABLE Person (name VARCHAR, age INTEGER, job VARCHAR); CREATE TABLE person (name VARCHAR, age INTEGER, job VARCHAR)
SELECT tuesday FROM table_name_59 WHERE wednesday = "fox sports tonight (ends 1 am next day)"
What is shown on Tuesday when Wednesday is Fox Sports Tonight (ends 1 am next day)?
CREATE TABLE table_name_59 (tuesday VARCHAR, wednesday VARCHAR)
SELECT SUM(pick) FROM table_name_24 WHERE player = "roger zatkoff"
What is the sum of the pick for player roger zatkoff?
CREATE TABLE table_name_24 (pick INTEGER, player VARCHAR)
SELECT COUNT(venue) FROM table_21256068_3 WHERE round = "1"
how many venues were played on in round 1
CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)
SELECT hot_digital_songs_reaction FROM table_name_81 WHERE hot_100_reaction = "4 (+4)"
What digital reaction has a hot 100 reaction of 4 (+4)?
CREATE TABLE table_name_81 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)
SELECT COUNT(episode_number) FROM table_1590967_7 WHERE guest_host = "Pamela Anderson"
What episode did Pamela Anderson guest host.
CREATE TABLE table_1590967_7 (episode_number VARCHAR, guest_host VARCHAR)
SELECT outgoing_manager FROM table_22297140_3 WHERE replaced_by = "Jafar Fatahi"
Which outgoing manager was replaced by Jafar Fatahi?
CREATE TABLE table_22297140_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT competition FROM table_name_74 WHERE score = "2-1"
What is the Competition name of the competition that ended with a score of 2-1?
CREATE TABLE table_name_74 (competition VARCHAR, score VARCHAR)
SELECT AVG(oilers_points) FROM table_name_1 WHERE record = "10–6" AND oilers_first_downs > 14
Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14?
CREATE TABLE table_name_1 (oilers_points INTEGER, record VARCHAR, oilers_first_downs VARCHAR)
SELECT run_2 FROM table_name_29 WHERE run_1 = "1:30.03"
Which Run 2 has a Run 1 of 1:30.03?
CREATE TABLE table_name_29 (run_2 VARCHAR, run_1 VARCHAR)
SELECT original_airdate FROM table_name_89 WHERE written_by = "ed horowitz"
What was the original air date when ed horowitz wrote it?
CREATE TABLE table_name_89 (original_airdate VARCHAR, written_by VARCHAR)
SELECT MIN(us_open) FROM table_2092557_12 WHERE player = "Shirley Fry Irvin"
When did Shirley Fry Irvin win the US Open?
CREATE TABLE table_2092557_12 (us_open INTEGER, player VARCHAR)
SELECT week FROM table_name_64 WHERE date = "bye"
What week is a bye week?
CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR)
SELECT MIN(pick) FROM table_2840500_2 WHERE position = "Centre" AND nationality = "Czech Republic"
What is the minimum pick of a centre from the Czech Republic?
CREATE TABLE table_2840500_2 (pick INTEGER, position VARCHAR, nationality VARCHAR)
SELECT MIN(year) FROM table_name_22 WHERE location = "bangkok"
What's the lowest Year with the Location of Bangkok?
CREATE TABLE table_name_22 (year INTEGER, location VARCHAR)
SELECT home FROM table_name_25 WHERE time = "7:30 pm" AND location_attendance = "mellon arena" AND record = "2-5-2"
What is the home in mellon arena at 7:30 pm with a record o 2-5-2?
CREATE TABLE table_name_25 (home VARCHAR, record VARCHAR, time VARCHAR, location_attendance VARCHAR)
SELECT outcome FROM table_name_88 WHERE partner = "kang haeng-suk" AND year = "1982"
What was the outcome in 1982 with Kang Haeng-Suk as partner?
CREATE TABLE table_name_88 (outcome VARCHAR, partner VARCHAR, year VARCHAR)
SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = "0.86%" AND _number_of_seats_won > 0
Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?
CREATE TABLE table_name_48 (total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)
SELECT AVG(game) FROM table_name_23 WHERE february > 20 AND record = "41–17–4" AND points < 86
Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86?
CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, february VARCHAR, record VARCHAR)
SELECT time_retired FROM table_name_96 WHERE constructor = "renault" AND laps = "40"
What was the time of the car having a constructor of Renault, which went 40 laps?
CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT AVG(december) FROM table_name_39 WHERE game = 36
What is the average December, when Game is "36"?
CREATE TABLE table_name_39 (december INTEGER, game VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_47 WHERE events > 3
What is the total number of cuts made when the events are more than 3?
CREATE TABLE table_name_47 (cuts_made VARCHAR, events INTEGER)
SELECT label FROM table_name_4 WHERE catalog = "887 448-2"
What label has 887 448-2 as the catalog?
CREATE TABLE table_name_4 (label VARCHAR, catalog VARCHAR)
SELECT player FROM table_name_99 WHERE place = "t6"
Who is the player with a t6 place?
CREATE TABLE table_name_99 (player VARCHAR, place VARCHAR)
SELECT team_s_ FROM table_26609690_1 WHERE winnings = "$15,785"
Which team had $15,785 in winnings?
CREATE TABLE table_26609690_1 (team_s_ VARCHAR, winnings VARCHAR)
SELECT cable_rank FROM table_24399615_3 WHERE episode_no = 4
What is the cable rank for episode no. 4?
CREATE TABLE table_24399615_3 (cable_rank VARCHAR, episode_no VARCHAR)
SELECT SUM(tie_no) FROM table_name_76 WHERE home_team = "burgess hill town"
What's the sum of tie no for home team burgess hill town?
CREATE TABLE table_name_76 (tie_no INTEGER, home_team VARCHAR)
SELECT COUNT(no_result) FROM table_name_21 WHERE wins < 6
How many total No Results are recorded for less than 6 wins?
CREATE TABLE table_name_21 (no_result VARCHAR, wins INTEGER)
SELECT COUNT(second) FROM table_name_5 WHERE first > 18 AND season = "1992-93" AND premier > 16
What is the total number of Second, when First is greater than 18, when Season is 1992-93, and when Premier is greater than 16?
CREATE TABLE table_name_5 (second VARCHAR, premier VARCHAR, first VARCHAR, season VARCHAR)
SELECT record FROM table_name_53 WHERE date = "april 8"
What was the record on April 8?
CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR)
SELECT session FROM table_name_41 WHERE circuit = "milwaukee mile"
The Milwaukee Mile circuit has what type of session?
CREATE TABLE table_name_41 (session VARCHAR, circuit VARCHAR)
SELECT COUNT(week) FROM table_name_36 WHERE venue = "memorial stadium" AND attendance < 41 OFFSET 252
What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252?
CREATE TABLE table_name_36 (week VARCHAR, venue VARCHAR, attendance VARCHAR)
SELECT timeslot FROM table_143554_1 WHERE season = 5
Name the timeslot for season 5
CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)
SELECT clubname FROM club
What are the names of all clubs?
CREATE TABLE club (clubname VARCHAR)
SELECT date FROM table_23286158_10 WHERE high_rebounds = "Marcus Camby (15)"
When marcus camby (15) has the highest amount of rebounds what is the date?
CREATE TABLE table_23286158_10 (date VARCHAR, high_rebounds VARCHAR)
SELECT opponent FROM table_name_10 WHERE result = "2-0 l"
Which opponent has a result of 2-0 l?
CREATE TABLE table_name_10 (opponent VARCHAR, result VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_81 WHERE events = 2
What is the total number of cuts made of tournaments with 2 Events?
CREATE TABLE table_name_81 (cuts_made VARCHAR, events VARCHAR)
SELECT Publication_Date FROM publication ORDER BY Price LIMIT 3
List the publication dates of publications with 3 lowest prices.
CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR)
SELECT driver FROM table_name_1 WHERE constructor = "renault" AND time_retired = "+38.600"
Who was the driver, when the constructor was Renault, and when the Time/Retired was +38.600?
CREATE TABLE table_name_1 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)
SELECT high_rebounds FROM table_23186738_10 WHERE record = "27-54"
Who had the highest rebounds in the game where the record was 27-54?
CREATE TABLE table_23186738_10 (high_rebounds VARCHAR, record VARCHAR)
SELECT MAX(cuts_made) FROM table_29506171_2 WHERE earnings___€__ = "n/a"
How many cuts did Reid make in the year when her earnings were n/a?
CREATE TABLE table_29506171_2 (cuts_made INTEGER, earnings___€__ VARCHAR)
SELECT crs_credit, crs_description FROM course WHERE crs_code = 'QM-261'
Find the description and credit for the course QM-261?
CREATE TABLE course (crs_credit VARCHAR, crs_description VARCHAR, crs_code VARCHAR)
SELECT COUNT(pommel_horse) FROM table_name_65 WHERE rank > 16 AND vault = 9.475
Name the total number of pommel horses for vault of 9.475 and rank more than 16
CREATE TABLE table_name_65 (pommel_horse VARCHAR, rank VARCHAR, vault VARCHAR)
SELECT team_1 FROM table_name_2 WHERE team_2 = "la nuova piovese (veneto a)"
Which team was team 1 that had a team 2 that was la nuova piovese (veneto a)?
CREATE TABLE table_name_2 (team_1 VARCHAR, team_2 VARCHAR)
SELECT home FROM table_name_17 WHERE away = "(2-1)"
Which home team has an Away of (2-1)?
CREATE TABLE table_name_17 (home VARCHAR, away VARCHAR)
SELECT SUM(average) FROM table_name_64 WHERE 2006 = "36/40" AND played > 126
What is the sum of Average, when 2006 is "36/40", and when Played is greater than 126?
CREATE TABLE table_name_64 (average INTEGER, played VARCHAR)
SELECT time FROM table_name_34 WHERE rider = "phil mcgurk"
What time has phil mcgurk as the rider?
CREATE TABLE table_name_34 (time VARCHAR, rider VARCHAR)
SELECT name FROM table_name_93 WHERE royal_house = "ji" AND state = "cai"
What is Name, when Royal House is "Ji", and when State is "Cai"?
CREATE TABLE table_name_93 (name VARCHAR, royal_house VARCHAR, state VARCHAR)
SELECT population__2010_11_01_ FROM table_name_30 WHERE hanzi = "延寿县"
What is the population for the area that has a Hanzi of 延寿县?
CREATE TABLE table_name_30 (population__2010_11_01_ VARCHAR, hanzi VARCHAR)
SELECT result FROM table_name_99 WHERE attendance = "25,418"
What was the result when the attendance was 25,418?
CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR)
SELECT height FROM table_name_19 WHERE name = "james stanton"
How tall is player James Stanton?
CREATE TABLE table_name_19 (height VARCHAR, name VARCHAR)
SELECT analogue_terrestrial_channel FROM table_name_95 WHERE internet = "channel4.com"
What is the analogue terrestrial channel when the internet shows channel4.com?
CREATE TABLE table_name_95 (analogue_terrestrial_channel VARCHAR, internet VARCHAR)
SELECT SUM(murder_and_non_negligent_manslaughter) FROM table_name_86 WHERE larceny_theft = "3,693.9" AND burglary > 1 OFFSET 027.0
What is the total rate of murder and non-negligent manslaughter when larceny-theft is 3,693.9 and burglary is more than 1,027.0?
CREATE TABLE table_name_86 (murder_and_non_negligent_manslaughter INTEGER, larceny_theft VARCHAR, burglary VARCHAR)
SELECT nationality FROM table_name_73 WHERE school_club_team = "purdue"
What is the nationality of the Team Purdue?
CREATE TABLE table_name_73 (nationality VARCHAR, school_club_team VARCHAR)
SELECT points_classification FROM table_name_55 WHERE young_rider_classification = "lech piasecki" AND general_classification = "stephen roche" AND winner = "carrera jeans-vagabond"
How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have?
CREATE TABLE table_name_55 (points_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)
SELECT position FROM table_name_59 WHERE pick > 256 AND player = "terry jones"
What was the position of terry jones whose pick number was after 256?
CREATE TABLE table_name_59 (position VARCHAR, pick VARCHAR, player VARCHAR)
SELECT MAX(game) FROM table_name_25 WHERE result = "new zealand by 4 wickets"
what is the game when the result is new zealand by 4 wickets?
CREATE TABLE table_name_25 (game INTEGER, result VARCHAR)
SELECT MAX(1985) FROM table_name_27 WHERE 1990 = 93
What is the highest 1985 value that has a 1990 value of 93?
CREATE TABLE table_name_27 (Id VARCHAR)
SELECT COUNT(length) FROM table_21326205_2 WHERE time = "14:33.9"
How many stages of the rally took 14:33.9 for the leader to finish?
CREATE TABLE table_21326205_2 (length VARCHAR, time VARCHAR)
SELECT car_spec FROM table_name_68 WHERE team = "airwaves bmw" AND drivers = "rob collard"
What is the car specs for team Airwaves BMW's driver Rob Collard?
CREATE TABLE table_name_68 (car_spec VARCHAR, team VARCHAR, drivers VARCHAR)
SELECT COUNT(joined) FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?
CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)
SELECT title FROM table_28140588_1 WHERE directed_by = "Maynard C. Virgil I"
What is the title when the director is Maynard C. Virgil i ?
CREATE TABLE table_28140588_1 (title VARCHAR, directed_by VARCHAR)
SELECT result FROM table_name_32 WHERE attendance = "54,462"
Tell me the result for attendance of 54,462
CREATE TABLE table_name_32 (result VARCHAR, attendance VARCHAR)
SELECT time FROM table_name_23 WHERE set_3 = "31–29"
What is the time when the set 3 score is 31–29?
CREATE TABLE table_name_23 (time VARCHAR, set_3 VARCHAR)
SELECT director FROM table_name_50 WHERE year = 1957
Name the director for 1957
CREATE TABLE table_name_50 (director VARCHAR, year VARCHAR)
SELECT firefox FROM table_name_86 WHERE chrome = "25.08%"
What was the firefox % was chrome was 25.08%?
CREATE TABLE table_name_86 (firefox VARCHAR, chrome VARCHAR)
SELECT date FROM table_name_85 WHERE score = "1–2"
What is the Date of the Competition with a Score of 1–2?
CREATE TABLE table_name_85 (date VARCHAR, score VARCHAR)
SELECT SUM(goals_conceded) FROM table_name_16 WHERE points > 58 AND wins < 27 AND draws < 1
How many total goals conceded are there when the points are greater than 58, less than 27 wins, and less than 1 draws?
CREATE TABLE table_name_16 (goals_conceded INTEGER, draws VARCHAR, points VARCHAR, wins VARCHAR)
SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973"
What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?
CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)
SELECT tournament FROM table_name_48 WHERE result = "6th"
Which tournament resulted in 6th place?
CREATE TABLE table_name_48 (tournament VARCHAR, result VARCHAR)
SELECT name FROM table_name_96 WHERE title = "duke" AND royal_house = "jiang"
What was the name listed for the royal house of jiang and a title of duke?
CREATE TABLE table_name_96 (name VARCHAR, title VARCHAR, royal_house VARCHAR)
SELECT team FROM table_name_17 WHERE chassis___engine = "porsche 956 b" AND laps < 79
What team has a porsche 956 b chassis-engine with less than 79 laps?
CREATE TABLE table_name_17 (team VARCHAR, chassis___engine VARCHAR, laps VARCHAR)
SELECT product_id, product_name FROM products WHERE product_price < 600 OR product_price > 900
What are id and name of the products whose price is lower than 600 or higher than 900?
CREATE TABLE products (product_id VARCHAR, product_name VARCHAR, product_price VARCHAR)
SELECT MAX(episode_number) FROM table_name_89 WHERE guest_host = "jamie oliver"
What is the highest episode number in which Jamie Oliver guest-hosted?
CREATE TABLE table_name_89 (episode_number INTEGER, guest_host VARCHAR)
SELECT COUNT(poles) FROM table_name_45 WHERE season = "2009" AND races = 2 AND f_laps > 0
How many poles are there in the 2009 season with 2 races and more than 0 F/Laps?
CREATE TABLE table_name_45 (poles VARCHAR, f_laps VARCHAR, season VARCHAR, races VARCHAR)
SELECT production_code FROM table_24319661_5 WHERE directed_by = "Robert Duncan McNeill"
What as the production code for the episode directed by Robert Duncan McNeill?
CREATE TABLE table_24319661_5 (production_code VARCHAR, directed_by VARCHAR)
SELECT date FROM table_name_80 WHERE opponent = "pittsburgh steelers"
When did the Browns play the Pittsburgh Steelers?
CREATE TABLE table_name_80 (date VARCHAR, opponent VARCHAR)
SELECT finish FROM table_name_26 WHERE player = "lou graham"
Name the finish with player lou graham
CREATE TABLE table_name_26 (finish VARCHAR, player VARCHAR)
SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC
List all the cities in a decreasing order of each city's stations' highest latitude.
CREATE TABLE station (city VARCHAR, lat INTEGER)
SELECT position FROM table_name_99 WHERE pick = 8
What is the Position of the Pick 8 Player?
CREATE TABLE table_name_99 (position VARCHAR, pick VARCHAR)
SELECT year_s__withdrawn FROM table_name_86 WHERE class = "t14"
In what year(s) were the CLASS T14 trains withdrawn from service?
CREATE TABLE table_name_86 (year_s__withdrawn VARCHAR, class VARCHAR)
SELECT nationality FROM table_name_70 WHERE school_club_team = "ucla"
What country is team ucla come from?
CREATE TABLE table_name_70 (nationality VARCHAR, school_club_team VARCHAR)
SELECT Team FROM Elimination WHERE Eliminated_By = "Orton" INTERSECT SELECT Team FROM Elimination WHERE Eliminated_By = "Benjamin"
Show the teams that have both wrestlers eliminated by "Orton" and wrestlers eliminated by "Benjamin".
CREATE TABLE Elimination (Team VARCHAR, Eliminated_By VARCHAR)
SELECT copa_libertadores_1999 FROM table_name_62 WHERE copa_mercosur_1999 = "group stage" AND team = "vasco"
What is the Copa Libertadores 1999 result for team vasco, which made the group stage in the Copa Mercosur 1999?
CREATE TABLE table_name_62 (copa_libertadores_1999 VARCHAR, copa_mercosur_1999 VARCHAR, team VARCHAR)