question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Which Score has a High assists of whalen (5)?
CREATE TABLE table_name_40 (score VARCHAR, high_assists VARCHAR)
SELECT score FROM table_name_40 WHERE high_assists = "whalen (5)"
Which High rebounds has a Game smaller than 9, and a Opponent of detroit?
CREATE TABLE table_name_94 (high_rebounds VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT high_rebounds FROM table_name_94 WHERE game < 9 AND opponent = "detroit"
Which High rebounds has a Score of w 81-69?
CREATE TABLE table_name_62 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_62 WHERE score = "w 81-69"
Which Surface has a Result of fernando verdasco?
CREATE TABLE table_name_10 (surface VARCHAR, result VARCHAR)
SELECT surface FROM table_name_10 WHERE result = "fernando verdasco"
How many events did clay win?
CREATE TABLE table_name_42 (COUNT VARCHAR, winner VARCHAR)
SELECT NOT COUNT AS event FROM table_name_42 WHERE winner = "clay"
Which Surface has an Opponent of rafael nadal, and an Event of 2?
CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)
SELECT surface FROM table_name_59 WHERE opponent = "rafael nadal" AND NOT event = 2
Who is iván navarro's opponent?
CREATE TABLE table_name_7 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_7 WHERE result = "iván navarro"
Which Event has a Surface of semifinal, and a Winner of hard (i)?
CREATE TABLE table_name_23 (MAX VARCHAR, surface VARCHAR, winner VARCHAR)
SELECT NOT MAX AS event FROM table_name_23 WHERE surface = "semifinal" AND winner = "hard (i)"
Who was the leader at the summit earlier than 1956, when Carcassonne shows for finish?
CREATE TABLE table_name_82 (leader_at_the_summit VARCHAR, year VARCHAR, finish VARCHAR)
SELECT leader_at_the_summit FROM table_name_82 WHERE year < 1956 AND finish = "carcassonne"
What year was finish Toulouse, and stage was larger than 12?
CREATE TABLE table_name_90 (year INTEGER, finish VARCHAR, stage VARCHAR)
SELECT SUM(year) FROM table_name_90 WHERE finish = "toulouse" AND stage > 12
What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?
CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR)
SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = "group" AND finish = "bagnères-de-bigorre"
which Vacator has a Reason for change of resigned november 10, 1965?
CREATE TABLE table_name_6 (vacator VARCHAR, reason_for_change VARCHAR)
SELECT vacator FROM table_name_6 WHERE reason_for_change = "resigned november 10, 1965"
Which Reason has a State (class) of tennessee (2)?
CREATE TABLE table_name_54 (reason_for_change VARCHAR, state__class_ VARCHAR)
SELECT reason_for_change FROM table_name_54 WHERE state__class_ = "tennessee (2)"
Which State (class) has a Successor of harry f. byrd, jr. (d)? Question
CREATE TABLE table_name_54 (state__class_ VARCHAR, successor VARCHAR)
SELECT state__class_ FROM table_name_54 WHERE successor = "harry f. byrd, jr. (d)"
Which country has a Col (m) of 1374?
CREATE TABLE table_name_33 (country VARCHAR, col__m_ VARCHAR)
SELECT country FROM table_name_33 WHERE col__m_ = 1374
How many Games have Years at club of 1971–1974, and a Debut year larger than 1971?
CREATE TABLE table_name_94 (games INTEGER, years_at_club VARCHAR, debut_year VARCHAR)
SELECT SUM(games) FROM table_name_94 WHERE years_at_club = "1971–1974" AND debut_year > 1971
Which Games have Years at club of 1974–1975, and Goals of 4?
CREATE TABLE table_name_89 (games INTEGER, years_at_club VARCHAR, goals VARCHAR)
SELECT AVG(games) FROM table_name_89 WHERE years_at_club = "1974–1975" AND goals = 4
Which Years at club have Games smaller than 7, and Goals larger than 2, and a Player of john frazer?
CREATE TABLE table_name_10 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR)
SELECT years_at_club FROM table_name_10 WHERE games < 7 AND goals > 2 AND player = "john frazer"
Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977?
CREATE TABLE table_name_5 (games INTEGER, debut_year VARCHAR, years_at_club VARCHAR, goals VARCHAR)
SELECT AVG(games) FROM table_name_5 WHERE years_at_club = "1977" AND goals = 17 AND debut_year < 1977
Which Goals have Games smaller than 41, and a Player of mark amos?
CREATE TABLE table_name_57 (goals INTEGER, games VARCHAR, player VARCHAR)
SELECT MIN(goals) FROM table_name_57 WHERE games < 41 AND player = "mark amos"
What is Melaine Walker's Rank?
CREATE TABLE table_name_78 (rank INTEGER, name VARCHAR)
SELECT SUM(rank) FROM table_name_78 WHERE name = "melaine walker"
What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91?
CREATE TABLE table_name_84 (name VARCHAR, result VARCHAR, heat VARCHAR, rank VARCHAR)
SELECT name FROM table_name_84 WHERE heat = 4 AND rank < 23 AND result = "55.91"
What is the Heat of the Player with a Rank of 18 or less and Result of 55.15?
CREATE TABLE table_name_54 (heat VARCHAR, rank VARCHAR, result VARCHAR)
SELECT heat FROM table_name_54 WHERE rank < 18 AND result = "55.15"
What is the quantity preserved for fleet number(s) 3000–3015?
CREATE TABLE table_name_11 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR)
SELECT quantity_preserved FROM table_name_11 WHERE fleet_number_s_ = "3000–3015"
What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7?
CREATE TABLE table_name_34 (manufacturer VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)
SELECT manufacturer FROM table_name_34 WHERE wheel_arrangement = "4-6-6-4" AND class = "z-7"
What is the Year for fleet number 5000?
CREATE TABLE table_name_98 (year_made VARCHAR, fleet_number_s_ VARCHAR)
SELECT year_made FROM table_name_98 WHERE fleet_number_s_ = "5000"
What year made has a Quantity made of 4?
CREATE TABLE table_name_63 (year_made VARCHAR, quantity_made VARCHAR)
SELECT year_made FROM table_name_63 WHERE quantity_made = "4"
What is the quantity preserved for the serial number of mallet and simple articulated locomotives?
CREATE TABLE table_name_19 (quantity_preserved VARCHAR, serial_numbers VARCHAR)
SELECT quantity_preserved FROM table_name_19 WHERE serial_numbers = "mallet and simple articulated locomotives"
How many silver medals did Estonia, which won more than 1 gold and less than 97 medals total, win?
CREATE TABLE table_name_20 (silver VARCHAR, nation VARCHAR, gold VARCHAR, total VARCHAR)
SELECT silver FROM table_name_20 WHERE gold > 1 AND total < 97 AND nation = "estonia"
How many gold medals did Denmark win?
CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR)
SELECT MIN(gold) FROM table_name_65 WHERE nation = "denmark"
What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total?
CREATE TABLE table_name_59 (gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_59 WHERE bronze > 27 AND total < 305
How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total?
CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97
What is the highest championship that has 1 as the league cup, and 17 as the total?
CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR)
SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = "17"
How many league cups have an FA Cup less than 0?
CREATE TABLE table_name_70 (league_cup VARCHAR, fa_cup INTEGER)
SELECT COUNT(league_cup) FROM table_name_70 WHERE fa_cup < 0
What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals?
CREATE TABLE table_name_48 (rank INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT AVG(rank) FROM table_name_48 WHERE silver > 1 AND gold < 11 AND bronze = 2 AND nation = "west germany (frg)"
What's the date when Yelena Isinbayeva for Russia was in Beijing, China?
CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR)
SELECT date FROM table_name_82 WHERE nation = "russia" AND place = "beijing, china" AND athlete = "yelena isinbayeva"
What's the performance of Dire Tune?
CREATE TABLE table_name_89 (performance VARCHAR, athlete VARCHAR)
SELECT performance FROM table_name_89 WHERE athlete = "dire tune"
What place had 14:11.15 as the performance?
CREATE TABLE table_name_33 (place VARCHAR, performance VARCHAR)
SELECT place FROM table_name_33 WHERE performance = "14:11.15"
What's the event that had a performance of 14:11.15 by Ethiopia?
CREATE TABLE table_name_51 (event VARCHAR, nation VARCHAR, performance VARCHAR)
SELECT event FROM table_name_51 WHERE nation = "ethiopia" AND performance = "14:11.15"
What was the position of the player picked after 94, by the Boston Patriots?
CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR)
SELECT position FROM table_name_96 WHERE pick > 94 AND team = "boston patriots"
What college had the 93 pick?
CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR)
SELECT college FROM table_name_50 WHERE pick = 93
What venue has euro 2004 q. as the competition?
CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_60 WHERE competition = "euro 2004 q."
What county is Whiteland Community School in?
CREATE TABLE table_name_72 (county VARCHAR, school VARCHAR)
SELECT county FROM table_name_72 WHERE school = "whiteland community"
What county has a football team in IHSAA class AAAAA and a school macot of the Grizzly Cubs?
CREATE TABLE table_name_25 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR)
SELECT county FROM table_name_25 WHERE ihsaa_football_class = "aaaaa" AND mascot = "grizzly cubs"
What county has a school mascot of the Pioneers?
CREATE TABLE table_name_71 (county VARCHAR, mascot VARCHAR)
SELECT county FROM table_name_71 WHERE mascot = "pioneers"
What are the IHSAA classes of the Indianapolis schools?
CREATE TABLE table_name_34 (ihsaa_class VARCHAR, location VARCHAR)
SELECT ihsaa_class FROM table_name_34 WHERE location = "indianapolis"
Which Song has Points smaller than 53, and a Place larger than 8, and a Draw larger than 1?
CREATE TABLE table_name_52 (song VARCHAR, draw VARCHAR, points VARCHAR, place VARCHAR)
SELECT song FROM table_name_52 WHERE points < 53 AND place > 8 AND draw > 1
What is the result for the Green-Communist party when the Left Bloc has 3.6%?
CREATE TABLE table_name_64 (green_communist VARCHAR, left_bloc VARCHAR)
SELECT green_communist FROM table_name_64 WHERE left_bloc = "3.6%"
What is the result for the Green-Communist party when the Left Bloc has 3.0%?
CREATE TABLE table_name_87 (green_communist VARCHAR, left_bloc VARCHAR)
SELECT green_communist FROM table_name_87 WHERE left_bloc = "3.0%"
What is the date released when the Left Bloc had 3.2%?
CREATE TABLE table_name_35 (date_released VARCHAR, left_bloc VARCHAR)
SELECT date_released FROM table_name_35 WHERE left_bloc = "3.2%"
What is the cardinalatial order of the elector elevated circa 1116?
CREATE TABLE table_name_26 (cardinalatial_order_and_title VARCHAR, elevated VARCHAR)
SELECT cardinalatial_order_and_title FROM table_name_26 WHERE elevated = "circa 1116"
When was the elector from pisa elevated?
CREATE TABLE table_name_13 (elevated VARCHAR, nationality VARCHAR)
SELECT elevated FROM table_name_13 WHERE nationality = "pisa"
What is the cardinalatial order and title of bosone?
CREATE TABLE table_name_92 (cardinalatial_order_and_title VARCHAR, elector VARCHAR)
SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = "bosone"
Who is the elevator from crema?
CREATE TABLE table_name_83 (elevator VARCHAR, nationality VARCHAR)
SELECT elevator FROM table_name_83 WHERE nationality = "crema"
What is the name of the swimmer from Australia in lane 4 with a heat larger than 4?
CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)
SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = "australia"
What is the lowest heat number for a swimmer with a time of 2:34.94?
CREATE TABLE table_name_5 (heat INTEGER, time VARCHAR)
SELECT MIN(heat) FROM table_name_5 WHERE time = "2:34.94"
What is the rank of the player from Ukraine with react less than 0.26?
CREATE TABLE table_name_29 (rank VARCHAR, nationality VARCHAR, react VARCHAR)
SELECT COUNT(rank) FROM table_name_29 WHERE nationality = "ukraine" AND react < 0.26
What was the highest week with a w 21-17 result, and more than 45,254 in attendance?
CREATE TABLE table_name_81 (week INTEGER, result VARCHAR, attendance VARCHAR)
SELECT MAX(week) FROM table_name_81 WHERE result = "w 21-17" AND attendance > 45 OFFSET 254
What's the Proto-Germanic when the Old English is /d/?
CREATE TABLE table_name_3 (proto_germanic VARCHAR, old_english VARCHAR)
SELECT proto_germanic FROM table_name_3 WHERE old_english = "/d/"
What's the Proto Germanic when then German is /s/ or /ts/?
CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR)
SELECT proto_germanic FROM table_name_41 WHERE german = "/s/ or /ts/"
What's the Dutch when then Old English is /d/?
CREATE TABLE table_name_66 (dutch VARCHAR, old_english VARCHAR)
SELECT dutch FROM table_name_66 WHERE old_english = "/d/"
What's the West Germanic when the German is /s/ or /ts/?
CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR)
SELECT west_germanic FROM table_name_90 WHERE german = "/s/ or /ts/"
What's the Proto-Germanic when the German is /t/?
CREATE TABLE table_name_48 (proto_germanic VARCHAR, german VARCHAR)
SELECT proto_germanic FROM table_name_48 WHERE german = "/t/"
What is the to par for japan
CREATE TABLE table_name_49 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_49 WHERE country = "japan"
what player has $187,500 and score 66-75-71-69=281
CREATE TABLE table_name_4 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)
SELECT player FROM table_name_4 WHERE money___$__ = "187,500" AND score = 66 - 75 - 71 - 69 = 281
what place has score 66-74-68-73=281
CREATE TABLE table_name_74 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_74 WHERE score = 66 - 74 - 68 - 73 = 281
what player has place t10
CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR)
SELECT player FROM table_name_37 WHERE place = "t10"
what is the to par for $242,813 with score 68-72-74-66=280
CREATE TABLE table_name_83 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_83 WHERE money___$__ = "242,813" AND score = 68 - 72 - 74 - 66 = 280
Which School has a Size larger than 408, and a Mascot of pacers?
CREATE TABLE table_name_59 (school VARCHAR, size VARCHAR, mascot VARCHAR)
SELECT school FROM table_name_59 WHERE size > 408 AND mascot = "pacers"
Which Size has an IHSAA Class of aa, and a Location of milan?
CREATE TABLE table_name_76 (size INTEGER, ihsaa_class VARCHAR, location VARCHAR)
SELECT SUM(size) FROM table_name_76 WHERE ihsaa_class = "aa" AND location = "milan"
Which County has a Mascot of pacers?
CREATE TABLE table_name_36 (county VARCHAR, mascot VARCHAR)
SELECT county FROM table_name_36 WHERE mascot = "pacers"
Which Mascot has a County of 69 ripley, and an IHSAA Class of aa, and a School of south ripley?
CREATE TABLE table_name_30 (mascot VARCHAR, school VARCHAR, county VARCHAR, ihsaa_class VARCHAR)
SELECT mascot FROM table_name_30 WHERE county = "69 ripley" AND ihsaa_class = "aa" AND school = "south ripley"
Who was in Lane 5 and had a heat of 7?
CREATE TABLE table_name_32 (name VARCHAR, heat VARCHAR, lane VARCHAR)
SELECT name FROM table_name_32 WHERE heat = 7 AND lane = 5
What lane number was Hungary and had a heat of 4?
CREATE TABLE table_name_22 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)
SELECT COUNT(lane) FROM table_name_22 WHERE heat = 4 AND nationality = "hungary"
What's the date when the score was 690.3?
CREATE TABLE table_name_77 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_77 WHERE score = "690.3"
What's the place of 1989 with a comp of ECH?
CREATE TABLE table_name_94 (place VARCHAR, comp VARCHAR, date VARCHAR)
SELECT place FROM table_name_94 WHERE comp = "ech" AND date = "1989"
Who was the shooter with a score of 686.4?
CREATE TABLE table_name_59 (shooter VARCHAR, score VARCHAR)
SELECT shooter FROM table_name_59 WHERE score = "686.4"
what is the year for borderlands 2?
CREATE TABLE table_name_81 (year VARCHAR, game VARCHAR)
SELECT year FROM table_name_81 WHERE game = "borderlands 2"
what is the year for the game dead space 2?
CREATE TABLE table_name_53 (year VARCHAR, game VARCHAR)
SELECT year FROM table_name_53 WHERE game = "dead space 2"
who is the developers for demon's souls?
CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR)
SELECT developer_s_ FROM table_name_8 WHERE game = "demon's souls"
In what year is Zaxxon the Standalone?
CREATE TABLE table_name_88 (year VARCHAR, standalone VARCHAR)
SELECT year FROM table_name_88 WHERE standalone = "zaxxon"
What is the Standalone in the year when Space Invaders is the Console?
CREATE TABLE table_name_43 (standalone VARCHAR, console VARCHAR)
SELECT standalone FROM table_name_43 WHERE console = "space invaders"
What is the Standalone when Tron is the Arcade?
CREATE TABLE table_name_99 (standalone VARCHAR, arcade VARCHAR)
SELECT standalone FROM table_name_99 WHERE arcade = "tron"
What is the Console when Space Invaders is the Arcade?
CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR)
SELECT console FROM table_name_59 WHERE arcade = "space invaders"
What position does the player from the Arizona Diamondbacks play?
CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR)
SELECT position FROM table_name_6 WHERE team = "arizona diamondbacks"
What school did P Jay Gehrke of the Kansas City Royals attend?
CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR)
SELECT school FROM table_name_30 WHERE position = "p" AND team = "kansas city royals" AND player = "jay gehrke"
What country does Adam van Koeverden play for?
CREATE TABLE table_name_31 (country VARCHAR, athletes VARCHAR)
SELECT country FROM table_name_31 WHERE athletes = "adam van koeverden"
what is the pick when the school is jasper hs (jasper, texas)?
CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR)
SELECT pick FROM table_name_63 WHERE school = "jasper hs (jasper, texas)"
who is the player when the position is p and the team is oakland athletics?
CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, team VARCHAR)
SELECT player FROM table_name_99 WHERE position = "p" AND team = "oakland athletics"
what is the school when the team is new york yankees?
CREATE TABLE table_name_1 (school VARCHAR, team VARCHAR)
SELECT school FROM table_name_1 WHERE team = "new york yankees"
who is the player when the school is spring hs (spring, texas)?
CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR)
SELECT player FROM table_name_24 WHERE school = "spring hs (spring, texas)"
What's the melamine content of 英雄牌嬰幼兒配方乳粉 having more than 1 samples failed?
CREATE TABLE table_name_31 (melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR, product VARCHAR)
SELECT melamine_content_mg_kg_ FROM table_name_31 WHERE samples_failed > 1 AND product = "英雄牌嬰幼兒配方乳粉"
What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory?
CREATE TABLE table_name_48 (melamine_content_mg_kg_ INTEGER, producer VARCHAR, samples_failed VARCHAR)
SELECT MAX(melamine_content_mg_kg_) FROM table_name_48 WHERE producer = "guangzhou jinding dairy products factory" AND samples_failed > 1
What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples?
CREATE TABLE table_name_88 (product VARCHAR, samples_taken VARCHAR, melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR)
SELECT product FROM table_name_88 WHERE melamine_content_mg_kg_ < 98.6 AND samples_failed > 1 AND samples_taken < 3
What the most samples failed for 可淇牌嬰幼兒配方乳粉 and had less than 1 samples taken?
CREATE TABLE table_name_77 (samples_failed INTEGER, product VARCHAR, samples_taken VARCHAR)
SELECT MAX(samples_failed) FROM table_name_77 WHERE product = "可淇牌嬰幼兒配方乳粉" AND samples_taken < 1
How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?
CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR)
SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = "qingdao suncare nutritional technology"
What did the golfer from Australia score?
CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_13 WHERE country = "australia"
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 date FROM table_name_64 WHERE opera = "5.1%" AND internet_explorer = "59.5%"
Which source has a date of June 2008?
CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR)
SELECT source FROM table_name_28 WHERE date = "june 2008"
Which source date has an Internet Explorer usage of 60.2%?
CREATE TABLE table_name_52 (source VARCHAR, internet_explorer VARCHAR)
SELECT source FROM table_name_52 WHERE internet_explorer = "60.2%"