answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT attendance FROM table_name_82 WHERE time = "3:00"
What is the number of people in attendance when the time is 3:00?
CREATE TABLE table_name_82 (attendance VARCHAR, time VARCHAR)
SELECT set_5 FROM table_name_85 WHERE total = "77 - 65"
What shows for Set 5 when the Total was 77 - 65?
CREATE TABLE table_name_85 (set_5 VARCHAR, total VARCHAR)
SELECT tie_no FROM table_name_51 WHERE home_team = "manchester united"
What was the Tie no when Manchester United was the home team?
CREATE TABLE table_name_51 (tie_no VARCHAR, home_team VARCHAR)
SELECT mississippi_st FROM table_name_55 WHERE alabama = "cornelius bennett"
Who was the Mississippi State player associated with Cornelius Bennett?
CREATE TABLE table_name_55 (mississippi_st VARCHAR, alabama VARCHAR)
SELECT location FROM table_name_90 WHERE time = "1:54:21"
At what location was the time 1:54:21?
CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)
SELECT COUNT(guest_judge) FROM table_22897967_1 WHERE first_audition_date = "July 9, 2009"
Name the guest judge for first audition date being july 9, 2009
CREATE TABLE table_22897967_1 (guest_judge VARCHAR, first_audition_date VARCHAR)
SELECT AVG(points) FROM table_name_46 WHERE player = "joe vagana" AND tries < 2
What is the average number of points scored by Joe Vagana when making fewer than 2 tries?
CREATE TABLE table_name_46 (points INTEGER, player VARCHAR, tries VARCHAR)
SELECT MAX(season) FROM table_name_29 WHERE game = "fcs midwest region" AND score = "40-33"
Which Season has a Game of fcs midwest region, and a Score of 40-33?
CREATE TABLE table_name_29 (season INTEGER, game VARCHAR, score VARCHAR)
SELECT first_issue FROM table_name_1 WHERE last_issue = "july 2010"
What is the First issue date of the title with a Last Issue of July 2010?
CREATE TABLE table_name_1 (first_issue VARCHAR, last_issue VARCHAR)
SELECT COUNT(pl_gp) FROM table_name_90 WHERE reg_gp = 0 AND rd__number > 8 AND pick__number > 146
What is the sum number of Pl GP when the Reg GP was 0, the Rd number was bigger than 8, and the pick number was bigger than 146?
CREATE TABLE table_name_90 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, rd__number VARCHAR)
SELECT T1.amenity_name FROM dorm_amenity AS T1 JOIN has_amenity AS T2 ON T2.amenid = T1.amenid JOIN dorm AS T3 ON T2.dormid = T3.dormid WHERE T3.dorm_name = 'Anonymous Donor Hall' ORDER BY T1.amenity_name
List name of all amenities which Anonymous Donor Hall has, and sort the results in alphabetic order.
CREATE TABLE has_amenity (amenid VARCHAR, dormid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)
SELECT Pixel_aspect_ratio_PAR, country FROM tv_channel WHERE LANGUAGE <> 'English'
find the pixel aspect ratio and nation of the tv channels that do not use English.
CREATE TABLE tv_channel (Pixel_aspect_ratio_PAR VARCHAR, country VARCHAR, LANGUAGE VARCHAR)
SELECT opponent FROM table_24126606_2 WHERE week = 12
Name the opponent for week 12
CREATE TABLE table_24126606_2 (opponent VARCHAR, week VARCHAR)
SELECT 2012 FROM table_name_89 WHERE 2009 = "a" AND 2010 = "a" AND 2011 = "a"
Name the 2012 for 2009 of a and 2010 of a and 2011 of a
CREATE TABLE table_name_89 (Id VARCHAR)
SELECT rounds FROM table_name_89 WHERE chassis = "b195"
Which rounds had the B195 chassis?
CREATE TABLE table_name_89 (rounds VARCHAR, chassis VARCHAR)
SELECT AVG(pick__number) FROM table_name_77 WHERE college = "iowa" AND overall < 200
What is the mean pick number for Iowa College when the overall is less than 200?
CREATE TABLE table_name_77 (pick__number INTEGER, college VARCHAR, overall VARCHAR)
SELECT fastest_lap FROM table_name_18 WHERE winning_driver = "michael schumacher"
When Michael Schumacher won the race, who had the fastest lap?
CREATE TABLE table_name_18 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT urban_sub_area FROM table_name_70 WHERE council_area = "east dunbartonshire" AND population = "19,020"
What is the urban sub-area with an East Dunbartonshire council area and a population of 19,020?
CREATE TABLE table_name_70 (urban_sub_area VARCHAR, council_area VARCHAR, population VARCHAR)
SELECT MIN(pick__number) FROM table_1473672_7 WHERE player = "Serge Beaudoin"
Serge Beaudoin was drafted when in the 1972 NHL draft
CREATE TABLE table_1473672_7 (pick__number INTEGER, player VARCHAR)
SELECT score FROM table_name_46 WHERE goal = 4
What is the score of the game with 4 goals?
CREATE TABLE table_name_46 (score VARCHAR, goal VARCHAR)
SELECT tries_against FROM table_name_39 WHERE points_against = "383"
How many tries against did the club with 383 points against have?
CREATE TABLE table_name_39 (tries_against VARCHAR, points_against VARCHAR)
SELECT masaaki_mochizuki FROM table_name_56 WHERE gran_hamada = "hamada (10:47)"
Which Masaaki Mochizuki has a Gran Hamada of hamada (10:47)?
CREATE TABLE table_name_56 (masaaki_mochizuki VARCHAR, gran_hamada VARCHAR)
SELECT grid FROM table_name_74 WHERE constructor = "maserati" AND driver = "oscar alfredo gálvez"
Which grid is constructed by Maserati and driven by Oscar Alfredo Gálvez?
CREATE TABLE table_name_74 (grid VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT current_streak FROM table_name_50 WHERE last_10_meetings = "lsu, 2-1"
What's the current streak with a last 10 meetings of lsu, 2-1?
CREATE TABLE table_name_50 (current_streak VARCHAR, last_10_meetings VARCHAR)
SELECT 2012 FROM table_name_25 WHERE tournament = "madrid masters"
WHAT IS THE 2012 PERFORMANCE FOR THE MADRID MASTERS?
CREATE TABLE table_name_25 (tournament VARCHAR)
SELECT venue FROM table_name_64 WHERE away_team = "hawthorn"
What venue features hawthorn as the away team?
CREATE TABLE table_name_64 (venue VARCHAR, away_team VARCHAR)
SELECT build_date FROM table_name_65 WHERE total_produced = 146
Name the build date for total produced of 146
CREATE TABLE table_name_65 (build_date VARCHAR, total_produced VARCHAR)
SELECT terminus FROM table_name_1 WHERE line = "line 10"
Which Terminus is on line 10?
CREATE TABLE table_name_1 (terminus VARCHAR, line VARCHAR)
SELECT high_assists FROM table_name_5 WHERE game < 19
Who had the high assists in the game less than 19?
CREATE TABLE table_name_5 (high_assists VARCHAR, game INTEGER)
SELECT date FROM table_name_20 WHERE game > 17
What date was there a game larger than 17?
CREATE TABLE table_name_20 (date VARCHAR, game INTEGER)
SELECT COUNT(fastest_qualifying) FROM table_26358264_2 WHERE country = "United Arab Emirates"
When united arab emirates is the country how many fastest qualifying are there?
CREATE TABLE table_26358264_2 (fastest_qualifying VARCHAR, country VARCHAR)
SELECT player FROM table_name_67 WHERE country = "fiji"
What player is from Fiji?
CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_68 WHERE country = "england"
What is the player from England's To Par?
CREATE TABLE table_name_68 (to_par VARCHAR, country VARCHAR)
SELECT winning_driver FROM table_1140116_5 WHERE race_name = "XIV Eläintarhanajot"
Which driver won the race xiv eläintarhanajot?
CREATE TABLE table_1140116_5 (winning_driver VARCHAR, race_name VARCHAR)
SELECT upstream FROM table_name_1 WHERE price = "65 chf"
What is the upstream with the price 65 chf?
CREATE TABLE table_name_1 (upstream VARCHAR, price VARCHAR)
SELECT hometown FROM table_1289860_2 WHERE candidate = "Kristen Kirchner"
Where was Kristen Kirchner from?
CREATE TABLE table_1289860_2 (hometown VARCHAR, candidate VARCHAR)
SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = "1,164.50"
How many districts had crib damage of 1,164.50?
CREATE TABLE table_20403667_2 (district VARCHAR, crop_damaged__in_lakh_inr__ VARCHAR)
SELECT uk_broadcast_date FROM table_name_68 WHERE countries_visited = "south africa"
What was the broadcast date of the episode that visited South Africa?
CREATE TABLE table_name_68 (uk_broadcast_date VARCHAR, countries_visited VARCHAR)
SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_barb_ratings = 1085000
When was the first UK broadcast when the official Barb ratings was 1085000?
CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_barb_ratings VARCHAR)
SELECT vacator FROM table_225200_4 WHERE reason_for_change = "Resigned February 26, 1836 because of ill health"
Name the vacator for resigned february 26, 1836 because of ill health
CREATE TABLE table_225200_4 (vacator VARCHAR, reason_for_change VARCHAR)
SELECT tail_code FROM table_name_29 WHERE weapon_systems_officer = "capt charles b. debellevue"
Which Tail Code belongs to Weapon Systems Officer Capt Charles B. Debellevue?
CREATE TABLE table_name_29 (tail_code VARCHAR, weapon_systems_officer VARCHAR)
SELECT school_club_team FROM table_name_57 WHERE round < 5 AND pick = 2
What school or team is in a round below 5 with a pick of 2?
CREATE TABLE table_name_57 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR)
SELECT SUM(fac___lc_g) FROM table_name_30 WHERE cl_g < 2 AND total_apps < 5 AND UEfa_yc > 0
What is the sum of the FAC/LC G with a CL G less than 2, less than 5 total apps, and a UEFA YC greater than 0?
CREATE TABLE table_name_30 (fac___lc_g INTEGER, UEfa_yc VARCHAR, cl_g VARCHAR, total_apps VARCHAR)
SELECT race FROM table_name_16 WHERE replica = "dnf"
Which race has a replica of DNF?
CREATE TABLE table_name_16 (race VARCHAR, replica VARCHAR)
SELECT district FROM table_1341897_3 WHERE incumbent = "Albert Rains"
What district is incumbent albert rains from?
CREATE TABLE table_1341897_3 (district VARCHAR, incumbent VARCHAR)
SELECT nickname FROM table_name_63 WHERE meaning = "god knows my journey"
What nickname has the meaning of God knows my journey?
CREATE TABLE table_name_63 (nickname VARCHAR, meaning VARCHAR)
SELECT AVG(introduced) FROM table_name_30 WHERE seating = "115"
When was the aircraft introduced that could seat 115 people?
CREATE TABLE table_name_30 (introduced INTEGER, seating VARCHAR)
SELECT event FROM table_name_74 WHERE round < 3 AND method = "no contest (punch after knockdown)"
What event went under 3 rounds and was no contest (punch after knockdown)?
CREATE TABLE table_name_74 (event VARCHAR, round VARCHAR, method VARCHAR)
SELECT AVG(points) FROM table_name_36 WHERE december = 27
What are the average points that have december 27?
CREATE TABLE table_name_36 (points INTEGER, december VARCHAR)
SELECT country FROM table_name_71 WHERE wins > 2
Which Country has a number of Wins larger than 2?
CREATE TABLE table_name_71 (country VARCHAR, wins INTEGER)
SELECT AVG(lane) FROM table_name_37 WHERE nationality = "netherlands antilles"
What is the average lane with Netherlands Antilles Nationality?
CREATE TABLE table_name_37 (lane INTEGER, nationality VARCHAR)
SELECT 1989 FROM table_name_42 WHERE 1986 = "99"
Which 1989 has a 1986 of 99?
CREATE TABLE table_name_42 (Id VARCHAR)
SELECT opponent FROM table_name_25 WHERE venue = "memorial stadium"
Who was the opponent at memorial stadium?
CREATE TABLE table_name_25 (opponent VARCHAR, venue VARCHAR)
SELECT COUNT(gold) FROM table_name_49 WHERE bronze = 1 AND total < 1
What is the total number of gold medals of the nation with 1 bronze and less than 1 total medal?
CREATE TABLE table_name_49 (gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT COUNT(incumbent) FROM table_1342256_11 WHERE first_elected = 1926
How many incumbents were elected in the 1926 election?
CREATE TABLE table_1342256_11 (incumbent VARCHAR, first_elected VARCHAR)
SELECT date FROM table_16388439_3 WHERE ground = "Bundaberg Rum Stadium"
Name the date for bundaberg rum stadium
CREATE TABLE table_16388439_3 (date VARCHAR, ground VARCHAR)
SELECT surface FROM table_name_79 WHERE date = "23 january 2011"
Which Surface is on 23 january 2011?
CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)
SELECT music_director FROM table_name_3 WHERE year = 1994
Who was the music director in 1994?
CREATE TABLE table_name_3 (music_director VARCHAR, year VARCHAR)
SELECT time_required_for_prices_to_double FROM table_13681_2 WHERE highest_monthly_inflation_rate = "29,500%"
what's the time required for prices to double with highest monthly inflation rate being 29,500%
CREATE TABLE table_13681_2 (time_required_for_prices_to_double VARCHAR, highest_monthly_inflation_rate VARCHAR)
SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_one_winning_team = "#13 Inspire Motorsports"
Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?
CREATE TABLE table_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_one_winning_team VARCHAR)
SELECT hometown FROM table_11677691_8 WHERE school = "Longview High school"
Where is longview high school
CREATE TABLE table_11677691_8 (hometown VARCHAR, school VARCHAR)
SELECT school FROM table_name_37 WHERE player = "billy owens"
What School did Player Billy Owens attend?
CREATE TABLE table_name_37 (school VARCHAR, player VARCHAR)
SELECT 2013 FROM table_name_49 WHERE 2010 = "2r" AND 2011 = "qf"
What is the 2013 with a 2r in 2010 and a qf in 2011?
CREATE TABLE table_name_49 (Id VARCHAR)
SELECT MAX(field_goals) FROM table_14342592_8
Name the most field goals
CREATE TABLE table_14342592_8 (field_goals INTEGER)
SELECT player FROM table_name_73 WHERE pos = "f" AND previous_team = "new york knicks"
What F Player was previously with the New York Knicks?
CREATE TABLE table_name_73 (player VARCHAR, pos VARCHAR, previous_team VARCHAR)
SELECT school_name FROM school WHERE NOT school_id IN (SELECT school_id FROM endowment)
List the names of the schools without any endowment.
CREATE TABLE endowment (school_name VARCHAR, school_id VARCHAR); CREATE TABLE school (school_name VARCHAR, school_id VARCHAR)
SELECT main_language_s_ FROM table_name_86 WHERE original_title = "nynke"
What is the primary language used in the film title Nynke?
CREATE TABLE table_name_86 (main_language_s_ VARCHAR, original_title VARCHAR)
SELECT MIN(wins) FROM table_name_74 WHERE finish = "7th" AND win_percentage > 0.429 AND reds_season < 1915
What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %?
CREATE TABLE table_name_74 (wins INTEGER, reds_season VARCHAR, finish VARCHAR, win_percentage VARCHAR)
SELECT MAX(game) FROM table_name_44 WHERE date = "november 19"
What number game happened on November 19?
CREATE TABLE table_name_44 (game INTEGER, date VARCHAR)
SELECT score FROM table_name_8 WHERE date = "november 16"
Name the score for november 16
CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)
SELECT SUM(laps) FROM table_name_82 WHERE grid = 12
Name the sum of laps for 12 grids
CREATE TABLE table_name_82 (laps INTEGER, grid VARCHAR)
SELECT AVG(lost) FROM table_name_9 WHERE match < 14
Which average lost that has a match less than 14?
CREATE TABLE table_name_9 (lost INTEGER, match INTEGER)
SELECT time_retired FROM table_name_65 WHERE laps < 49 AND name = "michael caruso"
What is Time/Retired, when Laps is less than 49, and when Name is "Michael Caruso"?
CREATE TABLE table_name_65 (time_retired VARCHAR, laps VARCHAR, name VARCHAR)
SELECT gpu_model FROM table_name_8 WHERE frequency = "3.4 ghz" AND sspec_number = "sr00b(d2)"
what is the gpu model when the frequency is 3.4 ghz and the sspec number is sr00b(d2)?
CREATE TABLE table_name_8 (gpu_model VARCHAR, frequency VARCHAR, sspec_number VARCHAR)
SELECT AVG(goals_conceded) FROM table_name_26 WHERE draw > 7 AND goals_scored > 24
Name the average goals conceded with draw bigger than 7 and goals scored more than 24
CREATE TABLE table_name_26 (goals_conceded INTEGER, draw VARCHAR, goals_scored VARCHAR)
SELECT region FROM table_name_61 WHERE catalog = "25ap 301"
What is the Region, when the Catalog is 25AP 301?
CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR)
SELECT player FROM table_24765815_1 WHERE opponent = "Blackburn Rovers"
Which player had an opponent of Blackburn Rovers?
CREATE TABLE table_24765815_1 (player VARCHAR, opponent VARCHAR)
SELECT team__number1 FROM table_23812628_1 WHERE team__number2 = "San Lorenzo"
Name the team number 1 for san lorenzo
CREATE TABLE table_23812628_1 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT league FROM table_name_66 WHERE goals = 12
Which league has 12 goals?
CREATE TABLE table_name_66 (league VARCHAR, goals VARCHAR)
SELECT MIN(time) FROM table_name_66 WHERE nationality = "jamaica" AND lane > 4 AND rank < 1
Name the lowest Time of jamaica with a Lane larger than 4 and a Rank smaller than 1?
CREATE TABLE table_name_66 (time INTEGER, rank VARCHAR, nationality VARCHAR, lane VARCHAR)
SELECT SUM(mintage) FROM table_name_61 WHERE artist = "pierre leduc"
What is the sum of all mintage created by Pierre Leduc?
CREATE TABLE table_name_61 (mintage INTEGER, artist VARCHAR)
SELECT AVG(average) FROM table_name_40 WHERE tally = "0-29" AND total > 29
Name the average with tally of 0-29 and total more than 29
CREATE TABLE table_name_40 (average INTEGER, tally VARCHAR, total VARCHAR)
SELECT MIN(snatch) FROM table_name_25 WHERE clean_ & _jerk = 180 AND bodyweight < 69.83
Which Snatch has a Clean & Jerk of 180, and a Bodyweight smaller than 69.83?
CREATE TABLE table_name_25 (snatch INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT opponent FROM table_name_25 WHERE result = "w 37-14"
Can you tell me the Opponent that has the Result of w 37-14?
CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)
SELECT SUM(money___) AS $__ FROM table_name_84 WHERE score = 69 - 72 - 67 - 71 = 279 AND player = "loren roberts"
Can you tell me the sum of Money ($) that has the Score of 69-72-67-71=279, and the Player of loren roberts?
CREATE TABLE table_name_84 (money___ INTEGER, player VARCHAR, score VARCHAR)
SELECT directed_by FROM table_17467447_1 WHERE production_code = "2T6267"
If the product code is 2t6267, who was the director?
CREATE TABLE table_17467447_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT COUNT(fastest_laps) FROM table_20016339_1 WHERE team = "I.C. team"
How many fastest laps did I.C. Team have?
CREATE TABLE table_20016339_1 (fastest_laps VARCHAR, team VARCHAR)
SELECT COUNT(against) FROM table_name_26 WHERE drawn < 5 AND lost < 6 AND points > 36
Which Against has a Drawn smaller than 5, and a Lost smaller than 6, and a Points larger than 36?
CREATE TABLE table_name_26 (against VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT venue FROM table_name_82 WHERE against < 6
Which Venue has Against smaller than 6?
CREATE TABLE table_name_82 (venue VARCHAR, against INTEGER)
SELECT COUNT(high_points) FROM table_27722408_6 WHERE score = "L 87–89 (OT)"
How many entries are shown for high points when the score was l 87–89 (ot)?
CREATE TABLE table_27722408_6 (high_points VARCHAR, score VARCHAR)
SELECT title FROM table_25548505_1 WHERE directed_by = "Linda Mendoza"
What is the title of the episode directed by Linda Mendoza?
CREATE TABLE table_25548505_1 (title VARCHAR, directed_by VARCHAR)
SELECT date FROM table_name_26 WHERE name = "thuin circuit"
What Date has a Name of thuin circuit?
CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR)
SELECT MIN(points) FROM table_name_91 WHERE year < 1958 AND class = "350cc"
What is the smallest point amount for years prior to 1958 when the class is 350cc?
CREATE TABLE table_name_91 (points INTEGER, year VARCHAR, class VARCHAR)
SELECT capacity FROM table_name_90 WHERE torque__nm__rpm = "n·m (lb·ft) @4150"
Name the capacity for the torque of n·m (lb·ft) @4150
CREATE TABLE table_name_90 (capacity VARCHAR, torque__nm__rpm VARCHAR)
SELECT years FROM table_name_31 WHERE nationality = "spain" AND goals = 215
Name the years for spain with 215 goals
CREATE TABLE table_name_31 (years VARCHAR, nationality VARCHAR, goals VARCHAR)
SELECT call_sign FROM table_name_23 WHERE erp_w = 75
Which Call sign has an ERP W of 75?
CREATE TABLE table_name_23 (call_sign VARCHAR, erp_w VARCHAR)
SELECT opponent FROM table_name_78 WHERE round > 4 AND event = "draka v"
Which Opponent has a Round larger than 4 and the Event, Draka V?
CREATE TABLE table_name_78 (opponent VARCHAR, round VARCHAR, event VARCHAR)
SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'
What is the first name of students enrolled in class ACCT-211 and got grade C?
CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR); CREATE TABLE enroll (class_code VARCHAR, stu_num VARCHAR, enroll_grade VARCHAR)
SELECT AVG(goals) FROM table_name_52 WHERE last_appearance < 1984 AND appearances > 17 AND first_appearance < 1961 AND position = "mf"
What is the average goals when the last appearance was before 1984, there were more than 17 appearances, the first appearance was before 1961 and the position was mf?
CREATE TABLE table_name_52 (goals INTEGER, position VARCHAR, first_appearance VARCHAR, last_appearance VARCHAR, appearances VARCHAR)
SELECT COUNT(laps) FROM table_name_84 WHERE time_retired = "+1:35.553"
How many laps have a Time/Retired of +1:35.553?
CREATE TABLE table_name_84 (laps VARCHAR, time_retired VARCHAR)