answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT final FROM table_name_1 WHERE lane = 4
What were the final time for the swimmer on lane 4?
CREATE TABLE table_name_1 (final VARCHAR, lane VARCHAR)
SELECT headquarter FROM table_name_49 WHERE type = "independent online news portal"
What is Headquarter, when Type is Independent Online News Portal?
CREATE TABLE table_name_49 (headquarter VARCHAR, type VARCHAR)
SELECT vehicle_category FROM table_19787093_1 WHERE till_agra = 1050
What kind of vehicle is the agra 1050?
CREATE TABLE table_19787093_1 (vehicle_category VARCHAR, till_agra VARCHAR)
SELECT SUM(laps) FROM table_name_97 WHERE grid < 5 AND time_retired = "retirement"
How many Laps have a Grid smaller than 5, and a Time/Retired of retirement?
CREATE TABLE table_name_97 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
SELECT winner FROM table_name_75 WHERE stage = 3
what is the winner of stage 3
CREATE TABLE table_name_75 (winner VARCHAR, stage VARCHAR)
SELECT year FROM table_name_26 WHERE points > 0 AND chassis = "ags jh22"
What year is listed that has points greater than 0 with a chassis labeled AGS JH22?
CREATE TABLE table_name_26 (year VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT race_title FROM table_name_81 WHERE winner = "glenn seton" AND circuit = "sandown international raceway"
What race did Glenn Seton win on the Sandown International Raceway circuit?
CREATE TABLE table_name_81 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)
SELECT game_site FROM table_name_87 WHERE date = "april 10, 2004"
Which game site hosted a match on April 10, 2004?
CREATE TABLE table_name_87 (game_site VARCHAR, date VARCHAR)
SELECT AVG(price) FROM products WHERE Manufacturer = 2
Compute the average price of all products with manufacturer code equal to 2.
CREATE TABLE products (price INTEGER, Manufacturer VARCHAR)
SELECT COUNT(tonioli) FROM table_18595004_7 WHERE week__number = 3
How many sets of marks does Tonioli get in week 3?
CREATE TABLE table_18595004_7 (tonioli VARCHAR, week__number VARCHAR)
SELECT SUM(T1.salary) FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id WHERE T2.name_first = 'Len' AND T2.name_last = 'Barker' AND T1.year BETWEEN 1985 AND 1990
How much did the the player with first name Len and last name Barker earn between 1985 to 1990 in total?
CREATE TABLE salary (salary INTEGER, player_id VARCHAR, year VARCHAR); CREATE TABLE player (player_id VARCHAR, name_first VARCHAR, name_last VARCHAR)
SELECT feature FROM table_name_64 WHERE driving_force_ex = "no" AND driving_force_gt = "yes" AND driving_force_pro = "yes"
Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature?
CREATE TABLE table_name_64 (feature VARCHAR, driving_force_pro VARCHAR, driving_force_ex VARCHAR, driving_force_gt VARCHAR)
SELECT result FROM table_name_78 WHERE opponent_number = "indiana"
What result did Indiana have when they were an opponent?
CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR)
SELECT state FROM park GROUP BY state HAVING COUNT(*) > 2
List the names of states that have more than 2 parks.
CREATE TABLE park (state VARCHAR)
SELECT COUNT(episode) FROM table_20971444_3 WHERE rating__18_49_ = "3.6"
Name the episode for 18-49 rating being 3.6
CREATE TABLE table_20971444_3 (episode VARCHAR, rating__18_49_ VARCHAR)
SELECT MIN(edges) FROM table_name_29 WHERE dual_archimedean_solid = "truncated icosidodecahedron" AND vertices > 62
Which Edges have a Dual Archimedean solid of truncated icosidodecahedron, and Vertices larger than 62?
CREATE TABLE table_name_29 (edges INTEGER, dual_archimedean_solid VARCHAR, vertices VARCHAR)
SELECT written_by FROM table_23235679_1 WHERE production_code = "5AJN11"
Name who wrote 5ajn11
CREATE TABLE table_23235679_1 (written_by VARCHAR, production_code VARCHAR)
SELECT name FROM table_name_35 WHERE license = "gpl" AND current_version = "1.72"
What is the Name when the License is gpl and the Current Version is 1.72?
CREATE TABLE table_name_35 (name VARCHAR, license VARCHAR, current_version VARCHAR)
SELECT COUNT(settlement) FROM table_2562572_26 WHERE cyrillic_name_other_names = "Ђурђин (Croatian: Đurđin)"
How many settlements are named ђурђин (croatian: đurđin)?
CREATE TABLE table_2562572_26 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT title FROM table_19401346_1 WHERE production_code = 10018
What's the title of the episode with production code 10018?
CREATE TABLE table_19401346_1 (title VARCHAR, production_code VARCHAR)
SELECT location_attendance FROM table_27539808_5 WHERE december = 1
What is the location and attendance total from the game on December 1?
CREATE TABLE table_27539808_5 (location_attendance VARCHAR, december VARCHAR)
SELECT round FROM table_23449363_1 WHERE new_entries_this_round = "24"
Which round had 24 new entries?
CREATE TABLE table_23449363_1 (round VARCHAR, new_entries_this_round VARCHAR)
SELECT theme FROM table_12175755_1 WHERE episode = "Selection Process"
What is the theme for the episode selection process?
CREATE TABLE table_12175755_1 (theme VARCHAR, episode VARCHAR)
SELECT high_rebounds FROM table_name_29 WHERE high_points = "chris bosh (34)"
Which High rebounds have High points of chris bosh (34)?
CREATE TABLE table_name_29 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT SUM(wins) FROM table_name_8 WHERE earnings__$__ > 720 OFFSET 134
How many wins do the players that earned more than 720,134 have?
CREATE TABLE table_name_8 (wins INTEGER, earnings__$__ INTEGER)
SELECT COUNT(rank) FROM table_name_92 WHERE points > 99 AND club = "barcelona"
Can you tell me the total number of Rank that has the Points larger than 99, and the Club of barcelona?
CREATE TABLE table_name_92 (rank VARCHAR, points VARCHAR, club VARCHAR)
SELECT week_of FROM table_name_70 WHERE runner_up = "lori mcneil"
What week was the Runner-up Lori McNeil?
CREATE TABLE table_name_70 (week_of VARCHAR, runner_up VARCHAR)
SELECT teams FROM table_name_46 WHERE season = "1995-96"
What team(s) played in the 1995-96 season?
CREATE TABLE table_name_46 (teams VARCHAR, season VARCHAR)
SELECT home_team FROM table_name_2 WHERE tie_no = "2"
Who is the home team that tied no 2?
CREATE TABLE table_name_2 (home_team VARCHAR, tie_no VARCHAR)
SELECT MAX(laps) FROM table_name_93 WHERE grid < 13 AND time = "+18.366"
What is the highest number of Laps that have a Time of +18.366, and a Grid lower than 13?
CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR, time VARCHAR)
SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field"
What was the score for the game played at Sarge Frye Field?
CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR)
SELECT producer FROM table_name_42 WHERE director = "1997"
Who was the producer for the film directed by 1997?
CREATE TABLE table_name_42 (producer VARCHAR, director VARCHAR)
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) LIMIT 1
What is the customer id, first and last name with least number of accounts.
CREATE TABLE Customers_cards (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
SELECT open_year FROM branch GROUP BY open_year HAVING COUNT(*) >= 2
List all open years when at least two shops are opened.
CREATE TABLE branch (open_year VARCHAR)
SELECT SUM(jury) FROM table_name_86 WHERE place = "2nd" AND total > 190
What is the total of the jury that is 2nd place and the total is larger than 190?
CREATE TABLE table_name_86 (jury INTEGER, place VARCHAR, total VARCHAR)
SELECT high_rebounds FROM table_23285805_6 WHERE game = 42
Who has the most rebounds for game 42?
CREATE TABLE table_23285805_6 (high_rebounds VARCHAR, game VARCHAR)
SELECT dust__or_debris__location__au_ FROM table_2296507_1 WHERE star = "HD 69830"
Name the dust for star being hd 69830
CREATE TABLE table_2296507_1 (dust__or_debris__location__au_ VARCHAR, star VARCHAR)
SELECT years FROM table_name_44 WHERE player = "alvin mitchell"
What years did Alvin Mitchell play?
CREATE TABLE table_name_44 (years VARCHAR, player VARCHAR)
SELECT title FROM course WHERE course_id IN (SELECT T1.course_id FROM prereq AS T1 JOIN course AS T2 ON T1.prereq_id = T2.course_id WHERE T2.title = 'Differential Geometry')
Find the title of course whose prerequisite is course Differential Geometry.
CREATE TABLE prereq (course_id VARCHAR, prereq_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)
SELECT genre FROM table_name_33 WHERE developer_s_ = "naughty dog"
What game was developed by Naughty Dog?
CREATE TABLE table_name_33 (genre VARCHAR, developer_s_ VARCHAR)
SELECT model FROM table_name_98 WHERE specification = "dl-718"
Which model had a Specification of dl-718?
CREATE TABLE table_name_98 (model VARCHAR, specification VARCHAR)
SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_for = "21"
How many teams have 21 tries for?
CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_for VARCHAR)
SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = "welby van horn"
How many years have an Opponent in the final of welby van horn?
CREATE TABLE table_name_74 (year INTEGER, opponent_in_the_final VARCHAR)
SELECT MAX(week) FROM table_name_66 WHERE location = "molson stadium"
What is the highest week for a game that was located at the Molson Stadium?
CREATE TABLE table_name_66 (week INTEGER, location VARCHAR)
SELECT SUM(total) FROM table_name_40 WHERE gymnast = "robert stanescu ( rou )" AND b_score > 8.75
What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?
CREATE TABLE table_name_40 (total INTEGER, gymnast VARCHAR, b_score VARCHAR)
SELECT dismissals FROM table_13337302_16 WHERE player = "Peter McGlashan"
How many dismissals did the player Peter McGlashan have?
CREATE TABLE table_13337302_16 (dismissals VARCHAR, player VARCHAR)
SELECT AVG(lane) FROM table_name_78 WHERE nationality = "japan" AND time = "4:37.35" AND heat < 3
What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?
CREATE TABLE table_name_78 (lane INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR)
SELECT position FROM table_name_35 WHERE player = "john curtice"
What is John Curtice's position?
CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)
SELECT AVG(crowd) FROM table_name_48 WHERE home_team = "melbourne"
What's the average crowd size when the Home team is melbourne?
CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR)
SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id ORDER BY T3.Number_Deaths DESC LIMIT 1
Find the names of the regions which were affected by the storm that killed the greatest number of people.
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, Number_Deaths VARCHAR)
SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = "Brno"
Name the number of rounds for brno
CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR)
SELECT primary_conference FROM table_name_60 WHERE team_nickname = "loggers"
The Loggers are part of what Primary Conference?
CREATE TABLE table_name_60 (primary_conference VARCHAR, team_nickname VARCHAR)
SELECT COUNT(title) FROM table_12226390_3 WHERE production_code = 39
what's the total number of title for production code 39
CREATE TABLE table_12226390_3 (title VARCHAR, production_code VARCHAR)
SELECT AVG(points) FROM table_name_93 WHERE engine = "offenhauser l4" AND chassis = "trevis"
What is the average number of points for an Offenhauser L4 engine with a Trevis chassis?
CREATE TABLE table_name_93 (points INTEGER, engine VARCHAR, chassis VARCHAR)
SELECT MAX(series__number) FROM table_21994729_3 WHERE prod_code = "2APX05"
how many maximum series number have 2apx05 prod. code.
CREATE TABLE table_21994729_3 (series__number INTEGER, prod_code VARCHAR)
SELECT title FROM table_23981882_1 WHERE no_in_season = 7
What is the episode title for number 7 in the season?
CREATE TABLE table_23981882_1 (title VARCHAR, no_in_season VARCHAR)
SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 117
Who was the opponent when there was 117 rushing yards?
CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR)
SELECT high_points FROM table_23284271_10 WHERE record = "53-27"
Who has the high points when 53-27 is the record?
CREATE TABLE table_23284271_10 (high_points VARCHAR, record VARCHAR)
SELECT 2010 FROM table_name_25 WHERE 2009 = "21.662"
What is the 2010 Lukoil oil prodroduction when in 2009 oil production 21.662 million tonnes?
CREATE TABLE table_name_25 (Id VARCHAR)
SELECT loss FROM table_name_93 WHERE date = "august 27"
Who lost on August 27?
CREATE TABLE table_name_93 (loss VARCHAR, date VARCHAR)
SELECT 3 AS rd_stage FROM table_16537783_2 WHERE parameter = "Thrust"
Name the 3rd stage for parameter of thrust
CREATE TABLE table_16537783_2 (parameter VARCHAR)
SELECT tyres FROM table_name_70 WHERE chassis = "jbw type 2"
What is the tyres for the JBW type 2 chassis?
CREATE TABLE table_name_70 (tyres VARCHAR, chassis VARCHAR)
SELECT location_attendance FROM table_name_33 WHERE score = "w 95-93"
What is the location/attendance for the w 95-93 score?
CREATE TABLE table_name_33 (location_attendance VARCHAR, score VARCHAR)
SELECT result FROM table_name_31 WHERE date = "29,30–31 may 1902"
What was the result of the game that was played on 29,30–31 May 1902?
CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR)
SELECT director FROM table_26866233_1 WHERE series__number = 54
Who are the directors of the episode in series # 54?
CREATE TABLE table_26866233_1 (director VARCHAR, series__number VARCHAR)
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
Find the names of customers who either have an deputy policy or uniformed policy.
CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR)
SELECT other_student_details FROM Students ORDER BY other_student_details DESC
List all the student details in reversed lexicographical order.
CREATE TABLE Students (other_student_details VARCHAR)
SELECT opponent FROM table_name_24 WHERE round = "3" AND venue = "home"
What is the Opponent with a Round with 3, and a Venue of home?
CREATE TABLE table_name_24 (opponent VARCHAR, round VARCHAR, venue VARCHAR)
SELECT year FROM table_name_15 WHERE label - Nr = 88146
Which Year has a Label-Nr of 88146?
CREATE TABLE table_name_15 (year VARCHAR, label VARCHAR, Nr VARCHAR)
SELECT malayalam_name FROM table_20354_7 WHERE zodiac_sign = "Leo"
Name the malayalam name for leo
CREATE TABLE table_20354_7 (malayalam_name VARCHAR, zodiac_sign VARCHAR)
SELECT winner FROM table_name_28 WHERE jockey = "jerry bailey" AND owner = "overbrook farm"
which winner has a jockery containing jerry bailey and the owner of overbrook farm?
CREATE TABLE table_name_28 (winner VARCHAR, jockey VARCHAR, owner VARCHAR)
SELECT Name, Age FROM editor
What are the names and ages of editors?
CREATE TABLE editor (Name VARCHAR, Age VARCHAR)
SELECT hdtv FROM table_name_54 WHERE content = "timeshift +1 di disney junior"
What is the HDTV when the content shows a timeshift +1 di disney junior?
CREATE TABLE table_name_54 (hdtv VARCHAR, content VARCHAR)
SELECT name_v_t_e FROM table_name_32 WHERE weight__kg_ = 84 AND position = "d" AND jersey_number = 2
What was the Name v t e, of the player whose Weight (kg) was 84, whose Position was D, and whose Jersey number was 2?
CREATE TABLE table_name_32 (name_v_t_e VARCHAR, jersey_number VARCHAR, weight__kg_ VARCHAR, position VARCHAR)
SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5
Who is the player in the 2008 draft with a pick greater than 5?
CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR)
SELECT MAX(season) FROM table_17246160_1 WHERE points = 0 AND position = "31st"
Which season did he have 0 points and 31st position?
CREATE TABLE table_17246160_1 (season INTEGER, points VARCHAR, position VARCHAR)
SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = "Troy"
When troy is the regular season winner what is the conference tournament?
CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR)
SELECT upper_index_kcal__nm_3 FROM table_1868929_1 WHERE lower_index_mj__nm_3 = "62.47"
Name the upper index kcal/nm3 for 62.47
CREATE TABLE table_1868929_1 (upper_index_kcal__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR)
SELECT region FROM table_name_29 WHERE date = "february 2006"
What shows for region when the date is february 2006?
CREATE TABLE table_name_29 (region VARCHAR, date VARCHAR)
SELECT date FROM table_name_24 WHERE record = "22-22"
Which date has a Record of 22-22?
CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR)
SELECT winner FROM table_14395920_2 WHERE points_classification = "Mark Cavendish" AND general_classification = "Rinaldo Nocentini" AND stage < 11.0
Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0?
CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
SELECT COUNT(pick) FROM table_name_13 WHERE team = "seattle mariners"
What is the total number pick for seattle mariners team?
CREATE TABLE table_name_13 (pick VARCHAR, team VARCHAR)
SELECT played FROM table_20760802_1 WHERE lost = "4" AND drawn = "1"
What is the total of played where lost equals 4 and drawn equals 1?
CREATE TABLE table_20760802_1 (played VARCHAR, lost VARCHAR, drawn VARCHAR)
SELECT MAX(grid) FROM table_name_64 WHERE laps < 35 AND constructor = "maserati"
What is the high grid total for maserati with under 35 laps?
CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR, constructor VARCHAR)
SELECT title FROM film WHERE rating = 'R'
What are all the movies rated as R? List the titles.
CREATE TABLE film (title VARCHAR, rating VARCHAR)
SELECT team FROM table_name_30 WHERE high_points = "raymond felton (26)"
Which team has the high points of Raymond Felton (26)?
CREATE TABLE table_name_30 (team VARCHAR, high_points VARCHAR)
SELECT 2011 FROM table_name_48 WHERE tournament = "tournaments played"
WHAT IS THE 2011 PERFORMANCE FOR TOURNAMENTS PLAYED?
CREATE TABLE table_name_48 (tournament VARCHAR)
SELECT 2007 FROM table_name_92 WHERE 2010 = "a"
Which 2007 has a 2010 of A?
CREATE TABLE table_name_92 (Id VARCHAR)
SELECT COUNT(nationality) FROM table_1965650_9 WHERE college_junior_club_team = "Sault Ste. Marie Greyhounds (OHA)"
When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there?
CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT AVG(long) FROM table_name_10 WHERE loss < 133 AND gain > 0 AND avg_g = 29.8
What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8?
CREATE TABLE table_name_10 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)
SELECT status FROM table_name_31 WHERE artist = "neil sedaka"
What is the status when the artist is Neil Sedaka?
CREATE TABLE table_name_31 (status VARCHAR, artist VARCHAR)
SELECT property FROM table_186468_1 WHERE q_band = "8.3"
When 8.3 is the q-band what is the property?
CREATE TABLE table_186468_1 (property VARCHAR, q_band VARCHAR)
SELECT 1999 FROM table_name_2 WHERE 2003 = "q1" AND 2002 = "q3"
What is the 1999 tournament that has a Q1 in 2003 and a Q3 in 2002?
CREATE TABLE table_name_2 (Id VARCHAR)
SELECT COUNT(area) FROM table_name_31 WHERE pop_dens = 113 AND population > 184 OFFSET 531
How big is the area that has a population density of 113 and a population larger than 184,531?
CREATE TABLE table_name_31 (area VARCHAR, pop_dens VARCHAR, population VARCHAR)
SELECT silver FROM table_name_51 WHERE total > 4 AND bronze = "2" AND rank > 1
What is Silver, when Total is greater than 4, when Bronze is 2, and when Rank is greater than 1?
CREATE TABLE table_name_51 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT leading_scorer FROM table_name_97 WHERE attendance = "14,096"
What is the leading scorer of the game with an attendance of 14,096?
CREATE TABLE table_name_97 (leading_scorer VARCHAR, attendance VARCHAR)
SELECT winner FROM table_name_89 WHERE circuit = "lakeside international raceway"
Who won at the Circuit of lakeside international raceway?
CREATE TABLE table_name_89 (winner VARCHAR, circuit VARCHAR)
SELECT scores FROM table_23575917_6 WHERE lees_team = "Victoria Coren and Rhod Gilbert"
When victoria coren and rhod gilbert are both on the lees team what is the score?
CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR)
SELECT frequency FROM table_19874169_3 WHERE branding = "YES! FM 101.1"
From brand Yes! FM 101.1, what was the frequency?
CREATE TABLE table_19874169_3 (frequency VARCHAR, branding VARCHAR)
SELECT MIN(silver) FROM table_name_8 WHERE bronze > 1 AND nation = "total" AND "total" > 18
What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won?
CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, nation VARCHAR)