answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT player FROM table_name_1 WHERE pick = 219
WHAT IS THE PLAYER WITH A PICK OF 219?
CREATE TABLE table_name_1 (player VARCHAR, pick VARCHAR)
SELECT current_version FROM table_name_77 WHERE license = "gpl v3"
what is the current version with license gpl v3?
CREATE TABLE table_name_77 (current_version VARCHAR, license VARCHAR)
SELECT radical__variants_ FROM table_name_81 WHERE pīnyīn = "gǔ" AND stroke_count = 7
WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7?
CREATE TABLE table_name_81 (radical__variants_ VARCHAR, pīnyīn VARCHAR, stroke_count VARCHAR)
SELECT outgoing_manager FROM table_name_13 WHERE date_of_vacancy = "22 november"
Tell me the outgoing manager for 22 november date of vacancy
CREATE TABLE table_name_13 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT MIN(to_par) FROM table_name_96 WHERE country = "australia" AND score = 76 - 70 - 75 - 72 = 293
What is the lowest to par of a player from australia with a score of 76-70-75-72=293?
CREATE TABLE table_name_96 (to_par INTEGER, country VARCHAR, score VARCHAR)
SELECT player FROM table_name_2 WHERE country = "united states" AND to_par = 14
Which United States player has a To par of 14?
CREATE TABLE table_name_2 (player VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT consistency_ & _participation FROM table_name_83 WHERE pareto_efficiency = "yes" AND condorcet = "no"
what is the consistency & participation when pareto efficiency is yes and condorcet is no?
CREATE TABLE table_name_83 (consistency_ VARCHAR, _participation VARCHAR, pareto_efficiency VARCHAR, condorcet VARCHAR)
SELECT gt2_winning_team FROM table_11875915_2 WHERE gt3_winning_team = "#1 PTG"
Who was the GT2 winning team when the GT3 winning team was #1 PTG?
CREATE TABLE table_11875915_2 (gt2_winning_team VARCHAR, gt3_winning_team VARCHAR)
SELECT COUNT(capacity) FROM table_name_97 WHERE stadium = "alberto picco"
How many people attended games at alberto picco stadium?
CREATE TABLE table_name_97 (capacity VARCHAR, stadium VARCHAR)
SELECT COUNT(laps) FROM table_name_9 WHERE points = "8" AND grid < 8
What is the total number of laps associated with 8 points and a grid under 8?
CREATE TABLE table_name_9 (laps VARCHAR, points VARCHAR, grid VARCHAR)
SELECT river_mile FROM table_name_32 WHERE lock_side = "rdb" AND pool_length__miles_ = "55.4"
What is the River Mile with a RDB lock side and a pool length of 55.4?
CREATE TABLE table_name_32 (river_mile VARCHAR, lock_side VARCHAR, pool_length__miles_ VARCHAR)
SELECT actor_actress FROM table_18638067_1 WHERE film_title_used_in_nomination = "Mrs. Miniver"
In the film Mrs. Miniver, what is the actresses name?
CREATE TABLE table_18638067_1 (actor_actress VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT MIN(grid) FROM table_name_96 WHERE rider = "casey stoner" AND laps < 27
What is the lowest grid with rider casey stoner and laps that are smaller than 27?
CREATE TABLE table_name_96 (grid INTEGER, rider VARCHAR, laps VARCHAR)
SELECT semester, YEAR FROM takes GROUP BY semester, YEAR ORDER BY COUNT(*) LIMIT 1
Find the semester and year which has the least number of student taking any class.
CREATE TABLE takes (semester VARCHAR, YEAR VARCHAR)
SELECT gross_revenue__1986_ FROM table_name_83 WHERE tickets_sold___available = "24,000 / 24,000 (100%)"
What was the gross revenue (1986) when there were tickets sold/available of 24,000 / 24,000 (100%)?
CREATE TABLE table_name_83 (gross_revenue__1986_ VARCHAR, tickets_sold___available VARCHAR)
SELECT tie_no FROM table_name_69 WHERE date = "9 january 1956"
Which Tie number was played on 9 January 1956?
CREATE TABLE table_name_69 (tie_no VARCHAR, date VARCHAR)
SELECT postseason FROM table_14609295_4 WHERE overall = "29-7"
How far into the postseason did the Rams go when their record was 29-7?
CREATE TABLE table_14609295_4 (postseason VARCHAR, overall VARCHAR)
SELECT name FROM table_name_79 WHERE qual_1 = "59.578"
Who got 59.578 for Qual 1?
CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR)
SELECT games FROM table_name_61 WHERE bronze = "8" AND gold = "4"
Which game had 8 bronze and 4 gold?
CREATE TABLE table_name_61 (games VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT opponent FROM table_name_20 WHERE date = "april 14"
Which opponent has a Date of april 14?
CREATE TABLE table_name_20 (opponent VARCHAR, date VARCHAR)
SELECT directed_by FROM table_29273057_1 WHERE production_code = "IP01003"
Who directed the episode with production code ip01003?
CREATE TABLE table_29273057_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT country FROM table_name_23 WHERE _percentage_change_on_year > 5 AND rank = 10
Which country has more than 5% change in a year with a rank of 10?
CREATE TABLE table_name_23 (country VARCHAR, _percentage_change_on_year VARCHAR, rank VARCHAR)
SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 2
What document types have more than 2 corresponding documents?
CREATE TABLE documents (document_type_code VARCHAR)
SELECT home_team FROM table_name_22 WHERE away_team = "richmond"
What Home team played Richmond?
CREATE TABLE table_name_22 (home_team VARCHAR, away_team VARCHAR)
SELECT record FROM table_name_30 WHERE res = "win" AND event = "extreme fighting 1"
Which Record has the Res of win with the Event of extreme fighting 1?
CREATE TABLE table_name_30 (record VARCHAR, res VARCHAR, event VARCHAR)
SELECT MIN(snatch) FROM body_builder
What is the minimum snatch score?
CREATE TABLE body_builder (snatch INTEGER)
SELECT week_1 FROM table_name_1 WHERE week_2 = "claudia nathalia"
Which week 1 had a week 2 of Claudia Nathalia?
CREATE TABLE table_name_1 (week_1 VARCHAR, week_2 VARCHAR)
SELECT COUNT(episode_count) FROM table_name_86 WHERE viewers__in_millions_ = 7.79
How many total episodes aired over all seasons with 7.79 million viewers?
CREATE TABLE table_name_86 (episode_count VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(candidates) FROM table_1342451_16 WHERE incumbent = "Henry Garland Dupré"
How many candidates were there when Henry Garland Dupré was the incumbent?
CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)
SELECT title FROM table_name_98 WHERE characters = "daffy (as duck dodgers)"
What title has daffy (as duck dodgers) as the character?
CREATE TABLE table_name_98 (title VARCHAR, characters VARCHAR)
SELECT drivers FROM table_name_61 WHERE tyre = "k" AND team = "avanzza rosso"
Who is the driver with a tyre of k for Avanzza Rosso?
CREATE TABLE table_name_61 (drivers VARCHAR, tyre VARCHAR, team VARCHAR)
SELECT year_s__won FROM table_name_37 WHERE total = 282
What are the years won with a total of 282?
CREATE TABLE table_name_37 (year_s__won VARCHAR, total VARCHAR)
SELECT away_team FROM table_name_12 WHERE home_team = "leeds united" AND competition = "league cup"
Who is the away team for the tome team Leeds United, at the League Cup Competition?
CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR, competition VARCHAR)
SELECT MAX(bronze) FROM table_name_46 WHERE gold < 0
What is the highest number of bronze medals for nations with under 0 golds?
CREATE TABLE table_name_46 (bronze INTEGER, gold INTEGER)
SELECT team FROM table_name_65 WHERE home_city = "zadar"
What team that has a Home city of Zadar?
CREATE TABLE table_name_65 (team VARCHAR, home_city VARCHAR)
SELECT AVG(year_made) FROM table_name_85 WHERE iwcr_no = "5" AND year_withdrawn > 1926
What is the mean Year when the IWCR number was 5 and the Year withdrawn was bigger than 1926?
CREATE TABLE table_name_85 (year_made INTEGER, iwcr_no VARCHAR, year_withdrawn VARCHAR)
SELECT time FROM table_name_15 WHERE rider = "jules croft"
What time has jules croft as the rider?
CREATE TABLE table_name_15 (time VARCHAR, rider VARCHAR)
SELECT country FROM table_name_32 WHERE density__per_km²_ = "6,814"
Which country has a density (per km²) of 6,814?
CREATE TABLE table_name_32 (country VARCHAR, density__per_km²_ VARCHAR)
SELECT player FROM table_20590020_2 WHERE cuts_made = 8
Which players made exactly 8 cuts?
CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR)
SELECT AVG(november) FROM table_name_91 WHERE record = "15-6-1"
What day in November has a record of 15-6-1?
CREATE TABLE table_name_91 (november INTEGER, record VARCHAR)
SELECT away_team AS score FROM table_name_21 WHERE crowd > 6 OFFSET 000
Which Away team score has a Crowd larger than 6,000?
CREATE TABLE table_name_21 (away_team VARCHAR, crowd INTEGER)
SELECT away_team FROM table_name_59 WHERE venue = "windy hill"
Who was the away team when the venue was Windy Hill?
CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR)
SELECT reason FROM table_name_59 WHERE closed = "1990s"
What were the reasons that venues closed in the 1990s?
CREATE TABLE table_name_59 (reason VARCHAR, closed VARCHAR)
SELECT party FROM table_1342331_43 WHERE incumbent = "Oliver H. Cross"
What party is incumbent Oliver H. Cross?
CREATE TABLE table_1342331_43 (party VARCHAR, incumbent VARCHAR)
SELECT circuitid, LOCATION FROM circuits WHERE country = "France" OR country = "Belgium"
Find the id and location of circuits that belong to France or Belgium?
CREATE TABLE circuits (circuitid VARCHAR, LOCATION VARCHAR, country VARCHAR)
SELECT player FROM table_2850912_7 WHERE college_junior_club_team = "New Westminster Bruins (WHL)"
What is the name of the player when the college/junior/club team is new westminster bruins (whl)?
CREATE TABLE table_2850912_7 (player VARCHAR, college_junior_club_team VARCHAR)
SELECT event FROM table_name_69 WHERE horse = "fabuleux 5" AND result < 70.88
In which event did Fabuleux 5 get a result smaller than 70.88?
CREATE TABLE table_name_69 (event VARCHAR, horse VARCHAR, result VARCHAR)
SELECT score FROM table_name_29 WHERE home_team = "queens park rangers"
What is the score when the home team is queens park rangers?
CREATE TABLE table_name_29 (score VARCHAR, home_team VARCHAR)
SELECT grid FROM table_name_75 WHERE bike = "honda cbr1000rr" AND rider = "russell holland"
What was the grid for rider Russell Holland, riding a Honda CBR1000rr?
CREATE TABLE table_name_75 (grid VARCHAR, bike VARCHAR, rider VARCHAR)
SELECT MIN(attendance) FROM table_name_21 WHERE points > 14 AND arena = "staples center"
What was the lowest Attendance for the Staples Center Arena when the Points were over 14?
CREATE TABLE table_name_21 (attendance INTEGER, points VARCHAR, arena VARCHAR)
SELECT party FROM table_1341568_14 WHERE incumbent = "Lane Evans"
What party was Lane Evans?
CREATE TABLE table_1341568_14 (party VARCHAR, incumbent VARCHAR)
SELECT score FROM table_name_1 WHERE player = "tom lehman"
What is Score, when Player is "Tom Lehman"?
CREATE TABLE table_name_1 (score VARCHAR, player VARCHAR)
SELECT site FROM table_name_22 WHERE opponent = "louisville"
On which site was the game against Louisville played?
CREATE TABLE table_name_22 (site VARCHAR, opponent VARCHAR)
SELECT team_2 FROM table_name_27 WHERE venue = "binh duong stadium, vietnam"
Can you tell me the Team 2 that has the Venue of binh duong stadium, vietnam?
CREATE TABLE table_name_27 (team_2 VARCHAR, venue VARCHAR)
SELECT settlement AS destiny FROM table_2562572_56 WHERE settlement = "Aleksandrovo"
What is the settlement destiny in Aleksandrovo?
CREATE TABLE table_2562572_56 (settlement VARCHAR)
SELECT club FROM table_17941032_2 WHERE drawn = "1" AND won = "2"
Which club had 2 wins and 1 draw?
CREATE TABLE table_17941032_2 (club VARCHAR, drawn VARCHAR, won VARCHAR)
SELECT chassis_code FROM table_name_17 WHERE model = "280s"
What's the chassis code for the 280s model?
CREATE TABLE table_name_17 (chassis_code VARCHAR, model VARCHAR)
SELECT name FROM table_name_34 WHERE best = "57.546"
What is the name of the racer with a best time of 57.546?
CREATE TABLE table_name_34 (name VARCHAR, best VARCHAR)
SELECT COUNT(goals_scored) FROM table_name_15 WHERE draws > 3 AND loses > 1 AND points < 26
What is the total number of goals scored of the club with more than 3 draws, more than 1 loses, and less than 26 points?
CREATE TABLE table_name_15 (goals_scored VARCHAR, points VARCHAR, draws VARCHAR, loses VARCHAR)
SELECT SUM(overall) FROM table_name_69 WHERE pick > 5 AND round < 11 AND name = "tom barrington"
What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is "Tom Barrington"?
CREATE TABLE table_name_69 (overall INTEGER, name VARCHAR, pick VARCHAR, round VARCHAR)
SELECT median_household_income FROM table_name_27 WHERE per_capita_income = "$28,789"
What is the median household income where the per capita is $28,789?
CREATE TABLE table_name_27 (median_household_income VARCHAR, per_capita_income VARCHAR)
SELECT SUM(points) FROM table_name_78 WHERE assists = 7 AND games = 11 AND goals < 6
If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria?
CREATE TABLE table_name_78 (points INTEGER, goals VARCHAR, assists VARCHAR, games VARCHAR)
SELECT owner FROM table_name_89 WHERE broadcasting_hours = "24-hours" AND channel___bkk__ = "3/32 (vhf/uhf)"
Who's the owner of channel 3/32 (vhf/uhf) broadcasting 24-hours?
CREATE TABLE table_name_89 (owner VARCHAR, broadcasting_hours VARCHAR, channel___bkk__ VARCHAR)
SELECT T1.countryId, T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.countryId HAVING COUNT(*) > 3 UNION SELECT T1.countryId, T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country JOIN MODEL_LIST AS T3 ON T2.Id = T3.Maker WHERE T3.Model = 'fiat'
What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?
CREATE TABLE Countries (countryId VARCHAR, CountryName VARCHAR, CountryId VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR, Id VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR, Model VARCHAR)
SELECT date FROM table_10083598_1 WHERE circuit = "Misano"
What was the date of the race in Misano?
CREATE TABLE table_10083598_1 (date VARCHAR, circuit VARCHAR)
SELECT SUM(attendance) FROM table_name_80 WHERE score = "2:0"
What is the sum of attendance when the score was 2:0?
CREATE TABLE table_name_80 (attendance INTEGER, score VARCHAR)
SELECT affiliation FROM table_name_4 WHERE nickname = "bulldogs"
What is Affiliation, when Nickname is Bulldogs?
CREATE TABLE table_name_4 (affiliation VARCHAR, nickname VARCHAR)
SELECT MIN(red_cards) FROM table_name_55 WHERE season = "1998/1999" AND games > 41
Which Red Cards has a Season of 1998/1999, and a Games larger than 41?
CREATE TABLE table_name_55 (red_cards INTEGER, season VARCHAR, games VARCHAR)
SELECT home FROM table_name_43 WHERE date = "february 25"
What is the home team that played on February 25?
CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR)
SELECT year FROM table_name_77 WHERE national_champion = "rhode island"
In what Year was Rhode Island the National Champion?
CREATE TABLE table_name_77 (year VARCHAR, national_champion VARCHAR)
SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74
Which Date has Points smaller than 85 and a Game # of 74?
CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR)
SELECT date FROM table_name_23 WHERE set_1 = "25-18"
What day was there a set 1 of 25-18?
CREATE TABLE table_name_23 (date VARCHAR, set_1 VARCHAR)
SELECT stage FROM table_name_68 WHERE team_classification = "tabriz petrochemical team"
Which stage had tabriz petrochemical team in the team classification?
CREATE TABLE table_name_68 (stage VARCHAR, team_classification VARCHAR)
SELECT MAX(rank) FROM table_name_20 WHERE name = "nat lofthouse" AND goals > 255
What is the highest rank for Nat Lofthouse, and goals more than 255?
CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR, goals VARCHAR)
SELECT machine FROM table_name_2 WHERE rider = "kenneth e. herbert"
What machine did Kenneth E. Herbert ride?
CREATE TABLE table_name_2 (machine VARCHAR, rider VARCHAR)
SELECT title FROM table_26409328_1 WHERE production_code = "6AJN08"
what title was given to the episode with production code 6ajn08?
CREATE TABLE table_26409328_1 (title VARCHAR, production_code VARCHAR)
SELECT tournament FROM table_name_14 WHERE score = "6–2, 4–6, 6–4"
What Tournament's Score was 6–2, 4–6, 6–4?
CREATE TABLE table_name_14 (tournament VARCHAR, score VARCHAR)
SELECT date FROM table_name_22 WHERE h___a = "a" AND league_position = "2nd" AND opponents = "manchester city"
What date was the game against manchester city when they had a league position of 2nd?
CREATE TABLE table_name_22 (date VARCHAR, opponents VARCHAR, h___a VARCHAR, league_position VARCHAR)
SELECT date FROM table_name_81 WHERE venue = "brunswick street oval"
If the Venue is brunswick street oval, what date was the game played ?
CREATE TABLE table_name_81 (date VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_17 WHERE home_team = "hawthorn"
What team is travelling to play Hawthorn?
CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)
SELECT torque FROM table_name_21 WHERE power = "hp (kw)"
What Torque has a Power of HP (KW)?
CREATE TABLE table_name_21 (torque VARCHAR, power VARCHAR)
SELECT MAX(evening_gown) FROM table_name_38 WHERE average < 8.793 AND swimsuit < 8.12 AND interview = 8.51
Name the most evening gown for average less than 8.793 with interview of 8.51 and swimsuit less than 8.12
CREATE TABLE table_name_38 (evening_gown INTEGER, interview VARCHAR, average VARCHAR, swimsuit VARCHAR)
SELECT team FROM table_name_81 WHERE player = "a.j. moye"
Which Team has the Player of A.J. Moye?
CREATE TABLE table_name_81 (team VARCHAR, player VARCHAR)
SELECT MAX(administrative_population__2010_) FROM table_16489766_2 WHERE chinese = "昆明"
What is the maximum administrative population of the city with Chinese translation 昆明?
CREATE TABLE table_16489766_2 (administrative_population__2010_ INTEGER, chinese VARCHAR)
SELECT result FROM table_name_36 WHERE home_captain = "courtney walsh"
What is the result of Courtney Walsh ?
CREATE TABLE table_name_36 (result VARCHAR, home_captain VARCHAR)
SELECT 2012 FROM table_name_4 WHERE tournament = "tournament played"
What is the 2012 that has tournament played as the tournament?
CREATE TABLE table_name_4 (tournament VARCHAR)
SELECT AVG(year) FROM table_name_66 WHERE wins > 0 AND class = "250cc" AND points = 95
What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95?
CREATE TABLE table_name_66 (year INTEGER, points VARCHAR, wins VARCHAR, class VARCHAR)
SELECT AVG(year_named) FROM table_name_70 WHERE latitude = "37.9n" AND diameter__km_ > 76
What is the average Year Named, when Latitude is 37.9N, and when Diameter (km) is greater than 76?
CREATE TABLE table_name_70 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR)
SELECT AVG(assets__billion_) AS $_ FROM table_name_70 WHERE company = "bank of america" AND sales__billion_$_ < 49.01
What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?
CREATE TABLE table_name_70 (assets__billion_ INTEGER, company VARCHAR, sales__billion_$_ VARCHAR)
SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = "17 april - 8 may"
Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may?
CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR)
SELECT 2007 AS _08_season FROM table_name_49 WHERE club = "genoa c.f.c."
Which 2007–08 season has a Club of genoa c.f.c.?
CREATE TABLE table_name_49 (club VARCHAR)
SELECT run_3 FROM table_name_40 WHERE run_1 = "1:17.6"
What was the run 3 for the team with a run 1 of 1:17.6?
CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR)
SELECT AVG(decile) FROM table_name_74 WHERE name = "francis douglas memorial college"
What is the avererage decile of Francis Douglas Memorial College?
CREATE TABLE table_name_74 (decile INTEGER, name VARCHAR)
SELECT COUNT(total) FROM table_26375386_23 WHERE vote_percentage = "44.8%"
What was the total number when the vote percentage was 44.8%?
CREATE TABLE table_26375386_23 (total VARCHAR, vote_percentage VARCHAR)
SELECT bore_ & _stroke FROM table_name_28 WHERE carburetor = "4-barrel" AND vin_code = "a"
What are the bore & stroke specifications for an engine with 4-barrel carburetor and VIN code of A?
CREATE TABLE table_name_28 (bore_ VARCHAR, _stroke VARCHAR, carburetor VARCHAR, vin_code VARCHAR)
SELECT result FROM table_name_13 WHERE rank = 12
what is the result when the rank is 12?
CREATE TABLE table_name_13 (result VARCHAR, rank VARCHAR)
SELECT name FROM projects WHERE hours > (SELECT AVG(hours) FROM projects)
List the name of all projects that are operated longer than the average working hours of all projects.
CREATE TABLE projects (name VARCHAR, hours INTEGER)
SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = "35.990"
where the land is 35.990 what is the number of the geo id
CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR)
SELECT MAX(height) FROM table_name_15 WHERE position = "libero"
What is the height of the person whose position is Libero?
CREATE TABLE table_name_15 (height INTEGER, position VARCHAR)
SELECT COUNT(event) FROM table_13114949_3 WHERE qualifying_score = "60.750"
how many times was the qualifying score 60.750?
CREATE TABLE table_13114949_3 (event VARCHAR, qualifying_score VARCHAR)