question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
How many rounds did Alex Ardoin achieved a fastest lap?
CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "Alex Ardoin"
List all information about customer master index, and sort them by details in descending order.
CREATE TABLE customer_master_index (cmi_details VARCHAR)
SELECT * FROM customer_master_index ORDER BY cmi_details DESC
Which previous conference is associated with Penn school?
CREATE TABLE table_name_67 (previous_conference VARCHAR, school VARCHAR)
SELECT previous_conference FROM table_name_67 WHERE school = "penn"
Who was the opponents head coach with the result L, 56-6?
CREATE TABLE table_26240481_1 (opponents_head_coach VARCHAR, result VARCHAR)
SELECT opponents_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
what position did the player from connecticut play
CREATE TABLE table_10015132_7 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_10015132_7 WHERE school_club_team = "Connecticut"
What is the highest points gained of the match where fans took 907 and there were more than 44.9 miles one way?
CREATE TABLE table_name_57 (points_gained INTEGER, fans_took VARCHAR, miles_ VARCHAR, one_way VARCHAR)
SELECT MAX(points_gained) FROM table_name_57 WHERE fans_took = "907" AND miles_[one_way] > 44.9
Name the ICAO for lilongwe international airport
CREATE TABLE table_name_74 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_74 WHERE airport = "lilongwe international airport"
What is Club, when Points is "82"?
CREATE TABLE table_name_15 (club VARCHAR, points VARCHAR)
SELECT club FROM table_name_15 WHERE points = "82"
What date did the player from Santo AndrΓ© debut?
CREATE TABLE table_name_27 (date_joined VARCHAR, from__club_ VARCHAR)
SELECT date_joined FROM table_name_27 WHERE from__club_ = "santo andrΓ©"
What is the Week number with a result of l 31–28?
CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR)
SELECT COUNT(week) FROM table_name_77 WHERE result = "l 31–28"
Who is the prisoner that is older than 45 and has served less than 22 years on death row?
CREATE TABLE table_name_39 (name VARCHAR, current_age VARCHAR, years_on_death_row VARCHAR)
SELECT name FROM table_name_39 WHERE current_age > 45 AND years_on_death_row < 22
Who was the line judge at the game where Scott Green was referee?
CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR)
SELECT line_judge FROM table_name_48 WHERE referee = "scott green"
When did elisabeth of valois die?
CREATE TABLE table_name_45 (death VARCHAR, name VARCHAR)
SELECT death FROM table_name_45 WHERE name = "elisabeth of valois"
What is the total engine capacity of the a4 transmission, which has an urban mpg-US greater than 19, an mpg-us extra-urban greater than 38.6, and an aveo model?
CREATE TABLE table_name_50 (engine_capacity VARCHAR, model VARCHAR, mpg_us_extra_urban VARCHAR, transmission VARCHAR, mpg_us_urban VARCHAR)
SELECT COUNT(engine_capacity) FROM table_name_50 WHERE transmission = "a4" AND mpg_us_urban > 19 AND mpg_us_extra_urban > 38.6 AND model = "aveo"
Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti?
CREATE TABLE table_name_61 (capacity INTEGER, class VARCHAR, vehicle VARCHAR)
SELECT MIN(capacity) FROM table_name_61 WHERE class = "cm22" AND vehicle = "1999 subaru impreza wrx sti"
Who was the husband of marie of baden-sponheim?
CREATE TABLE table_name_74 (husband VARCHAR, image VARCHAR)
SELECT husband FROM table_name_74 WHERE image = "marie of baden-sponheim"
What was the October 22 record?
CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27537518_4 WHERE date = "October 22"
Which player has a Club/province of direito, less than 21 caps, and a Position of lock?
CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, club_province VARCHAR, caps VARCHAR)
SELECT player FROM table_name_99 WHERE club_province = "direito" AND caps < 21 AND position = "lock"
Who was the pitcher with the record recorded in the 7th inning?
CREATE TABLE table_name_55 (pitcher VARCHAR, inn VARCHAR)
SELECT pitcher FROM table_name_55 WHERE inn = "7th"
Which league has a pick number larger than 204 from Canada and LW as the position?
CREATE TABLE table_name_61 (league_from VARCHAR, position VARCHAR, pick__number VARCHAR, nationality VARCHAR)
SELECT league_from FROM table_name_61 WHERE pick__number > 204 AND nationality = "canada" AND position = "lw"
What are the names of the courses that have exactly 1 student enrollment?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1
How many s hindu are where buddhists are 955?
CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
SELECT s_hindu FROM table_14598_5 WHERE buddhist = "955"
When Douglas Soares had the fastest lap, what was the report?
CREATE TABLE table_name_39 (report VARCHAR, fastest_lap VARCHAR)
SELECT report FROM table_name_39 WHERE fastest_lap = "douglas soares"
Who was the opponent for the match were the outcome was runner-up and the score was 5-7, 1-6?
CREATE TABLE table_name_79 (opponent VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_79 WHERE outcome = "runner-up" AND score = "5-7, 1-6"
Does Detroit have a soccer team?
CREATE TABLE table_name_34 (soccer VARCHAR, school VARCHAR)
SELECT soccer FROM table_name_34 WHERE school = "detroit"
What position for chris moreno?
CREATE TABLE table_name_18 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_18 WHERE player = "chris moreno"
What were the revising conventions commentary with a denunciation of 21?
CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, denunciations__september_2011_ VARCHAR)
SELECT revising_convention_s_ FROM table_2001348_1 WHERE denunciations__september_2011_ = 21
What is the other for 2012?
CREATE TABLE table_name_54 (other VARCHAR, year VARCHAR)
SELECT other FROM table_name_54 WHERE year = "2012"
What is the Theme of the coin with an Issue Price of $89.95?
CREATE TABLE table_name_95 (theme VARCHAR, issue_price VARCHAR)
SELECT theme FROM table_name_95 WHERE issue_price = "$89.95"
What Pastoral Region has 3 Cemeteries?
CREATE TABLE table_name_57 (pastoral_region VARCHAR, cemeteries VARCHAR)
SELECT pastoral_region FROM table_name_57 WHERE cemeteries = 3
What was the Result for the club universidad de guadalajara?
CREATE TABLE table_name_11 (result VARCHAR, club VARCHAR)
SELECT result FROM table_name_11 WHERE club = "club universidad de guadalajara"
In 1978 what is the NFL team?
CREATE TABLE table_name_30 (nfl_team VARCHAR, draft_year VARCHAR)
SELECT nfl_team FROM table_name_30 WHERE draft_year = 1978
How many different directors are associated with the writer Gaby Chiappe?
CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR)
SELECT COUNT(director) FROM table_15026994_2 WHERE writer = "Gaby Chiappe"
What was the box core for the Melbourne Tigers?
CREATE TABLE table_name_21 (Box VARCHAR, home_team VARCHAR)
SELECT Box AS score FROM table_name_21 WHERE home_team = "melbourne tigers"
What is the Score that has a Home of montreal canadiens on april 11?
CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_6 WHERE home = "montreal canadiens" AND date = "april 11"
When the value rank is 23, what is the value?
CREATE TABLE table_21109892_1 (value__int_ INTEGER, value_world_rank VARCHAR)
SELECT MIN(value__int_) AS $1000_ FROM table_21109892_1 WHERE value_world_rank = "23"
What is the total enrollment for private/ disciples of christ?
CREATE TABLE table_28243691_1 (enrollment VARCHAR, affiliation VARCHAR)
SELECT enrollment FROM table_28243691_1 WHERE affiliation = "Private/ Disciples of Christ"
How many races did he do in the year he had 8 points?
CREATE TABLE table_name_47 (races VARCHAR, points VARCHAR)
SELECT races FROM table_name_47 WHERE points = "8"
What is the lowest numbered Lane with a Time of 1:10.57 and Heat larger than 2?
CREATE TABLE table_name_97 (lane INTEGER, heat VARCHAR, time VARCHAR)
SELECT MIN(lane) FROM table_name_97 WHERE heat > 2 AND time = "1:10.57"
When the United States had a total score of 274 what was the average year?
CREATE TABLE table_name_67 (year INTEGER, total_score VARCHAR, country VARCHAR)
SELECT AVG(year) FROM table_name_67 WHERE total_score = "274" AND country = "united states"
What position has a Cross-code debut of 1st ru test v ireland?
CREATE TABLE table_name_79 (position VARCHAR, cross_code_debut VARCHAR)
SELECT position FROM table_name_79 WHERE cross_code_debut = "1st ru test v ireland"
How many numbers were recorded under McCain when Obama had 27.2% voters?
CREATE TABLE table_20693870_1 (mccain_number VARCHAR, obama_percentage VARCHAR)
SELECT COUNT(mccain_number) FROM table_20693870_1 WHERE obama_percentage = "27.2%"
What is Format, when Region is United States?
CREATE TABLE table_name_11 (format VARCHAR, region VARCHAR)
SELECT format FROM table_name_11 WHERE region = "united states"
What was the 2007 result in the district where the incumbent was elected in 1996?
CREATE TABLE table_13618584_1 (elected VARCHAR)
SELECT 2007 AS _result FROM table_13618584_1 WHERE elected = 1996
What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year?
CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR)
SELECT AVG(finish) FROM table_name_35 WHERE start > 3 AND engine = "honda" AND year = 2011
Name the result for lukas smital and home
CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR)
SELECT result FROM table_17120964_5 WHERE man_of_the_match = "Lukas Smital" AND venue = "Home"
Which home has a Date of november 7?
CREATE TABLE table_name_16 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_16 WHERE date = "november 7"
What score has west ham united as the away team?
CREATE TABLE table_name_46 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_46 WHERE away_team = "west ham united"
What is the sum of team impul with the date of 8 july
CREATE TABLE table_name_64 (round INTEGER, team VARCHAR, date VARCHAR)
SELECT SUM(round) FROM table_name_64 WHERE team = "team impul" AND date = "8 july"
What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R?
CREATE TABLE table_name_33 (Id VARCHAR)
SELECT 2001 FROM table_name_33 WHERE 1990 = "a" AND 1987 = "nme" AND 1997 = "1r"
What type of ride is Rameses Revenge?
CREATE TABLE table_name_59 (type VARCHAR, ride_name VARCHAR)
SELECT type FROM table_name_59 WHERE ride_name = "rameses revenge"
What was Melbourne's score as the home team?
CREATE TABLE table_name_16 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_16 WHERE home_team = "melbourne"
What is the number of fumbles for the avg larger than 5.4, with yards smaller than 164?
CREATE TABLE table_name_27 (fumbles INTEGER, avg VARCHAR, yards VARCHAR)
SELECT AVG(fumbles) FROM table_name_27 WHERE avg > 5.4 AND yards < 164
who won the kansas state game on 11/26/1988
CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR)
SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = "11/26/1988"
Find the distinct names of wines produced before the year of 2000 or after the year of 2010.
CREATE TABLE WINE (Name VARCHAR, YEAR VARCHAR)
SELECT DISTINCT Name FROM WINE WHERE YEAR < 2000 OR YEAR > 2010
What was the game record on March 6?
CREATE TABLE table_27721131_10 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27721131_10 WHERE date = "March 6"
Tell me the away team score for away team of south melbourne
CREATE TABLE table_name_23 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_23 WHERE away_team = "south melbourne"
How many candidates were elected in the Louisiana 4 district?
CREATE TABLE table_1341865_20 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = "Louisiana 4"
What Date has the Region Europe and a Catalog of 74321 45851 2?
CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_33 WHERE region = "europe" AND catalog = "74321 45851 2"
Which Season 7 has a Seat larger than 1, and a Season 3 of w. brett wilson?
CREATE TABLE table_name_89 (season_7 VARCHAR, seat VARCHAR, season_3 VARCHAR)
SELECT season_7 FROM table_name_89 WHERE seat > 1 AND season_3 = "w. brett wilson"
Show the names of schools with a total budget amount greater than 100 or a total endowment greater than 10.
CREATE TABLE endowment (school_id VARCHAR, amount INTEGER); CREATE TABLE budget (school_id VARCHAR, budgeted INTEGER); CREATE TABLE school (school_name VARCHAR, school_id VARCHAR)
SELECT T2.school_name FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id JOIN endowment AS T3 ON T2.school_id = T3.school_id GROUP BY T2.school_name HAVING SUM(T1.budgeted) > 100 OR SUM(T3.amount) > 10
What is Player, when Position is "SS", and when Pick is "11"?
CREATE TABLE table_name_61 (player VARCHAR, position VARCHAR, pick VARCHAR)
SELECT player FROM table_name_61 WHERE position = "ss" AND pick = 11
WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN?
CREATE TABLE table_name_15 (lost INTEGER, drawn VARCHAR, team VARCHAR)
SELECT MAX(lost) FROM table_name_15 WHERE drawn = 11 AND team = "leek town"
What are the weights of entrepreneurs in descending order of money requested?
CREATE TABLE entrepreneur (People_ID VARCHAR, Money_Requested VARCHAR); CREATE TABLE people (Weight VARCHAR, People_ID VARCHAR)
SELECT T2.Weight FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Money_Requested DESC
Which Week 2 Sept 7 has a Week 7 Oct 12 of ball state (7-0)?
CREATE TABLE table_name_8 (week_2_sept_7 VARCHAR, week_7_oct_12 VARCHAR)
SELECT week_2_sept_7 FROM table_name_8 WHERE week_7_oct_12 = "ball state (7-0)"
What is the Time/ Behind, when Jockey is "Jose Lezcano"?
CREATE TABLE table_name_44 (time__behind VARCHAR, jockey VARCHAR)
SELECT time__behind FROM table_name_44 WHERE jockey = "jose lezcano"
What is Position, when Points is greater than 7, and when Series is Toyota Racing Series?
CREATE TABLE table_name_3 (position VARCHAR, points VARCHAR, series VARCHAR)
SELECT position FROM table_name_3 WHERE points > 7 AND series = "toyota racing series"
What is the maximum enrollment of the schools?
CREATE TABLE table_26355116_1 (enrollment INTEGER)
SELECT MAX(enrollment) FROM table_26355116_1
In what club(s) does Tony Lockett play?
CREATE TABLE table_name_11 (club_clubs VARCHAR, player VARCHAR)
SELECT club_clubs FROM table_name_11 WHERE player = "tony lockett"
What was the round that Sergio Vinagre had a time of 5:00?
CREATE TABLE table_name_36 (round INTEGER, time VARCHAR, opponent VARCHAR)
SELECT MAX(round) FROM table_name_36 WHERE time = "5:00" AND opponent = "sergio vinagre"
What company is the kit manufacturer that Gareth Southgate belongs to?
CREATE TABLE table_name_50 (kit_manufacturer VARCHAR, captain VARCHAR)
SELECT kit_manufacturer FROM table_name_50 WHERE captain = "gareth southgate"
What was the final rank of the Brewers in 1980?
CREATE TABLE table_name_63 (finish VARCHAR, team_season VARCHAR)
SELECT finish FROM table_name_63 WHERE team_season = "1980"
What is the cospar ID of the Kosmos 2397 satellite, which has an operational life of 2 months?
CREATE TABLE table_18161217_2 (cospar_id VARCHAR, estimated_operational_life VARCHAR, satellite VARCHAR)
SELECT cospar_id FROM table_18161217_2 WHERE estimated_operational_life = "2 months" AND satellite = "Kosmos 2397"
Which people had the best 10-year period when Fischer had best 15-year period?
CREATE TABLE table_1710426_2 (best_10_year_period VARCHAR, best_15_year_period VARCHAR)
SELECT best_10_year_period FROM table_1710426_2 WHERE best_15_year_period = "Fischer"
who ended runner-up to sankar adhi?
CREATE TABLE table_22757733_4 (runner_up_a VARCHAR, winner VARCHAR)
SELECT runner_up_a FROM table_22757733_4 WHERE winner = "Sankar Adhi"
What is the minimum number of wins possible for the Champ Car World Series among all the drivers?
CREATE TABLE table_19524523_1 (champ_car_world_series__2004_2007_ INTEGER)
SELECT MIN(champ_car_world_series__2004_2007_) FROM table_19524523_1
What is Bullet weight, when Source is hornady?
CREATE TABLE table_name_99 (bullet_weight VARCHAR, source VARCHAR)
SELECT bullet_weight FROM table_name_99 WHERE source = "hornady"
From which series is the title Barbary Coast Bunny?
CREATE TABLE table_name_85 (series VARCHAR, title VARCHAR)
SELECT series FROM table_name_85 WHERE title = "barbary coast bunny"
Name the number of assists for 321 minutes
CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR)
SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321
What is the Opponent in a game with a Score of 6–2, 6–2?
CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_66 WHERE score = "6–2, 6–2"
Who was the GTO winner of the round that ended with Chris Cord becoming the GTU winner?
CREATE TABLE table_13643320_2 (gto_winning_team VARCHAR, gtu_winning_team VARCHAR)
SELECT gto_winning_team FROM table_13643320_2 WHERE gtu_winning_team = "Chris Cord"
What Brands Hatch race had Niki Lauda as its Fastest Lap?
CREATE TABLE table_name_78 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR)
SELECT race FROM table_name_78 WHERE fastest_lap = "niki lauda" AND location = "brands hatch"
What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )?
CREATE TABLE table_224839_3 (state__class_ VARCHAR, reason_for_change VARCHAR, vacator VARCHAR)
SELECT state__class_ FROM table_224839_3 WHERE reason_for_change = "Resigned November 26, 1798" AND vacator = "John Hunter ( DR )"
What is the Opponent at the game with an Attendance of 64,900 in Week prior to 15 with a Result of L 38-31?
CREATE TABLE table_name_86 (opponent VARCHAR, result VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_86 WHERE week < 15 AND attendance = "64,900" AND result = "l 38-31"
Which College has a Round smaller than 7, and a Pick # smaller than 27, and a Name of anthony maddox?
CREATE TABLE table_name_37 (college VARCHAR, name VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT college FROM table_name_37 WHERE round < 7 AND pick__number < 27 AND name = "anthony maddox"
On what day was Utah Blaze the opponent?
CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_6 WHERE opponent = "utah blaze"
Name the D 42 √ when it has D 44 √ of r 36 √
CREATE TABLE table_name_67 (d_42_√ VARCHAR, d_44_√ VARCHAR)
SELECT d_42_√ FROM table_name_67 WHERE d_44_√ = "r 36 √"
Tell me the team which has matches of 13
CREATE TABLE table_name_43 (team VARCHAR, matches VARCHAR)
SELECT team FROM table_name_43 WHERE matches = 13
who directed the production code 2398204
CREATE TABLE table_10953197_7 (director VARCHAR, production_code VARCHAR)
SELECT director FROM table_10953197_7 WHERE production_code = "2398204"
What team played at the Boston Garden when the series was 1-0?
CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR, series VARCHAR)
SELECT team FROM table_name_55 WHERE location_attendance = "boston garden" AND series = "1-0"
What group a winner was for nocerina?
CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_d_winner VARCHAR)
SELECT group_a_winner FROM table_1137142_1 WHERE group_d_winner = "Nocerina"
What location was listed on 1977-11-23?
CREATE TABLE table_name_25 (location VARCHAR, listed VARCHAR)
SELECT location FROM table_name_25 WHERE listed = "1977-11-23"
What is the total when the A score was less than 6.6, and the B score was 8.925?
CREATE TABLE table_name_15 (total VARCHAR, a_score VARCHAR, b_score VARCHAR)
SELECT total FROM table_name_15 WHERE a_score < 6.6 AND b_score = 8.925
Tell me the result for green bay packers
CREATE TABLE table_name_77 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_77 WHERE opponent = "green bay packers"
Which year had a Cosworth V8 engine and 12 points?
CREATE TABLE table_name_36 (year VARCHAR, points VARCHAR, engine VARCHAR)
SELECT year FROM table_name_36 WHERE points = 12 AND engine = "cosworth v8"
What is Pole Position, when Circuit is Adelaide Street Circuit, and when Winning Team is Piccola Scuderia Corse?
CREATE TABLE table_name_71 (pole_position VARCHAR, circuit VARCHAR, winning_team VARCHAR)
SELECT pole_position FROM table_name_71 WHERE circuit = "adelaide street circuit" AND winning_team = "piccola scuderia corse"
What was the score when Montreal was home?
CREATE TABLE table_name_94 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_94 WHERE home = "montreal"
How many wins were there when the money list rank was 183?
CREATE TABLE table_10021158_3 (wins VARCHAR, money_list_rank VARCHAR)
SELECT COUNT(wins) FROM table_10021158_3 WHERE money_list_rank = "183"
Where did they play that the score was 22-12?
CREATE TABLE table_name_21 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_21 WHERE result = "22-12"
what is round2 when round5 is more than 35, round3 is less than 51, the rank is smaller than 2 and the team is netherlands?
CREATE TABLE table_name_54 (round2 VARCHAR, rank VARCHAR, team VARCHAR, round5 VARCHAR, round3 VARCHAR)
SELECT COUNT(round2) FROM table_name_54 WHERE round5 > 35 AND round3 < 51 AND team = "netherlands" AND rank < 2